Gentoo Archives: gentoo-commits

From: "Jonathan Callen (abcd)" <abcd@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/acl: ChangeLog acl-2.2.47-r1.ebuild
Date: Tue, 29 Dec 2009 01:39:43
Message-Id: E1NPR39-0003wt-Jj@stork.gentoo.org
1 abcd 09/12/29 01:39:03
2
3 Modified: ChangeLog acl-2.2.47-r1.ebuild
4 Log:
5 Add prefix keywords (~amd64-linux, ~ia64-linux, ~x86-linux) and a patch to find make, et al. in PATH instead of hardcoded directories
6 (Portage version: -svn/cvs/Linux i686)
7
8 Revision Changes Path
9 1.101 sys-apps/acl/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/acl/ChangeLog?rev=1.101&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/acl/ChangeLog?rev=1.101&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/acl/ChangeLog?r1=1.100&r2=1.101
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sys-apps/acl/ChangeLog,v
18 retrieving revision 1.100
19 retrieving revision 1.101
20 diff -u -r1.100 -r1.101
21 --- ChangeLog 2 Jul 2009 01:30:24 -0000 1.100
22 +++ ChangeLog 29 Dec 2009 01:39:03 -0000 1.101
23 @@ -1,6 +1,11 @@
24 # ChangeLog for sys-apps/acl
25 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/acl/ChangeLog,v 1.100 2009/07/02 01:30:24 vapier Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/acl/ChangeLog,v 1.101 2009/12/29 01:39:03 abcd Exp $
28 +
29 + 29 Dec 2009; Jonathan Callen <abcd@g.o> acl-2.2.47-r1.ebuild,
30 + +files/acl-2.2.47-search-PATH.patch:
31 + Add prefix keywords (~amd64-linux, ~ia64-linux, ~x86-linux) and a patch to
32 + find make, et al. in PATH instead of hardcoded directories
33
34 *acl-2.2.47-r1 (02 Jul 2009)
35
36
37
38
39 1.2 sys-apps/acl/acl-2.2.47-r1.ebuild
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/acl/acl-2.2.47-r1.ebuild?rev=1.2&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/acl/acl-2.2.47-r1.ebuild?rev=1.2&content-type=text/plain
43 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/acl/acl-2.2.47-r1.ebuild?r1=1.1&r2=1.2
44
45 Index: acl-2.2.47-r1.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/sys-apps/acl/acl-2.2.47-r1.ebuild,v
48 retrieving revision 1.1
49 retrieving revision 1.2
50 diff -u -r1.1 -r1.2
51 --- acl-2.2.47-r1.ebuild 2 Jul 2009 01:30:24 -0000 1.1
52 +++ acl-2.2.47-r1.ebuild 29 Dec 2009 01:39:03 -0000 1.2
53 @@ -1,6 +1,6 @@
54 # Copyright 1999-2009 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/acl/acl-2.2.47-r1.ebuild,v 1.1 2009/07/02 01:30:24 vapier Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/acl/acl-2.2.47-r1.ebuild,v 1.2 2009/12/29 01:39:03 abcd Exp $
58
59 inherit eutils autotools toolchain-funcs
60
61 @@ -13,7 +13,7 @@
62
63 LICENSE="LGPL-2.1"
64 SLOT="0"
65 -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
66 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux"
67 IUSE="nfs nls"
68
69 RDEPEND=">=sys-apps/attr-2.4
70 @@ -35,6 +35,7 @@
71 epatch "${FILESDIR}"/${PN}-2.2.45-libtool.patch #158068
72 epatch "${FILESDIR}"/${PN}-2.2.45-linguas.patch #205948
73 epatch "${FILESDIR}"/${PN}-2.2.32-only-symlink-when-needed.patch
74 + epatch "${FILESDIR}"/${P}-search-PATH.patch
75 sed -i \
76 -e "/^PKG_DOC_DIR/s:@pkg_name@:${PF}:" \
77 -e '/HAVE_ZIPPED_MANPAGES/s:=.*:=false:' \
78 @@ -48,15 +49,16 @@
79 }
80
81 src_compile() {
82 + use prefix || EPREFIX=
83 unset PLATFORM #184564
84 export OPTIMIZER=${CFLAGS}
85 export DEBUG=-DNDEBUG
86
87 econf \
88 $(use_enable nls gettext) \
89 - --libexecdir=/usr/$(get_libdir) \
90 - --bindir=/bin \
91 - || die
92 + --libexecdir="${EPREFIX}"/usr/$(get_libdir) \
93 + --bindir="${EPREFIX}"/bin
94 +
95 emake || die
96 }
97
98 @@ -65,7 +67,5 @@
99 prepalldocs
100
101 # move shared libs to /
102 - dodir /$(get_libdir)
103 - mv "${D}"/usr/$(get_libdir)/libacl.so* "${D}"/$(get_libdir)/ || die
104 - gen_usr_ldscript libacl.so
105 + gen_usr_ldscript -a acl
106 }