summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-07-16 21:52:02 +0000
committerMike Frysinger <vapier@gentoo.org>2006-07-16 21:52:02 +0000
commitf49cc1b0faf8e433ba5e0f4e419c4ca8df230bb8 (patch)
treec8a3a1874630f10e1d1d018d57a44a6b4e759f79 /sys-apps
parentChanged post install instructions. Closes #137978. (diff)
downloadgentoo-2-f49cc1b0faf8e433ba5e0f4e419c4ca8df230bb8.tar.gz
gentoo-2-f49cc1b0faf8e433ba5e0f4e419c4ca8df230bb8.tar.bz2
gentoo-2-f49cc1b0faf8e433ba5e0f4e419c4ca8df230bb8.zip
old
Diffstat (limited to 'sys-apps')
-rw-r--r--sys-apps/findutils/files/digest-findutils-4.1.20-r13
-rw-r--r--sys-apps/findutils/findutils-4.1.20-r1.ebuild73
2 files changed, 0 insertions, 76 deletions
diff --git a/sys-apps/findutils/files/digest-findutils-4.1.20-r1 b/sys-apps/findutils/files/digest-findutils-4.1.20-r1
deleted file mode 100644
index 0af949edc7c0..000000000000
--- a/sys-apps/findutils/files/digest-findutils-4.1.20-r1
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 e90ce7222daadeb8616b8db461e17cbc findutils-4.1.20.tar.gz 777980
-RMD160 8911491449f23408e0bebe1e9c8e0f4303aaf66a findutils-4.1.20.tar.gz 777980
-SHA256 8c5dd50a5ca54367fa186f6294b81ec7a365e36d670d9feac62227cb513e63ab findutils-4.1.20.tar.gz 777980
diff --git a/sys-apps/findutils/findutils-4.1.20-r1.ebuild b/sys-apps/findutils/findutils-4.1.20-r1.ebuild
deleted file mode 100644
index af013303f080..000000000000
--- a/sys-apps/findutils/findutils-4.1.20-r1.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/findutils/findutils-4.1.20-r1.ebuild,v 1.28 2005/05/22 02:04:48 vapier Exp $
-
-inherit eutils flag-o-matic gnuconfig toolchain-funcs
-
-SELINUX_PATCH="findutils-4.1.20-selinux.diff"
-
-# Note this doesn't point to gnu.org because alpha.gnu.org has quit
-# supplying the development versions. If it comes back in the future
-# then we might want to redirect the link. See bug 18729
-DESCRIPTION="GNU utilities to find files"
-HOMEPAGE="http://www.gnu.org/software/findutils/findutils.html"
-SRC_URI="ftp://alpha.gnu.org/gnu/${PN}/${P}.tar.gz
- mirror://gentoo/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc x86"
-IUSE="nls build afs selinux static"
-
-DEPEND="virtual/libc
- >=sys-apps/sed-4
- nls? ( sys-devel/gettext )
- afs? ( net-fs/openafs )
- selinux? ( sys-libs/libselinux )"
-RDEPEND="virtual/libc"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
-
- # Detect new systems properly
- gnuconfig_update
-
- # Don't build or install locate because it conflicts with slocate,
- # which is a secure version of locate. See bug 18729
- sed -i '/^SUBDIRS/s/locate//' Makefile.in
-
- #get a bigger environment as ebuild.sh is growing large
- epatch ${FILESDIR}/findutils-env-size.patch
-
- use selinux && epatch ${FILESDIR}/${SELINUX_PATCH}
-}
-
-src_compile() {
- if use afs && use x86; then
- append-flags -I/usr/afsws/include
- append-ldflags -lpam
- export LIBS="/usr/afsws/lib/pam_afs.so.1 -lpam"
- fi
- export CPPFLAGS="${CXXFLAGS}"
- use static && append-ldflags -static
-
- econf $(use_enable nls) || die
- emake libexecdir=/usr/lib/find AR="$(tc-getAR)" || die
-}
-
-src_install() {
- einstall libexecdir=${D}/usr/lib/find || die
- prepallman
-
- rm -rf ${D}/usr/var
- use build \
- && rm -rf ${D}/usr/share \
- || dodoc NEWS README TODO ChangeLog
-}
-
-pkg_postinst() {
- ewarn "Please note that the locate and updatedb binaries"
- ewarn "are not longer provided by findutils."
- ewarn "Please emerge slocate"
-}