Gentoo Archives: gentoo-commits

From: Erik Mackdanz <stasibear@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libnpupnp/
Date: Wed, 27 Oct 2021 01:12:18
Message-Id: 1635296663.448198bb9a9356edccea1a2201f67370ff6ef6d2.stasibear@gentoo
1 commit: 448198bb9a9356edccea1a2201f67370ff6ef6d2
2 Author: Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 27 01:04:23 2021 +0000
4 Commit: Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 27 01:04:23 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=448198bb
7
8 net-libs/libnpupnp: bump to 4.1.5
9
10 Signed-off-by: Erik Mackdanz <stasibear <AT> gentoo.org>
11 Package-Manager: Portage-3.0.28, Repoman-3.0.3
12
13 net-libs/libnpupnp/Manifest | 1 +
14 net-libs/libnpupnp/libnpupnp-4.1.5.ebuild | 37 +++++++++++++++++++++++++++++++
15 2 files changed, 38 insertions(+)
16
17 diff --git a/net-libs/libnpupnp/Manifest b/net-libs/libnpupnp/Manifest
18 index 673fe3ab581..a16f8adf89b 100644
19 --- a/net-libs/libnpupnp/Manifest
20 +++ b/net-libs/libnpupnp/Manifest
21 @@ -1 +1,2 @@
22 DIST libnpupnp-4.1.4.tar.gz 544243 BLAKE2B 4e2d0ad827fd566d70df440246ad8fe081c5eb125fac72827e84680a1d842125562449866dab69305c16e170e8b04679ad40f73c2ac573aae266d24679053c76 SHA512 8a41f52a5665470ddf48233a5262cd906a384f89308423020a6f4d2b67d38b53d9608ec6f01a1118f703dce41ba0c58a863965e7226411b4f8aababd7b1d22b0
23 +DIST libnpupnp-4.1.5.tar.gz 545672 BLAKE2B 75f3236cd18324ffa35215f152ef2b84d81b4bc81b9c73488e7274ecb5d76918f0ef328edcf089d81202e92f4fa3922bfe46d6eb3e9a1bbd065858bf6e5cff60 SHA512 a7b2f620c846f2127220a062eab76f2c06b3eee4503d9f4922d7d6342feea19381be1486bf1cb033c44275f83ab90be3f8f2c09f0ec6f0af7367c314023c889e
24
25 diff --git a/net-libs/libnpupnp/libnpupnp-4.1.5.ebuild b/net-libs/libnpupnp/libnpupnp-4.1.5.ebuild
26 new file mode 100644
27 index 00000000000..d35dc2f8d1e
28 --- /dev/null
29 +++ b/net-libs/libnpupnp/libnpupnp-4.1.5.ebuild
30 @@ -0,0 +1,37 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +DESCRIPTION="A C++ base UPnP library, derived from Portable UPnP, a.k.a libupnp"
37 +HOMEPAGE="https://framagit.org/medoc92/npupnp"
38 +SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz"
39 +LICENSE="BSD"
40 +SLOT="0"
41 +KEYWORDS="~amd64 ~x86"
42 +
43 +RDEPEND="
44 + dev-libs/expat
45 + net-libs/libmicrohttpd
46 + net-misc/curl
47 +"
48 +
49 +src_prepare() {
50 + default
51 + ./autogen.sh || die
52 +}
53 +
54 +src_configure() {
55 + econf \
56 + --enable-client \
57 + --enable-debug \
58 + --enable-device \
59 + --enable-gena \
60 + --enable-ipv6 \
61 + --enable-optssdp \
62 + --enable-reuseaddr \
63 + --enable-soap \
64 + --enable-ssdp \
65 + --enable-tools \
66 + --enable-webserver
67 +}