summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2004-09-22 03:24:54 +0000
committerMike Frysinger <vapier@gentoo.org>2004-09-22 03:24:54 +0000
commit0a881667844b94bb98fb03b2c97a65e543d6067a (patch)
treee510d0004523380f61bb30e196355a3084864f5e /sys-apps/sed
parentKEYWORD shuffle (Manifest recommit) (diff)
downloadgentoo-2-0a881667844b94bb98fb03b2c97a65e543d6067a.tar.gz
gentoo-2-0a881667844b94bb98fb03b2c97a65e543d6067a.tar.bz2
gentoo-2-0a881667844b94bb98fb03b2c97a65e543d6067a.zip
remove the old
Diffstat (limited to 'sys-apps/sed')
-rw-r--r--sys-apps/sed/files/digest-sed-4.0.51
-rw-r--r--sys-apps/sed/files/digest-sed-4.0.71
-rw-r--r--sys-apps/sed/files/digest-sed-4.0.81
-rw-r--r--sys-apps/sed/sed-4.0.5.ebuild41
-rw-r--r--sys-apps/sed/sed-4.0.7.ebuild54
-rw-r--r--sys-apps/sed/sed-4.0.8.ebuild54
6 files changed, 0 insertions, 152 deletions
diff --git a/sys-apps/sed/files/digest-sed-4.0.5 b/sys-apps/sed/files/digest-sed-4.0.5
deleted file mode 100644
index 1792442f048e..000000000000
--- a/sys-apps/sed/files/digest-sed-4.0.5
+++ /dev/null
@@ -1 +0,0 @@
-MD5 ede56d576aa7be4ed44e2d868616d00d sed-4.0.5.tar.gz 681389
diff --git a/sys-apps/sed/files/digest-sed-4.0.7 b/sys-apps/sed/files/digest-sed-4.0.7
deleted file mode 100644
index dc392c15c3f6..000000000000
--- a/sys-apps/sed/files/digest-sed-4.0.7
+++ /dev/null
@@ -1 +0,0 @@
-MD5 005738e7f97bd77d95b6907156c8202a sed-4.0.7.tar.gz 693903
diff --git a/sys-apps/sed/files/digest-sed-4.0.8 b/sys-apps/sed/files/digest-sed-4.0.8
deleted file mode 100644
index e419aebb791d..000000000000
--- a/sys-apps/sed/files/digest-sed-4.0.8
+++ /dev/null
@@ -1 +0,0 @@
-MD5 fb7fa2a7336afc358012763b292e2124 sed-4.0.8.tar.gz 734588
diff --git a/sys-apps/sed/sed-4.0.5.ebuild b/sys-apps/sed/sed-4.0.5.ebuild
deleted file mode 100644
index 3ed4bf11f33d..000000000000
--- a/sys-apps/sed/sed-4.0.5.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/sed/sed-4.0.5.ebuild,v 1.17 2004/08/19 21:57:54 vapier Exp $
-
-DESCRIPTION="Super-useful stream editor"
-HOMEPAGE="http://www.gnu.org/software/sed/sed.html"
-SRC_URI="mirror://gnu/sed/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="x86 amd64 ppc sparc alpha hppa mips"
-IUSE="nls static build"
-
-RDEPEND="virtual/libc"
-DEPEND="${RDEPEND}
- nls? ( sys-devel/gettext )"
-
-src_compile() {
- econf `use_enable nls` || die
- if use static ; then
- emake || die
- else
- emake LDFLAGS=-static || die
- fi
-}
-
-src_install() {
- into /
- dobin sed/sed
- dodir /usr/bin
- dosym ../../bin/sed /usr/bin/sed
- if ! use build
- then
- into /usr
- doinfo doc/sed.info*
- doman doc/sed.1
- dodoc COPYING NEWS README* THANKS TODO AUTHORS BUGS ANNOUNCE ChangeLog
- else
- rm -rf ${D}/usr/share
- fi
-}
diff --git a/sys-apps/sed/sed-4.0.7.ebuild b/sys-apps/sed/sed-4.0.7.ebuild
deleted file mode 100644
index e846e013edd9..000000000000
--- a/sys-apps/sed/sed-4.0.7.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/sed/sed-4.0.7.ebuild,v 1.18 2004/08/19 21:57:54 vapier Exp $
-
-inherit gnuconfig
-
-DESCRIPTION="Super-useful stream editor"
-HOMEPAGE="http://www.gnu.org/software/sed/sed.html"
-SRC_URI="mirror://gnu/sed/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="x86 amd64 ppc sparc alpha hppa mips ia64"
-IUSE="nls static build"
-
-RDEPEND="virtual/libc"
-DEPEND="${RDEPEND}
- nls? ( sys-devel/gettext )"
-
-src_compile() {
- local myconf
-
- # Needed for mips and probably others
- gnuconfig_update
-
- use nls \
- && myconf="${myconf} --enable-nls" \
- || myconf="${myconf} --disable-nls"
-
- econf ${myconf} || die "Configure failed"
- if ! use static ; then
- emake || die "Shared build failed"
- else
- emake LDFLAGS=-static || die "Static build failed"
- fi
-}
-
-src_install() {
- into /
- dobin sed/sed
- if ! use build
- then
- einstall || die "Install failed"
- dodoc COPYING NEWS README* THANKS TODO AUTHORS BUGS ANNOUNCE ChangeLog
- docinto examples
- dodoc ${FILESDIR}/dos2unix ${FILESDIR}/unix2dos
-
- else
- dodir /usr/bin
- fi
-
- rm -f ${D}/usr/bin/sed
- dosym ../../bin/sed /usr/bin/sed
-}
diff --git a/sys-apps/sed/sed-4.0.8.ebuild b/sys-apps/sed/sed-4.0.8.ebuild
deleted file mode 100644
index dd1a9cab8673..000000000000
--- a/sys-apps/sed/sed-4.0.8.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/sed/sed-4.0.8.ebuild,v 1.13 2004/09/03 21:03:24 pvdabeel Exp $
-
-inherit gnuconfig
-
-DESCRIPTION="Super-useful stream editor"
-HOMEPAGE="http://www.gnu.org/software/sed/sed.html"
-SRC_URI="mirror://gnu/sed/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86 amd64 ppc ~sparc ~alpha ~hppa ~mips ~ia64 ppc64"
-IUSE="nls static build"
-
-RDEPEND="virtual/libc"
-DEPEND="${RDEPEND}
- nls? ( sys-devel/gettext )"
-
-src_compile() {
- local myconf
-
- # Needed for mips and probably others
- gnuconfig_update
-
- use nls \
- && myconf="${myconf} --enable-nls" \
- || myconf="${myconf} --disable-nls"
-
- econf ${myconf} || die "Configure failed"
- if ! use static ; then
- emake || die "Shared build failed"
- else
- emake LDFLAGS=-static || die "Static build failed"
- fi
-}
-
-src_install() {
- into /
- dobin sed/sed
- if ! use build
- then
- einstall || die "Install failed"
- dodoc COPYING NEWS README* THANKS TODO AUTHORS BUGS ANNOUNCE ChangeLog
- docinto examples
- dodoc ${FILESDIR}/dos2unix ${FILESDIR}/unix2dos
-
- else
- dodir /usr/bin
- fi
-
- rm -f ${D}/usr/bin/sed
- dosym ../../bin/sed /usr/bin/sed
-}