diff options
Diffstat (limited to 'app-admin/paxtest')
-rw-r--r-- | app-admin/paxtest/ChangeLog | 7 | ||||
-rw-r--r-- | app-admin/paxtest/Manifest | 4 | ||||
-rw-r--r-- | app-admin/paxtest/files/digest-paxtest-0.9.5 | 1 | ||||
-rw-r--r-- | app-admin/paxtest/paxtest-0.9.5.ebuild | 35 |
4 files changed, 44 insertions, 3 deletions
diff --git a/app-admin/paxtest/ChangeLog b/app-admin/paxtest/ChangeLog index 3d90af43c36c..894a3c15eaa8 100644 --- a/app-admin/paxtest/ChangeLog +++ b/app-admin/paxtest/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-admin/paxtest # Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/paxtest/ChangeLog,v 1.3 2003/10/27 05:44:40 solar Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/paxtest/ChangeLog,v 1.4 2003/11/05 00:06:36 solar Exp $ + +*paxtest-0.9.5 (04 Nov 2003) + + 04 Nov 2003; <solar@gentoo.org> paxtest-0.9.5.ebuild: + version bump 27 Oct 2003; <solar@gentoo.org> paxtest-0.9.3.ebuild, paxtest-0.9.4.ebuild: removed paxtest-0.9.3 in favor of 0.9.4 diff --git a/app-admin/paxtest/Manifest b/app-admin/paxtest/Manifest index 459586832be0..21cf108c0a04 100644 --- a/app-admin/paxtest/Manifest +++ b/app-admin/paxtest/Manifest @@ -1,7 +1,7 @@ MD5 0cbbf53abcc433d59ba3d3105bc4a69e paxtest-0.9.1.ebuild 867 MD5 9c3ac1379620120fbd744ce753b30ab5 metadata.xml 1075 -MD5 110962efd8f7ef80e009832fabe65e0f ChangeLog 893 -MD5 717af01dba1db21cec076f1cd4f9c8cb paxtest-0.9.5.ebuild 847 +MD5 c781bebb1ad15665bae9ee868f3445c9 ChangeLog 995 +MD5 8145b945e7f0f809802b5c8aef16f93e paxtest-0.9.5.ebuild 847 MD5 6a1788872d4c5f018e6bc3e3083a5e67 paxtest-0.9.4.ebuild 876 MD5 af6424bf6503521952ca07c9834cbc1a files/digest-paxtest-0.9.1 64 MD5 6332957e877ceb2638ba2150e7987a5d files/digest-paxtest-0.9.4 64 diff --git a/app-admin/paxtest/files/digest-paxtest-0.9.5 b/app-admin/paxtest/files/digest-paxtest-0.9.5 new file mode 100644 index 000000000000..065c41bb5baf --- /dev/null +++ b/app-admin/paxtest/files/digest-paxtest-0.9.5 @@ -0,0 +1 @@ +MD5 34c9f6f48197cc0d81f18a17ec23c719 paxtest-0.9.5.tar.gz 26961 diff --git a/app-admin/paxtest/paxtest-0.9.5.ebuild b/app-admin/paxtest/paxtest-0.9.5.ebuild new file mode 100644 index 000000000000..d71e6ba12459 --- /dev/null +++ b/app-admin/paxtest/paxtest-0.9.5.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/paxtest/paxtest-0.9.5.ebuild,v 1.1 2003/11/05 00:06:36 solar Exp $ + +S=${WORKDIR}/${P} + +DESCRIPTION="PaX regression test suite" +SRC_URI="http://pageexec.virtualave.net/paxtest-${PV}.tar.gz" +HOMEPAGE="http://pageexec.virtualave.net" +KEYWORDS="~x86" +LICENSE="GPL-2" +SLOT="0" + +IUSE="" +DEPEND="virtual/glibc + >=sys-apps/chpax-0.5" + + +src_unpack() { + unpack ${A} + cd ${S} + cp Makefile{,.orig} + cp Makefile{.Gentoo-hardened,} +} + +src_compile() { + emake DESTDIR=${D} BINDIR=${D}/usr/bin RUNDIR=/usr/lib/paxtest || die +} + +src_install() { + emake DESTDIR=${D} BINDIR=/usr/bin RUNDIR=/usr/lib/paxtest install + for doc in Changelog COPYING LICENCE README ;do + [ -f "${doc}" ] && dodoc ${doc} + done +} |