diff options
author | Simon Stelling <blubb@gentoo.org> | 2005-10-05 07:48:52 +0000 |
---|---|---|
committer | Simon Stelling <blubb@gentoo.org> | 2005-10-05 07:48:52 +0000 |
commit | 4a85d26f45f9447a35d6a13f47cbf644034ca720 (patch) | |
tree | 3e4b4a6afaa30c17b65b9f5a05fe50d79f5dcdfc /app-admin/paxtest | |
parent | * bump again (diff) | |
download | gentoo-2-4a85d26f45f9447a35d6a13f47cbf644034ca720.tar.gz gentoo-2-4a85d26f45f9447a35d6a13f47cbf644034ca720.tar.bz2 gentoo-2-4a85d26f45f9447a35d6a13f47cbf644034ca720.zip |
make it adhere multilib-strict; bug 107805
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'app-admin/paxtest')
-rw-r--r-- | app-admin/paxtest/ChangeLog | 5 | ||||
-rw-r--r-- | app-admin/paxtest/paxtest-0.9.6.ebuild | 8 |
2 files changed, 8 insertions, 5 deletions
diff --git a/app-admin/paxtest/ChangeLog b/app-admin/paxtest/ChangeLog index 200989050c03..5b1ec5170570 100644 --- a/app-admin/paxtest/ChangeLog +++ b/app-admin/paxtest/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-admin/paxtest # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/paxtest/ChangeLog,v 1.22 2005/09/09 13:47:24 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/paxtest/ChangeLog,v 1.23 2005/10/05 07:48:52 blubb Exp $ + + 05 Oct 2005; Simon Stelling <blubb@gentoo.org> paxtest-0.9.6.ebuild: + make it adhere multilib-strict; bug 107805 09 Sep 2005; Aron Griffis <agriffis@gentoo.org> paxtest-0.9.6.ebuild: Mark 0.9.6 stable on alpha diff --git a/app-admin/paxtest/paxtest-0.9.6.ebuild b/app-admin/paxtest/paxtest-0.9.6.ebuild index 8d5c5858b3db..853f58eda06e 100644 --- a/app-admin/paxtest/paxtest-0.9.6.ebuild +++ b/app-admin/paxtest/paxtest-0.9.6.ebuild @@ -1,8 +1,8 @@ # 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.10 2005/09/09 13:47:24 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/paxtest/paxtest-0.9.6.ebuild,v 1.11 2005/10/05 07:48:52 blubb Exp $ -inherit eutils +inherit eutils multilib DESCRIPTION="PaX regression test suite" HOMEPAGE="http://www.adamantix.org/paxtest/" @@ -24,11 +24,11 @@ src_unpack() { } src_compile() { - emake DESTDIR=${D} BINDIR=${D}/usr/bin RUNDIR=/usr/lib/paxtest || die + emake DESTDIR=${D} BINDIR=${D}/usr/bin RUNDIR=/usr/$(get_libdir)/paxtest || die } src_install() { - make DESTDIR="${D}" BINDIR=/usr/bin RUNDIR=/usr/lib/paxtest install || die + make DESTDIR="${D}" BINDIR=/usr/bin RUNDIR=/usr/$(get_libdir)/paxtest install || die for doc in Changelog README ;do [[ -f ${doc} ]] && dodoc ${doc} done |