diff options
author | 2013-10-27 07:21:05 +0000 | |
---|---|---|
committer | 2013-10-27 07:21:05 +0000 | |
commit | 27c2b1d68c677f2b514e6c88894cf1dc354eeea6 (patch) | |
tree | 400e538ec72841a5168c01bd1a2e6068f930eb7e /sys-apps/grep | |
parent | Remove old. (diff) | |
download | gentoo-2-27c2b1d68c677f2b514e6c88894cf1dc354eeea6.tar.gz gentoo-2-27c2b1d68c677f2b514e6c88894cf1dc354eeea6.tar.bz2 gentoo-2-27c2b1d68c677f2b514e6c88894cf1dc354eeea6.zip |
Version bump.
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'sys-apps/grep')
-rw-r--r-- | sys-apps/grep/ChangeLog | 7 | ||||
-rw-r--r-- | sys-apps/grep/grep-2.15.ebuild | 30 |
2 files changed, 36 insertions, 1 deletions
diff --git a/sys-apps/grep/ChangeLog b/sys-apps/grep/ChangeLog index fe0d7c102539..6d3aa3eb7539 100644 --- a/sys-apps/grep/ChangeLog +++ b/sys-apps/grep/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-apps/grep # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/grep/ChangeLog,v 1.126 2013/06/05 00:35:10 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/grep/ChangeLog,v 1.127 2013/10/27 07:21:05 radhermit Exp $ + +*grep-2.15 (27 Oct 2013) + + 27 Oct 2013; Tim Harder <radhermit@gentoo.org> +grep-2.15.ebuild: + Version bump. 05 Jun 2013; Mike Frysinger <vapier@gentoo.org> metadata.xml: Add upstream CPE tag (security info) from ChromiumOS. diff --git a/sys-apps/grep/grep-2.15.ebuild b/sys-apps/grep/grep-2.15.ebuild new file mode 100644 index 000000000000..7b1861da9e9c --- /dev/null +++ b/sys-apps/grep/grep-2.15.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/grep/grep-2.15.ebuild,v 1.1 2013/10/27 07:21:05 radhermit Exp $ + +EAPI="4" + +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 )" + +DOCS=( AUTHORS ChangeLog NEWS README THANKS TODO ) + +src_configure() { + econf \ + --bindir="${EPREFIX}"/bin \ + $(use_enable nls) \ + $(use_enable pcre perl-regexp) +} |