You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-libs/gupnp-igd/gupnp-igd-0.2.5.ebuild

52 lines
1.2 KiB

# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit ltprune gnome.org multilib-minimal xdg-utils
DESCRIPTION="Library to handle UPnP IGD port mapping for GUPnP"
HOMEPAGE="http://gupnp.org"
LICENSE="LGPL-2.1+"
SLOT="0"
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-0.14.7[${MULTILIB_USEDEP}]
>=net-libs/gupnp-0.20.10[${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"
multilib_src_configure() {
xdg_environment_reset
# 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
}