diff options
author | Mike Frysinger <vapier@gentoo.org> | 2012-08-20 17:41:08 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2012-08-20 17:41:08 +0000 |
commit | 30b9e061c9cd2109039454438f2eeffa9b235358 (patch) | |
tree | cf3be9ff950d23157a3484fdee43849b5248eddb /sys-apps/grep | |
parent | Remove old. (diff) | |
download | gentoo-2-30b9e061c9cd2109039454438f2eeffa9b235358.tar.gz gentoo-2-30b9e061c9cd2109039454438f2eeffa9b235358.tar.bz2 gentoo-2-30b9e061c9cd2109039454438f2eeffa9b235358.zip |
Version bump.
(Portage version: 2.2.0_alpha120/cvs/Linux x86_64)
Diffstat (limited to 'sys-apps/grep')
-rw-r--r-- | sys-apps/grep/ChangeLog | 7 | ||||
-rw-r--r-- | sys-apps/grep/grep-2.14.ebuild | 33 |
2 files changed, 39 insertions, 1 deletions
diff --git a/sys-apps/grep/ChangeLog b/sys-apps/grep/ChangeLog index 5b4d7d29199b..6b469a5581a9 100644 --- a/sys-apps/grep/ChangeLog +++ b/sys-apps/grep/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-apps/grep # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/grep/ChangeLog,v 1.115 2012/08/05 18:00:05 johu Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/grep/ChangeLog,v 1.116 2012/08/20 17:41:08 vapier Exp $ + +*grep-2.14 (20 Aug 2012) + + 20 Aug 2012; Mike Frysinger <vapier@gentoo.org> +grep-2.14.ebuild: + Version bump. 05 Aug 2012; Johannes Huber <johu@gentoo.org> grep-2.12.ebuild: Stable for x86, wrt bug #429694 diff --git a/sys-apps/grep/grep-2.14.ebuild b/sys-apps/grep/grep-2.14.ebuild new file mode 100644 index 000000000000..26a3308d92d8 --- /dev/null +++ b/sys-apps/grep/grep-2.14.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/grep/grep-2.14.ebuild,v 1.1 2012/08/20 17:41:08 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 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~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" +IUSE="nls pcre" + +RDEPEND="nls? ( virtual/libintl ) + pcre? ( >=dev-libs/libpcre-7.8-r1 ) + virtual/libiconv" +DEPEND="${RDEPEND} + nls? ( sys-devel/gettext )" + +src_configure() { + econf \ + --bindir="${EPREFIX}"/bin \ + $(use_enable nls) \ + $(use_enable pcre perl-regexp) +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc AUTHORS ChangeLog NEWS README THANKS TODO +} |