filemq: new package

Signed-off-by: Simon Dawson <spdawson@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Simon Dawson 2013-03-27 03:58:48 +00:00 committed by Peter Korsgaard
parent 674cbf25f6
commit ba9c34787b
3 changed files with 39 additions and 0 deletions

View File

@ -499,6 +499,7 @@ endmenu
menu "Networking"
source "package/czmq/Config.in"
source "package/cppzmq/Config.in"
source "package/filemq/Config.in"
source "package/glib-networking/Config.in"
source "package/libcgi/Config.in"
source "package/libcgicc/Config.in"

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

@ -0,0 +1,16 @@
config BR2_PACKAGE_FILEMQ
bool "filemq"
select BR2_PACKAGE_OPENSSL
select BR2_PACKAGE_CZMQ
select BR2_PACKAGE_ZEROMQ
depends on BR2_INSTALL_LIBSTDCPP # zeromq
depends on BR2_INET_IPV6 # zeromq
depends on BR2_LARGEFILE # util-linux
depends on BR2_USE_WCHAR # util-linux
help
FileMQ is a publish-subscribe file service based on 0MQ.
http://github.com/zeromq/filemq
comment "filemq requires a toolchain with C++, IPv6, LARGEFILE and WCHAR support"
depends on !(BR2_INSTALL_LIBSTDCPP && BR2_INET_IPV6 && BR2_LARGEFILE && BR2_USE_WCHAR)

22
package/filemq/filemq.mk Normal file
View File

@ -0,0 +1,22 @@
#############################################################
#
# filemq
#
#############################################################
FILEMQ_VERSION = 8fac5140dd
FILEMQ_SITE = git://github.com/zeromq/filemq.git
FILEMQ_AUTORECONF = YES
FILEMQ_INSTALL_STAGING = YES
FILEMQ_DEPENDENCIES = czmq openssl zeromq
FILEMQ_LICENSE = LGPLv3+ with exceptions
FILEMQ_LICENSE_FILES = COPYING COPYING.LESSER
define FILEMQ_CREATE_CONFIG_DIR
mkdir -p $(@D)/config
endef
FILEMQ_POST_PATCH_HOOKS += FILEMQ_CREATE_CONFIG_DIR
$(eval $(autotools-package))