blob: 1516a2bd5968d90c93e1c472825ce66cdb4a4480 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/snortalog/snortalog-2.4.0.ebuild,v 1.8 2006/02/13 14:53:52 mcummings Exp $
inherit eutils
MY_P="${PN}_v${PV}"
DESCRIPTION="a powerful perl script that summarizes snort logs"
SRC_URI="http://jeremy.chartier.free.fr/${PN}/${MY_P}.tgz
tcltk? ( mirror://gentoo/${P}-fix-gui.diff.gz )"
HOMEPAGE="http://jeremy.chartier.free.fr/snortalog/"
KEYWORDS="~x86 ~ppc ~amd64"
LICENSE="GPL-2"
SLOT="0"
IUSE="tcltk"
S="${WORKDIR}/${MY_P%.?}"
RDEPEND="dev-lang/perl
virtual/perl-Getopt-Long
virtual/perl-DB_File
dev-perl/HTML-HTMLDoc
tcltk? ( dev-perl/perl-tk
dev-perl/GDGraph )"
src_unpack() {
[[ -d ${S} ]] || mkdir ${S}
cd ${S}
unpack ${A}
# one file created at a time ( pdf or html )
epatch ${FILESDIR}/${P}-limit-args.diff
use tcltk || epatch ${FILESDIR}/${P}-notcltk.diff
use tcltk && epatch ${DISTDIR}/${P}-fix-gui.diff.gz
# fix paths, erroneous can access message
sed -i -e "s:\(modules/\):/usr/lib/snortalog/${PV}/\1:g" \
-e 's:\($domains_file = "\)conf/\(domains\)\(".*\):\1/etc/snortalog/\2\3:' \
-e 's:\($rules_file = "\)conf/\(rules\)\(".*\):\1/etc/snortalog/\2\3:' \
-e 's:\($picts_dir ="\)picts\(".*\):\1/etc/snortalog/picts\2:' \
-e 's:\($hw_file = "\)conf/\(hw\)\(".*\):\1/etc/snortalog/\2\3:' \
-e 's:\($lang_file ="\)conf/\(lang\)\(".*\):\1/etc/snortalog/\2\3:' \
-e 's:Can access:Cannot access:' \
snortalog.pl || die "sed snortalog.pl failed"
}
src_install () {
dobin snortalog.pl || die
insinto /etc/${PN}
doins conf/{domains,hw,lang,rules}
insinto /etc/${PN}/picts
doins picts/*
insinto /usr/lib/${PN}/${PV}/modules
doins -r modules/*
cd doc
dodoc CHANGES
}
|