blob: 9de87dc686787bb99379390218d757719e256733 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/sys-apps/which/which-2.13.ebuild,v 1.3 2002/07/14 19:20:20 aliz Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Prints out location of specified executables that are in your path"
SRC_URI="ftp://gatekeeper.dec.com/pub/GNU/which/${P}.tar.gz"
HOMEPAGE="http://www.xs4all.nl/~carlo17/which/"
KEYWORDS="x86"
SLOT="0"
LICENSE="GPL-2"
DEPEND="virtual/glibc sys-apps/texinfo"
src_unpack() {
unpack ${A}
cd ${WORKDIR}
patch -p0 < ${FILESDIR}/${PF}-gentoo.diff || die
}
src_compile() {
try ./configure --prefix=/usr
try make
}
src_install() {
dobin which
doman which.1
doinfo which.info
dodoc AUTHORS COPYING EXAMPLES NEWS README*
}
|