Commit 3390492c authored by Rahul Bedarkar's avatar Rahul Bedarkar Committed by Thomas Petazzoni
Browse files
parent 596c5e5e
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -982,6 +982,7 @@ menu "Networking"
	source "package/geoip/Config.in"
	source "package/glib-networking/Config.in"
	source "package/gssdp/Config.in"
	source "package/gupnp/Config.in"
	source "package/ibrcommon/Config.in"
	source "package/ibrdtn/Config.in"
	source "package/libcgi/Config.in"
+20 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_GUPNP
	bool "gupnp"
	depends on BR2_USE_WCHAR # glib2, gssdp, util-linux
	depends on BR2_TOOLCHAIN_HAS_THREADS # glib2, gssdp
	depends on BR2_USE_MMU # glib2, gssdp
	select BR2_PACKAGE_LIBGLIB2
	select BR2_PACKAGE_GSSDP
	select BR2_PACKAGE_LIBXML2
	select BR2_PACKAGE_UTIL_LINUX
	select BR2_PACKAGE_UTIL_LINUX_LIBUUID
	help
	  GUPnP implements the UPnP specification: resource announcement
	  and discovery, description, control, event notification, and
	  presentation.

	  http://www.gupnp.org/

comment "gupnp needs a toolchain w/ wchar, threads"
	depends on BR2_USE_MMU
	depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
+2 −0
Original line number Diff line number Diff line
# Hash from: http://ftp.gnome.org/pub/gnome/sources/gupnp/0.19/gupnp-0.19.4.sha256sum:
sha256 3c1fb2873cb2f8f152b9d49598d55b15b8f3c1096a03ade46ce69694798fb243  gupnp-0.19.4.tar.xz

package/gupnp/gupnp.mk

0 → 100644
+16 −0
Original line number Diff line number Diff line
################################################################################
#
# gupnp
#
################################################################################

GUPNP_VERSION_MAJOR = 0.19
GUPNP_VERSION = $(GUPNP_VERSION_MAJOR).4
GUPNP_SOURCE = gupnp-$(GUPNP_VERSION).tar.xz
GUPNP_SITE = http://ftp.gnome.org/pub/gnome/sources/gupnp/$(GUPNP_VERSION_MAJOR)
GUPNP_LICENSE = LGPLv2+
GUPNP_LICENSE_FILES = COPYING
GUPNP_INSTALL_STAGING = YES
GUPNP_DEPENDENCIES = host-pkgconf libglib2 libxml2 gssdp util-linux

$(eval $(autotools-package))