blob: 0bed1072de26aaf15d54619a44f689b178c5f6c4 (
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs verify-sig
DESCRIPTION="MiniUPnP IGD Daemon"
HOMEPAGE="
http://miniupnp.free.fr/
https://miniupnp.tuxfamily.org/
https://github.com/miniupnp/miniupnp/
"
SRC_URI="
https://miniupnp.tuxfamily.org/files/${P}.tar.gz
verify-sig? (
https://miniupnp.tuxfamily.org/files/${P}.tar.gz.sig
)
"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
IUSE="+leasefile igd2 ipv6 nftables pcp-peer portinuse strict"
RDEPEND="
dev-libs/gmp:0=
sys-apps/util-linux:=
dev-libs/openssl:0=
!nftables? (
>=net-firewall/iptables-1.4.6:0=[ipv6(+)?]
net-libs/libnfnetlink:=
net-libs/libmnl:=
)
nftables? (
net-firewall/nftables
net-libs/libnftnl:=
net-libs/libmnl:=
)
"
DEPEND="
${RDEPEND}
elibc_musl? ( sys-libs/queue-standalone )
"
BDEPEND="
sys-apps/lsb-release
verify-sig? ( sec-keys/openpgp-keys-miniupnp )
"
VERIFY_SIG_OPENPGP_KEY_PATH=${BROOT}/usr/share/openpgp-keys/miniupnp.asc
src_prepare() {
default
# fails without a default route
sed -i -e 's:EXTIF=.*:EXTIF=lo:' testgetifaddr.sh || die
}
src_configure() {
local opts=(
--vendorcfg
$(usex igd2 '--igd2' '')
$(usex ipv6 '--ipv6' '')
$(usex leasefile '--leasefile' '')
$(usex portinuse '--portinuse' '')
$(usex pcp-peer '--pcp-peer' '')
$(usex strict '--strict' '')
--firewall=$(usex nftables nftables iptables)
)
# custom script
./configure "${opts[@]}" || die
# prevent gzipping manpage
sed -i -e '/gzip/d' Makefile || die
}
src_compile() {
# By default, it builds a bunch of unittests that are missing wrapper
# scripts in the tarball
emake CC="$(tc-getCC)" STRIP=true miniupnpd
}
src_test() {
emake CC="$(tc-getCC)" check
}
src_install() {
emake PREFIX="${ED}" STRIP=true install
local confd_seds=()
if use nftables; then
confd_seds+=( -e 's/^iptables_scripts=/#&/' )
else
confd_seds+=( -e 's/^nftables_scripts=/#&/' )
fi
if ! use ipv6 || use nftables; then
confd_seds+=( -e 's/^ip6tables_scripts=/#&/' )
fi
newinitd "${FILESDIR}"/${PN}-init.d-r2 ${PN}
newconfd - ${PN} < <(sed "${confd_seds[@]}" \
"${FILESDIR}"/${PN}-conf.d-r2 || die)
}
pkg_postinst() {
elog "Please correct the external interface in the top of the two"
elog "scripts in /etc/miniupnpd and edit the config file in there too"
}
|