Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-libs/libcap-ng: ChangeLog libcap-ng-0.6.2.ebuild
Date: Mon, 26 Oct 2009 07:45:00
Message-Id: E1N2KG9-00049N-Ly@stork.gentoo.org
1 vapier 09/10/26 07:44:57
2
3 Modified: ChangeLog
4 Added: libcap-ng-0.6.2.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc46/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.3 sys-libs/libcap-ng/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/libcap-ng/ChangeLog?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/libcap-ng/ChangeLog?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/libcap-ng/ChangeLog?r1=1.2&r2=1.3
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-libs/libcap-ng/ChangeLog,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- ChangeLog 30 Sep 2009 08:36:38 -0000 1.2
23 +++ ChangeLog 26 Oct 2009 07:44:56 -0000 1.3
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sys-libs/libcap-ng
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libcap-ng/ChangeLog,v 1.2 2009/09/30 08:36:38 fauli Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libcap-ng/ChangeLog,v 1.3 2009/10/26 07:44:56 vapier Exp $
29 +
30 +*libcap-ng-0.6.2 (26 Oct 2009)
31 +
32 + 26 Oct 2009; Mike Frysinger <vapier@g.o> +libcap-ng-0.6.2.ebuild:
33 + Version bump.
34
35 30 Sep 2009; Christian Faulhammer <fauli@g.o>
36 libcap-ng-0.6.1.ebuild:
37
38
39
40 1.1 sys-libs/libcap-ng/libcap-ng-0.6.2.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/libcap-ng/libcap-ng-0.6.2.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/libcap-ng/libcap-ng-0.6.2.ebuild?rev=1.1&content-type=text/plain
44
45 Index: libcap-ng-0.6.2.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/sys-libs/libcap-ng/libcap-ng-0.6.2.ebuild,v 1.1 2009/10/26 07:44:56 vapier Exp $
50
51 EAPI="2"
52
53 inherit eutils autotools
54
55 DESCRIPTION="POSIX 1003.1e capabilities"
56 HOMEPAGE="http://people.redhat.com/sgrubb/libcap-ng/"
57 SRC_URI="http://people.redhat.com/sgrubb/libcap-ng/${P}.tar.gz"
58
59 LICENSE="LGPL-2.1"
60 SLOT="0"
61 KEYWORDS="~amd64 ~x86"
62 IUSE="python"
63
64 RDEPEND="sys-apps/attr
65 python? ( dev-lang/python )"
66 DEPEND="${RDEPEND}
67 sys-kernel/linux-headers
68 python? ( dev-lang/swig )"
69
70 src_prepare() {
71 epatch "${FILESDIR}"/${PN}-gentoo.patch
72 eautoreconf
73 }
74
75 src_configure() {
76 econf $(use_enable python) || die "econf failed"
77 }
78
79 src_install() {
80 emake install DESTDIR="${D}" || die "emake install failed"
81 dodoc ChangeLog README
82 }