diff options
-rw-r--r-- | net-analyzer/tcpflow/ChangeLog | 7 | ||||
-rw-r--r-- | net-analyzer/tcpflow/tcpflow-1.2.9.ebuild | 23 |
2 files changed, 29 insertions, 1 deletions
diff --git a/net-analyzer/tcpflow/ChangeLog b/net-analyzer/tcpflow/ChangeLog index d24f1549c345..b2081a08ee13 100644 --- a/net-analyzer/tcpflow/ChangeLog +++ b/net-analyzer/tcpflow/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-analyzer/tcpflow # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/tcpflow/ChangeLog,v 1.42 2012/08/01 18:45:12 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/tcpflow/ChangeLog,v 1.43 2012/08/20 02:04:47 radhermit Exp $ + +*tcpflow-1.2.9 (20 Aug 2012) + + 20 Aug 2012; Tim Harder <radhermit@gentoo.org> +tcpflow-1.2.9.ebuild: + Version bump. *tcpflow-1.2.8 (01 Aug 2012) diff --git a/net-analyzer/tcpflow/tcpflow-1.2.9.ebuild b/net-analyzer/tcpflow/tcpflow-1.2.9.ebuild new file mode 100644 index 000000000000..3a0d0d1995a4 --- /dev/null +++ b/net-analyzer/tcpflow/tcpflow-1.2.9.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/tcpflow/tcpflow-1.2.9.ebuild,v 1.1 2012/08/20 02:04:47 radhermit Exp $ + +EAPI="4" + +DESCRIPTION="A tool for monitoring, capturing and storing TCP connections flows" +HOMEPAGE="https://github.com/simsong/tcpflow" +SRC_URI="mirror://github/simsong/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +KEYWORDS="~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux ~x86-macos" +SLOT="0" +IUSE="test" + +RDEPEND="net-libs/libpcap + sys-libs/zlib" +DEPEND="${RDEPEND} + test? ( sys-apps/coreutils )" + +src_prepare() { + sed -i -e 's:`md5 -q \(.*\)`:`md5sum \1 | cut -f1 -d" "`:' tests/*.sh || die +} |