diff options
author | Maik Schreiber <blizzy@gentoo.org> | 2002-10-29 17:51:26 +0000 |
---|---|---|
committer | Maik Schreiber <blizzy@gentoo.org> | 2002-10-29 17:51:26 +0000 |
commit | e7772f01097e506dd8e35262cc60ec74c06961d0 (patch) | |
tree | 9791a09c2bda4a546921ec48f4f9598f4608f538 /net-analyzer/tcpflow | |
parent | new version (diff) | |
download | gentoo-2-e7772f01097e506dd8e35262cc60ec74c06961d0.tar.gz gentoo-2-e7772f01097e506dd8e35262cc60ec74c06961d0.tar.bz2 gentoo-2-e7772f01097e506dd8e35262cc60ec74c06961d0.zip |
initial import
Diffstat (limited to 'net-analyzer/tcpflow')
-rw-r--r-- | net-analyzer/tcpflow/ChangeLog | 8 | ||||
-rw-r--r-- | net-analyzer/tcpflow/files/digest-tcpflow-0.20 | 1 | ||||
-rw-r--r-- | net-analyzer/tcpflow/tcpflow-0.20.ebuild | 24 |
3 files changed, 33 insertions, 0 deletions
diff --git a/net-analyzer/tcpflow/ChangeLog b/net-analyzer/tcpflow/ChangeLog new file mode 100644 index 000000000000..166a8f855933 --- /dev/null +++ b/net-analyzer/tcpflow/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for net-analyzer/tcpflow +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/tcpflow/ChangeLog,v 1.1 2002/10/29 17:51:26 blizzy Exp $ + +*tcpflow-0.20 (29 Oct 2002) + + 29 Oct 2002; Maik Schreiber <blizzy@gentoo.org> : Initial import. ebuild + submitted by Maurizio Disimino <maurizio@iridium.aetheric.org> diff --git a/net-analyzer/tcpflow/files/digest-tcpflow-0.20 b/net-analyzer/tcpflow/files/digest-tcpflow-0.20 new file mode 100644 index 000000000000..f77710c1c986 --- /dev/null +++ b/net-analyzer/tcpflow/files/digest-tcpflow-0.20 @@ -0,0 +1 @@ +MD5 cce28bfb13fa7a9eea17af9ff50b6580 tcpflow-0.20.tar.gz 72131 diff --git a/net-analyzer/tcpflow/tcpflow-0.20.ebuild b/net-analyzer/tcpflow/tcpflow-0.20.ebuild new file mode 100644 index 000000000000..da9df0a406e0 --- /dev/null +++ b/net-analyzer/tcpflow/tcpflow-0.20.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/tcpflow/tcpflow-0.20.ebuild,v 1.1 2002/10/29 17:51:26 blizzy Exp $ + +DESCRIPTION="A Tool for monitoring, capturing and storing TCP connections flows" +HOMEPAGE="http://www.circlemud.org/~jelson/software/tcpflow/" +SRC_URI="http://www.circlemud.org/pub/jelson/${PN}/${P}.tar.gz" +LICENSE="GPL-2" +KEYWORDS="~x86" +SLOT="0" + +RDEPEND="net-libs/libpcap" + +src_compile() { + econf || die "configure problem" + emake || die "compile problem" +} + +src_install() { + einstall + doman tcpflow.1 + dodoc AUTHORS COPYING ChangeLog NEWS README +} + |