diff options
author | Mart Raudsepp <leio@gentoo.org> | 2020-02-20 19:31:08 +0200 |
---|---|---|
committer | Mart Raudsepp <leio@gentoo.org> | 2020-02-21 22:56:35 +0200 |
commit | 15c30f600b3ae540df62a4672272da705ccb85ae (patch) | |
tree | 8dea88c7942e0eb9a1bb6e55ea8053b5fb77c4d6 /net-libs/gupnp-igd/gupnp-igd-0.2.5-r10.ebuild | |
parent | net-libs/gupnp: bump to 1.2.2 (diff) | |
download | gentoo-15c30f600b3ae540df62a4672272da705ccb85ae.tar.gz gentoo-15c30f600b3ae540df62a4672272da705ccb85ae.tar.bz2 gentoo-15c30f600b3ae540df62a4672272da705ccb85ae.zip |
net-libs/gupnp-igd: add revision compatible with gupnp-1.2 API
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Mart Raudsepp <leio@gentoo.org>
Diffstat (limited to 'net-libs/gupnp-igd/gupnp-igd-0.2.5-r10.ebuild')
-rw-r--r-- | net-libs/gupnp-igd/gupnp-igd-0.2.5-r10.ebuild | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/net-libs/gupnp-igd/gupnp-igd-0.2.5-r10.ebuild b/net-libs/gupnp-igd/gupnp-igd-0.2.5-r10.ebuild new file mode 100644 index 000000000000..2a9e22641b4d --- /dev/null +++ b/net-libs/gupnp-igd/gupnp-igd-0.2.5-r10.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit autotools ltprune gnome.org multilib-minimal xdg + +DESCRIPTION="Library to handle UPnP IGD port mapping for GUPnP" +HOMEPAGE="http://gupnp.org" + +LICENSE="LGPL-2.1+" +SLOT="0/1.2" # pkg-config file links in gupnp API, so some consumers of gupnp-igd need to be relinked for it +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="+introspection" + +RDEPEND=" + >=dev-libs/glib-2.34.3:2[${MULTILIB_USEDEP}] + >=net-libs/gssdp-1.2:0=[${MULTILIB_USEDEP}] + >=net-libs/gupnp-1.2:0=[${MULTILIB_USEDEP}] + introspection? ( >=dev-libs/gobject-introspection-0.10 ) +" +DEPEND="${RDEPEND} + dev-util/glib-utils + >=dev-util/gtk-doc-am-1.10 + sys-devel/gettext + >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] +" + +# The only existing test is broken +RESTRICT="test" + +PATCHES=( + "${FILESDIR}"/${PV}-gupnp-1.2.patch # needs eautoreconf, https://gitlab.gnome.org/GNOME/gupnp-igd/merge_requests/1 +) + +src_prepare() { + xdg_src_prepare + eautoreconf +} + +multilib_src_configure() { + # python is old-style bindings; use introspection and pygobject instead + ECONF_SOURCE=${S} \ + econf \ + --disable-static \ + --disable-gtk-doc \ + --disable-python \ + $(multilib_native_use_enable introspection) + + if multilib_is_native_abi; then + ln -s "${S}"/doc/html doc/html || die + fi +} + +multilib_src_install_all() { + einstalldocs + prune_libtool_files +} |