summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2003-09-21 17:17:06 +0000
committerMike Frysinger <vapier@gentoo.org>2003-09-21 17:17:06 +0000
commitac630ac3ab395deb28a36378f5575deca195fc22 (patch)
treedb438b6b244616fa8ea4a35e77c8c8c84b4c89dd
parentbugfix (diff)
downloadhistorical-ac630ac3ab395deb28a36378f5575deca195fc22.tar.gz
historical-ac630ac3ab395deb28a36378f5575deca195fc22.tar.bz2
historical-ac630ac3ab395deb28a36378f5575deca195fc22.zip
prune old
-rw-r--r--sys-apps/grep/files/digest-grep-2.4.2-r51
-rw-r--r--sys-apps/grep/files/digest-grep-2.5-r11
-rw-r--r--sys-apps/grep/files/digest-grep-2.5.11
-rw-r--r--sys-apps/grep/grep-2.4.2-r5.ebuild45
-rw-r--r--sys-apps/grep/grep-2.5-r1.ebuild61
-rw-r--r--sys-apps/grep/grep-2.5.1-r1.ebuild4
-rw-r--r--sys-apps/grep/grep-2.5.1.ebuild47
7 files changed, 2 insertions, 158 deletions
diff --git a/sys-apps/grep/files/digest-grep-2.4.2-r5 b/sys-apps/grep/files/digest-grep-2.4.2-r5
deleted file mode 100644
index 7f329c36a7cc..000000000000
--- a/sys-apps/grep/files/digest-grep-2.4.2-r5
+++ /dev/null
@@ -1 +0,0 @@
-MD5 8ec9a2e875cd3aaa89896a8f39249f58 grep-2.4.2.tar.gz 460582
diff --git a/sys-apps/grep/files/digest-grep-2.5-r1 b/sys-apps/grep/files/digest-grep-2.5-r1
deleted file mode 100644
index 44d5eb65cda4..000000000000
--- a/sys-apps/grep/files/digest-grep-2.5-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 222a790b3fb5e6a90d43f9c1ee867ad2 grep-2.5.tar.gz 683116
diff --git a/sys-apps/grep/files/digest-grep-2.5.1 b/sys-apps/grep/files/digest-grep-2.5.1
deleted file mode 100644
index ef03a032aa20..000000000000
--- a/sys-apps/grep/files/digest-grep-2.5.1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 85df024edc9f9689035f6b3de28c7731 grep-2.5.1.tar.gz 683093
diff --git a/sys-apps/grep/grep-2.4.2-r5.ebuild b/sys-apps/grep/grep-2.4.2-r5.ebuild
deleted file mode 100644
index 9ec6183fec02..000000000000
--- a/sys-apps/grep/grep-2.4.2-r5.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/grep/grep-2.4.2-r5.ebuild,v 1.10 2003/07/16 13:45:00 pvdabeel Exp $
-
-IUSE="nls build"
-
-S=${WORKDIR}/${P}
-DESCRIPTION="GNU regular expression matcher"
-SRC_URI="ftp://prep.ai.mit.edu/gnu/grep/${P}.tar.gz"
-HOMEPAGE="http://www.gnu.org/software/grep/grep.html"
-KEYWORDS="x86 amd64 ppc"
-SLOT="0"
-LICENSE="GPL-2"
-
-DEPEND="virtual/glibc nls? ( sys-devel/gettext )"
-RDEPEND="virtual/glibc"
-
-src_compile() {
- local myconf
- [ -z "`use nls`" ] && myconf="--disable-nls"
- ./configure --prefix=/usr \
- --bindir=/bin \
- --mandir=/usr/share/man \
- --infodir=/usr/share/info \
- --host=${CHOST} \
- ${myconf} || die
- emake || die
-}
-
-src_install() {
- make prefix=${D}/usr \
- bindir=${D}/bin \
- mandir=${D}/usr/share/man \
- infodir=${D}/usr/share/info \
- install || die
- if [ -z "`use build`" ]
- then
- dodoc AUTHORS COPYING ChangeLog NEWS README THANKS TODO
- else
- rm -rf ${D}/usr/share
- fi
-}
-
-
-
diff --git a/sys-apps/grep/grep-2.5-r1.ebuild b/sys-apps/grep/grep-2.5-r1.ebuild
deleted file mode 100644
index 0aaabf8a142f..000000000000
--- a/sys-apps/grep/grep-2.5-r1.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/grep/grep-2.5-r1.ebuild,v 1.20 2003/09/18 00:10:29 avenj Exp $
-
-inherit eutils
-
-IUSE="nls build"
-
-S=${WORKDIR}/${P}
-DESCRIPTION="GNU regular expression matcher"
-SRC_URI="ftp://prep.ai.mit.edu/gnu/${PN}/${P}.tar.gz
- ftp://ftp.gnu.org/gnu/${PN}/${P}.tar.gz"
-HOMEPAGE="http://www.gnu.org/software/grep/grep.html"
-
-KEYWORDS="x86 amd64 ppc sparc alpha mips hppa arm ia64"
-SLOT="0"
-LICENSE="GPL-2"
-
-DEPEND="virtual/glibc nls? ( sys-devel/gettext )"
-RDEPEND="virtual/glibc"
-
-src_unpack() {
- unpack ${A}
- echo ${PROFILE_ARCH}
- if [ "${ARCH}" = "sparc" -a "${PROFILE_ARCH}" = "sparc" ]
- then
- cd ${S}
- epatch ${FILESDIR}/gentoo-sparc32-dfa.patch || die
- fi
-}
-
-src_compile() {
- local myconf=""
- use nls || myconf="--disable-nls"
-
- ./configure --prefix=/usr \
- --bindir=/bin \
- --mandir=/usr/share/man \
- --infodir=/usr/share/info \
- --host=${CHOST} \
- --disable-perl-regexp \
- ${myconf} || die
-
- emake || die
-}
-
-src_install() {
- make prefix=${D}/usr \
- bindir=${D}/bin \
- mandir=${D}/usr/share/man \
- infodir=${D}/usr/share/info \
- install || die
-
- if [ -z "`use build`" ]
- then
- dodoc AUTHORS COPYING ChangeLog NEWS README THANKS TODO
- else
- rm -rf ${D}/usr/share
- fi
-}
-
diff --git a/sys-apps/grep/grep-2.5.1-r1.ebuild b/sys-apps/grep/grep-2.5.1-r1.ebuild
index 12a2fd0a1009..2e0f64358592 100644
--- a/sys-apps/grep/grep-2.5.1-r1.ebuild
+++ b/sys-apps/grep/grep-2.5.1-r1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/grep/grep-2.5.1-r1.ebuild,v 1.10 2003/09/10 05:22:24 msterret Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/grep/grep-2.5.1-r1.ebuild,v 1.11 2003/09/21 17:17:06 vapier Exp $
IUSE="nls build"
@@ -13,7 +13,7 @@ SRC_URI="ftp://prep.ai.mit.edu/gnu/${PN}/${P}.tar.gz
ftp://ftp.gnu.org/gnu/${PN}/${P}.tar.gz"
HOMEPAGE="http://www.gnu.org/software/grep/grep.html"
-KEYWORDS="x86 amd64 ppc sparc alpha mips hppa ~arm"
+KEYWORDS="x86 amd64 ppc sparc alpha mips hppa arm"
SLOT="0"
LICENSE="GPL-2"
diff --git a/sys-apps/grep/grep-2.5.1.ebuild b/sys-apps/grep/grep-2.5.1.ebuild
deleted file mode 100644
index 6dcf2695a0db..000000000000
--- a/sys-apps/grep/grep-2.5.1.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/grep/grep-2.5.1.ebuild,v 1.6 2003/09/10 05:22:24 msterret Exp $
-
-IUSE="nls build"
-
-S=${WORKDIR}/${P}
-DESCRIPTION="GNU regular expression matcher"
-SRC_URI="ftp://prep.ai.mit.edu/gnu/${PN}/${P}.tar.gz
- ftp://ftp.gnu.org/gnu/${PN}/${P}.tar.gz"
-HOMEPAGE="http://www.gnu.org/software/grep/grep.html"
-
-KEYWORDS="x86 amd64 ppc ~sparc ~alpha ~mips ~hppa ~arm"
-SLOT="0"
-LICENSE="GPL-2"
-
-DEPEND="virtual/glibc nls? ( sys-devel/gettext )"
-RDEPEND="virtual/glibc"
-
-src_unpack() {
- unpack ${A}
- echo ${PROFILE_ARCH}
- if [ "${ARCH}" = "sparc" -a "${PROFILE_ARCH}" = "sparc" ]
- then
- cd ${S}
- epatch ${FILESDIR}/gentoo-sparc32-dfa.patch || die
- fi
-}
-
-src_compile() {
- local myconf=""
- use nls || myconf="--disable-nls"
-
- econf --disable-perl-regexp ${myconf} || die "econf failed"
- emake || die "emake failed"
-}
-
-src_install() {
- einstall || die "einstall failed"
-
- if use build; then
- rm -rf ${D}/usr/share
- else
- dodoc AUTHORS COPYING ChangeLog NEWS README THANKS TODO
- fi
-}
-