blob: a277112037840f3e277656f3f6d280b967e348c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
# Copyright 1999-2013 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-r2.ebuild,v 1.5 2013/02/26 15:41:31 jer Exp $
EAPI=4
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 GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="debug mysql postgres ssl static-libs"
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"
DOCS=( ChangeLog README SECURITY TODO )
pkg_setup() {
enewgroup flows
enewuser flows -1 -1 /var/lib/flows flows
}
src_prepare() {
sed -i \
-e 's|/var/run/|/run/|g' \
src/flow-capture.c \
src/flow-fanout.c \
|| die
}
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} $(use_enable static-libs static)
}
src_install() {
default
exeinto /var/lib/flows/bin
keepdir /run/flows
keepdir /var/lib/flows
keepdir /var/lib/flows/bin
doexe "${FILESDIR}"/linkme
newinitd "${FILESDIR}/flowcapture.initd" flowcapture
newconfd "${FILESDIR}/flowcapture.confd" flowcapture
if ! use static-libs; then
rm -f "${D}"/usr/lib*/libft.la || die
fi
fowners flows:flows /run/flows
fowners flows:flows /var/lib/flows
fowners flows:flows /var/lib/flows/bin
fperms 0755 /run/flows
fperms 0755 /var/lib/flows
fperms 0755 /var/lib/flows/bin
}
|