blob: 410d789f8f28b8d2e93241e5c35a9197024cabb8 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/chpax/chpax-0.7.ebuild,v 1.1 2004/07/22 22:07:08 solar Exp $
inherit flag-o-matic gcc
DESCRIPTION="Manages various PaX related flags for ELF32, ELF64, and a.out binaries."
HOMEPAGE="http://pax.grsecurity.net/"
SRC_URI="mirror://chpax-${PV}.tar.gz
http://pax.grsecurity.net/${P}.tar.gz"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="~x86 ~ppc ~ppc64 ~sparc ~mips ~alpha ~arm ~hppa ~amd64 ~ia64"
IUSE=""
DEPEND="virtual/libc
>=sys-apps/sed-4"
src_unpack() {
unpack ${A}
cd ${S}
sed -i -e "s|-Wall|${CFLAGS}|" Makefile
}
src_compile() {
# use static && append-ldflags -static ; # breaks with current ssp.
emake CC="$(gcc-getCC)" TARGET="chpax ${LDFLAGS:0}" || die "Parallel Make Failed"
}
src_install() {
into /
dosbin chpax || die
fperms 711 /sbin/chpax
dodoc Changelog README
doman chpax.1
insinto /etc/conf.d
newins ${FILESDIR}/pax-conf.d chpax
exeinto /etc/init.d
newexe ${FILESDIR}/pax-init.d chpax
}
|