diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-09-22 03:24:54 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-09-22 03:24:54 +0000 |
commit | 0d459fa447643bc3c04983b94b231d4d9f542adc (patch) | |
tree | 3efac8a369b9aaf54e50a13b32c6abf7ff371594 /sys-apps/sed/sed-4.0.7.ebuild | |
parent | KEYWORD shuffle (diff) | |
download | historical-0d459fa447643bc3c04983b94b231d4d9f542adc.tar.gz historical-0d459fa447643bc3c04983b94b231d4d9f542adc.tar.bz2 historical-0d459fa447643bc3c04983b94b231d4d9f542adc.zip |
remove the old
Diffstat (limited to 'sys-apps/sed/sed-4.0.7.ebuild')
-rw-r--r-- | sys-apps/sed/sed-4.0.7.ebuild | 54 |
1 files changed, 0 insertions, 54 deletions
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 -} |