diff options
author | Pacho Ramos <pacho@gentoo.org> | 2012-06-30 12:57:23 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2012-06-30 12:57:23 +0000 |
commit | 9d51cf92e28177479096294b1659dfcadba627c3 (patch) | |
tree | f0e65143e4b6d5d6c4baaa8797349cd00599aa69 /net-libs/gupnp/gupnp-0.18.3.ebuild | |
parent | Missing keywords for connman, masking its use for gupnp then on affected arches. (diff) | |
download | gentoo-2-9d51cf92e28177479096294b1659dfcadba627c3.tar.gz gentoo-2-9d51cf92e28177479096294b1659dfcadba627c3.tar.bz2 gentoo-2-9d51cf92e28177479096294b1659dfcadba627c3.zip |
Version bump with connman support, remove old.
(Portage version: 2.1.11.3/cvs/Linux x86_64)
Diffstat (limited to 'net-libs/gupnp/gupnp-0.18.3.ebuild')
-rw-r--r-- | net-libs/gupnp/gupnp-0.18.3.ebuild | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/net-libs/gupnp/gupnp-0.18.3.ebuild b/net-libs/gupnp/gupnp-0.18.3.ebuild new file mode 100644 index 000000000000..8dc9db1c56e5 --- /dev/null +++ b/net-libs/gupnp/gupnp-0.18.3.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/gupnp/gupnp-0.18.3.ebuild,v 1.1 2012/06/30 12:57:23 pacho Exp $ + +EAPI="4" + +inherit eutils gnome.org multilib + +DESCRIPTION="An object-oriented framework for creating UPnP devs and control points" +HOMEPAGE="http://gupnp.org/" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="connman +introspection kernel_linux networkmanager" + +RDEPEND=">=net-libs/gssdp-0.11.2[introspection?] + >=net-libs/libsoup-2.28.2:2.4[introspection?] + >=dev-libs/glib-2.24:2 + dev-libs/libxml2 + || ( >=sys-apps/util-linux-2.16 <sys-libs/e2fsprogs-libs-1.41.8 ) + introspection? ( >=dev-libs/gobject-introspection-0.6.4 ) + connman? ( >=net-misc/connman-0.80 ) + networkmanager? ( >=dev-libs/glib-2.26 )" +DEPEND="${RDEPEND} + virtual/pkgconfig + sys-devel/gettext" + +DOCS="AUTHORS ChangeLog NEWS README" + +src_configure() { + local backend=unix + use kernel_linux && backend=linux + use connman && backend=connman + use networkmanager && backend=network-manager + + econf \ + $(use_enable introspection) \ + --disable-static \ + --disable-dependency-tracking \ + --disable-gtk-doc \ + --with-context-manager=${backend} +} + +src_install() { + default + # Remove pointless .la files + find "${D}" -name '*.la' -delete +} + +pkg_preinst() { + preserve_old_lib /usr/$(get_libdir)/libgupnp-1.0.so.3 +} + +pkg_postinst() { + preserve_old_lib_notify /usr/$(get_libdir)/libgupnp-1.0.so.3 +} |