blob: dd2ca38fc3036190e28b18a8eba34898523f0c36 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/snortsnarf/snortsnarf-021111.1-r1.ebuild,v 1.5 2004/07/11 10:36:38 eldad Exp $
DESCRIPTION="Snort Snarf parses Snort log files, and converts them into easy-to-read HTML files."
HOMEPAGE="http://www.silicondefense.com/software/snortsnarf/"
MY_P="SnortSnarf-${PV}"
S=${WORKDIR}/${MY_P}
SRC_URI="http://www.silicondefense.com/software/snortsnarf/${MY_P}.tar.gz"
IUSE=""
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~ppc"
RDEPEND="dev-lang/perl
dev-perl/Time-modules
dev-perl/XML-Parser"
DEPEND="${RDEPEND}
>=sys-apps/sed-4.0.7"
src_unpack() {
unpack ${A}
cd ${S}
sed -i -e 's:"snort.alert":"snort".$dirsep."alert":g' snortsnarf.pl
}
src_install() {
PERL_V=$( perl '-V:version' | awk -F "'" '{print $2}' )
dodoc Usage COPYING Changes README README.SISR README.nmap2html \
new-annotation-base.xml
dobin snortsnarf.pl nmap2html/log2db.pl nmap2html/nmap2html.pl \
nmap2html/nmaplog-dns.pl utilities/*
dodir /var/www/localhost/snortsnarf/cgi-bin
dodir /usr/lib/perl5/site_perl/$PERL_V/SnortSnarf
insinto /var/www/localhost/snortsnarf/cgi-bin
doins cgi/*
cp -a include/* ${D}/usr/lib/perl5/site_perl/$PERL_V
}
pkg_postinst() {
setup_anns_dir.pl /var/log/snortsnarf
}
|