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/grep: grep-2.10.ebuild ChangeLog
Date: Wed, 16 Nov 2011 17:13:13
Message-Id: 20111116171301.B61722004B@flycatcher.gentoo.org
1 vapier 11/11/16 17:13:01
2
3 Modified: ChangeLog
4 Added: grep-2.10.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha74/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.102 sys-apps/grep/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/grep/ChangeLog?rev=1.102&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/grep/ChangeLog?rev=1.102&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/grep/ChangeLog?r1=1.101&r2=1.102
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-apps/grep/ChangeLog,v
20 retrieving revision 1.101
21 retrieving revision 1.102
22 diff -u -r1.101 -r1.102
23 --- ChangeLog 13 Aug 2011 11:18:27 -0000 1.101
24 +++ ChangeLog 16 Nov 2011 17:13:01 -0000 1.102
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-apps/grep
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/grep/ChangeLog,v 1.101 2011/08/13 11:18:27 grobian Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/grep/ChangeLog,v 1.102 2011/11/16 17:13:01 vapier Exp $
30 +
31 +*grep-2.10 (16 Nov 2011)
32 +
33 + 16 Nov 2011; Mike Frysinger <vapier@g.o> +grep-2.10.ebuild:
34 + Version bump.
35
36 13 Aug 2011; Fabian Groffen <grobian@g.o> grep-2.9.ebuild:
37 Add Prefix support, transferred Prefix keywords
38
39
40
41 1.1 sys-apps/grep/grep-2.10.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/grep/grep-2.10.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/grep/grep-2.10.ebuild?rev=1.1&content-type=text/plain
45
46 Index: grep-2.10.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sys-apps/grep/grep-2.10.ebuild,v 1.1 2011/11/16 17:13:01 vapier Exp $
51
52 EAPI="3"
53
54 DESCRIPTION="GNU regular expression matcher"
55 HOMEPAGE="http://www.gnu.org/software/grep/"
56 SRC_URI="mirror://gnu/${PN}/${P}.tar.xz
57 mirror://gentoo/${P}.tar.xz"
58
59 LICENSE="GPL-3"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~ppc-aix ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
62 IUSE="nls pcre"
63
64 RDEPEND="nls? ( virtual/libintl )
65 pcre? ( >=dev-libs/libpcre-7.8-r1 )
66 virtual/libiconv"
67 DEPEND="${RDEPEND}
68 nls? ( sys-devel/gettext )"
69
70 src_configure() {
71 econf \
72 --bindir="${EPREFIX}"/bin \
73 $(use_enable nls) \
74 $(use_enable pcre perl-regexp) \
75 $(use !elibc_glibc || echo --without-included-regex)
76 }
77
78 src_install() {
79 emake DESTDIR="${D}" install || die
80 dodoc AUTHORS ChangeLog NEWS README THANKS TODO
81 }