summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Roovers <jer@gentoo.org>2011-08-05 20:34:17 +0000
committerJeroen Roovers <jer@gentoo.org>2011-08-05 20:34:17 +0000
commitbe73c101a2df4f183345cf7f27cb1bfe20b0febd (patch)
tree6eb1f0746c323f34765371ef815ae9a1f2ebd0e9 /net-analyzer/tcptrack
parentInitial import. sci-libs/ds9 is from sources has many issues with patching bu... (diff)
downloadgentoo-2-be73c101a2df4f183345cf7f27cb1bfe20b0febd.tar.gz
gentoo-2-be73c101a2df4f183345cf7f27cb1bfe20b0febd.tar.bz2
gentoo-2-be73c101a2df4f183345cf7f27cb1bfe20b0febd.zip
Version bump. Remove -Werror from CFLAGS.
(Portage version: 2.2.0_alpha50/cvs/Linux x86_64)
Diffstat (limited to 'net-analyzer/tcptrack')
-rw-r--r--net-analyzer/tcptrack/ChangeLog8
-rw-r--r--net-analyzer/tcptrack/tcptrack-1.4.2.ebuild (renamed from net-analyzer/tcptrack/tcptrack-1.2.0.ebuild)25
2 files changed, 18 insertions, 15 deletions
diff --git a/net-analyzer/tcptrack/ChangeLog b/net-analyzer/tcptrack/ChangeLog
index 1d8da4f8af70..e1b5a366dbe6 100644
--- a/net-analyzer/tcptrack/ChangeLog
+++ b/net-analyzer/tcptrack/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for net-analyzer/tcptrack
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/tcptrack/ChangeLog,v 1.21 2011/03/06 20:13:36 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/tcptrack/ChangeLog,v 1.22 2011/08/05 20:34:17 jer Exp $
+
+*tcptrack-1.4.2 (05 Aug 2011)
+
+ 05 Aug 2011; Jeroen Roovers <jer@gentoo.org> -tcptrack-1.2.0.ebuild,
+ +tcptrack-1.4.2.ebuild:
+ Version bump. Remove -Werror from CFLAGS.
*tcptrack-1.4.0 (06 Mar 2011)
diff --git a/net-analyzer/tcptrack/tcptrack-1.2.0.ebuild b/net-analyzer/tcptrack/tcptrack-1.4.2.ebuild
index 6959edd60f63..0bb9028b3459 100644
--- a/net-analyzer/tcptrack/tcptrack-1.2.0.ebuild
+++ b/net-analyzer/tcptrack/tcptrack-1.4.2.ebuild
@@ -1,28 +1,25 @@
-# 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/tcptrack/tcptrack-1.2.0.ebuild,v 1.3 2008/03/31 18:00:43 cedk Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/tcptrack/tcptrack-1.4.2.ebuild,v 1.1 2011/08/05 20:34:17 jer Exp $
-inherit eutils
+EAPI="4"
+
+inherit autotools
DESCRIPTION="Passive per-connection tcp bandwidth monitor"
HOMEPAGE="http://www.rhythm.cx/~steve/devel/tcptrack/"
SRC_URI="http://www.rhythm.cx/~steve/devel/tcptrack/release/${PV}/source/${P}.tar.gz"
-LICENSE="GPL-2"
+LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~amd64 ~ppc x86"
+KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
DEPEND="net-libs/libpcap
sys-libs/ncurses"
+RDEPEND="${DEPEND}"
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/${P}-string_h.patch
-}
-
-src_install() {
- einstall || die
- dodoc AUTHORS ChangeLog NEWS README TODO
+src_prepare() {
+ sed -i src/Makefile.am -e 's| -Werror||g' || die
+ eautomake
}