* [gentoo-commits] gentoo-x86 commit in net-analyzer/iftop: metadata.xml ChangeLog iftop-1.0_pre2.ebuild
@ 2013-05-03 21:39 Justin Lecher (jlec)
0 siblings, 0 replies; only message in thread
From: Justin Lecher (jlec) @ 2013-05-03 21:39 UTC (permalink / raw
To: gentoo-commits
jlec 13/05/03 21:39:15
Modified: metadata.xml ChangeLog iftop-1.0_pre2.ebuild
Log:
net-analyzer/iftop: Add fix for ncurss[tinfo], #468520
(Portage version: 2.2.0_alpha173/cvs/Linux x86_64, signed Manifest commit with key 8009D6F070EB7916)
Revision Changes Path
1.4 net-analyzer/iftop/metadata.xml
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/iftop/metadata.xml?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/iftop/metadata.xml?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/iftop/metadata.xml?r1=1.3&r2=1.4
Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/iftop/metadata.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- metadata.xml 6 Jan 2006 17:48:32 -0000 1.3
+++ metadata.xml 3 May 2013 21:39:15 -0000 1.4
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
-<herd>netmon</herd>
+ <herd>netmon</herd>
</pkgmetadata>
1.48 net-analyzer/iftop/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/iftop/ChangeLog?rev=1.48&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/iftop/ChangeLog?rev=1.48&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/iftop/ChangeLog?r1=1.47&r2=1.48
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/iftop/ChangeLog,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- ChangeLog 18 Jan 2013 14:55:17 -0000 1.47
+++ ChangeLog 3 May 2013 21:39:15 -0000 1.48
@@ -1,6 +1,10 @@
# ChangeLog for net-analyzer/iftop
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/iftop/ChangeLog,v 1.47 2013/01/18 14:55:17 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/iftop/ChangeLog,v 1.48 2013/05/03 21:39:15 jlec Exp $
+
+ 03 May 2013; Justin Lecher <jlec@gentoo.org> iftop-1.0_pre2.ebuild,
+ +files/iftop-1.0_pre2-tinfo.patch, metadata.xml:
+ Add fix for ncurss[tinfo], #468520
18 Jan 2013; Lars Wendler <polynomial-c@gentoo.org> iftop-1.0_pre2.ebuild:
non-maintaienr commit: Removed ipv6 dependency now that a proper fix went
1.6 net-analyzer/iftop/iftop-1.0_pre2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/iftop/iftop-1.0_pre2.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/iftop/iftop-1.0_pre2.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/iftop/iftop-1.0_pre2.ebuild?r1=1.5&r2=1.6
Index: iftop-1.0_pre2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/iftop/iftop-1.0_pre2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- iftop-1.0_pre2.ebuild 18 Jan 2013 14:55:17 -0000 1.5
+++ iftop-1.0_pre2.ebuild 3 May 2013 21:39:15 -0000 1.6
@@ -1,8 +1,10 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/iftop/iftop-1.0_pre2.ebuild,v 1.5 2013/01/18 14:55:17 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/iftop/iftop-1.0_pre2.ebuild,v 1.6 2013/05/03 21:39:15 jlec Exp $
-EAPI=4
+EAPI=5
+
+inherit autotools eutils
DESCRIPTION="display bandwidth usage on an interface"
SRC_URI="http://www.ex-parrot.com/~pdw/iftop/download/${P/_/}.tar.gz"
@@ -19,6 +21,12 @@
S="${WORKDIR}"/${P/_/}
+src_prepare() {
+ epatch "${FILESDIR}"/${P}-tinfo.patch
+ sed -i 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/g' configure.in || die
+ eautoreconf
+}
+
src_install() {
dosbin iftop
doman iftop.8
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2013-05-03 21:39 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-03 21:39 [gentoo-commits] gentoo-x86 commit in net-analyzer/iftop: metadata.xml ChangeLog iftop-1.0_pre2.ebuild Justin Lecher (jlec)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox