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/attr: attr-2.4.47.ebuild ChangeLog
Date: Mon, 20 May 2013 18:43:24
Message-Id: 20130520184316.889B72171D@flycatcher.gentoo.org
1 vapier 13/05/20 18:43:16
2
3 Modified: ChangeLog
4 Added: attr-2.4.47.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.146 sys-apps/attr/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/attr/ChangeLog?rev=1.146&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/attr/ChangeLog?rev=1.146&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/attr/ChangeLog?r1=1.145&r2=1.146
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-apps/attr/ChangeLog,v
20 retrieving revision 1.145
21 retrieving revision 1.146
22 diff -u -r1.145 -r1.146
23 --- ChangeLog 21 Mar 2013 15:11:57 -0000 1.145
24 +++ ChangeLog 20 May 2013 18:43:16 -0000 1.146
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-apps/attr
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/attr/ChangeLog,v 1.145 2013/03/21 15:11:57 jer Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/attr/ChangeLog,v 1.146 2013/05/20 18:43:16 vapier Exp $
30 +
31 +*attr-2.4.47 (20 May 2013)
32 +
33 + 20 May 2013; Mike Frysinger <vapier@g.o> +attr-2.4.47.ebuild:
34 + Version bump.
35
36 21 Mar 2013; Jeroen Roovers <jer@g.o> attr-2.4.46-r2.ebuild:
37 Stable for HPPA (bug #212517).
38
39
40
41 1.1 sys-apps/attr/attr-2.4.47.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/attr/attr-2.4.47.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/attr/attr-2.4.47.ebuild?rev=1.1&content-type=text/plain
45
46 Index: attr-2.4.47.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/attr/attr-2.4.47.ebuild,v 1.1 2013/05/20 18:43:16 vapier Exp $
51
52 EAPI="4"
53
54 inherit eutils toolchain-funcs
55
56 DESCRIPTION="Extended attributes tools"
57 HOMEPAGE="http://savannah.nongnu.org/projects/attr"
58 SRC_URI="mirror://nongnu/${PN}/${P}.src.tar.gz"
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 ~arm-linux ~x86-linux"
63 IUSE="nls static-libs"
64
65 DEPEND="nls? ( sys-devel/gettext )
66 sys-devel/autoconf"
67 RDEPEND=""
68
69 src_prepare() {
70 sed -i \
71 -e "/^PKG_DOC_DIR/s:@pkg_name@:${PF}:" \
72 -e '/HAVE_ZIPPED_MANPAGES/s:=.*:=false:' \
73 include/builddefs.in \
74 || die
75 strip-linguas -u po
76 }
77
78 src_configure() {
79 unset PLATFORM #184564
80 export OPTIMIZER=${CFLAGS}
81 export DEBUG=-DNDEBUG
82
83 econf \
84 $(use_enable nls gettext) \
85 --enable-shared $(use_enable static-libs static) \
86 --libexecdir="${EPREFIX}"/usr/$(get_libdir) \
87 --bindir="${EPREFIX}"/bin
88 }
89
90 src_install() {
91 emake DIST_ROOT="${D}" install install-lib install-dev
92 use static-libs || find "${ED}" -name '*.la' -delete
93 # the man-pages packages provides the man2 files
94 rm -r "${ED}"/usr/share/man/man2 || die
95
96 # we install attr into /bin, so we need the shared lib with it
97 gen_usr_ldscript -a attr
98 }