Compare commits
47 commits
scratch-sp
...
rawhide
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8e462d1068 | ||
|
|
8bc487138a | ||
|
|
eab976ed49 | ||
|
|
34d69acd17 | ||
|
|
ae9a3e12b1 | ||
|
|
41f31a2eb2 | ||
|
|
2d7bcb9fcc | ||
|
|
6566a14113 | ||
|
|
a5ef8e4570 | ||
|
|
120a58d953 | ||
|
|
746312a33a | ||
|
|
63aa420558 | ||
|
|
38ee4b19a3 | ||
|
|
8fe7927d97 | ||
|
|
0ccac1a162 | ||
|
|
0a8661c83c | ||
|
|
f4da75748d | ||
|
|
8a39a5aa05 | ||
|
|
f09b3d32e5 | ||
|
|
66d85bbc03 | ||
|
|
2d21657a74 | ||
|
|
946e29c76e | ||
|
|
114cd2ef3b | ||
|
|
dec8645e72 | ||
|
|
eaf244a092 | ||
|
|
43a125fc5c | ||
|
|
8c0d32cd44 | ||
|
|
1ef6b2777e | ||
|
|
1e60f55a9b | ||
|
|
7ba23de87c | ||
|
|
1f6064fbb1 | ||
|
|
f3549d54f6 | ||
|
|
8bcc65e3c4 | ||
|
|
29f60ac48a | ||
|
|
2d3ec25eb0 | ||
|
|
eedf969c85 | ||
|
|
ee8d2c51ce | ||
|
|
bfe076b1e3 | ||
|
|
1c4bafd390 | ||
|
|
93f6f19067 | ||
|
|
9644a31c1e | ||
|
|
d31912c75c | ||
|
|
6d577936db | ||
|
|
6cce419f68 | ||
|
|
3152f9282c | ||
|
|
ea7fd2ddc5 | ||
|
|
395e6a982d |
5 changed files with 1 additions and 77 deletions
|
|
@ -1 +0,0 @@
|
||||||
amtu-0.1.tar.gz
|
|
||||||
6
Makefile
6
Makefile
|
|
@ -1,6 +0,0 @@
|
||||||
# Makefile for source rpm: amtu
|
|
||||||
# $Id$
|
|
||||||
NAME := amtu
|
|
||||||
SPECFILE = $(firstword $(wildcard *.spec))
|
|
||||||
|
|
||||||
include ../common/Makefile.common
|
|
||||||
69
amtu.spec
69
amtu.spec
|
|
@ -1,69 +0,0 @@
|
||||||
Name: amtu
|
|
||||||
Version: 0.1
|
|
||||||
Release: 3RHEL
|
|
||||||
Autoreqprov: on
|
|
||||||
Summary: Abstract Machine Test Utility (AMTU)
|
|
||||||
License: Common Public License
|
|
||||||
Group: Productivity/Security
|
|
||||||
Requires: laus-libs
|
|
||||||
Source0: %{name}-%{version}.tar.gz
|
|
||||||
Excludearch: ia64
|
|
||||||
|
|
||||||
# Red Hat AMTU SPEC file
|
|
||||||
|
|
||||||
%description
|
|
||||||
Abstract Machine Test Utility (AMTU) is an administrative utility to check
|
|
||||||
whether the underlying protection mechanism of the hardware are still being
|
|
||||||
enforced. This is a requirement of the Controlled Access Protection Profile
|
|
||||||
FTP_AMT.1, see
|
|
||||||
http://www.radium.ncsc.mil/tpep/library/protection_profiles/CAPP-1.d.pdf
|
|
||||||
|
|
||||||
%prep
|
|
||||||
%setup -n amtu
|
|
||||||
|
|
||||||
%build
|
|
||||||
# Determine appropriate compiler
|
|
||||||
CC="gcc"
|
|
||||||
%ifarch ppc64 ppc64iseries ppc64pseries
|
|
||||||
CC="/usr/bin/ppc64-redhat-linux-gcc"
|
|
||||||
%endif
|
|
||||||
# Determine appropriate compiler flags
|
|
||||||
CFLAGS="$RPM_OPT_FLAGS -D_GNU_SOURCE -Wall -pipe"
|
|
||||||
%ifarch x86_64
|
|
||||||
CFLAGS="$RPM_OPT_FLAGS -D_GNU_SOURCE -Wall -pipe -m64"
|
|
||||||
%endif
|
|
||||||
export CC CFLAGS
|
|
||||||
autoheader || true
|
|
||||||
autoreconf --install
|
|
||||||
./configure \
|
|
||||||
--prefix=/usr \
|
|
||||||
--bindir=/usr/bin \
|
|
||||||
--mandir=%{_mandir}
|
|
||||||
make
|
|
||||||
|
|
||||||
%install
|
|
||||||
[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
|
|
||||||
|
|
||||||
mkdir -p $RPM_BUILD_ROOT/%{_defaultdocdir}/amtu-%{version}
|
|
||||||
make DESTDIR=$RPM_BUILD_ROOT install-strip
|
|
||||||
gzip doc/amtu.8
|
|
||||||
install -m 644 doc/AMTUHowTo.txt $RPM_BUILD_ROOT/%{_defaultdocdir}/amtu-%{version}/AMTUHowTo.txt
|
|
||||||
install -m 644 doc/amtu.8.gz $RPM_BUILD_ROOT/%{_mandir}/man8/amtu.8.gz
|
|
||||||
|
|
||||||
%clean
|
|
||||||
make clean
|
|
||||||
|
|
||||||
%files
|
|
||||||
%defattr(-,root,root)
|
|
||||||
%attr(440,root,root) /usr/bin/amtu
|
|
||||||
%doc %{_mandir}/man8/amtu.8.gz
|
|
||||||
%doc %{_defaultdocdir}/amtu-%{version}/AMTUHowTo.txt
|
|
||||||
|
|
||||||
%changelog
|
|
||||||
* Fri May 28 2004 ccb <ccb@redhat.com> 0.1-3RHEL
|
|
||||||
- fixed owners and permissions in %files
|
|
||||||
* Wed May 26 2004 ccb <ccb@redhat.com> 0.1-2RHEL
|
|
||||||
- move docs to a version-qualified directory name
|
|
||||||
* Sat May 1 2004 root <chavezt@cs679156-153.austin.rr.com>
|
|
||||||
- Initial build.
|
|
||||||
|
|
||||||
1
dead.package
Normal file
1
dead.package
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
AMTU was needed for Common Criteria testing. No PP has needed it in about 5 years. Upstream for the package is also dead.
|
||||||
1
sources
1
sources
|
|
@ -1 +0,0 @@
|
||||||
b0aa74ad4d0b20ac381fb278f1bbc1f6 amtu-0.1.tar.gz
|
|
||||||
Reference in a new issue