Revert "zmq: Make CurveZMQ security (libsodium) optional, cleanup descrition and dependencies"

This reverts commit 2cd58bca38.
This commit is contained in:
Ted Hess 2015-06-04 13:09:04 -04:00
parent 2cd58bca38
commit 20a7734215

View file

@ -11,7 +11,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=zeromq PKG_NAME:=zeromq
PKG_VERSION:=4.0.5 PKG_VERSION:=4.0.5
PKG_RELEASE:=2 PKG_RELEASE:=1
PKG_MAINTAINER:=Dirk Chang <dirk@kooiot.com> PKG_MAINTAINER:=Dirk Chang <dirk@kooiot.com>
PKG_LICENSE:=GPL-3.0+ PKG_LICENSE:=GPL-3.0+
PKG_LICENSE_FILES:=LICENCE.txt PKG_LICENSE_FILES:=LICENCE.txt
@ -31,26 +31,28 @@ PKG_INSTALL:=1
include $(INCLUDE_DIR)/uclibc++.mk include $(INCLUDE_DIR)/uclibc++.mk
include $(INCLUDE_DIR)/package.mk include $(INCLUDE_DIR)/package.mk
define Package/libzmq define Package/libzmq/Default
TITLE:=ZeroMQ - Message Queue engine TITLE:=ZeroMQ - Code Connected
URL:=http://www.zeromq.org/ URL:=http://www.zeromq.org/
SECTION:=libs
CATEGORY:=Libraries
DEPENDS:=+libuuid +libpthread +librt +PACKAGE_libsodium:libsodium $(CXX_DEPENDS)
MENU:=1
endef endef
define Package/libzmq/config define Package/libzmq/Default/description
config LIBZMQ_CURVEZMQ A replacment for raw socket developing library
bool "Include support for CurveZMQ security" endef
depends on PACKAGE_libzmq
default y define Package/libzmq
select PACKAGE_libsodium $(call Package/libzmq/Default)
SECTION:=libs
CATEGORY:=Libraries
DEPENDS:=+libuuid +libpthread +librt $(CXX_DEPENDS)
TITLE+= (library)
URL:=
endef endef
define Package/libzmq/description define Package/libzmq/description
This package contains the ZeroMQ messaging engine shared library. $(call Package/libzmq/Default/description)
CurveZMQ security protocols are optional using libsodium. This package contains the ZeroMQ shared library, used by other
programs.
endef endef
# add extra configure flags here # add extra configure flags here