blob: d9125b0b0558ef2c8770cbd10fb027ec97ab8423 (
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
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit perl-module toolchain-funcs
DESCRIPTION="Port Scanning Attack Detection daemon"
HOMEPAGE="https://www.cipherdyne.org/psad/"
SRC_URI="https://www.cipherdyne.org/psad/download/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm64 ppc ~sparc x86"
RDEPEND="
dev-perl/Bit-Vector
dev-perl/Date-Calc
dev-perl/NetAddr-IP
dev-perl/Unix-Syslog
net-firewall/iptables
net-misc/whois
virtual/logger
virtual/mailx
virtual/perl-Storable"
BDEPEND="virtual/perl-ExtUtils-MakeMaker"
PATCHES=( "${FILESDIR}"/${PN}-2.2.4-var-run.patch )
src_prepare() {
default
sed -i \
-e 's|/usr/bin/gcc|$(CC)|g' \
-e 's|-O|$(CFLAGS) $(LDFLAGS)|g' \
Makefile || die
# Fix up default paths
sed -i \
-e "s:/usr/bin/whois_psad:/usr/bin/whois:g" \
psad.conf || die
}
src_configure() {
default
local d
for d in IPTables-Parse IPTables-ChainMgr; do
cd "${S}"/deps/${d} || die
perl-module_src_configure
done
}
src_compile() {
tc-export CC
default
local d
for d in IPTables-Parse IPTables-ChainMgr; do
cd "${S}"/deps/${d} || die
perl-module_src_compile
done
}
src_install() {
newbin misc/pscan psad-pscan
dosbin kmsgsd psad psadwatchd
newsbin fwcheck_psad.pl fwcheck_psad
insinto /etc/psad
doins \
*.conf auto_dl icmp{,6}_types ip_options psad_* pf.os posf \
protocols signatures
newinitd init-scripts/psad-init.gentoo psad
doman doc/*.8
dodoc doc/BENCHMARK CREDITS Change* doc/FW_EXAMPLE_RULES README \
doc/README.SYSLOG doc/SCAN_LOG
insinto /etc/psad/snort_rules
doins deps/snort_rules/*
local d
for d in IPTables-Parse IPTables-ChainMgr; do
cd "${S}"/deps/${d} || die
perl-module_src_install
done
}
|