summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Robbins <drobbins@gentoo.org>2001-11-24 05:23:51 +0000
committerDaniel Robbins <drobbins@gentoo.org>2001-11-24 05:23:51 +0000
commit6cc3aea1b4989a1b0a2ecffc1ddc08d2ceaf61a8 (patch)
treed85ce1ed63d43dcdcb3e5ec794c2c88fde8d77cf /sys-apps/textutils
parentupdate DESCRIPTION (diff)
downloadgentoo-2-6cc3aea1b4989a1b0a2ecffc1ddc08d2ceaf61a8.tar.gz
gentoo-2-6cc3aea1b4989a1b0a2ecffc1ddc08d2ceaf61a8.tar.bz2
gentoo-2-6cc3aea1b4989a1b0a2ecffc1ddc08d2ceaf61a8.zip
new textutils
Diffstat (limited to 'sys-apps/textutils')
-rw-r--r--sys-apps/textutils/files/digest-textutils-2.0.10-r21
-rw-r--r--sys-apps/textutils/files/digest-textutils-2.0.10-r31
-rw-r--r--sys-apps/textutils/files/digest-textutils-2.0.111
-rw-r--r--sys-apps/textutils/textutils-2.0.10-r2.ebuild53
-rw-r--r--sys-apps/textutils/textutils-2.0.10-r3.ebuild49
-rw-r--r--sys-apps/textutils/textutils-2.0.11.ebuild38
6 files changed, 39 insertions, 104 deletions
diff --git a/sys-apps/textutils/files/digest-textutils-2.0.10-r2 b/sys-apps/textutils/files/digest-textutils-2.0.10-r2
deleted file mode 100644
index 3d9fb9eeaaed..000000000000
--- a/sys-apps/textutils/files/digest-textutils-2.0.10-r2
+++ /dev/null
@@ -1 +0,0 @@
-MD5 420a7cd54d4ce4b44c412af1318f7c83 textutils-2.0.10.tar.gz 2150400
diff --git a/sys-apps/textutils/files/digest-textutils-2.0.10-r3 b/sys-apps/textutils/files/digest-textutils-2.0.10-r3
deleted file mode 100644
index 3d9fb9eeaaed..000000000000
--- a/sys-apps/textutils/files/digest-textutils-2.0.10-r3
+++ /dev/null
@@ -1 +0,0 @@
-MD5 420a7cd54d4ce4b44c412af1318f7c83 textutils-2.0.10.tar.gz 2150400
diff --git a/sys-apps/textutils/files/digest-textutils-2.0.11 b/sys-apps/textutils/files/digest-textutils-2.0.11
new file mode 100644
index 000000000000..897ec6311132
--- /dev/null
+++ b/sys-apps/textutils/files/digest-textutils-2.0.11
@@ -0,0 +1 @@
+MD5 8634615efe6d039bb47339d72a4a0121 textutils-2.0.11.tar.gz 2158592
diff --git a/sys-apps/textutils/textutils-2.0.10-r2.ebuild b/sys-apps/textutils/textutils-2.0.10-r2.ebuild
deleted file mode 100644
index 5b3e7e47184e..000000000000
--- a/sys-apps/textutils/textutils-2.0.10-r2.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2000 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License, v2 or later
-# Author Daniel Robbins <drobbins@gentoo.org>
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/textutils/textutils-2.0.10-r2.ebuild,v 1.1 2001/02/27 17:05:24 achim Exp $
-
-A=${P}.tar.gz
-S=${WORKDIR}/${P}
-DESCRIPTION="Standard GNU text utilities"
-SRC_URI="ftp://alpha.gnu.org/gnu/fetish/${A}"
-
-DEPEND="virtual/glibc
- nls? ( sys-devel/gettext )"
-
-RDEPEND="virtual/glibc"
-
-src_compile() {
-
- local myconf
- if [ -z "`use nls`" ]
- then
- myconf="--disable-nls"
- fi
- try ./configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info \
- --host=${CHOST} --build=${CHOST} --without-included-regex ${myconf}
-
- if [ -z "`use static`" ]
- then
- try make ${MAKEOPTS}
- else
- try make ${MAKEOPTS} LDFLAGS=-static
- fi
-}
-
-src_install() {
-
- try make prefix=${D}/usr mandir=${D}/usr/share/man infodir=${D}/usr/share/info install
- dodir /bin
- mv ${D}/usr/bin/cat ${D}/bin
- dosym /bin/cat /usr/bin/cat
- rmdir ${D}/usr/lib
-
- if [ -z "`use build`" ]
- then
- dodoc AUTHORS COPYING ChangeLog NEWS README* THANKS TODO
- else
- rm -rf ${D}/usr/share/man ${D}/usr/share/info
- fi
-
-}
-
-
-
-
diff --git a/sys-apps/textutils/textutils-2.0.10-r3.ebuild b/sys-apps/textutils/textutils-2.0.10-r3.ebuild
deleted file mode 100644
index 0b674e1dd85d..000000000000
--- a/sys-apps/textutils/textutils-2.0.10-r3.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2000 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License, v2 or later
-# Author Daniel Robbins <drobbins@gentoo.org>
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/textutils/textutils-2.0.10-r3.ebuild,v 1.1 2001/07/28 15:49:20 pete Exp $
-
-A=${P}.tar.gz
-S=${WORKDIR}/${P}
-DESCRIPTION="Standard GNU text utilities"
-SRC_URI="ftp://alpha.gnu.org/gnu/fetish/${A}"
-
-DEPEND="virtual/glibc
- nls? ( sys-devel/gettext )"
-
-RDEPEND="virtual/glibc"
-
-src_compile() {
-
- local myconf
- if [ -z "`use nls`" ]
- then
- myconf="--disable-nls"
- fi
- try ./configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info \
- --host=${CHOST} --build=${CHOST} --without-included-regex ${myconf}
-
- if [ -z "`use static`" ]
- then
- try make ${MAKEOPTS}
- else
- try make ${MAKEOPTS} LDFLAGS=-static
- fi
-}
-
-src_install() {
-
- try make prefix=${D}/usr mandir=${D}/usr/share/man infodir=${D}/usr/share/info install
- dodir /bin
- mv ${D}/usr/bin/cat ${D}/bin
- dosym /bin/cat /usr/bin/cat
- rmdir ${D}/usr/lib
-
- if [ -z "`use build`" ] && [ -z "`use bootcd`" ]
- then
- dodoc AUTHORS COPYING ChangeLog NEWS README* THANKS TODO
- else
- rm -rf ${D}/usr/share
- fi
-
-}
diff --git a/sys-apps/textutils/textutils-2.0.11.ebuild b/sys-apps/textutils/textutils-2.0.11.ebuild
new file mode 100644
index 000000000000..3d5956186aa4
--- /dev/null
+++ b/sys-apps/textutils/textutils-2.0.11.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2000 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License, v2 or later
+# Maintainer: Daniel Robbins <drobbins@gentoo.org>
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/textutils/textutils-2.0.11.ebuild,v 1.1 2001/11/24 05:23:48 drobbins Exp $
+
+S=${WORKDIR}/${P}
+DESCRIPTION="Standard GNU text utilities"
+SRC_URI="ftp://alpha.gnu.org/gnu/fetish/${P}.tar.gz"
+
+DEPEND="virtual/glibc nls? ( sys-devel/gettext )"
+RDEPEND="virtual/glibc"
+
+src_compile() {
+ local myconf
+ [ -z "`use nls`" ] && myconf="--disable-nls"
+ ./configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info \
+ --host=${CHOST} --build=${CHOST} --without-included-regex ${myconf} || die
+ if [ "`use static`" ]
+ then
+ emake LDFLAGS=-static || die
+ else
+ emake || die
+ fi
+}
+
+src_install() {
+ make prefix=${D}/usr mandir=${D}/usr/share/man infodir=${D}/usr/share/info install || die
+ dodir /bin
+ mv ${D}/usr/bin/cat ${D}/bin
+ dosym /bin/cat /usr/bin/cat
+ rmdir ${D}/usr/lib
+ if [ -z "`use build`" ]
+ then
+ dodoc AUTHORS COPYING ChangeLog NEWS README* THANKS TODO
+ else
+ rm -rf ${D}/usr/share
+ fi
+}