Gentoo Archives: gentoo-commits

From: "Lars Wendler (polynomial-c)" <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/findutils: ChangeLog findutils-4.5.14.ebuild
Date: Fri, 01 Aug 2014 23:02:40
Message-Id: 20140801230233.4514A2004E@flycatcher.gentoo.org
1 polynomial-c 14/08/01 23:02:32
2
3 Modified: ChangeLog
4 Added: findutils-4.5.14.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0x981CA6FC)
9
10 Revision Changes Path
11 1.224 sys-apps/findutils/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/findutils/ChangeLog?rev=1.224&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/findutils/ChangeLog?rev=1.224&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/findutils/ChangeLog?r1=1.223&r2=1.224
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-apps/findutils/ChangeLog,v
20 retrieving revision 1.223
21 retrieving revision 1.224
22 diff -u -r1.223 -r1.224
23 --- ChangeLog 18 Jan 2014 03:28:45 -0000 1.223
24 +++ ChangeLog 1 Aug 2014 23:02:32 -0000 1.224
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-apps/findutils
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/findutils/ChangeLog,v 1.223 2014/01/18 03:28:45 vapier Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/findutils/ChangeLog,v 1.224 2014/08/01 23:02:32 polynomial-c Exp $
30 +
31 +*findutils-4.5.14 (01 Aug 2014)
32 +
33 + 01 Aug 2014; Lars Wendler <polynomial-c@g.o> +findutils-4.5.14.ebuild:
34 + Version bump.
35
36 18 Jan 2014; Mike Frysinger <vapier@g.o> findutils-4.4.2-r1.ebuild,
37 findutils-4.5.12.ebuild:
38
39
40
41 1.1 sys-apps/findutils/findutils-4.5.14.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/findutils/findutils-4.5.14.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/findutils/findutils-4.5.14.ebuild?rev=1.1&content-type=text/plain
45
46 Index: findutils-4.5.14.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sys-apps/findutils/findutils-4.5.14.ebuild,v 1.1 2014/08/01 23:02:32 polynomial-c Exp $
51
52 EAPI="5"
53
54 inherit eutils flag-o-matic toolchain-funcs multilib
55
56 DESCRIPTION="GNU utilities for finding files"
57 HOMEPAGE="http://www.gnu.org/software/findutils/"
58 SRC_URI="mirror://gnu-alpha/${PN}/${P}.tar.gz"
59
60 LICENSE="GPL-3+"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
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_prepare() {
71 # Don't build or install locate because it conflicts with slocate,
72 # which is a secure version of locate. See bug 18729
73 sed -i '/^SUBDIRS/s/locate//' Makefile.in
74 }
75
76 src_configure() {
77 use static && append-ldflags -static
78
79 program_prefix=$(usex userland_GNU '' g)
80 econf \
81 --with-packager="Gentoo" \
82 --with-packager-version="${PVR}" \
83 --with-packager-bug-reports="http://bugs.gentoo.org/" \
84 --program-prefix=${program_prefix} \
85 $(use_enable nls) \
86 $(use_with selinux) \
87 --libexecdir='$(libdir)'/find
88 }
89
90 src_install() {
91 emake DESTDIR="${D}" install
92 dodoc NEWS README TODO ChangeLog
93
94 # We don't need this, so punt it.
95 rm "${ED}"/usr/bin/${program_prefix}oldfind \
96 "${ED}"/usr/share/man/man1/${program_prefix}oldfind.1 || die
97 }