summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wendler <polynomial-c@gentoo.org>2014-01-04 17:48:58 +0000
committerLars Wendler <polynomial-c@gentoo.org>2014-01-04 17:48:58 +0000
commita9002a1fc71def791dbb1601f5e2a40497210717 (patch)
treeff6f672a06c1ef65b355ed5d47088d9db83686ab /sys-apps/grep
parentRemoved old versions and files (diff)
downloadgentoo-2-a9002a1fc71def791dbb1601f5e2a40497210717.tar.gz
gentoo-2-a9002a1fc71def791dbb1601f5e2a40497210717.tar.bz2
gentoo-2-a9002a1fc71def791dbb1601f5e2a40497210717.zip
Removed old versions and files
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0x981CA6FC)
Diffstat (limited to 'sys-apps/grep')
-rw-r--r--sys-apps/grep/ChangeLog9
-rw-r--r--sys-apps/grep/files/grep-2.5.3-nls.patch50
-rw-r--r--sys-apps/grep/files/grep-2.5.3-po-builddir-fix.patch10
-rw-r--r--sys-apps/grep/grep-2.10.ebuild34
-rw-r--r--sys-apps/grep/grep-2.11.ebuild33
-rw-r--r--sys-apps/grep/grep-2.12.ebuild33
-rw-r--r--sys-apps/grep/grep-2.13.ebuild33
-rw-r--r--sys-apps/grep/grep-2.15.ebuild30
-rw-r--r--sys-apps/grep/grep-2.5.4-r1.ebuild41
-rw-r--r--sys-apps/grep/grep-2.6.3.ebuild38
-rw-r--r--sys-apps/grep/grep-2.7.ebuild33
-rw-r--r--sys-apps/grep/grep-2.8.ebuild33
-rw-r--r--sys-apps/grep/grep-2.9.ebuild34
13 files changed, 8 insertions, 403 deletions
diff --git a/sys-apps/grep/ChangeLog b/sys-apps/grep/ChangeLog
index 7b6ee0aacc22..69197fcbf04d 100644
--- a/sys-apps/grep/ChangeLog
+++ b/sys-apps/grep/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for sys-apps/grep
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/grep/ChangeLog,v 1.129 2014/01/02 11:36:19 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/grep/ChangeLog,v 1.130 2014/01/04 17:48:58 polynomial-c Exp $
+
+ 04 Jan 2014; Lars Wendler <polynomial-c@gentoo.org> -grep-2.5.4-r1.ebuild,
+ -grep-2.6.3.ebuild, -grep-2.7.ebuild, -grep-2.8.ebuild, -grep-2.9.ebuild,
+ -grep-2.10.ebuild, -grep-2.11.ebuild, -grep-2.12.ebuild, -grep-2.13.ebuild,
+ -grep-2.15.ebuild, -files/grep-2.5.3-nls.patch,
+ -files/grep-2.5.3-po-builddir-fix.patch:
+ Removed old versions and files.
*grep-2.16 (02 Jan 2014)
diff --git a/sys-apps/grep/files/grep-2.5.3-nls.patch b/sys-apps/grep/files/grep-2.5.3-nls.patch
deleted file mode 100644
index eec06be4b910..000000000000
--- a/sys-apps/grep/files/grep-2.5.3-nls.patch
+++ /dev/null
@@ -1,50 +0,0 @@
-Fixes compilation with -nls useflag on FreeBSD (and probably others).
-
-See http://bugs.gentoo.org/253777.
-
---- grep-2.5.3.orig/lib/error.c
-+++ grep-2.5.3/lib/error.c
-@@ -26,8 +26,8 @@
- #endif
-
- #include <stdio.h>
--#if HAVE_LIBINTL_H
--# include <libintl.h>
-+#if defined(HAVE_LIBINTL_H) && defined(ENABLE_NLS)
-+# include <libintl.h>
- #endif
-
- #if HAVE_VPRINTF || HAVE_DOPRNT || _LIBC
---- grep-2.5.3.orig/lib/getopt.c
-+++ grep-2.5.3/lib/getopt.c
-@@ -77,7 +77,7 @@
- #ifndef _
- /* This is for other GNU distributions with internationalized messages.
- When compiling libc, the _ macro is predefined. */
--# ifdef HAVE_LIBINTL_H
-+# if defined(HAVE_LIBINTL_H) && defined(ENABLE_NLS)
- # include <libintl.h>
- # define _(msgid) gettext (msgid)
- # else
---- grep-2.5.3.orig/lib/obstack.c
-+++ grep-2.5.3/lib/obstack.c
-@@ -451,7 +451,7 @@
-
- /* Define the error handler. */
- #ifndef _
--# ifdef HAVE_LIBINTL_H
-+# if defined(HAVE_LIBINTL_H) && defined(ENABLE_NLS)
- # include <libintl.h>
- # ifndef _
- # define _(Str) gettext (Str)
---- grep-2.5.3.orig/lib/regex.c
-+++ grep-2.5.3/lib/regex.c
-@@ -116,7 +116,7 @@
- #endif
-
- /* This is for other GNU distributions with internationalized messages. */
--#if HAVE_LIBINTL_H || defined _LIBC
-+#if ENABLE_NLS && (HAVE_LIBINTL_H || defined _LIBC)
- # include <libintl.h>
- # ifdef _LIBC
- # undef gettext
diff --git a/sys-apps/grep/files/grep-2.5.3-po-builddir-fix.patch b/sys-apps/grep/files/grep-2.5.3-po-builddir-fix.patch
deleted file mode 100644
index 7d3e334f37b5..000000000000
--- a/sys-apps/grep/files/grep-2.5.3-po-builddir-fix.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- grep-2.5.3/po/Makefile.in.in.orig 2006-11-24 20:53:21 -0300
-+++ grep-2.5.3/po/Makefile.in.in 2008-10-26 18:31:06 -0200
-@@ -13,6 +13,7 @@
- @SET_MAKE@
-
- srcdir = @srcdir@
-+top_builddir = @top_builddir@
- top_srcdir = @top_srcdir@
- VPATH = @srcdir@
-
diff --git a/sys-apps/grep/grep-2.10.ebuild b/sys-apps/grep/grep-2.10.ebuild
deleted file mode 100644
index a1a55f2b08d1..000000000000
--- a/sys-apps/grep/grep-2.10.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# 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.10.ebuild,v 1.1 2011/11/16 17:13:01 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 ~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"
-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) \
- $(use !elibc_glibc || echo --without-included-regex)
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die
- dodoc AUTHORS ChangeLog NEWS README THANKS TODO
-}
diff --git a/sys-apps/grep/grep-2.11.ebuild b/sys-apps/grep/grep-2.11.ebuild
deleted file mode 100644
index 965db0188765..000000000000
--- a/sys-apps/grep/grep-2.11.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# 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.11.ebuild,v 1.1 2012/03/02 16:28:50 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
-}
diff --git a/sys-apps/grep/grep-2.12.ebuild b/sys-apps/grep/grep-2.12.ebuild
deleted file mode 100644
index a8ca6352ecb4..000000000000
--- a/sys-apps/grep/grep-2.12.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# 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.12.ebuild,v 1.7 2012/08/26 18:25:29 armin76 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
-}
diff --git a/sys-apps/grep/grep-2.13.ebuild b/sys-apps/grep/grep-2.13.ebuild
deleted file mode 100644
index 9eaf8ce1b96c..000000000000
--- a/sys-apps/grep/grep-2.13.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# 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.13.ebuild,v 1.1 2012/07/05 01:50:18 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
-}
diff --git a/sys-apps/grep/grep-2.15.ebuild b/sys-apps/grep/grep-2.15.ebuild
deleted file mode 100644
index 7b1861da9e9c..000000000000
--- a/sys-apps/grep/grep-2.15.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# 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)
-}
diff --git a/sys-apps/grep/grep-2.5.4-r1.ebuild b/sys-apps/grep/grep-2.5.4-r1.ebuild
deleted file mode 100644
index 400bd7dd43b1..000000000000
--- a/sys-apps/grep/grep-2.5.4-r1.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/grep/grep-2.5.4-r1.ebuild,v 1.8 2009/07/04 12:20:42 nixnut Exp $
-
-EAPI=2
-
-inherit eutils
-
-DESCRIPTION="GNU regular expression matcher"
-HOMEPAGE="http://www.gnu.org/software/grep/"
-SRC_URI="mirror://gnu/${PN}/${P}.tar.bz2
- mirror://gentoo/${P}.tar.bz2"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="alpha amd64 ~amd64-fbsd arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc ~sparc-fbsd x86 ~x86-fbsd"
-IUSE="nls pcre"
-
-RDEPEND="nls? ( virtual/libintl )
- pcre? ( >=dev-libs/libpcre-7.8-r1 )"
-DEPEND="${RDEPEND}
- nls? ( sys-devel/gettext )"
-
-src_prepare() {
- epatch "${FILESDIR}"/${PN}-2.5.3-po-builddir-fix.patch
- epatch "${FILESDIR}"/${PN}-2.5.3-nls.patch
-}
-
-src_configure() {
- econf \
- --bindir=/bin \
- $(use_enable nls) \
- $(use_enable pcre perl-regexp) \
- $(use elibc_FreeBSD || echo --without-included-regex) \
- || die "econf failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "make install failed"
- dodoc AUTHORS ChangeLog NEWS README THANKS TODO
-}
diff --git a/sys-apps/grep/grep-2.6.3.ebuild b/sys-apps/grep/grep-2.6.3.ebuild
deleted file mode 100644
index afe723af4909..000000000000
--- a/sys-apps/grep/grep-2.6.3.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/grep/grep-2.6.3.ebuild,v 1.1 2010/04/02 20:06:36 vapier Exp $
-
-EAPI="2"
-
-DESCRIPTION="GNU regular expression matcher"
-HOMEPAGE="http://www.gnu.org/software/grep/"
-SRC_URI="mirror://gnu/${PN}/${P}.tar.gz
- mirror://gentoo/${P}.tar.gz"
-
-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_prepare() {
- sed -i '1i#include "../lib/progname.h"' tests/get-mb-cur-max.c
-}
-
-src_configure() {
- econf \
- --bindir=/bin \
- $(use_enable nls) \
- $(use_enable pcre perl-regexp) \
- $(use elibc_FreeBSD || echo --without-included-regex) \
- || die "econf failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "make install failed"
- dodoc AUTHORS ChangeLog NEWS README THANKS TODO
-}
diff --git a/sys-apps/grep/grep-2.7.ebuild b/sys-apps/grep/grep-2.7.ebuild
deleted file mode 100644
index 99a27a52715a..000000000000
--- a/sys-apps/grep/grep-2.7.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/grep/grep-2.7.ebuild,v 1.1 2010/09/20 17:03:56 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
-}
diff --git a/sys-apps/grep/grep-2.8.ebuild b/sys-apps/grep/grep-2.8.ebuild
deleted file mode 100644
index 08e920a3256a..000000000000
--- a/sys-apps/grep/grep-2.8.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# 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.8.ebuild,v 1.1 2011/05/14 10:36:32 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
-}
diff --git a/sys-apps/grep/grep-2.9.ebuild b/sys-apps/grep/grep-2.9.ebuild
deleted file mode 100644
index db9656cd9800..000000000000
--- a/sys-apps/grep/grep-2.9.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# 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.9.ebuild,v 1.9 2013/02/21 18:52:58 zmedico 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 ~arm-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) \
- $(use !elibc_glibc || echo --without-included-regex)
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die
- dodoc AUTHORS ChangeLog NEWS README THANKS TODO
-}