summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWolfram Schlich <wschlich@gentoo.org>2006-05-21 20:36:29 +0000
committerWolfram Schlich <wschlich@gentoo.org>2006-05-21 20:36:29 +0000
commite5a8897507a31908f0a4050ac47dd38e5b5ee9fb (patch)
treeee87912d50ca0d3262acc879bd2433756ef07691 /sys-process
parentunmask new ghostscript-esp with cjk support (diff)
downloadgentoo-2-e5a8897507a31908f0a4050ac47dd38e5b5ee9fb.tar.gz
gentoo-2-e5a8897507a31908f0a4050ac47dd38e5b5ee9fb.tar.bz2
gentoo-2-e5a8897507a31908f0a4050ac47dd38e5b5ee9fb.zip
version bump
(Portage version: 2.1_pre9-r4)
Diffstat (limited to 'sys-process')
-rw-r--r--sys-process/htop/ChangeLog7
-rw-r--r--sys-process/htop/files/digest-htop-0.5.32
-rw-r--r--sys-process/htop/files/digest-htop-0.6.23
-rw-r--r--sys-process/htop/htop-0.6.2.ebuild24
4 files changed, 35 insertions, 1 deletions
diff --git a/sys-process/htop/ChangeLog b/sys-process/htop/ChangeLog
index 47a8a035f9c8..8d5e256333fc 100644
--- a/sys-process/htop/ChangeLog
+++ b/sys-process/htop/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sys-process/htop
# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/htop/ChangeLog,v 1.16 2006/05/16 19:54:38 corsair Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-process/htop/ChangeLog,v 1.17 2006/05/21 20:36:29 wschlich Exp $
+
+*htop-0.6.2 (21 May 2006)
+
+ 21 May 2006; Wolfram Schlich <wschlich@gentoo.org> +htop-0.6.2.ebuild:
+ version bump
16 May 2006; Markus Rothe <corsair@gentoo.org> htop-0.6.ebuild:
Added ~ppc64; bug #133378
diff --git a/sys-process/htop/files/digest-htop-0.5.3 b/sys-process/htop/files/digest-htop-0.5.3
index 86578594d67b..bae5c4210652 100644
--- a/sys-process/htop/files/digest-htop-0.5.3
+++ b/sys-process/htop/files/digest-htop-0.5.3
@@ -1 +1,3 @@
MD5 8bf9e45052ba87828eb519c7f25422e5 htop-0.5.3.tar.gz 123683
+RMD160 c5e0797f7b9e66d96ae138a7e7c852788010cfcb htop-0.5.3.tar.gz 123683
+SHA256 b84d9f9478536f8d81c7057bf68a14f114b7fe4d896db6361873ab414b3feba2 htop-0.5.3.tar.gz 123683
diff --git a/sys-process/htop/files/digest-htop-0.6.2 b/sys-process/htop/files/digest-htop-0.6.2
new file mode 100644
index 000000000000..3c8a2360327b
--- /dev/null
+++ b/sys-process/htop/files/digest-htop-0.6.2
@@ -0,0 +1,3 @@
+MD5 995e76b7fd18c05fb7fb5ef10a2166ca htop-0.6.2.tar.gz 131650
+RMD160 7b07ff85951b32f0f095ed9e9c180978f0bd78e3 htop-0.6.2.tar.gz 131650
+SHA256 47abd5562a602db5ae4f73d6168114e701bf6a3bd7be73cf73bacdb389cb4ab7 htop-0.6.2.tar.gz 131650
diff --git a/sys-process/htop/htop-0.6.2.ebuild b/sys-process/htop/htop-0.6.2.ebuild
new file mode 100644
index 000000000000..f4bc894a5f42
--- /dev/null
+++ b/sys-process/htop/htop-0.6.2.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2006 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-process/htop/htop-0.6.2.ebuild,v 1.1 2006/05/21 20:36:29 wschlich Exp $
+
+inherit debug flag-o-matic
+
+DESCRIPTION="interactive process viewer"
+HOMEPAGE="http://htop.sourceforge.net"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+DEPEND="sys-libs/ncurses"
+
+src_compile() {
+ useq debug && append-flags -O -ggdb -DDEBUG
+ econf || die "configure failed"
+ emake || die "make failed"
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die "make install failed"
+ dodoc README ChangeLog TODO
+}