summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Ludd <solar@gentoo.org>2003-11-05 00:06:47 +0000
committerNed Ludd <solar@gentoo.org>2003-11-05 00:06:47 +0000
commitaadfe28abd84bf5ff69ca8db27cffccbb38fd976 (patch)
treef71d609b171525d51103fa46c1cb561468b4fa1e /app-admin/paxtest
parentversion bump (diff)
downloadhistorical-aadfe28abd84bf5ff69ca8db27cffccbb38fd976.tar.gz
historical-aadfe28abd84bf5ff69ca8db27cffccbb38fd976.tar.bz2
historical-aadfe28abd84bf5ff69ca8db27cffccbb38fd976.zip
version bump
Diffstat (limited to 'app-admin/paxtest')
-rw-r--r--app-admin/paxtest/Manifest4
-rw-r--r--app-admin/paxtest/files/digest-paxtest-0.9.51
-rw-r--r--app-admin/paxtest/paxtest-0.9.5.ebuild35
3 files changed, 38 insertions, 2 deletions
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
+}