diff options
Diffstat (limited to 'sys-apps/which/which-2.15.ebuild')
-rw-r--r-- | sys-apps/which/which-2.15.ebuild | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/sys-apps/which/which-2.15.ebuild b/sys-apps/which/which-2.15.ebuild deleted file mode 100644 index dedfb1afa915..000000000000 --- a/sys-apps/which/which-2.15.ebuild +++ /dev/null @@ -1,38 +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/which/which-2.15.ebuild,v 1.1 2003/09/12 14:58:16 seemant Exp $ - -inherit eutils - -S=${WORKDIR}/${P} -DESCRIPTION="Prints out location of specified executables that are in your path" -HOMEPAGE="http://www.xs4all.nl/~carlo17/which/" -SRC_URI="http://www.xs4all.nl/~carlo17/which/${P}.tar.gz" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="~x86 ~amd64 ~ppc ~sparc ~alpha ~mips ~hppa ~arm" - -RDEPEND="virtual/glibc - sys-apps/texinfo" - -DEPEND="${RDEPEND}" - - -src_unpack() { - unpack ${A} - cd ${S} - epatch ${FILESDIR}/which-gentoo.patch -} - -src_compile() { - ./configure --prefix=/usr || die - make || die -} - -src_install() { - dobin which - doman which.1 - doinfo which.info - dodoc AUTHORS COPYING EXAMPLES NEWS README* -} |