summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchim Gottinger <achim@gentoo.org>2000-12-11 19:03:38 +0000
committerAchim Gottinger <achim@gentoo.org>2000-12-11 19:03:38 +0000
commit09e76d7c029b39dc5cc9546f6ad5072fb5e51025 (patch)
treef3417c923db155eaff346d88b747c03f61cbfbaa /sys-apps/which
parent*** empty log message *** (diff)
downloadgentoo-2-09e76d7c029b39dc5cc9546f6ad5072fb5e51025.tar.gz
gentoo-2-09e76d7c029b39dc5cc9546f6ad5072fb5e51025.tar.bz2
gentoo-2-09e76d7c029b39dc5cc9546f6ad5072fb5e51025.zip
*** empty log message ***
Diffstat (limited to 'sys-apps/which')
-rw-r--r--sys-apps/which/files/digest-which-2.11-r11
-rw-r--r--sys-apps/which/which-2.11-r1.ebuild33
2 files changed, 0 insertions, 34 deletions
diff --git a/sys-apps/which/files/digest-which-2.11-r1 b/sys-apps/which/files/digest-which-2.11-r1
deleted file mode 100644
index 3b5ad0af2dca..000000000000
--- a/sys-apps/which/files/digest-which-2.11-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 f4f245abb6cf848ba3642d7da57be905 which-2.11.tar.gz
diff --git a/sys-apps/which/which-2.11-r1.ebuild b/sys-apps/which/which-2.11-r1.ebuild
deleted file mode 100644
index 36e0b71dca72..000000000000
--- a/sys-apps/which/which-2.11-r1.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.11-r1.ebuild,v 1.4 2000/10/03 16:02:06 achim Exp $
-
-P=which-2.11
-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}"
-
-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*
-}
-