diff options
Diffstat (limited to 'net-libs/libnpupnp/libnpupnp-4.0.14.ebuild')
-rw-r--r-- | net-libs/libnpupnp/libnpupnp-4.0.14.ebuild | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/net-libs/libnpupnp/libnpupnp-4.0.14.ebuild b/net-libs/libnpupnp/libnpupnp-4.0.14.ebuild new file mode 100644 index 000000000000..a00ee17059e3 --- /dev/null +++ b/net-libs/libnpupnp/libnpupnp-4.0.14.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="A C++ base UPnP library, derived from Portable UPnP, a.k.a libupnp" +HOMEPAGE="https://framagit.org/medoc92/npupnp" +SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz" +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + dev-libs/expat + net-libs/libmicrohttpd + net-misc/curl +" + +src_prepare() { + default + ./autogen.sh || die +} + +src_configure() { + econf \ + --enable-client \ + --enable-debug \ + --enable-device \ + --enable-gena \ + --enable-ipv6 \ + --enable-optssdp \ + --enable-reuseaddr \ + --enable-soap \ + --enable-ssdp \ + --enable-tools \ + --enable-webserver +} |