update buildroot to 2017.02.11

This commit is contained in:
jbnadal
2018-05-22 15:35:47 +02:00
parent 4bf1f5e091
commit a3c10bd762
9257 changed files with 433426 additions and 1701 deletions

View File

@@ -0,0 +1,21 @@
config BR2_PACKAGE_GUPNP_TOOLS
bool "gupnp-tools"
# gssdp, gupnp, libsoup all select on libglib2, so they have
# the same dependencies as libgtk3, which we depend on. So for
# the same of simplicity, we don't replicate all those
# (complex) dependencies.
select BR2_PACKAGE_GSSDP
select BR2_PACKAGE_GUPNP
select BR2_PACKAGE_LIBSOUP
select BR2_PACKAGE_LIBXML2
depends on BR2_PACKAGE_LIBGTK3
help
GUPnP Tools are free replacements of Intel UPnP tools that
use GUPnP. They provides client and server side tools which
enable one to easily test and debug one's UPnP devices and
control points.
http://www.gupnp.org/
comment "gupnp-tools needs libgtk3"
depends on !BR2_PACKAGE_LIBGTK3

View File

@@ -0,0 +1,2 @@
# Hash from: http://ftp.gnome.org/pub/gnome/sources/gupnp-tools/0.8/gupnp-tools-0.8.13.sha256sum:
sha256 aa3decb9d532c0e2e505adc592f431fd81c0231ded2981129e87da13712479ed gupnp-tools-0.8.13.tar.xz

View File

@@ -0,0 +1,35 @@
################################################################################
#
# gupnp-tools
#
################################################################################
GUPNP_TOOLS_VERSION_MAJOR = 0.8
GUPNP_TOOLS_VERSION = $(GUPNP_TOOLS_VERSION_MAJOR).13
GUPNP_TOOLS_SOURCE = gupnp-tools-$(GUPNP_TOOLS_VERSION).tar.xz
GUPNP_TOOLS_SITE = \
http://ftp.gnome.org/pub/gnome/sources/gupnp-tools/$(GUPNP_TOOLS_VERSION_MAJOR)
GUPNP_TOOLS_LICENSE = GPLv2+
GUPNP_TOOLS_LICENSE_FILES = COPYING
GUPNP_TOOLS_INSTALL_STAGING = YES
GUPNP_TOOLS_DEPENDENCIES = \
host-pkgconf \
libglib2 \
libxml2 \
gssdp \
gupnp \
libsoup \
libgtk3
ifeq ($(BR2_PACKAGE_GUPNP_AV),y)
GUPNP_TOOLS_CONF_OPTS += --with-av
GUPNP_TOOLS_DEPENDENCIES += gupnp-av
else
GUPNP_TOOLS_CONF_OPTS += --without-av
endif
ifeq ($(BR2_PACKAGE_GTKSOURCEVIEW),y)
GUPNP_TOOLS_DEPENDENCIES += gtksourceview
endif
$(eval $(autotools-package))