SHA256
1
0
forked from pool/amtu
OBS User unknown 2007-03-14 11:23:16 +00:00 committed by Git OBS Bridge
commit f9625b6dad
6 changed files with 152 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

3
amtu-1.0.4.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:92fd3559a20537e74ce800b4e7a50fe4f5df44004efa3428583c4df9444875a4
size 54728

30
amtu.changes Normal file
View File

@ -0,0 +1,30 @@
-------------------------------------------------------------------
Fri Mar 2 15:26:12 CET 2007 - ro@suse.de
- fix buildreq
-------------------------------------------------------------------
Tue Feb 27 01:14:38 CET 2007 - draht@suse.de
- port from sles9 tree to sle10-sp for SP1, initial package in
CODE10
- version upgrade to 1.0.4; featuring audit (LAF) support for
compliance with CAPP
-------------------------------------------------------------------
Mon Sep 6 09:51:31 CEST 2004 - thomas@suse.de
- added laus, laus-devel to needforbuild
-------------------------------------------------------------------
Thu Aug 26 10:02:20 CEST 2004 - thomas@suse.de
- added patch to make memory separation testcase work on
machines with kernel f_pos race fix. it is needed due to
new permissions on /proc/self/maps.
-------------------------------------------------------------------
Fri Aug 20 10:20:54 CEST 2004 - thomas@suse.de
- created initial package for EAL4 evaluation of SLES9

95
amtu.spec Normal file
View File

@ -0,0 +1,95 @@
#
# spec file for package amtu (Version 1.0.4)
#
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
# package are under the same license as the package itself.
#
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
# norootforbuild
Name: amtu
URL: http://www-124.ibm.com/developerworks/projects/amtu
License: Other License(s), see package
Group: Productivity/Security
Requires: audit >= 1.2.9
Autoreqprov: on
Version: 1.0.4
Release: 1
Summary: Abstract Machine Test Utility
Source: %{name}-%{version}.tar.gz
#Patch0: %{name}-%{version}-ia64.patch
#Patch1: %{name}-%{version}-memsep.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: audit audit-devel audit-libs
%description
Abstract Machine Test Utility (AMTU) is an administrative utility to
check whether the underlying protection mechanism of the hardware is
still being enforced. This is a requirement of the Controlled Access
Protection Profile (CAPP) FTP_AMT.1. See
http://www.radium.csc.mil/tpep/library/protection_profiles/CAPP-1.d.pdf
.
Authors:
--------
IBM
Unknown
%prep
%setup amtu
#%patch0 -p1
#%patch1 -p1
%build
%{?suse_update_config:%{suse_update_config -f support}}
CFLAGS="$RPM_OPT_FLAGS -D_GNU_SOURCE -Wall -pipe"
CC=gcc
export CC CFLAGS
#autoheader || true
#autoreconf --install
bash ./bootstrap
./configure \
--prefix=/usr \
--bindir=/usr/sbin \
--mandir=%{_mandir}
make
%{?suse_update_config:%{suse_update_config -f support}}
%install
# rm -rf %{_defaultdocdir}/amtu
mkdir -p $RPM_BUILD_ROOT/%{_defaultdocdir}/amtu
make DESTDIR=$RPM_BUILD_ROOT install-strip
install -m 644 doc/AMTUHowTo.txt $RPM_BUILD_ROOT/%{_defaultdocdir}/amtu/AMTUHowTo.txt
install -m 644 doc/amtu.8 $RPM_BUILD_ROOT/%{_mandir}/man8/amtu.8
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
%attr(700,root,root)/usr/sbin/amtu
%attr(444,root,root) %{_mandir}/man8/amtu.8*
%attr(755,root,root) %{_defaultdocdir}/amtu
%attr(444,root,root) %{_defaultdocdir}/amtu/AMTUHowTo.txt
%changelog
* Fri Mar 02 2007 - ro@suse.de
- fix buildreq
* Tue Feb 27 2007 - draht@suse.de
- port from sles9 tree to sle10-sp for SP1, initial package in
CODE10
- version upgrade to 1.0.4; featuring audit (LAF) support for
compliance with CAPP
* Mon Sep 06 2004 - thomas@suse.de
- added laus, laus-devel to needforbuild
* Thu Aug 26 2004 - thomas@suse.de
- added patch to make memory separation testcase work on
machines with kernel f_pos race fix. it is needed due to
new permissions on /proc/self/maps.
* Fri Aug 20 2004 - thomas@suse.de
- created initial package for EAL4 evaluation of SLES9

0
ready Normal file
View File