Gentoo Archives: gentoo-commits

From: "Anthony G. Basile (blueness)" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/paxctl: paxctl-0.8.ebuild ChangeLog paxctl-0.5.ebuild paxctl-0.4.ebuild paxctl-0.7-r1.ebuild
Date: Mon, 05 May 2014 12:20:38
Message-Id: 20140505122033.9F0742004C@flycatcher.gentoo.org
1 blueness 14/05/05 12:20:33
2
3 Modified: ChangeLog
4 Added: paxctl-0.8.ebuild
5 Removed: paxctl-0.5.ebuild paxctl-0.4.ebuild
6 paxctl-0.7-r1.ebuild
7 Log:
8 Version bump, remove older
9
10 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
11
12 Revision Changes Path
13 1.53 sys-apps/paxctl/ChangeLog
14
15 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/paxctl/ChangeLog?rev=1.53&view=markup
16 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/paxctl/ChangeLog?rev=1.53&content-type=text/plain
17 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/paxctl/ChangeLog?r1=1.52&r2=1.53
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/sys-apps/paxctl/ChangeLog,v
22 retrieving revision 1.52
23 retrieving revision 1.53
24 diff -u -r1.52 -r1.53
25 --- ChangeLog 27 Aug 2012 17:43:30 -0000 1.52
26 +++ ChangeLog 5 May 2014 12:20:33 -0000 1.53
27 @@ -1,6 +1,12 @@
28 # ChangeLog for sys-apps/paxctl
29 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/paxctl/ChangeLog,v 1.52 2012/08/27 17:43:30 armin76 Exp $
31 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
32 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/paxctl/ChangeLog,v 1.53 2014/05/05 12:20:33 blueness Exp $
33 +
34 +*paxctl-0.8 (05 May 2014)
35 +
36 + 05 May 2014; Anthony G. Basile <blueness@g.o> +paxctl-0.8.ebuild,
37 + -paxctl-0.4.ebuild, -paxctl-0.5.ebuild, -paxctl-0.7-r1.ebuild:
38 + Version bump, remove older
39
40 27 Aug 2012; Raúl Porcel <armin76@g.o> paxctl-0.7-r2.ebuild:
41 alpha/ia64/s390/sh/sparc stable wrt #429202
42 @@ -189,4 +195,3 @@
43 and the newer ET_DYN kind (older PaX releases referred to the latter
44 as ET_DYN executables, these days they are called Position Independent
45 Executables or PIEs for short).
46 -
47
48
49
50 1.1 sys-apps/paxctl/paxctl-0.8.ebuild
51
52 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/paxctl/paxctl-0.8.ebuild?rev=1.1&view=markup
53 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/paxctl/paxctl-0.8.ebuild?rev=1.1&content-type=text/plain
54
55 Index: paxctl-0.8.ebuild
56 ===================================================================
57 # Copyright 1999-2014 Gentoo Foundation
58 # Distributed under the terms of the GNU General Public License v2
59 # $Header: /var/cvsroot/gentoo-x86/sys-apps/paxctl/paxctl-0.8.ebuild,v 1.1 2014/05/05 12:20:33 blueness Exp $
60
61 EAPI="5"
62
63 inherit toolchain-funcs
64
65 DESCRIPTION="Manages various PaX related program header flags for Elf32, Elf64, binaries"
66 SRC_URI="http://pax.grsecurity.net/${P}.tar.gz"
67 HOMEPAGE="http://pax.grsecurity.net"
68
69 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
70 IUSE=""
71 LICENSE="GPL-2"
72 SLOT="0"
73
74 DEPEND=">=sys-devel/binutils-2.14.90.0.8-r1"
75 RDEPEND=""
76
77 src_prepare() {
78 sed \
79 "s:--owner 0 --group 0::g" \
80 -i Makefile || die
81 }
82
83 src_compile() {
84 emake \
85 CC="$(tc-getCC)" \
86 CFLAGS="${CFLAGS}" \
87 LDFLAGS="${LDFLAGS}"
88 }
89
90 src_install () {
91 emake DESTDIR="${ED}" install
92 dodoc README ChangeLog
93 }