mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
net-misc/miniupnpd: Bump to 2.2.2
Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
@@ -2,3 +2,5 @@ DIST miniupnpd-2.2.0.tar.gz 249858 BLAKE2B ef216c7703cb9806a3719b247d67c5c844879
|
||||
DIST miniupnpd-2.2.0.tar.gz.sig 543 BLAKE2B 11778dd70128ece1f80144bb229176c53f3cd89847a8eedd4fe1b75ac55d986ae7c4689edf40f80c4605ba42260bc41f8fd069e99b8c249226ab9e2981d15412 SHA512 5e0e053a2a3ab876da001589677b0f5e3a4df8511ea5185dbbaee9b80928f9cb9705029f1c83bd9d26b144e39721fce1c4c8c33983956b6731ae654bc094063c
|
||||
DIST miniupnpd-2.2.1.tar.gz 250023 BLAKE2B 67418a8480f7d3ac3d51a9c18fdcce4a85c33ff6c373051e1f9df121b00d936f02038ed0a5a5a848b7b2c145aa08dc1e2b954b211cc79fae1de09075f55a9f21 SHA512 211b608472a72065d892e9197f8bdd8c82e44296bb692244ec5e83ca9b076cbcc3426c806ff27d5e805505b1c82b1a7afd7b4030ddecdb60aa85c37062c10c8a
|
||||
DIST miniupnpd-2.2.1.tar.gz.sig 543 BLAKE2B fac8c2fd5c50e3201c5fc490d91aed5752bf70297bed101cb3d5ec53d891fdc8f893b3d83e0cf064eb9e9bf16ae9504a849187e18eabc8ed12055574d1e551f5 SHA512 da5b52b1c62bf433a165acf87a64195e27c71c98dfa086cfde19f7b1c4046a62926cca5eb2d10f4260eb1b97c428ba08b4b7fcbf280c2a7009c86279a7563e0f
|
||||
DIST miniupnpd-2.2.2.tar.gz 250649 BLAKE2B d561916ced9b5c58371382fe0bec68cd0771d1dc3b2c7fa7e3701cb2579db69697fbdcd724bea2350abd46381eda1fd257dede6df99f99fa54e423db4ee52717 SHA512 3cc11ad901e93a9879fe07e35a20f8977df466bb402e0270e46d1dbd0b5dc3b5dc22303467d5022103952d7dd789ac590c17d0fa81fc7ec42676b66223d37ee4
|
||||
DIST miniupnpd-2.2.2.tar.gz.sig 543 BLAKE2B 461a9149c66b0e314a767405024fc7bfb641a20ae36b908dc467c9211660d5cb0753fb3c99fa9d6df35d693a2f6790efb6a325f0005804572eaa78a02b23a482 SHA512 8ffc9901cd992cbd9d0fa4c5e510fe43f748ab4a7c4732cc8f2f685f19b71a3f087a63a39e1dbf081175ac65de34b5c05dc3ef636a805e550a0406119a5904ef
|
||||
|
||||
86
net-misc/miniupnpd/miniupnpd-2.2.2.ebuild
Normal file
86
net-misc/miniupnpd/miniupnpd-2.2.2.ebuild
Normal file
@@ -0,0 +1,86 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit toolchain-funcs verify-sig
|
||||
|
||||
MY_P=${P/_rc/-RC}
|
||||
DESCRIPTION="MiniUPnP IGD Daemon"
|
||||
HOMEPAGE="http://miniupnp.free.fr/"
|
||||
SRC_URI="http://miniupnp.free.fr/files/${MY_P}.tar.gz
|
||||
verify-sig? ( http://miniupnp.free.fr/files/${MY_P}.tar.gz.sig )"
|
||||
S=${WORKDIR}/${MY_P}
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~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}"
|
||||
BDEPEND="
|
||||
sys-apps/lsb-release
|
||||
verify-sig? ( app-crypt/openpgp-keys-miniupnp )"
|
||||
|
||||
VERIFY_SIG_OPENPGP_KEY_PATH=${BROOT}/usr/share/openpgp-keys/miniupnp.asc
|
||||
|
||||
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_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"
|
||||
}
|
||||
Reference in New Issue
Block a user