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