zyre: new package

[Peter: add comment about toolchain dependencies, fix license]
Signed-off-by: Simon Dawson <spdawson@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Simon Dawson 2013-04-14 10:33:01 +00:00 committed by Peter Korsgaard
parent 28431c2c0e
commit e2a547fc53
3 changed files with 40 additions and 0 deletions

View File

@ -547,6 +547,7 @@ source "package/slirp/Config.in"
source "package/usbredir/Config.in"
source "package/zeromq/Config.in"
source "package/zmqpp/Config.in"
source "package/zyre/Config.in"
endmenu
menu "Other"

17
package/zyre/Config.in Normal file
View File

@ -0,0 +1,17 @@
config BR2_PACKAGE_ZYRE
bool "zyre"
depends on BR2_INSTALL_LIBSTDCPP # filemq
depends on BR2_INET_IPV6 # filemq
depends on BR2_LARGEFILE # filemq
depends on BR2_USE_WCHAR # filemq
depends on BR2_TOOLCHAIN_HAS_THREADS # filemq
select BR2_PACKAGE_FILEMQ
help
An open-source framework for proximity-based peer-to-peer
applications.
http://zyre.org
comment "zyre requires a toolchain with C++, IPv6, LARGEFILE, WCHAR & thread support"
depends on !(BR2_INSTALL_LIBSTDCPP && BR2_INET_IPV6 && BR2_LARGEFILE \
&& BR2_USE_WCHAR && BR2_TOOLCHAIN_HAS_THREADS)

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

@ -0,0 +1,22 @@
#############################################################
#
# zyre
#
#############################################################
ZYRE_VERSION = 44a57a449a
ZYRE_SITE = git://github.com/zeromq/zyre.git
ZYRE_LICENSE = LGPLv3+
ZYRE_LICENSE_FILES = COPYING COPYING.LESSER
ZYRE_INSTALL_STAGING = YES
ZYRE_DEPENDENCIES = filemq
ZYRE_AUTORECONF = YES
ZYRE_AUTORECONF_OPT = --install --force --verbose
define ZYRE_CREATE_CONFIG_DIR
mkdir -p $(@D)/config
endef
ZYRE_POST_PATCH_HOOKS += ZYRE_CREATE_CONFIG_DIR
$(eval $(autotools-package))