summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sys-apps/which/which-2.12.ebuild')
-rw-r--r--sys-apps/which/which-2.12.ebuild33
1 files changed, 0 insertions, 33 deletions
diff --git a/sys-apps/which/which-2.12.ebuild b/sys-apps/which/which-2.12.ebuild
deleted file mode 100644
index ee0dc2371688..000000000000
--- a/sys-apps/which/which-2.12.ebuild
+++ /dev/null
@@ -1,33 +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/which/which-2.12.ebuild,v 1.2 2000/11/30 23:14:35 achim Exp $
-
-A=${P}.tar.gz
-S=${WORKDIR}/${P}
-DESCRIPTION="Prints out location of specified executables that are in your path"
-SRC_URI="ftp://gatekeeper.dec.com/pub/GNU/which/${A}
- ftp://prep.ai.mit.edu/gnu/which/${A}"
-DEPEND=">=sys-libs/glibc-2.1.3"
-
-src_compile() {
- try ./configure --prefix=/usr
- try make
-}
-
-src_unpack() {
- unpack ${A}
- # cd ${S}/tilde
- # cp shell.c shell.c.orig
- # echo "#define NULL ( 0L )" > shell.c
- # cat shell.c.orig >> shell.c
-}
-
-src_install() {
- into /usr
- dobin which
- doman which.1
- doinfo which.info
- dodoc AUTHORS COPYING EXAMPLES NEWS README*
-}
-