blob: 1f428dbb8c8a5ef18c5c950238c490607b830f2e (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/CUFlow/CUFlow-1.5.ebuild,v 1.6 2007/07/29 16:53:13 phreak Exp $
inherit eutils
DESCRIPTION="Provides an API for reading and analysing raw flow files"
HOMEPAGE="http://www.columbia.edu/acis/networks/advanced/CUFlow/CUFlow.html"
SRC_URI="http://www.columbia.edu/acis/networks/advanced/${PN}/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
RDEPEND="dev-lang/perl
net-analyzer/FlowScan
www-servers/apache"
DEPEND=""
src_unpack() {
unpack ${A}
cd "${S}"
sed -i "s%my \$rrddir = \"/cflow/reports/rrds\";%my \$rrddir = \"/var/lib/flows/rrds\";%" CUGrapher.pl \
|| die "sed failed"
}
src_install() {
insinto /var/lib/flows/bin
doins ${FILESDIR}/CUFlow.cf
exeinto /var/lib/flows/bin
doexe CUFlow.pm
exeinto /var/www/localhost/cgi-bin
doexe CUGrapher.pl
ewarn "CUGrapher.pl has been placed in /var/www/localhost/cgi-bin"
ewarn "If this is not where your cgi-bin directory is then you must"
ewarn "move it manually"
dodoc README.txt
}
pkg_postinst() {
chown flows:flows /var/lib/flows/bin/CUFlow.pm
chown flows:flows /var/lib/flows/bin/CUFlow.cf
elog
elog "Edit /var/lib/flows/bin/CUFlow.cf for your site"
elog "You will need to add the following line to flowscan.cf:"
elog " ReportClasses CUFlow"
elog "You must also comment out any other lines that contain"
elog "ReportClasses."
elog
}
|