schalter patched with .config and senmqd

This commit is contained in:
John 2015-02-01 10:08:12 +01:00
parent 8c3f1d5102
commit 2c8f52f9b2
4 changed files with 1838 additions and 0 deletions

1806
.config Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1120,6 +1120,7 @@ endif
source "package/samba/Config.in"
source "package/samba4/Config.in"
source "package/sconeserver/Config.in"
source "package/senmqd/Config.in"
source "package/ser2net/Config.in"
source "package/shairport-sync/Config.in"
source "package/smcroute/Config.in"

16
package/senmqd/Config.in Normal file
View File

@ -0,0 +1,16 @@
config BR2_PACKAGE_SENMQD
bool "senmqd"
depends on BR2_INSTALL_LIBSTDCPP
depends on BR2_INET_IPV6 # zeromq
depends on BR2_LARGEFILE # util-linux
depends on BR2_USE_WCHAR # util-linux
depends on BR2_TOOLCHAIN_HAS_THREADS # zeromq
select BR2_PACKAGE_CPPZMQ
help
gpio via zmq
see https://github.com/tuxcodejohn/senmqd
comment "senmqd needs a toolchain w/ C++, IPv6, largefile, wchar, threads"
depends on !(BR2_INSTALL_LIBSTDCPP && BR2_INET_IPV6 && BR2_LARGEFILE \
&& BR2_USE_WCHAR && BR2_TOOLCHAIN_HAS_THREADS)

15
package/senmqd/senmqd.mk Normal file
View File

@ -0,0 +1,15 @@
################################################################################
#
# senmqd
#
################################################################################
SENMQD_VERSION = da2290674871924f728811c07cc5e9b2a72c9a52
SENMQD_SITE = $(call github,tuxcodejohn,senmqd,$(SENMQD_VERSION))
SENMQD_INSTALL_TARGET = YES
SENMQD_DEPENDENCIES = zeromq cppzmq
SENMQD_LICENSE = GPL
SENMQD_LICENSE_FILES = LICENSE
SENMQD_AUTORECONF = YES
$(eval $(autotools-package))