blob: a764e3b53a6366e4ba922f908d27cd5a0e489dd9 (
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit toolchain-funcs
DESCRIPTION="A daemon which logs TCP/UDP/ICMP packets"
HOMEPAGE="http://pltplp.net/ippl/"
SRC_URI="http://pltplp.net/ippl/archive/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
BDEPEND="
app-alternatives/yacc
app-alternatives/lex"
RDEPEND="acct-user/ippl"
PATCHES=(
"${FILESDIR}"/${PN}-1.4.14-noportresolve.patch
"${FILESDIR}"/${PN}-1.4.14-manpage.patch
"${FILESDIR}"/${PN}-1.4.14-privilege-drop.patch
"${FILESDIR}"/${PN}-1.4.14-includes.patch
"${FILESDIR}"/${PN}-1.4.14-format-warnings.patch
# bug #351287
"${FILESDIR}"/${PN}-1.4.14-fix-build-system.patch
)
src_configure() {
tc-export CC
default
}
src_install() {
dosbin Source/ippl
insinto /etc
doins ippl.conf
doman Docs/{ippl.8,ippl.conf.5}
dodoc BUGS CREDITS HISTORY README TODO
newinitd "${FILESDIR}"/ippl.rc ippl
}
|