diff options
author | 2004-08-04 21:24:16 +0000 | |
---|---|---|
committer | 2004-08-04 21:24:16 +0000 | |
commit | 1c34a8d2e009662f7e3a35c8e7fd3fd3035b7b60 (patch) | |
tree | 7b5e2e28e2665c05b9e4a44685141e71c5b8202d /net-analyzer/fprobe | |
parent | (no commit message) (diff) | |
download | historical-1c34a8d2e009662f7e3a35c8e7fd3fd3035b7b60.tar.gz historical-1c34a8d2e009662f7e3a35c8e7fd3fd3035b7b60.tar.bz2 historical-1c34a8d2e009662f7e3a35c8e7fd3fd3035b7b60.zip |
Initial commit. Closes #55533.
Diffstat (limited to 'net-analyzer/fprobe')
-rw-r--r-- | net-analyzer/fprobe/ChangeLog | 10 | ||||
-rw-r--r-- | net-analyzer/fprobe/Manifest | 4 | ||||
-rw-r--r-- | net-analyzer/fprobe/files/digest-fprobe-1.0.4 | 1 | ||||
-rw-r--r-- | net-analyzer/fprobe/fprobe-1.0.4.ebuild | 32 | ||||
-rw-r--r-- | net-analyzer/fprobe/metadata.xml | 8 |
5 files changed, 55 insertions, 0 deletions
diff --git a/net-analyzer/fprobe/ChangeLog b/net-analyzer/fprobe/ChangeLog new file mode 100644 index 000000000000..f1330f38fde9 --- /dev/null +++ b/net-analyzer/fprobe/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for net-analyzer/fprobe +# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fprobe/ChangeLog,v 1.1 2004/08/04 21:24:16 squinky86 Exp $ + +*fprobe-1.0.4 (04 Aug 2004) + + 04 Aug 2004; Jon Hood <squinky86@gentoo.org> +metadata.xml, + +fprobe-1.0.4.ebuild: + Initial commit. Thanks to BlueRaven <blue@ravenconsulting.it> in #55533. + diff --git a/net-analyzer/fprobe/Manifest b/net-analyzer/fprobe/Manifest new file mode 100644 index 000000000000..e88f34c1e813 --- /dev/null +++ b/net-analyzer/fprobe/Manifest @@ -0,0 +1,4 @@ +MD5 d8d30dbfd6c3a75508c100e2ebe5d2c6 ChangeLog 405 +MD5 b11a70e1b7569dd6b3fa230a0e889d04 metadata.xml 227 +MD5 b557da401446521bb304c55419397863 fprobe-1.0.4.ebuild 830 +MD5 b0ff0b030ad07fae5ed5c1e563e941e5 files/digest-fprobe-1.0.4 64 diff --git a/net-analyzer/fprobe/files/digest-fprobe-1.0.4 b/net-analyzer/fprobe/files/digest-fprobe-1.0.4 new file mode 100644 index 000000000000..1ac849dc7042 --- /dev/null +++ b/net-analyzer/fprobe/files/digest-fprobe-1.0.4 @@ -0,0 +1 @@ +MD5 4f549ca54b887f3b78c9c7217ea5647e fprobe-1.0.4.tar.bz2 75059 diff --git a/net-analyzer/fprobe/fprobe-1.0.4.ebuild b/net-analyzer/fprobe/fprobe-1.0.4.ebuild new file mode 100644 index 000000000000..095ea88117c2 --- /dev/null +++ b/net-analyzer/fprobe/fprobe-1.0.4.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fprobe/fprobe-1.0.4.ebuild,v 1.1 2004/08/04 21:24:16 squinky86 Exp $ + +DESCRIPTION="A libpcap-based tool to collect network traffic data and emit it as NetFlow flows" +HOMEPAGE="http://fprobe.sourceforge.net" +LICENSE="GPL-2" + +SRC_URI="mirror://sourceforge/fprobe/${P}.tar.bz2" +SLOT="0" +KEYWORDS="~x86" + +IUSE="debug messages" + +DEPEND=">=net-libs/libpcap-0.8.3" + +src_compile() { + local myconf + myconf="`use_enable debug` + `use_enable messages`" + + econf ${myconf} || die "configure failed" + + emake || die "make failed" +} + +src_install() { + make DESTDIR=${D} install || die "install failed" + + dodoc AUTHORS COPYING INSTALL NEWS README TODO + docinto contrib ; dodoc contrib/tg.sh +} diff --git a/net-analyzer/fprobe/metadata.xml b/net-analyzer/fprobe/metadata.xml new file mode 100644 index 000000000000..9eb186981c76 --- /dev/null +++ b/net-analyzer/fprobe/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>netmon</herd> + <maintainer> + <email>squinky86@gentoo.org</email> + </maintainer> +</pkgmetadata> |