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.5.3.ebuild
Date: Thu, 25 Dec 2008 21:30:56
Message-Id: E1LFxnB-0005Y3-BH@stork.gentoo.org
1 vapier 08/12/25 21:30:53
2
3 Modified: ChangeLog
4 Added: findutils-4.5.3.ebuild
5 Log:
6 Version bump #251548 by Lars (Polynomial-C).
7 (Portage version: 2.2_rc18/cvs/Linux 2.6.28 x86_64)
8
9 Revision Changes Path
10 1.177 sys-apps/findutils/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/findutils/ChangeLog?rev=1.177&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/findutils/ChangeLog?rev=1.177&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/findutils/ChangeLog?r1=1.176&r2=1.177
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-apps/findutils/ChangeLog,v
19 retrieving revision 1.176
20 retrieving revision 1.177
21 diff -u -r1.176 -r1.177
22 --- ChangeLog 30 Nov 2008 16:01:19 -0000 1.176
23 +++ ChangeLog 25 Dec 2008 21:30:53 -0000 1.177
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.176 2008/11/30 16:01:19 maekke Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/findutils/ChangeLog,v 1.177 2008/12/25 21:30:53 vapier Exp $
29 +
30 +*findutils-4.5.3 (25 Dec 2008)
31 +
32 + 25 Dec 2008; Mike Frysinger <vapier@g.o> +findutils-4.5.3.ebuild:
33 + Version bump #251548 by Lars (Polynomial-C).
34
35 30 Nov 2008; Markus Meier <maekke@g.o> findutils-4.2.33.ebuild:
36 amd64 stable, bug #249136
37
38
39
40 1.1 sys-apps/findutils/findutils-4.5.3.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/findutils/findutils-4.5.3.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/findutils/findutils-4.5.3.ebuild?rev=1.1&content-type=text/plain
44
45 Index: findutils-4.5.3.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.5.3.ebuild,v 1.1 2008/12/25 21:30:53 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 }