Compare commits
6 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3177dd4c99 | ||
|
|
c4a5468259 | ||
|
|
39a60946dc | ||
|
|
6086bf91a6 | ||
|
|
5784ad3013 | ||
|
|
93352c64d1 |
5 changed files with 83 additions and 21 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
amtterm-1.2.tar.gz
|
||||
21
Makefile
21
Makefile
|
|
@ -1,21 +0,0 @@
|
|||
# Makefile for source rpm: amtterm
|
||||
# $Id$
|
||||
NAME := amtterm
|
||||
SPECFILE = $(firstword $(wildcard *.spec))
|
||||
|
||||
define find-makefile-common
|
||||
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(find-makefile-common))
|
||||
|
||||
ifeq ($(MAKEFILE_COMMON),)
|
||||
# attept a checkout
|
||||
define checkout-makefile-common
|
||||
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
|
||||
endif
|
||||
|
||||
include $(MAKEFILE_COMMON)
|
||||
81
amtterm.spec
Normal file
81
amtterm.spec
Normal file
|
|
@ -0,0 +1,81 @@
|
|||
Name: amtterm
|
||||
License: GPLv2+
|
||||
Version: 1.2
|
||||
Release: 1%{?dist}
|
||||
Summary: Serial-over-lan (sol) client for Intel AMT
|
||||
Group: Applications/Internet
|
||||
Source: %{name}-%{version}.tar.gz
|
||||
URL: http://dl.bytesex.org/releases/%{name}/%{name}-%{version}.tar.gz
|
||||
Buildroot: %{_tmppath}/root-%{name}-%{version}-%{release}
|
||||
Requires: xdg-utils
|
||||
BuildRequires: gtk2-devel vte-devel desktop-file-utils
|
||||
|
||||
%description
|
||||
Serial-over-lan (sol) client for Intel AMT.
|
||||
Includes a terminal and a graphical (gtk) version.
|
||||
Also comes with a perl script to gather informations
|
||||
about and remotely control AMT managed computers.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
export CFLAGS="%{optflags}"
|
||||
make prefix=/usr
|
||||
|
||||
%install
|
||||
rm -rf %{buildroot}
|
||||
make prefix=/usr DESTDIR=%{buildroot} STRIP="" install
|
||||
desktop-file-install \
|
||||
--vendor="fedora" \
|
||||
--delete-original \
|
||||
--dir=%{buildroot}%{_datadir}/applications/ \
|
||||
%{buildroot}/%{_datadir}/applications/gamt.desktop
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%doc COPYING
|
||||
%{_bindir}/*
|
||||
%{_mandir}/man?/*
|
||||
/usr/share/applications/*.desktop
|
||||
|
||||
%clean
|
||||
rm -rf %{buildroot}
|
||||
|
||||
%changelog
|
||||
* Tue Jan 06 2009 Gerd Hoffmann <kraxel@redhat.com> - 1.2-1
|
||||
- update to version 1.2
|
||||
* support special reboot commands (pxe, bios. ...).
|
||||
* gamt: gui tweaks, logging support.
|
||||
* some minor doc tweaks.
|
||||
|
||||
* Fri Aug 31 2007 Gerd Hoffmann <kraxel@redhat.com> - 1.0-1
|
||||
- update to version 1.0
|
||||
* more amttool improvements (network config).
|
||||
- don't strip binaries (bug #269241).
|
||||
* Fri Aug 24 2007 Gerd Hoffmann <kraxel@redhat.com> - 0.99-1
|
||||
- update to version 0.99
|
||||
* add manual pages.
|
||||
* add desktop file.
|
||||
* improve amttool alot.
|
||||
* misc bug fixes.
|
||||
- add amttool to the package description.
|
||||
* Tue Aug 21 2007 Gerd Hoffmann <kraxel@redhat.com> - 0.5-1
|
||||
- update to version 0.5
|
||||
* clarify license (GPLv2+).
|
||||
* keyboard tweaks.
|
||||
* cursor blink option.
|
||||
- fix specfile bugs pointed out by review.
|
||||
* Mon Aug 20 2007 Gerd Hoffmann <kraxel@redhat.com> - 0.4-1
|
||||
- update to version 0.4
|
||||
* minur gui tweaks.
|
||||
* started tool to control machines.
|
||||
* Thu Aug 16 2007 Gerd Hoffmann <kraxel@redhat.com> - 0.3-1
|
||||
- update to version 0.3
|
||||
* gui improvements.
|
||||
* Wed Aug 15 2007 Gerd Hoffmann <kraxel@redhat.com> - 0.2-1
|
||||
- update to version 0.2
|
||||
* added gui (gtk) version.
|
||||
* some protocol fixups.
|
||||
* Thu Aug 09 2007 Gerd Hoffmann <kraxel@redhat.com> - 0.1-1
|
||||
- initial release
|
||||
1
sources
1
sources
|
|
@ -0,0 +1 @@
|
|||
74646aeab6af038bd557f344f8178adc amtterm-1.2.tar.gz
|
||||
Loading…
Add table
Add a link
Reference in a new issue