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/elfix: elfix-0.9.0-r1.ebuild ChangeLog
Date: Sun, 28 Dec 2014 18:26:55
Message-Id: 20141228182651.AF230E5DE@oystercatcher.gentoo.org
1 blueness 14/12/28 18:26:51
2
3 Modified: ChangeLog
4 Added: elfix-0.9.0-r1.ebuild
5 Log:
6 Backport fixes for paxmark.sh and revdep-pax.
7
8 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
9
10 Revision Changes Path
11 1.92 sys-apps/elfix/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?rev=1.92&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?rev=1.92&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?r1=1.91&r2=1.92
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-apps/elfix/ChangeLog,v
20 retrieving revision 1.91
21 retrieving revision 1.92
22 diff -u -r1.91 -r1.92
23 --- ChangeLog 27 Dec 2014 19:25:38 -0000 1.91
24 +++ ChangeLog 28 Dec 2014 18:26:51 -0000 1.92
25 @@ -1,6 +1,13 @@
26 # ChangeLog for sys-apps/elfix
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/elfix/ChangeLog,v 1.91 2014/12/27 19:25:38 ago Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/elfix/ChangeLog,v 1.92 2014/12/28 18:26:51 blueness Exp $
30 +
31 +*elfix-0.9.0-r1 (28 Dec 2014)
32 +
33 + 28 Dec 2014; Anthony G. Basile <blueness@g.o> +elfix-0.9.0-r1.ebuild,
34 + +files/elfix-0.9.0-backport-fix-paxmark_sh.patch,
35 + +files/elfix-0.9.0-backport-fix-revdep-pax.patch:
36 + Backport fixes for paxmark.sh and revdep-pax.
37
38 27 Dec 2014; Agostino Sarubbo <ago@g.o> elfix-0.9.0.ebuild:
39 Stable for amd64, wrt bug #530570
40
41
42
43 1.1 sys-apps/elfix/elfix-0.9.0-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/elfix-0.9.0-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/elfix-0.9.0-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: elfix-0.9.0-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sys-apps/elfix/elfix-0.9.0-r1.ebuild,v 1.1 2014/12/28 18:26:51 blueness Exp $
53
54 EAPI="5"
55
56 inherit eutils
57
58 DESCRIPTION="A suite of tools to work with ELF objects on Hardened Gentoo"
59 HOMEPAGE="http://www.gentoo.org/proj/en/hardened/pax-quickstart.xml
60 http://dev.gentoo.org/~blueness/elfix/"
61 SRC_URI="http://dev.gentoo.org/~blueness/elfix/${P}.tar.gz"
62
63 LICENSE="GPL-3"
64 SLOT="0"
65 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
66 IUSE="+ptpax +xtpax"
67
68 REQUIRED_USE="|| ( ptpax xtpax )"
69
70 # These only work with a properly configured PaX kernel
71 RESTRICT="test"
72
73 DEPEND="~dev-python/pypax-${PV}[ptpax=,xtpax=]
74 ptpax? ( dev-libs/elfutils )
75 xtpax? ( sys-apps/attr )"
76
77 RDEPEND="${DEPEND}"
78
79 src_prepare() {
80 epatch "${FILESDIR}"/${P}-backport-fix-paxmark_sh.patch
81 epatch "${FILESDIR}"/${P}-backport-fix-revdep-pax.patch
82 }
83
84 src_configure() {
85 rm -f "${S}/scripts/setup.py"
86 econf --disable-tests \
87 $(use_enable ptpax) \
88 $(use_enable xtpax)
89 }
90
91 src_install() {
92 emake DESTDIR="${D}" install
93 dodoc AUTHORS ChangeLog INSTALL README THANKS TODO
94 }