Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/miniupnpd/
Date: Mon, 02 Sep 2019 02:53:34
Message-Id: 1567391610.6f27d4be9f37371533ef38ed48feb59de856b250.mgorny@gentoo
1 commit: 6f27d4be9f37371533ef38ed48feb59de856b250
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 2 02:33:30 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 2 02:33:30 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f27d4be
7
8 net-misc/miniupnpd: Bump to 2.1.20190902
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 net-misc/miniupnpd/Manifest | 1 +
13 net-misc/miniupnpd/miniupnpd-2.1.20190902.ebuild | 88 ++++++++++++++++++++++++
14 2 files changed, 89 insertions(+)
15
16 diff --git a/net-misc/miniupnpd/Manifest b/net-misc/miniupnpd/Manifest
17 index bbb04bab5d9..938a3c3fd3c 100644
18 --- a/net-misc/miniupnpd/Manifest
19 +++ b/net-misc/miniupnpd/Manifest
20 @@ -1,2 +1,3 @@
21 DIST miniupnpd-2.1.20190630.tar.gz 240466 BLAKE2B fe4d4e59a7dad32bef9ed9b4c58b52e378ec9b26ea2439e84284630a7ef7269c6cd53cabdc632ff274cae88aea2552a8808af2ea349138f8b8ed667baf9e87ee SHA512 cd6006e5487652a258f7320e1e28fea7b0790528cc014071109a1abd0f6c249237cf8d0620987c14ee0ce1cca14f4bb4abd439b1d422e0e49a398cd485eaf970
22 DIST miniupnpd-2.1.20190824.tar.gz 240490 BLAKE2B c2eaf08b18d4cd27a18a71232fd8d972ced799a68b0e6f3ff1b3d155ab0e27047153dcd81a0c89806f74a6c09c303eb3255825f6fd4083f1ec77605ee4f0d1b3 SHA512 f3e591e10b33d2459e55118db11f6692bafd75ae867f934f4a5c6ccf6c9cf21363d0a746d1b319a08381119f382d5941af84c5bfb5c54b97f8945aa9d7372987
23 +DIST miniupnpd-2.1.20190902.tar.gz 240742 BLAKE2B 0b880b1e8a96c56af92726d3fe81da0a26de83861efe4dc266e287623dcac4c6bd4c4ac8d2c6ef7724c1055933d5138e7c86da5c8e3852f2022f69697505f231 SHA512 0abeb9df088ecd57909106fbb43de14d90eebd351a466477777f413f40c49bc432050bc8ea0d655d2eea0bfcedbdb97719ea2476a8bd9170ef9b74ad97217d26
24
25 diff --git a/net-misc/miniupnpd/miniupnpd-2.1.20190902.ebuild b/net-misc/miniupnpd/miniupnpd-2.1.20190902.ebuild
26 new file mode 100644
27 index 00000000000..07c804f3564
28 --- /dev/null
29 +++ b/net-misc/miniupnpd/miniupnpd-2.1.20190902.ebuild
30 @@ -0,0 +1,88 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit toolchain-funcs
37 +
38 +DESCRIPTION="MiniUPnP IGD Daemon"
39 +HOMEPAGE="http://miniupnp.free.fr/"
40 +SRC_URI="http://miniupnp.free.fr/files/${P}.tar.gz"
41 +
42 +LICENSE="BSD"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~arm ~x86"
45 +IUSE="+leasefile igd2 ipv6 nftables pcp-peer portinuse strict"
46 +
47 +RDEPEND="
48 + dev-libs/gmp:0=
49 + sys-apps/util-linux:=
50 + dev-libs/openssl:0=
51 + !nftables? (
52 + >=net-firewall/iptables-1.4.6:0=[ipv6?]
53 + net-libs/libnfnetlink:=
54 + net-libs/libmnl:=
55 + )
56 + nftables? (
57 + net-firewall/nftables
58 + net-libs/libnftnl:=
59 + net-libs/libmnl:=
60 + )"
61 +DEPEND="${RDEPEND}
62 + sys-apps/lsb-release"
63 +
64 +src_prepare() {
65 + default
66 +
67 + # Prevent overriding CFLAGS.
68 + sed -i -e '/^CFLAGS =/d' Makefile.linux_nft || die
69 +
70 + mv "Makefile.linux$(usex nftables _nft '')" Makefile || die
71 +
72 + # Prevent gzipping manpage.
73 + sed -i -e '/gzip/d' Makefile || die
74 +}
75 +
76 +src_configure() {
77 + local -a opts
78 + opts=(
79 + --vendorcfg
80 + $(usex igd2 '--igd2' '')
81 + $(usex ipv6 '--ipv6' '')
82 + $(usex leasefile '--leasefile' '')
83 + $(usex portinuse '--portinuse' '')
84 + $(usex pcp-peer '--pcp-peer' '')
85 + $(usex strict '--strict' '')
86 + )
87 +
88 + emake CONFIG_OPTIONS="${opts[*]}" config.h
89 +}
90 +
91 +src_compile() {
92 + # By default, it builds a bunch of unittests that are missing wrapper
93 + # scripts in the tarball
94 + emake CC="$(tc-getCC)" STRIP=true miniupnpd
95 +}
96 +
97 +src_install() {
98 + emake PREFIX="${ED}" STRIP=true install
99 +
100 + local confd_seds=()
101 + if use nftables; then
102 + confd_seds+=( -e 's/^iptables_scripts=/#&/' )
103 + else
104 + confd_seds+=( -e 's/^nftables_scripts=/#&/' )
105 + fi
106 + if ! use ipv6 || use nftables; then
107 + confd_seds+=( -e 's/^ip6tables_scripts=/#&/' )
108 + fi
109 +
110 + newinitd "${FILESDIR}"/${PN}-init.d-r2 ${PN}
111 + newconfd - ${PN} < <(sed "${confd_seds[@]}" \
112 + "${FILESDIR}"/${PN}-conf.d-r2 || die)
113 +}
114 +
115 +pkg_postinst() {
116 + elog "Please correct the external interface in the top of the two"
117 + elog "scripts in /etc/miniupnpd and edit the config file in there too"
118 +}