diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2001-12-17 14:30:28 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2001-12-17 14:30:28 +0000 |
commit | d5bbb3aa39f1f1f4064c05299438bf9b967b1f93 (patch) | |
tree | be194ab8855779b1d6e41f24c72317eee2888f73 /sys-apps/which | |
parent | new version (diff) | |
download | historical-d5bbb3aa39f1f1f4064c05299438bf9b967b1f93.tar.gz historical-d5bbb3aa39f1f1f4064c05299438bf9b967b1f93.tar.bz2 historical-d5bbb3aa39f1f1f4064c05299438bf9b967b1f93.zip |
new version
Diffstat (limited to 'sys-apps/which')
-rw-r--r-- | sys-apps/which/files/digest-which-2.13 | 1 | ||||
-rw-r--r-- | sys-apps/which/files/which-2.13-gentoo.diff | 14 | ||||
-rw-r--r-- | sys-apps/which/which-2.13.ebuild | 29 |
3 files changed, 44 insertions, 0 deletions
diff --git a/sys-apps/which/files/digest-which-2.13 b/sys-apps/which/files/digest-which-2.13 new file mode 100644 index 000000000000..dec442407dab --- /dev/null +++ b/sys-apps/which/files/digest-which-2.13 @@ -0,0 +1 @@ +MD5 ab5a2b929b87c7917887e70f0204bce5 which-2.13.tar.gz 110592 diff --git a/sys-apps/which/files/which-2.13-gentoo.diff b/sys-apps/which/files/which-2.13-gentoo.diff new file mode 100644 index 000000000000..3422b5042b35 --- /dev/null +++ b/sys-apps/which/files/which-2.13-gentoo.diff @@ -0,0 +1,14 @@ +diff -r -C2 which-2.12.orig/which.texinfo which-2.12/which.texinfo +*** which-2.13.orig/which.texinfo Thu Jul 6 07:26:39 2000 +--- which-2.13/which.texinfo Fri Aug 3 17:23:52 2001 +*************** +*** 9,12 **** +--- 9,16 ---- + + @ifinfo ++ @direntry ++ * which: (which). show full path of commands. ++ @end direntry ++ + @format + diff --git a/sys-apps/which/which-2.13.ebuild b/sys-apps/which/which-2.13.ebuild new file mode 100644 index 000000000000..76b9176975eb --- /dev/null +++ b/sys-apps/which/which-2.13.ebuild @@ -0,0 +1,29 @@ +# 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.13.ebuild,v 1.1 2001/12/17 14:30:28 azarah 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" + +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* +} + |