summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Roovers <jer@gentoo.org>2011-04-20 00:10:14 +0000
committerJeroen Roovers <jer@gentoo.org>2011-04-20 00:10:14 +0000
commit1b4b26e30ece0f4c5d6aa85f6563584587559826 (patch)
tree3aa3ce4065423da2a2c991f9a9356bb59d522174 /net-analyzer/nload
parentVersion bump thanks to euscan. (diff)
downloadgentoo-2-1b4b26e30ece0f4c5d6aa85f6563584587559826.tar.gz
gentoo-2-1b4b26e30ece0f4c5d6aa85f6563584587559826.tar.bz2
gentoo-2-1b4b26e30ece0f4c5d6aa85f6563584587559826.zip
Version bump thanks to euscan. Set RDEPEND. Replace prevent-stripping patch with something much simpler.
(Portage version: 2.2.0_alpha30/cvs/Linux i686)
Diffstat (limited to 'net-analyzer/nload')
-rw-r--r--net-analyzer/nload/ChangeLog11
-rw-r--r--net-analyzer/nload/nload-0.7.1.ebuild5
-rw-r--r--net-analyzer/nload/nload-0.7.2.ebuild29
3 files changed, 41 insertions, 4 deletions
diff --git a/net-analyzer/nload/ChangeLog b/net-analyzer/nload/ChangeLog
index 40a1b962ecaa..78653fbb921a 100644
--- a/net-analyzer/nload/ChangeLog
+++ b/net-analyzer/nload/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for net-analyzer/nload
-# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nload/ChangeLog,v 1.30 2008/11/11 20:31:31 opfer Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nload/ChangeLog,v 1.31 2011/04/20 00:10:13 jer Exp $
+
+*nload-0.7.2 (20 Apr 2011)
+
+ 20 Apr 2011; Jeroen Roovers <jer@gentoo.org> nload-0.7.1.ebuild,
+ +nload-0.7.2.ebuild:
+ Version bump thanks to euscan. Set RDEPEND. Replace prevent-stripping patch
+ with something much simpler.
11 Nov 2008; Christian Faulhammer <opfer@gentoo.org>
+files/nload-0.6.0-prevent-stripping.patch:
diff --git a/net-analyzer/nload/nload-0.7.1.ebuild b/net-analyzer/nload/nload-0.7.1.ebuild
index e60886507cf9..c14aa330a5b6 100644
--- a/net-analyzer/nload/nload-0.7.1.ebuild
+++ b/net-analyzer/nload/nload-0.7.1.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nload/nload-0.7.1.ebuild,v 1.4 2008/06/29 14:04:11 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nload/nload-0.7.1.ebuild,v 1.5 2011/04/20 00:10:14 jer Exp $
inherit eutils autotools
@@ -14,6 +14,7 @@ KEYWORDS="amd64 ppc sparc x86"
IUSE=""
DEPEND=">=sys-libs/ncurses-5.2"
+RDEPEND="${DEPEND}"
src_unpack() {
unpack ${A}
diff --git a/net-analyzer/nload/nload-0.7.2.ebuild b/net-analyzer/nload/nload-0.7.2.ebuild
new file mode 100644
index 000000000000..92649611fbff
--- /dev/null
+++ b/net-analyzer/nload/nload-0.7.2.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nload/nload-0.7.2.ebuild,v 1.1 2011/04/20 00:10:13 jer Exp $
+
+EAPI="3"
+
+inherit eutils
+
+DESCRIPTION="console application which monitors network traffic and bandwidth usage in real time"
+HOMEPAGE="http://www.roland-riegel.de/nload/index.html"
+SRC_URI="mirror://sourceforge/nload/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+IUSE=""
+
+DEPEND=">=sys-libs/ncurses-5.2"
+RDEPEND="${DEPEND}"
+
+src_configure() {
+ # --enable-debug do not strip debugging symbols (default no)
+ econf --enable-debug
+}
+
+src_install () {
+ emake DESTDIR="${D}" install || die "emake install failed."
+ dodoc AUTHORS ChangeLog README
+}