summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Roovers <jer@gentoo.org>2012-06-14 14:23:00 +0000
committerJeroen Roovers <jer@gentoo.org>2012-06-14 14:23:00 +0000
commitb65e73eee9e2ae050094444c67d81378535a4bef (patch)
treefa3e77f97d2cf0bb5278cee2406d8da614a54f8c /net-analyzer
parentOld. (diff)
downloadgentoo-2-b65e73eee9e2ae050094444c67d81378535a4bef.tar.gz
gentoo-2-b65e73eee9e2ae050094444c67d81378535a4bef.tar.bz2
gentoo-2-b65e73eee9e2ae050094444c67d81378535a4bef.zip
Old.
(Portage version: 2.2.0_alpha110/cvs/Linux x86_64)
Diffstat (limited to 'net-analyzer')
-rw-r--r--net-analyzer/flow-tools/ChangeLog5
-rw-r--r--net-analyzer/flow-tools/flow-tools-0.68.5.1.ebuild67
2 files changed, 4 insertions, 68 deletions
diff --git a/net-analyzer/flow-tools/ChangeLog b/net-analyzer/flow-tools/ChangeLog
index fc86a15b4a1e..c175d9ba5816 100644
--- a/net-analyzer/flow-tools/ChangeLog
+++ b/net-analyzer/flow-tools/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-analyzer/flow-tools
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/flow-tools/ChangeLog,v 1.58 2012/06/14 04:28:37 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/flow-tools/ChangeLog,v 1.59 2012/06/14 14:23:00 jer Exp $
+
+ 14 Jun 2012; Jeroen Roovers <jer@gentoo.org> -flow-tools-0.68.5.1.ebuild:
+ Old.
14 Jun 2012; Jeff Horelick <jdhore@gentoo.org> flow-tools-0.68.5.1-r1.ebuild:
marked x86 per bug 419211
diff --git a/net-analyzer/flow-tools/flow-tools-0.68.5.1.ebuild b/net-analyzer/flow-tools/flow-tools-0.68.5.1.ebuild
deleted file mode 100644
index 1fd96f4bdfdd..000000000000
--- a/net-analyzer/flow-tools/flow-tools-0.68.5.1.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/flow-tools/flow-tools-0.68.5.1.ebuild,v 1.5 2012/06/04 10:40:49 jer Exp $
-
-EAPI="2"
-
-inherit user
-
-DESCRIPTION="library and programs to collect, send, process, and generate reports from NetFlow data"
-HOMEPAGE="http://code.google.com/p/flow-tools/"
-SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.bz2"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="mysql postgres debug ssl"
-
-RDEPEND="sys-apps/tcp-wrappers
- sys-libs/zlib
- mysql? ( virtual/mysql )
- postgres? ( dev-db/postgresql-base )
- ssl? ( dev-libs/openssl )"
-
-DEPEND="${RDEPEND}
- sys-devel/flex
- sys-devel/bison"
-
-pkg_setup() {
- enewgroup flows
- enewuser flows -1 -1 /var/lib/flows flows
-}
-
-src_configure() {
- local myconf="--sysconfdir=/etc/flow-tools"
- use mysql && myconf="${myconf} --with-mysql"
- if use postgres; then
- myconf="${myconf} --with-postgresql=yes"
- else
- myconf="${myconf} --with-postgresql=no"
- fi
- use ssl && myconf="${myconf} --with-openssl"
- econf ${myconf} || die "econf failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- dodoc ChangeLog README SECURITY TODO
-
- keepdir /var/lib/flows
- keepdir /var/lib/flows/bin
- exeinto /var/lib/flows/bin
- doexe "${FILESDIR}"/linkme
- keepdir /var/run/flows
-
- newinitd "${FILESDIR}/flowcapture.initd" flowcapture
- newconfd "${FILESDIR}/flowcapture.confd" flowcapture
-
-}
-
-pkg_postinst() {
- chown flows:flows /var/run/flows
- chown flows:flows /var/lib/flows
- chown flows:flows /var/lib/flows/bin
- chmod 0755 /var/run/flows
- chmod 0755 /var/lib/flows
- chmod 0755 /var/lib/flows/bin
-}