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-apps/acl: acl-2.2.52.ebuild ChangeLog
Date: Mon, 20 May 2013 17:55:35
Message-Id: 20130520175521.8C6222171D@flycatcher.gentoo.org
1 vapier 13/05/20 17:55:21
2
3 Modified: ChangeLog
4 Added: acl-2.2.52.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha170/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)
9
10 Revision Changes Path
11 1.120 sys-apps/acl/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/acl/ChangeLog?rev=1.120&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/acl/ChangeLog?rev=1.120&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/acl/ChangeLog?r1=1.119&r2=1.120
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-apps/acl/ChangeLog,v
20 retrieving revision 1.119
21 retrieving revision 1.120
22 diff -u -r1.119 -r1.120
23 --- ChangeLog 19 Feb 2013 05:08:46 -0000 1.119
24 +++ ChangeLog 20 May 2013 17:55:21 -0000 1.120
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-apps/acl
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/acl/ChangeLog,v 1.119 2013/02/19 05:08:46 zmedico Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/acl/ChangeLog,v 1.120 2013/05/20 17:55:21 vapier Exp $
30 +
31 +*acl-2.2.52 (20 May 2013)
32 +
33 + 20 May 2013; Mike Frysinger <vapier@g.o> +acl-2.2.52.ebuild:
34 + Version bump.
35
36 19 Feb 2013; Zac Medico <zmedico@g.o> acl-2.2.51.ebuild:
37 Add ~arm-linux keyword.
38
39
40
41 1.1 sys-apps/acl/acl-2.2.52.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/acl/acl-2.2.52.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/acl/acl-2.2.52.ebuild?rev=1.1&content-type=text/plain
45
46 Index: acl-2.2.52.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sys-apps/acl/acl-2.2.52.ebuild,v 1.1 2013/05/20 17:55:21 vapier Exp $
51
52 EAPI="4"
53
54 inherit eutils toolchain-funcs
55
56 DESCRIPTION="access control list utilities, libraries and headers"
57 HOMEPAGE="http://savannah.nongnu.org/projects/acl"
58 SRC_URI="http://download.savannah.gnu.org/releases/${PN}/${P}.src.tar.gz
59 nfs? ( http://www.citi.umich.edu/projects/nfsv4/linux/acl-patches/2.2.42-2/acl-2.2.42-CITI_NFS4_ALL-2.dif )"
60
61 LICENSE="LGPL-2.1"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux"
64 IUSE="nfs nls static-libs"
65
66 RDEPEND=">=sys-apps/attr-2.4
67 nfs? ( net-libs/libnfsidmap )"
68 DEPEND="${RDEPEND}
69 nls? ( sys-devel/gettext )"
70
71 src_prepare() {
72 if use nfs ; then
73 cp "${DISTDIR}"/acl-2.2.42-CITI_NFS4_ALL-2.dif . || die
74 sed -i \
75 -e '/^diff --git a.debian.changelog b.debian.changelog/,/^diff --git/d' \
76 acl-2.2.42-CITI_NFS4_ALL-2.dif || die
77 epatch acl-2.2.42-CITI_NFS4_ALL-2.dif
78 fi
79 sed -i \
80 -e "/^PKG_DOC_DIR/s:@pkg_name@:${PF}:" \
81 -e '/HAVE_ZIPPED_MANPAGES/s:=.*:=false:' \
82 include/builddefs.in \
83 || die
84 strip-linguas po
85 }
86
87 src_configure() {
88 unset PLATFORM #184564
89 export OPTIMIZER=${CFLAGS}
90 export DEBUG=-DNDEBUG
91
92 econf \
93 $(use_enable nls gettext) \
94 --enable-shared $(use_enable static-libs static) \
95 --libexecdir="${EPREFIX}"/usr/$(get_libdir) \
96 --bindir="${EPREFIX}"/bin
97 }
98
99 src_install() {
100 emake DIST_ROOT="${D}" install install-dev install-lib || die
101 use static-libs || find "${ED}" -name '*.la' -delete
102
103 # move shared libs to /
104 gen_usr_ldscript -a acl
105 }