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: ChangeLog acl-2.2.49.ebuild
Date: Sat, 09 Jan 2010 03:02:09
Message-Id: E1NTRaX-0007C2-7s@stork.gentoo.org
1 vapier 10/01/09 03:02:05
2
3 Modified: ChangeLog
4 Added: acl-2.2.49.ebuild
5 Log:
6 Version bump #292842 by Mr. Anderson.
7 (Portage version: 2.2_rc61/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.102 sys-apps/acl/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/acl/ChangeLog?rev=1.102&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/acl/ChangeLog?rev=1.102&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/acl/ChangeLog?r1=1.101&r2=1.102
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-apps/acl/ChangeLog,v
19 retrieving revision 1.101
20 retrieving revision 1.102
21 diff -u -r1.101 -r1.102
22 --- ChangeLog 29 Dec 2009 01:39:03 -0000 1.101
23 +++ ChangeLog 9 Jan 2010 03:02:04 -0000 1.102
24 @@ -1,6 +1,12 @@
25 # ChangeLog for sys-apps/acl
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/acl/ChangeLog,v 1.101 2009/12/29 01:39:03 abcd Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/acl/ChangeLog,v 1.102 2010/01/09 03:02:04 vapier Exp $
30 +
31 +*acl-2.2.49 (09 Jan 2010)
32 +
33 + 09 Jan 2010; Mike Frysinger <vapier@g.o> +acl-2.2.49.ebuild,
34 + +files/acl-2.2.49-quote-strchr.patch:
35 + Version bump #292842 by Mr. Anderson.
36
37 29 Dec 2009; Jonathan Callen <abcd@g.o> acl-2.2.47-r1.ebuild,
38 +files/acl-2.2.47-search-PATH.patch:
39
40
41
42 1.1 sys-apps/acl/acl-2.2.49.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/acl/acl-2.2.49.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/acl/acl-2.2.49.ebuild?rev=1.1&content-type=text/plain
46
47 Index: acl-2.2.49.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sys-apps/acl/acl-2.2.49.ebuild,v 1.1 2010/01/09 03:02:04 vapier Exp $
52
53 inherit eutils toolchain-funcs
54
55 DESCRIPTION="access control list utilities, libraries and headers"
56 HOMEPAGE="http://savannah.nongnu.org/projects/acl"
57 SRC_URI="http://download.savannah.gnu.org/releases/${PN}/${P}.src.tar.gz
58 nfs? ( http://www.citi.umich.edu/projects/nfsv4/linux/acl-patches/2.2.42-2/acl-2.2.42-CITI_NFS4_ALL-2.dif )"
59
60 LICENSE="LGPL-2.1"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux"
63 IUSE="nfs nls"
64
65 RDEPEND=">=sys-apps/attr-2.4
66 nfs? ( net-libs/libnfsidmap )"
67 DEPEND="${RDEPEND}
68 nls? ( sys-devel/gettext )"
69
70 src_unpack() {
71 unpack ${P}.src.tar.gz
72 cd "${S}"
73 if use nfs ; then
74 cp "${DISTDIR}"/acl-2.2.42-CITI_NFS4_ALL-2.dif . || die
75 sed -i \
76 -e '/^diff --git a.debian.changelog b.debian.changelog/,/^diff --git/d' \
77 acl-2.2.42-CITI_NFS4_ALL-2.dif || die
78 epatch acl-2.2.42-CITI_NFS4_ALL-2.dif
79 fi
80 epatch "${FILESDIR}"/${P}-quote-strchr.patch
81 sed -i \
82 -e '/^as_dummy=/s:=":="$PATH$PATH_SEPARATOR:' \
83 configure # hack PATH with AC_PATH_PROG
84 sed -i \
85 -e "/^PKG_DOC_DIR/s:@pkg_name@:${PF}:" \
86 -e '/HAVE_ZIPPED_MANPAGES/s:=.*:=false:' \
87 include/builddefs.in \
88 || die "failed to update builddefs"
89 strip-linguas po
90 }
91
92 src_compile() {
93 use prefix || EPREFIX=
94 unset PLATFORM #184564
95 export OPTIMIZER=${CFLAGS}
96 export DEBUG=-DNDEBUG
97
98 econf \
99 $(use_enable nls gettext) \
100 --libexecdir="${EPREFIX}"/usr/$(get_libdir) \
101 --bindir="${EPREFIX}"/bin
102
103 emake || die
104 }
105
106 src_install() {
107 emake DIST_ROOT="${D}" install install-dev install-lib || die
108 prepalldocs
109
110 # move shared libs to /
111 gen_usr_ldscript -a acl
112 }