summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--net-analyzer/tcpflow/ChangeLog9
-rw-r--r--net-analyzer/tcpflow/tcpflow-1.0.0.ebuild22
2 files changed, 29 insertions, 2 deletions
diff --git a/net-analyzer/tcpflow/ChangeLog b/net-analyzer/tcpflow/ChangeLog
index 989c1fd9c5a0..b00498780695 100644
--- a/net-analyzer/tcpflow/ChangeLog
+++ b/net-analyzer/tcpflow/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-analyzer/tcpflow
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/tcpflow/ChangeLog,v 1.16 2010/04/17 17:49:08 armin76 Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/tcpflow/ChangeLog,v 1.17 2011/07/07 11:18:34 radhermit Exp $
+
+*tcpflow-1.0.0 (07 Jul 2011)
+
+ 07 Jul 2011; Tim Harder <radhermit@gentoo.org> +tcpflow-1.0.0.ebuild:
+ Version bump. Update to new upstream.
17 Apr 2010; Raúl Porcel <armin76@gentoo.org> tcpflow-0.21.ebuild:
Add ~arm wrt #307545
diff --git a/net-analyzer/tcpflow/tcpflow-1.0.0.ebuild b/net-analyzer/tcpflow/tcpflow-1.0.0.ebuild
new file mode 100644
index 000000000000..34d58f927d69
--- /dev/null
+++ b/net-analyzer/tcpflow/tcpflow-1.0.0.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/tcpflow/tcpflow-1.0.0.ebuild,v 1.1 2011/07/07 11:18:34 radhermit Exp $
+
+EAPI="4"
+
+DESCRIPTION="A tool for monitoring, capturing and storing TCP connections flows"
+HOMEPAGE="http://afflib.org/"
+SRC_URI="http://afflib.org/downloads/${P}.tar.gz"
+
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux ~x86-macos"
+SLOT="0"
+IUSE="test"
+
+RDEPEND="net-libs/libpcap"
+DEPEND="${RDEPEND}
+ test? ( sys-apps/coreutils )"
+
+src_prepare() {
+ sed -i -e 's:`md5 -q \(.*\)`:`md5sum \1 | cut -f1 -d" "`:' tests/*.sh || die
+}