summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWolfram Schlich <wschlich@gentoo.org>2007-06-05 10:27:05 +0000
committerWolfram Schlich <wschlich@gentoo.org>2007-06-05 10:27:05 +0000
commit320411402aa14e0c473644ccfadf59dbefc67f4b (patch)
tree58a936ff85b3a28aa41f114f1da3d3498b6f59d7 /sys-process/htop
parentVersion bump. (diff)
downloadgentoo-2-320411402aa14e0c473644ccfadf59dbefc67f4b.tar.gz
gentoo-2-320411402aa14e0c473644ccfadf59dbefc67f4b.tar.bz2
gentoo-2-320411402aa14e0c473644ccfadf59dbefc67f4b.zip
version bump
(Portage version: 2.1.2.7)
Diffstat (limited to 'sys-process/htop')
-rw-r--r--sys-process/htop/ChangeLog7
-rw-r--r--sys-process/htop/files/digest-htop-0.6.63
-rw-r--r--sys-process/htop/htop-0.6.6.ebuild25
3 files changed, 34 insertions, 1 deletions
diff --git a/sys-process/htop/ChangeLog b/sys-process/htop/ChangeLog
index fdb20f758581..6e6f4a6db8f8 100644
--- a/sys-process/htop/ChangeLog
+++ b/sys-process/htop/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sys-process/htop
# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/htop/ChangeLog,v 1.39 2007/05/13 19:40:52 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-process/htop/ChangeLog,v 1.40 2007/06/05 10:27:05 wschlich Exp $
+
+*htop-0.6.6 (05 Jun 2007)
+
+ 05 Jun 2007; Wolfram Schlich <wschlich@gentoo.org> +htop-0.6.6.ebuild:
+ version bump
13 May 2007; Raúl Porcel <armin76@gentoo.org> htop-0.6.5.ebuild:
Add ~alpha
diff --git a/sys-process/htop/files/digest-htop-0.6.6 b/sys-process/htop/files/digest-htop-0.6.6
new file mode 100644
index 000000000000..c410486a03e2
--- /dev/null
+++ b/sys-process/htop/files/digest-htop-0.6.6
@@ -0,0 +1,3 @@
+MD5 12c8e6e97bd50a4e0a4730d23675fc7b htop-0.6.6.tar.gz 141140
+RMD160 5d91a086657aba75d467cadf3eac4a476814cb5b htop-0.6.6.tar.gz 141140
+SHA256 b2e2ef39afc870c9ef7228959b53fbd38fab02be74bb0d3e91ebf4fdbaa752e0 htop-0.6.6.tar.gz 141140
diff --git a/sys-process/htop/htop-0.6.6.ebuild b/sys-process/htop/htop-0.6.6.ebuild
new file mode 100644
index 000000000000..03479cee5676
--- /dev/null
+++ b/sys-process/htop/htop-0.6.6.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-process/htop/htop-0.6.6.ebuild,v 1.1 2007/06/05 10:27:05 wschlich Exp $
+
+inherit flag-o-matic
+
+IUSE="debug"
+DESCRIPTION="interactive process viewer"
+HOMEPAGE="http://htop.sourceforge.net"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha amd64 hppa ia64 ~mips 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
+}