blob: 7731ea66f49a5c5735a085320f0e5b92d273d959 (
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
# Copyright 1999-2009 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-r6.ebuild,v 1.1 2009/05/26 01:26:21 jer Exp $
WANT_AUTOMAKE="1.6"
WANT_AUTOCONF="latest"
inherit eutils flag-o-matic autotools
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="~amd64 ~ia64 ~ppc ~x86"
IUSE="mysql postgres debug ssl"
RDEPEND="sys-apps/tcp-wrappers
sys-libs/zlib
sys-devel/flex
!postgres? ( mysql? ( virtual/mysql ) )
!mysql? ( postgres? ( virtual/postgresql-server ) )
ssl? ( dev-libs/openssl )"
DEPEND="${RDEPEND}
sys-devel/bison"
pkg_setup() {
if use mysql && use postgres ; then
echo
eerror "The mysql and postgres USE flags are mutually exclusive."
eerror "Please choose either USE=mysql or USE=postgres, but not both."
die
fi
enewgroup flows
enewuser flows -1 -1 /var/lib/flows flows
}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-fix-configure.diff
epatch "${FILESDIR}"/${P}-fix-a-zillion-warnings-updated.diff
epatch "${FILESDIR}"/${P}-another-amd64-casting-fixes.patch
use debug || epatch "${FILESDIR}"/${PN}-0.67-nodebug.patch
epatch "${FILESDIR}"/${PN}-0.67-memleak.patch
epatch "${FILESDIR}"/${P}-db_tmp.patch
sed -i "s|^[^#]\(^.*CFLAGS=\).*$|\1-Wall|g" \
configure.in src/Makefile.am lib/Makefile.am || die "sed CFLAGS failed"
# bug 122842, we have /usr/bin/python and not /usr/local/bin/python
sed -i -e "s:/usr/local/bin/python:/usr/bin/python:g" \
"${S}"/bin/flow-{rptfmt,rpt2rrd,log2rrd}
AM_OPTS="-f -i"
eautoreconf || die "autoreconf failed"
}
src_compile() {
use mysql && append-flags "-L/usr/lib/mysql -I/usr/include/mysql"
use postgres && append-flags "-L/usr/lib/postgres -I/usr/include/postgres"
econf \
--localstatedir=/etc/flow-tools \
--enable-lfs \
$(use_with ssl openssl) \
$(use_with mysql) \
$(use_with postgres pgsql) \
|| die "econf failed"
emake CFLAGS="${CFLAGS}" || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die "make 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
}
|