blob: 7598563d3815520743205b43966cc62389d9cf27 (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit savedconfig toolchain-funcs
DESCRIPTION="A port scan detection tool"
SRC_URI="http://www.openwall.com/scanlogd/${P}.tar.gz"
HOMEPAGE="http://www.openwall.com/scanlogd/"
LICENSE="scanlogd GPL-2" # GPL-2 for initscript
SLOT="0"
KEYWORDS="~amd64 ppc x86"
IUSE="+nids pcap"
REQUIRED_USE="?? ( nids pcap )"
DEPEND="
nids? ( net-libs/libnids )
pcap? ( net-libs/libpcap )
"
RDEPEND="
${DEPEND}
acct-group/scanlogd
acct-user/scanlogd
"
PATCHES=(
"${FILESDIR}"/${P}-gentoo.patch
)
src_prepare() {
default
restore_config params.h
tc-export CC
}
src_compile() {
local target=linux
use nids && target=libnids
use pcap && target=libpcap
emake ${target}
}
src_install() {
dosbin scanlogd
doman scanlogd.8
newinitd "${FILESDIR}"/scanlogd.rc scanlogd
save_config params.h
}
|