From e0fe3dd1f28ef6bac10cda1138a44ee77fe05b9c Mon Sep 17 00:00:00 2001 From: nbd Date: Sun, 13 Jan 2013 15:57:05 +0000 Subject: add ustream-ssl, an ustream abstraction library for SSL stream sockets git-svn-id: svn://svn.openwrt.org/openwrt/trunk@35131 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/libs/ustream-ssl/Makefile | 59 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 package/libs/ustream-ssl/Makefile (limited to 'package/libs/ustream-ssl') diff --git a/package/libs/ustream-ssl/Makefile b/package/libs/ustream-ssl/Makefile new file mode 100644 index 000000000..06dbf35d1 --- /dev/null +++ b/package/libs/ustream-ssl/Makefile @@ -0,0 +1,59 @@ +include $(TOPDIR)/rules.mk + +PKG_NAME:=ustream-ssl +PKG_VERSION:=2013-01-13 +PKG_RELEASE=$(PKG_SOURCE_VERSION) + +PKG_SOURCE_PROTO:=git +PKG_SOURCE_URL:=git://nbd.name/ustream-ssl.git +PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) +PKG_SOURCE_VERSION:=4b9b0031cce397ab2945b664d6df9f3ac4ddb3f6 +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz +CMAKE_INSTALL:=1 + +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_SOURCE_SUBDIR) + +PKG_LICENSE:=ISC +PKG_LICENSE_FILES:= + +PKG_MAINTAINER:=Felix Fietkau + +include $(INCLUDE_DIR)/package.mk +include $(INCLUDE_DIR)/cmake.mk + +define Package/libustream/default + SECTION:=libs + CATEGORY:=Libraries + TITLE:=ustream SSL Library + DEPENDS:=+libubox +endef + +define Package/libustream-openssl + $(Package/libustream/default) + TITLE += (openssl) + DEPENDS += +PACKAGE_libustream-openssl:libopenssl + VARIANT:=openssl +endef + +define Package/libustream-cyassl + $(Package/libustream/default) + TITLE += (cyassl) + DEPENDS += +PACKAGE_libustream-cyassl:libcyassl + VARIANT:=cyassl +endef + +ifeq ($(BUILD_VARIANT),cyassl) + TARGET_CFLAGS += -I$(STAGING_DIR)/usr/include/cyassl + CMAKE_OPTIONS += -DCYASSL=on +endif + +define Package/libustream/default/install + $(INSTALL_DIR) $(1)/lib/ + $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libustream-ssl.so $(1)/lib/ +endef + +Package/libustream-openssl/install = $(Package/libustream/default/install) +Package/libustream-cyassl/install = $(Package/libustream/default/install) + +$(eval $(call BuildPackage,libustream-cyassl)) +$(eval $(call BuildPackage,libustream-openssl)) -- cgit v1.2.3 From 4f9f73cb2ddbf44c2c669e0db7fdeb7f919175e0 Mon Sep 17 00:00:00 2001 From: nbd Date: Tue, 22 Jan 2013 14:29:01 +0000 Subject: ustream-ssl: update to latest version, fixes handling large chunks of data (fixes #12866) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@35293 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/libs/ustream-ssl/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'package/libs/ustream-ssl') diff --git a/package/libs/ustream-ssl/Makefile b/package/libs/ustream-ssl/Makefile index 06dbf35d1..9fef5e7f1 100644 --- a/package/libs/ustream-ssl/Makefile +++ b/package/libs/ustream-ssl/Makefile @@ -1,13 +1,13 @@ include $(TOPDIR)/rules.mk PKG_NAME:=ustream-ssl -PKG_VERSION:=2013-01-13 +PKG_VERSION:=2013-01-22 PKG_RELEASE=$(PKG_SOURCE_VERSION) PKG_SOURCE_PROTO:=git PKG_SOURCE_URL:=git://nbd.name/ustream-ssl.git PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) -PKG_SOURCE_VERSION:=4b9b0031cce397ab2945b664d6df9f3ac4ddb3f6 +PKG_SOURCE_VERSION:=da607e6272d789ed5dae3b0efff90912fda6f81f PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz CMAKE_INSTALL:=1 -- cgit v1.2.3 From 2cf14d1a33db37626bc0c56c5d32651bbff2e426 Mon Sep 17 00:00:00 2001 From: nbd Date: Tue, 22 Jan 2013 14:52:52 +0000 Subject: ustream-ssl: remove dependency conditional part to avoid build breakage when no variant is selected git-svn-id: svn://svn.openwrt.org/openwrt/trunk@35294 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/libs/ustream-ssl/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'package/libs/ustream-ssl') diff --git a/package/libs/ustream-ssl/Makefile b/package/libs/ustream-ssl/Makefile index 9fef5e7f1..28b9a99e7 100644 --- a/package/libs/ustream-ssl/Makefile +++ b/package/libs/ustream-ssl/Makefile @@ -31,14 +31,14 @@ endef define Package/libustream-openssl $(Package/libustream/default) TITLE += (openssl) - DEPENDS += +PACKAGE_libustream-openssl:libopenssl + DEPENDS += +libopenssl VARIANT:=openssl endef define Package/libustream-cyassl $(Package/libustream/default) TITLE += (cyassl) - DEPENDS += +PACKAGE_libustream-cyassl:libcyassl + DEPENDS += +libcyassl VARIANT:=cyassl endef -- cgit v1.2.3