summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2008-01-19 21:46:54 +0000
committerMike Frysinger <vapier@gentoo.org>2008-01-19 21:46:54 +0000
commitb20878bd27e5e41f1bd76a29b5a7a825c8b9eee1 (patch)
treea042dbf8afc64030c09213276a35ed0174c19ea4 /sys-apps/which
parentAdd a note about WIPE_TMP defaulting to yes. (diff)
downloadgentoo-2-b20878bd27e5e41f1bd76a29b5a7a825c8b9eee1.tar.gz
gentoo-2-b20878bd27e5e41f1bd76a29b5a7a825c8b9eee1.tar.bz2
gentoo-2-b20878bd27e5e41f1bd76a29b5a7a825c8b9eee1.zip
Verison bump #206627 by Samuli Suominen.
(Portage version: 2.1.4)
Diffstat (limited to 'sys-apps/which')
-rw-r--r--sys-apps/which/ChangeLog9
-rw-r--r--sys-apps/which/files/digest-which-2.193
-rw-r--r--sys-apps/which/which-2.19.ebuild28
3 files changed, 38 insertions, 2 deletions
diff --git a/sys-apps/which/ChangeLog b/sys-apps/which/ChangeLog
index d6e05ef79914..cfa7daae5678 100644
--- a/sys-apps/which/ChangeLog
+++ b/sys-apps/which/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sys-apps/which
-# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/which/ChangeLog,v 1.23 2007/02/09 05:45:26 flameeyes Exp $
+# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/which/ChangeLog,v 1.24 2008/01/19 21:46:54 vapier Exp $
+
+*which-2.19 (19 Jan 2008)
+
+ 19 Jan 2008; Mike Frysinger <vapier@gentoo.org> +which-2.19.ebuild:
+ Verison bump #206627 by Samuli Suominen.
09 Feb 2007; Diego Pettenò <flameeyes@gentoo.org> ChangeLog:
Regenerate digest in Manifest2 format.
diff --git a/sys-apps/which/files/digest-which-2.19 b/sys-apps/which/files/digest-which-2.19
new file mode 100644
index 000000000000..a0efd112c34c
--- /dev/null
+++ b/sys-apps/which/files/digest-which-2.19
@@ -0,0 +1,3 @@
+MD5 bbd094cec2444cd78befbc0cf09deea4 which-2.19.tar.gz 132810
+RMD160 8f8cacefcc240a13b09062beb3c5f432729b9239 which-2.19.tar.gz 132810
+SHA256 7d79b874f65118ac846a0deb31a8fbd6816cd81e74930299c82103765d45cd52 which-2.19.tar.gz 132810
diff --git a/sys-apps/which/which-2.19.ebuild b/sys-apps/which/which-2.19.ebuild
new file mode 100644
index 000000000000..3a45a8e31fb1
--- /dev/null
+++ b/sys-apps/which/which-2.19.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2008 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/which/which-2.19.ebuild,v 1.1 2008/01/19 21:46:54 vapier Exp $
+
+inherit eutils
+
+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"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+IUSE=""
+
+DEPEND="sys-apps/texinfo"
+RDEPEND=""
+
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+ epatch "${FILESDIR}"/which-gentoo.patch
+}
+
+src_install() {
+ emake install DESTDIR="${D}" || die
+ dodoc AUTHORS EXAMPLES NEWS README*
+}