diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-01-06 19:30:52 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-01-06 19:30:52 +0000 |
commit | f652f2820e167fa90bb97055993b8088a868e43d (patch) | |
tree | 983f650c637d0a5b13770ad954badfb98acfa0bd /app-admin | |
parent | Added to ~amd64, bug #76830 (diff) | |
download | historical-f652f2820e167fa90bb97055993b8088a868e43d.tar.gz historical-f652f2820e167fa90bb97055993b8088a868e43d.tar.bz2 historical-f652f2820e167fa90bb97055993b8088a868e43d.zip |
more KEYWORDS
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/paxtest/Manifest | 14 | ||||
-rw-r--r-- | app-admin/paxtest/paxtest-0.9.6.ebuild | 14 |
2 files changed, 18 insertions, 10 deletions
diff --git a/app-admin/paxtest/Manifest b/app-admin/paxtest/Manifest index 50ba3bd354bf..95f57b4b109c 100644 --- a/app-admin/paxtest/Manifest +++ b/app-admin/paxtest/Manifest @@ -1,9 +1,19 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 + MD5 47a651312957c966e957d79a7b7c219a ChangeLog 2471 MD5 9c3ac1379620120fbd744ce753b30ab5 metadata.xml 1075 MD5 45b4d7ef46e496dc198373339532418b paxtest-0.9.5-r1.ebuild 1089 -MD5 8018d6df5e1477d5b59955364638a283 paxtest-0.9.6.ebuild 873 +MD5 fc919e6946797c88492a156ce04142bd paxtest-0.9.6.ebuild 924 +MD5 72e240fcd006ff512fa354491c0ed637 files/Makefile-portable 7373 MD5 d2c0f3f930cc073ecca57b22266fc4af files/digest-paxtest-0.9.5-r1 64 MD5 424438ef95656aae91eb2f6c53c663d9 files/paxtest-0.9.5.1.diff 2369 MD5 30e5dbdc3446194bf75504fe4c83d5d9 files/paxtest-0.9.5-use-fPIE.patch 813 -MD5 72e240fcd006ff512fa354491c0ed637 files/Makefile-portable 7373 MD5 cd07586dbaa6a36a4e8ae197de829875 files/digest-paxtest-0.9.6 64 +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.9.10 (GNU/Linux) + +iD8DBQFB3ZH3roRuSHgZdywRAubEAJ4z2Y2v859VkRFNWf2f02hnjqXSdwCfe1ro +P5pJeiuIRj+y5NPCgAUL7GQ= +=jrs2 +-----END PGP SIGNATURE----- diff --git a/app-admin/paxtest/paxtest-0.9.6.ebuild b/app-admin/paxtest/paxtest-0.9.6.ebuild index f5549def0d4a..2dca22ca99ed 100644 --- a/app-admin/paxtest/paxtest-0.9.6.ebuild +++ b/app-admin/paxtest/paxtest-0.9.6.ebuild @@ -1,20 +1,19 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/paxtest/paxtest-0.9.6.ebuild,v 1.4 2005/01/01 11:17:19 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/paxtest/paxtest-0.9.6.ebuild,v 1.5 2005/01/06 19:30:52 vapier Exp $ inherit eutils -# pax flags are not strip safe. -RESTRICT="nostrip" - DESCRIPTION="PaX regression test suite" HOMEPAGE="http://www.adamantix.org/paxtest/" SRC_URI="http://www.adamantix.org/paxtest/paxtest-${PV}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~x86 amd64" +KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" IUSE="" +# pax flags are not strip safe. +RESTRICT="nostrip" DEPEND="virtual/libc >=sys-apps/chpax-0.5" @@ -29,9 +28,8 @@ src_compile() { } src_install() { - emake DESTDIR=${D} BINDIR=/usr/bin RUNDIR=/usr/lib/paxtest install + make DESTDIR="${D}" BINDIR=/usr/bin RUNDIR=/usr/lib/paxtest install || die for doc in Changelog README ;do - [ -f "${doc}" ] && dodoc ${doc} + [[ -f ${doc} ]] && dodoc ${doc} done } - |