Move all to deprecated folder.
This commit is contained in:
19
deprecated/firmware/buildroot/package/libupnpp/Config.in
Normal file
19
deprecated/firmware/buildroot/package/libupnpp/Config.in
Normal file
@@ -0,0 +1,19 @@
|
||||
config BR2_PACKAGE_LIBUPNPP
|
||||
bool "libupnpp"
|
||||
select BR2_PACKAGE_EXPAT
|
||||
select BR2_PACKAGE_LIBCURL
|
||||
select BR2_PACKAGE_LIBUPNP
|
||||
depends on BR2_INSTALL_LIBSTDCPP
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # libupnp
|
||||
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_6
|
||||
# Triggers the _gp link issue
|
||||
depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII
|
||||
help
|
||||
The libupnpp C++ library wraps libupnp for easier use by upmpdcli and
|
||||
upplay.
|
||||
|
||||
http://www.lesbonscomptes.com/upmpdcli/
|
||||
|
||||
comment "libupnpp needs a toolchain w/ C++, threads, gcc >= 4.6"
|
||||
depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII
|
||||
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_6
|
||||
@@ -0,0 +1,2 @@
|
||||
# Hashes from: http://www.lesbonscomptes.com/upmpdcli/downloads/libupnpp-0.13.1.tar.gz.sha256
|
||||
sha256 d4604e3e4875e99d0446a436f857a849d1e3dda59096861dcd6a0e6c16474cb7 libupnpp-0.13.1.tar.gz
|
||||
22
deprecated/firmware/buildroot/package/libupnpp/libupnpp.mk
Normal file
22
deprecated/firmware/buildroot/package/libupnpp/libupnpp.mk
Normal file
@@ -0,0 +1,22 @@
|
||||
################################################################################
|
||||
#
|
||||
# libupnpp
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LIBUPNPP_VERSION = 0.13.1
|
||||
LIBUPNPP_SITE = http://www.lesbonscomptes.com/upmpdcli/downloads
|
||||
LIBUPNPP_LICENSE = GPLv2+
|
||||
LIBUPNPP_LICENSE_FILES = COPYING
|
||||
LIBUPNPP_INSTALL_STAGING = YES
|
||||
LIBUPNPP_DEPENDENCIES = expat libcurl libupnp
|
||||
|
||||
# configure script fails to link against the dependencies of libupnp
|
||||
# and libcurl causing detection to fail when statically linking
|
||||
ifeq ($(BR2_STATIC_LIBS),y)
|
||||
LIBUPNPP_DEPENDENCIES += host-pkgconf
|
||||
LIBUPNPP_CONF_ENV += \
|
||||
LIBS="`$(PKG_CONFIG_HOST_BINARY) --libs libupnp libcurl`"
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user