summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2003-04-13 13:42:22 +0000
committerSeemant Kulleen <seemant@gentoo.org>2003-04-13 13:42:22 +0000
commit97b463aa20f6875630ac88ca85d0d5b06b8eadd2 (patch)
tree34789e3414ec67d2e4785596f7796b8722993634 /sys-apps/coreutils
parentversion bump (diff)
downloadgentoo-2-97b463aa20f6875630ac88ca85d0d5b06b8eadd2.tar.gz
gentoo-2-97b463aa20f6875630ac88ca85d0d5b06b8eadd2.tar.bz2
gentoo-2-97b463aa20f6875630ac88ca85d0d5b06b8eadd2.zip
removed crusty ebuilds
Diffstat (limited to 'sys-apps/coreutils')
-rw-r--r--sys-apps/coreutils/Manifest5
-rw-r--r--sys-apps/coreutils/coreutils-4.5.10.ebuild96
-rw-r--r--sys-apps/coreutils/coreutils-4.5.11.ebuild99
-rw-r--r--sys-apps/coreutils/files/digest-coreutils-4.5.104
-rw-r--r--sys-apps/coreutils/files/digest-coreutils-4.5.113
5 files changed, 5 insertions, 202 deletions
diff --git a/sys-apps/coreutils/Manifest b/sys-apps/coreutils/Manifest
new file mode 100644
index 000000000000..7565437fa1aa
--- /dev/null
+++ b/sys-apps/coreutils/Manifest
@@ -0,0 +1,5 @@
+MD5 220b73db20626f84ad2b2322300287a8 coreutils-4.5.11-r1.ebuild 2505
+MD5 ff7ff0841cddbb2bcdfdb0262ef9449a ChangeLog 2419
+MD5 db449d915f8c7c6da44a94a610c9556a coreutils-5.0.ebuild 2496
+MD5 0ff5f66b1d04c85d2434fa73547e67f3 files/digest-coreutils-4.5.11-r1 207
+MD5 1f151a22e3adc814c28d4b8a54a094a5 files/digest-coreutils-5.0 273
diff --git a/sys-apps/coreutils/coreutils-4.5.10.ebuild b/sys-apps/coreutils/coreutils-4.5.10.ebuild
deleted file mode 100644
index 9d072a27c924..000000000000
--- a/sys-apps/coreutils/coreutils-4.5.10.ebuild
+++ /dev/null
@@ -1,96 +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/coreutils/coreutils-4.5.10.ebuild,v 1.6 2003/04/04 09:38:42 seemant Exp $
-
-inherit eutils
-
-IUSE="nls build selinux"
-
-S="${WORKDIR}/${P}"
-DESCRIPTION="Standard GNU file utilities (chmod, cp, dd, dir, ls...), text utilities (sort, tr, head, wc..), and shell utilities (whoami, who,...)"
-HOMEPAGE="http://www.gnu.org/software/coreutils/"
-SRC_URI="ftp://alpha.gnu.org/gnu/coreutils/${P}.tar.bz2
- mirror://gentoo/${PN}-gentoo.tar.bz2
- selinux? mirror://gentoo/${P}-selinux.patch.bz2"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa arm"
-
-DEPEND="virtual/glibc
- nls? ( sys-devel/gettext )
- selinux? ( >=sys-apps/selinux-small-2003011510-r2 )"
-
-
-src_unpack() {
- unpack ${A}
- cd ${S}
-
- # Causes compile failure
- use selinux && epatch ${DISTDIR}/${P}-selinux.patch.bz2
-
- # patch to remove Stallman's su/wheel group rant (which doesn't apply,
- # since Gentoo's su is not GNU/su, but that from shadow.
- epatch ${WORKDIR}/${PN}-gentoo-patches/${PN}-gentoo-rms.patch
-
- # Patch to add processor specific info to the uname output
- if [ -z "`use hppa`" ] && [ -z "`use arm`" ]
- then
- epatch ${WORKDIR}/${PN}-gentoo-patches/${PN}-gentoo-uname.patch
- fi
-}
-
-src_compile() {
- local myconf=""
- use nls || myconf="--disable-nls"
-
- econf \
- --bindir=/bin \
- ${myconf} || die
-
- if [ "`use static`" ]
- then
- emake LDFLAGS=-static || die
- else
- emake || die
- fi
-}
-
-src_install() {
- einstall \
- bindir=${D}/bin || die
-
- # hostname comes from net-base
- # hostname does not work with the -f switch, which breaks gnome2
- # amongst other things
- rm -f ${D}/{bin,usr/bin}/hostname ${D}/usr/share/man/man1/hostname.*
-
- # /bin/su comes from sys-apps/shadow
- rm -f ${D}/{bin,usr/bin}/su ${D}/usr/share/man/man1/su.*
-
- # /usr/bin/uptime comes from the sys-apps/procps packaga
- rm -f ${D}/{bin,usr/bin}/uptime ${D}/usr/share/man/man1/uptime*
-
- cd ${D}
- dodir /usr/bin
- rm -rf usr/lib
- cd usr/bin
- ln -s ../../bin/* .
-
- if [ -z "`use build`" ]
- then
- cd ${S}
- dodoc AUTHORS ChangeLog* COPYING NEWS README* THANKS TODO
- else
- rm -rf ${D}/usr/share
- fi
-}
-
-pkg_postinst() {
- # hostname does not get removed as it is included with older stage1
- # tarballs, and net-tools installs to /bin
- if [ -e ${ROOT}/usr/bin/hostname ] && [ ! -L ${ROOT}/usr/bin/hostname ]
- then
- rm -f ${ROOT}/usr/bin/hostname
- fi
-}
diff --git a/sys-apps/coreutils/coreutils-4.5.11.ebuild b/sys-apps/coreutils/coreutils-4.5.11.ebuild
deleted file mode 100644
index 2e379fb022fe..000000000000
--- a/sys-apps/coreutils/coreutils-4.5.11.ebuild
+++ /dev/null
@@ -1,99 +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/coreutils/coreutils-4.5.11.ebuild,v 1.1 2003/03/21 02:47:15 seemant Exp $
-
-inherit eutils
-
-IUSE="nls build selinux"
-
-S="${WORKDIR}/${P}"
-DESCRIPTION="Standard GNU file utilities (chmod, cp, dd, dir, ls...), text utilities (sort, tr, head, wc..), and shell utilities (whoami, who,...)"
-HOMEPAGE="http://www.gnu.org/software/coreutils/"
-SRC_URI="ftp://alpha.gnu.org/gnu/coreutils/${P}.tar.bz2
- mirror://gentoo/${PN}-gentoo.tar.bz2"
-# selinux? mirror://gentoo/${P}-selinux.patch.bz2"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="x86 ~ppc sparc ~alpha ~hppa arm"
-
-DEPEND="virtual/glibc
- nls? ( sys-devel/gettext )"
-# selinux? ( >=sys-apps/selinux-small-2003011510-r2 )"
-
-PROVIDE="sys-apps/sh-utils
- sys-apps/fileutils
- sys-apps/textutils"
-
-
-src_unpack() {
- unpack ${A}
- cd ${S}
-
-# use selinux && epatch ${DISTDIR}/${P}-selinux.patch.bz2
-
- # patch to remove Stallman's su/wheel group rant (which doesn't apply,
- # since Gentoo's su is not GNU/su, but that from shadow.
- epatch ${WORKDIR}/${PN}-gentoo-patches/${PN}-gentoo-rms.patch
-
- # Patch to add processor specific info to the uname output
- if [ -z "`use hppa`" ] && [ -z "`use arm`" ]
- then
- epatch ${WORKDIR}/${PN}-gentoo-patches/${PN}-gentoo-uname.patch
- fi
-}
-
-src_compile() {
- local myconf=""
- use nls || myconf="--disable-nls"
-
- econf \
- --bindir=/bin \
- ${myconf} || die
-
- if [ "`use static`" ]
- then
- emake LDFLAGS=-static || die
- else
- emake || die
- fi
-}
-
-src_install() {
- einstall \
- bindir=${D}/bin || die
-
- # hostname comes from net-base
- # hostname does not work with the -f switch, which breaks gnome2
- # amongst other things
- rm -f ${D}/{bin,usr/bin}/hostname ${D}/usr/share/man/man1/hostname.*
-
- # /bin/su comes from sys-apps/shadow
- rm -f ${D}/{bin,usr/bin}/su ${D}/usr/share/man/man1/su.*
-
- # /usr/bin/uptime comes from the sys-apps/procps packaga
- rm -f ${D}/{bin,usr/bin}/uptime ${D}/usr/share/man/man1/uptime*
-
- cd ${D}
- dodir /usr/bin
- rm -rf usr/lib
- cd usr/bin
- ln -s ../../bin/* .
-
- if [ -z "`use build`" ]
- then
- cd ${S}
- dodoc AUTHORS ChangeLog* COPYING NEWS README* THANKS TODO
- else
- rm -rf ${D}/usr/share
- fi
-}
-
-pkg_postinst() {
- # hostname does not get removed as it is included with older stage1
- # tarballs, and net-tools installs to /bin
- if [ -e ${ROOT}/usr/bin/hostname ] && [ ! -L ${ROOT}/usr/bin/hostname ]
- then
- rm -f ${ROOT}/usr/bin/hostname
- fi
-}
diff --git a/sys-apps/coreutils/files/digest-coreutils-4.5.10 b/sys-apps/coreutils/files/digest-coreutils-4.5.10
deleted file mode 100644
index 21e9a624e0f9..000000000000
--- a/sys-apps/coreutils/files/digest-coreutils-4.5.10
+++ /dev/null
@@ -1,4 +0,0 @@
-MD5 c3b2a46d0484e2ad5c99d58e0aad1300 /coreutils-4.5.10.ebuild 2463
-MD5 073aa616506e2eede6c199fa9c759ae2 coreutils-4.5.10.tar.bz2 3981173
-MD5 756b3fae8ad0eb7a6d3c573a659216dd coreutils-gentoo.tar.bz2 2335
-MD5 8b5ee47e5493d22f450d30e57aeba746 coreutils-4.5.10-selinux.patch.bz2 40646
diff --git a/sys-apps/coreutils/files/digest-coreutils-4.5.11 b/sys-apps/coreutils/files/digest-coreutils-4.5.11
deleted file mode 100644
index f876209ccc64..000000000000
--- a/sys-apps/coreutils/files/digest-coreutils-4.5.11
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 6c5f99ff3dedd33ad6c534dfa4c9ef25 /coreutils-4.5.11.ebuild 2502
-MD5 ff2fa98e7e3d92a4fbffda675eff6295 coreutils-4.5.11.tar.bz2 3981264
-MD5 756b3fae8ad0eb7a6d3c573a659216dd coreutils-gentoo.tar.bz2 2335