mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-08-01 07:27:43 +00:00
libupnpp: new package
[Thomas: adjust dependencies on the comment.] Signed-off-by: Jörg Krause <jkrause@posteo.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Tested-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
8117608a3f
commit
98913307bc
@ -816,6 +816,7 @@ menu "Networking"
|
|||||||
source "package/libtirpc/Config.in"
|
source "package/libtirpc/Config.in"
|
||||||
source "package/libtorrent/Config.in"
|
source "package/libtorrent/Config.in"
|
||||||
source "package/libupnp/Config.in"
|
source "package/libupnp/Config.in"
|
||||||
|
source "package/libupnpp/Config.in"
|
||||||
source "package/libvncserver/Config.in"
|
source "package/libvncserver/Config.in"
|
||||||
source "package/libwebsockets/Config.in"
|
source "package/libwebsockets/Config.in"
|
||||||
source "package/neon/Config.in"
|
source "package/neon/Config.in"
|
||||||
|
23
package/libupnpp/Config.in
Normal file
23
package/libupnpp/Config.in
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
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_LARGEFILE # libupnp
|
||||||
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libupnp
|
||||||
|
depends on !BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2014R1 # Too old gcc
|
||||||
|
depends on !BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2013R1 # Ditto
|
||||||
|
depends on !BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2012R2 # Ditto
|
||||||
|
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++, largefile, threads"
|
||||||
|
depends on !BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2014R1 # Too old gcc
|
||||||
|
depends on !BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2013R1 # Ditto
|
||||||
|
depends on !BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2012R2 # Ditto
|
||||||
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_LARGEFILE || \
|
||||||
|
!BR2_TOOLCHAIN_HAS_THREADS
|
14
package/libupnpp/libupnpp.mk
Normal file
14
package/libupnpp/libupnpp.mk
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
################################################################################
|
||||||
|
#
|
||||||
|
# libupnpp
|
||||||
|
#
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
LIBUPNPP_VERSION = 0.8.5
|
||||||
|
LIBUPNPP_SITE = http://www.lesbonscomptes.com/upmpdcli/downloads
|
||||||
|
LIBUPNPP_LICENSE = GPLv2+
|
||||||
|
LIBUPNPP_LICENSE_FILES = COPYING
|
||||||
|
LIBUPNPP_INSTALL_STAGING = YES
|
||||||
|
LIBUPNPP_DEPENDENCIES = expat libcurl libupnp
|
||||||
|
|
||||||
|
$(eval $(autotools-package))
|
Loading…
x
Reference in New Issue
Block a user