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/findutils: ChangeLog findutils-4.4.0.ebuild
Date: Mon, 24 Mar 2008 19:30:50
Message-Id: E1JdsNb-00078u-Du@stork.gentoo.org
1 vapier 08/03/24 19:30:47
2
3 Modified: ChangeLog
4 Added: findutils-4.4.0.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_pre5)
8
9 Revision Changes Path
10 1.159 sys-apps/findutils/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/findutils/ChangeLog?rev=1.159&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/findutils/ChangeLog?rev=1.159&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/findutils/ChangeLog?r1=1.158&r2=1.159
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-apps/findutils/ChangeLog,v
19 retrieving revision 1.158
20 retrieving revision 1.159
21 diff -u -r1.158 -r1.159
22 --- ChangeLog 18 Mar 2008 12:32:25 -0000 1.158
23 +++ ChangeLog 24 Mar 2008 19:30:46 -0000 1.159
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sys-apps/findutils
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/findutils/ChangeLog,v 1.158 2008/03/18 12:32:25 vapier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/findutils/ChangeLog,v 1.159 2008/03/24 19:30:46 vapier Exp $
29 +
30 +*findutils-4.4.0 (24 Mar 2008)
31 +
32 + 24 Mar 2008; Mike Frysinger <vapier@g.o> +findutils-4.4.0.ebuild:
33 + Version bump.
34
35 18 Mar 2008; Mike Frysinger <vapier@g.o> findutils-4.2.33.ebuild:
36 Drop USE=build and use emake in src_install.
37
38
39
40 1.1 sys-apps/findutils/findutils-4.4.0.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/findutils/findutils-4.4.0.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/findutils/findutils-4.4.0.ebuild?rev=1.1&content-type=text/plain
44
45 Index: findutils-4.4.0.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/sys-apps/findutils/findutils-4.4.0.ebuild,v 1.1 2008/03/24 19:30:46 vapier Exp $
50
51 inherit eutils flag-o-matic toolchain-funcs multilib
52
53 SELINUX_PATCH="findutils-4.3.12-selinux.diff"
54
55 DESCRIPTION="GNU utilities for finding files"
56 HOMEPAGE="http://www.gnu.org/software/findutils/"
57 SRC_URI="ftp://alpha.gnu.org/gnu/${PN}/${P}.tar.gz
58 mirror://gnu/${PN}/${P}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
63 IUSE="nls selinux static"
64
65 RDEPEND="selinux? ( sys-libs/libselinux )
66 nls? ( virtual/libintl )"
67 DEPEND="${RDEPEND}
68 nls? ( sys-devel/gettext )"
69
70 src_unpack() {
71 unpack ${A}
72 cd "${S}"
73
74 # Don't build or install locate because it conflicts with slocate,
75 # which is a secure version of locate. See bug 18729
76 sed -i '/^SUBDIRS/s/locate//' Makefile.in
77
78 use selinux && epatch "${FILESDIR}/${SELINUX_PATCH}"
79 }
80
81 src_compile() {
82 use static && append-ldflags -static
83
84 local myconf
85 use userland_GNU || myconf=" --program-prefix=g"
86
87 if echo "#include <regex.h>" | $(tc-getCPP) > /dev/null ; then
88 myconf="${myconf} --without-included-regex"
89 fi
90
91 econf \
92 $(use_enable nls) \
93 --libexecdir=/usr/$(get_libdir)/find \
94 ${myconf} \
95 || die "configure failed"
96 emake AR="$(tc-getAR)" || die "make failed"
97 }
98
99 src_install() {
100 emake DESTDIR="${D}" install || die
101 dodoc NEWS README TODO ChangeLog
102 }
103
104
105
106 --
107 gentoo-commits@l.g.o mailing list