blob: 04f2ca95628f3d6ba4df6c0e51e51f445ec2f8a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/paxtest/paxtest-0.9.5-r1.ebuild,v 1.13 2007/07/13 06:07:38 mr_bones_ Exp $
inherit eutils
# pax flags are not strip safe.
RESTRICT="strip"
DESCRIPTION="PaX regression test suite"
HOMEPAGE="http://pageexec.virtualave.net/"
SRC_URI="http://pageexec.virtualave.net/paxtest-${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~amd64"
IUSE=""
DEPEND="virtual/libc
>=sys-apps/chpax-0.5"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/paxtest-0.9.5.1.diff
# paxtest includes crt1S.S, which is great if you're on x86, but not so
# much if you're not...
use !x86 && epatch ${FILESDIR}/paxtest-0.9.5-use-fPIE.patch
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 README ;do
[ -f "${doc}" ] && dodoc ${doc}
done
}
|