summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Holzer <mholzer@gentoo.org>2003-05-18 20:03:10 +0000
committerMartin Holzer <mholzer@gentoo.org>2003-05-18 20:03:10 +0000
commit15206760b3ccba76517d9fdaf851c755b40d83bc (patch)
treeb7eb4d51d1628ae9170d9e6f0fc668f311e40509 /net-analyzer/flow-tools
parentinitial ebuild (diff)
downloadhistorical-15206760b3ccba76517d9fdaf851c755b40d83bc.tar.gz
historical-15206760b3ccba76517d9fdaf851c755b40d83bc.tar.bz2
historical-15206760b3ccba76517d9fdaf851c755b40d83bc.zip
initial ebuild
Diffstat (limited to 'net-analyzer/flow-tools')
-rw-r--r--net-analyzer/flow-tools/Manifest3
-rw-r--r--net-analyzer/flow-tools/files/digest-flow-tools-0.661
-rw-r--r--net-analyzer/flow-tools/flow-tools-0.66.ebuild32
3 files changed, 35 insertions, 1 deletions
diff --git a/net-analyzer/flow-tools/Manifest b/net-analyzer/flow-tools/Manifest
index 49361dd65712..3f2df174a940 100644
--- a/net-analyzer/flow-tools/Manifest
+++ b/net-analyzer/flow-tools/Manifest
@@ -1,2 +1,3 @@
-MD5 e7409be694a998303d37c90fae39135e flow-tools-0.66.ebuild 584
+MD5 f1b01cb8914d0a861c61156d99c4dc5b flow-tools-0.66.ebuild 891
+MD5 7e13914ca5deb4e19aebfd482bee9379 ChangeLog 422
MD5 4274d0fb58b88876a5767ab9d1c6204c files/digest-flow-tools-0.66 67
diff --git a/net-analyzer/flow-tools/files/digest-flow-tools-0.66 b/net-analyzer/flow-tools/files/digest-flow-tools-0.66
new file mode 100644
index 000000000000..f9168d8c9b01
--- /dev/null
+++ b/net-analyzer/flow-tools/files/digest-flow-tools-0.66
@@ -0,0 +1 @@
+MD5 a32f02be71b29f0d4fe65c0d196d0093 flow-tools-0.66.tar.gz 967711
diff --git a/net-analyzer/flow-tools/flow-tools-0.66.ebuild b/net-analyzer/flow-tools/flow-tools-0.66.ebuild
new file mode 100644
index 000000000000..cf3bb4dd82cf
--- /dev/null
+++ b/net-analyzer/flow-tools/flow-tools-0.66.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/flow-tools/flow-tools-0.66.ebuild,v 1.1 2003/05/18 20:02:51 mholzer Exp $
+
+DESCRIPTION="Flow-tools is a package for collecting and processing NetFlow data"
+HOMEPAGE="http://www.splintered.net/sw/flow-tools/"
+SRC_URI="ftp://ftp.eng.oar.net/pub/flow-tools/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~x86"
+
+IUSE=""
+
+DEPEND="virtual/glibc sys-apps/tcp-wrappers sys-libs/zlib"
+
+S=${WORKDIR}/${P}
+
+src_compile() {
+ aclocal
+ automake
+ econf \
+ --without-mysql \
+ --localstatedir=/etc/flow-tools \
+ CC="$CC" CFLAGS="$CFLAGS" || die
+ emake CC="$CC" CFLAGS="$CFLAGS" || die
+}
+
+src_install() {
+ einstall localstatedir=$D/etc/flow-tools CC="$CC" CFLAGS="$CFLAGS"
+ dodoc AUTHORS COPYING NEWS ChangeLog README INSTALL SECURITY TODO
+}