diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-01-29 08:10:47 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-01-29 08:10:47 +0000 |
commit | 39b26a219b8cb4f777904385aab86a3cf3563d9c (patch) | |
tree | c89776b01b61b9077f98aa30fd7789a73a8314a4 /sys-apps/textutils/textutils-2.0.21.ebuild | |
parent | Fix 1.0.0 for modular-x as well. (diff) | |
download | gentoo-2-39b26a219b8cb4f777904385aab86a3cf3563d9c.tar.gz gentoo-2-39b26a219b8cb4f777904385aab86a3cf3563d9c.tar.bz2 gentoo-2-39b26a219b8cb4f777904385aab86a3cf3563d9c.zip |
old, use coreutils
Diffstat (limited to 'sys-apps/textutils/textutils-2.0.21.ebuild')
-rw-r--r-- | sys-apps/textutils/textutils-2.0.21.ebuild | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/sys-apps/textutils/textutils-2.0.21.ebuild b/sys-apps/textutils/textutils-2.0.21.ebuild deleted file mode 100644 index ba7c31d4ab55..000000000000 --- a/sys-apps/textutils/textutils-2.0.21.ebuild +++ /dev/null @@ -1,61 +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/textutils/textutils-2.0.21.ebuild,v 1.16 2004/07/15 02:40:56 agriffis Exp $ - -IUSE="nls static build" - -DESCRIPTION="Standard GNU text utilities" -SRC_URI="http://fetish.sf.net/${P}.tar.gz" -HOMEPAGE="http://www.gnu.org/software/textutils/" - -KEYWORDS="x86 ppc sparc alpha" -SLOT="0" -LICENSE="GPL-2" - -DEPEND="nls? ( sys-devel/gettext )" - -src_unpack() { - unpack ${P}.tar.gz - - cd ${S} - # patch to remove Stallman's su rant - patch doc/coreutils.texi ${FILESDIR}/${P}-gentoo.diff || die - rm doc/coreutils.info -} - -src_compile() { - local myconf="" - use nls || myconf="--disable-nls" - - econf \ - --build=${CHOST} \ - --without-included-regex \ - ${myconf} || die - - if use static - then - emake LDFLAGS=-static || die - else - emake || die - fi -} - -src_install() { - einstall || die - - dodir /bin - mv ${D}/usr/bin/cat ${D}/bin - dosym /bin/cat /usr/bin/cat - # For baselayout - mv ${D}/usr/bin/wc ${D}/bin - dosym /bin/wc /usr/bin/wc - - rmdir ${D}/usr/lib - - if ! use build - then - dodoc AUTHORS COPYING ChangeLog NEWS README* THANKS TODO - else - rm -rf ${D}/usr/share - fi -} |