diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-06-22 03:59:39 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-06-22 03:59:39 +0000 |
commit | c987b4c8bf73335bf3ce28eecdca8490c578d384 (patch) | |
tree | 9566ff62826d61f1905bb9b4422ee77a4d777ff2 /sys-apps | |
parent | Fix spidermonkey versions for the new versioning scheme (diff) | |
download | gentoo-2-c987b4c8bf73335bf3ce28eecdca8490c578d384.tar.gz gentoo-2-c987b4c8bf73335bf3ce28eecdca8490c578d384.tar.bz2 gentoo-2-c987b4c8bf73335bf3ce28eecdca8490c578d384.zip |
Version bump.
(Portage version: 2.2.0_alpha41/cvs/Linux x86_64)
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/grep/ChangeLog | 7 | ||||
-rw-r--r-- | sys-apps/grep/grep-2.9.ebuild | 33 |
2 files changed, 39 insertions, 1 deletions
diff --git a/sys-apps/grep/ChangeLog b/sys-apps/grep/ChangeLog index 052c4cb753bd..a815d3724960 100644 --- a/sys-apps/grep/ChangeLog +++ b/sys-apps/grep/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-apps/grep # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/grep/ChangeLog,v 1.98 2011/05/14 10:36:32 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/grep/ChangeLog,v 1.99 2011/06/22 03:59:39 vapier Exp $ + +*grep-2.9 (22 Jun 2011) + + 22 Jun 2011; Mike Frysinger <vapier@gentoo.org> +grep-2.9.ebuild: + Version bump. *grep-2.8 (14 May 2011) diff --git a/sys-apps/grep/grep-2.9.ebuild b/sys-apps/grep/grep-2.9.ebuild new file mode 100644 index 000000000000..445d78344425 --- /dev/null +++ b/sys-apps/grep/grep-2.9.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/grep/grep-2.9.ebuild,v 1.1 2011/06/22 03:59:39 vapier Exp $ + +EAPI="3" + +DESCRIPTION="GNU regular expression matcher" +HOMEPAGE="http://www.gnu.org/software/grep/" +SRC_URI="mirror://gnu/${PN}/${P}.tar.xz + mirror://gentoo/${P}.tar.xz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd" +IUSE="nls pcre" + +RDEPEND="nls? ( virtual/libintl ) + pcre? ( >=dev-libs/libpcre-7.8-r1 )" +DEPEND="${RDEPEND} + nls? ( sys-devel/gettext )" + +src_configure() { + econf \ + --bindir=/bin \ + $(use_enable nls) \ + $(use_enable pcre perl-regexp) \ + $(use elibc_FreeBSD || echo --without-included-regex) +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc AUTHORS ChangeLog NEWS README THANKS TODO +} |