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