diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2016-08-01 10:45:03 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2016-08-01 10:45:46 -0700 |
commit | e037557258dfb9b46cc2c279bb4aba08d0bf7a3d (patch) | |
tree | 313fb44b8718087b6607cc56611dcef5ea710b32 /net-analyzer/flow-tools/flow-tools-0.68.5.1-r9.ebuild | |
parent | www-client/chromium: dev channel bump (54.0.2810.2) (diff) | |
download | gentoo-e037557258dfb9b46cc2c279bb4aba08d0bf7a3d.tar.gz gentoo-e037557258dfb9b46cc2c279bb4aba08d0bf7a3d.tar.bz2 gentoo-e037557258dfb9b46cc2c279bb4aba08d0bf7a3d.zip |
net-analyzer/flow-tools: import initd fix from infra.
Package-Manager: portage-2.2.28
Diffstat (limited to 'net-analyzer/flow-tools/flow-tools-0.68.5.1-r9.ebuild')
-rw-r--r-- | net-analyzer/flow-tools/flow-tools-0.68.5.1-r9.ebuild | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/net-analyzer/flow-tools/flow-tools-0.68.5.1-r9.ebuild b/net-analyzer/flow-tools/flow-tools-0.68.5.1-r9.ebuild new file mode 100644 index 000000000000..087e3c9d9048 --- /dev/null +++ b/net-analyzer/flow-tools/flow-tools-0.68.5.1-r9.ebuild @@ -0,0 +1,75 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit eutils user + +DESCRIPTION="library and programs to process reports from NetFlow data" +HOMEPAGE="https://code.google.com/p/flow-tools/" +SRC_URI="https://${PN}.googlecode.com/files/${P}.tar.bz2" + +LICENSE="BSD GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="debug libressl mysql postgres ssl static-libs" + +RDEPEND="sys-apps/tcp-wrappers + sys-libs/zlib + mysql? ( virtual/mysql ) + postgres? ( dev-db/postgresql:* ) + ssl? ( + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) + )" + +DEPEND="${RDEPEND} + sys-devel/flex + sys-devel/bison" + +DOCS=( ChangeLog README SECURITY TODO ) + +pkg_setup() { + enewgroup flows + enewuser flows -1 -1 /var/lib/flows flows +} + +src_prepare() { + epatch "${FILESDIR}"/${P}-run.patch + epatch "${FILESDIR}"/${P}-syslog.patch +} + +src_configure() { + econf \ + $(use_enable static-libs static) \ + $(usex mysql --with-mysql '') \ + $(usex postgres --with-postgresql=yes --with-postgresql=no) \ + $(usex ssl --with-openssl '') \ + --sysconfdir=/etc/flow-tools +} + +src_install() { + default + + prune_libtool_files + + exeinto /var/lib/flows/bin + doexe "${FILESDIR}"/linkme + + keepdir /var/lib/flows/ft + + newinitd "${FILESDIR}/flowcapture.initd" flowcapture + newconfd "${FILESDIR}/flowcapture.confd" flowcapture + + fowners flows:flows /var/lib/flows + fowners flows:flows /var/lib/flows/bin + fowners flows:flows /var/lib/flows/ft + + fperms 0755 /var/lib/flows + fperms 0755 /var/lib/flows/bin +} + +pkg_preinst() { + enewgroup flows + enewuser flows -1 -1 /var/lib/flows flows +} |