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 | bddec46ea41d11abc2dcc606ec9b59eeb76a57d7 (patch) | |
tree | bb61fa8ff22c741dc2a3838b91fe355342b57aa2 /app-admin | |
parent | Added to ~amd64, bug #76830 (Manifest recommit) (diff) | |
download | gentoo-2-bddec46ea41d11abc2dcc606ec9b59eeb76a57d7.tar.gz gentoo-2-bddec46ea41d11abc2dcc606ec9b59eeb76a57d7.tar.bz2 gentoo-2-bddec46ea41d11abc2dcc606ec9b59eeb76a57d7.zip |
more KEYWORDS
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/paxtest/paxtest-0.9.6.ebuild | 14 |
1 files changed, 6 insertions, 8 deletions
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 } - |