12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- #
- # Copyright (C) 2006-2014 OpenWrt.org
- #
- # This is free software, licensed under the GNU General Public License v2.
- # See /LICENSE for more information.
- #
- include $(TOPDIR)/rules.mk
- PKG_NAME:=stunnel
- PKG_VERSION:=5.40
- PKG_RELEASE:=1
- PKG_LICENSE:=GPL-2.0+
- PKG_MAINTAINER:=Daniel Engberg <daniel.engberg.lists@pyret.net>
- PKG_LICENSE_FILES:=COPYING COPYRIGHT.GPL
- PKG_SOURCE_URL:= \
- http://ftp.nluug.nl/pub/networking/stunnel/ \
- http://www.usenix.org.uk/mirrors/stunnel/
- PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
- PKG_MD5SUM:=23acdb390326ffd507d90f8984ecc90e0d9993f6bd6eac1d0a642456565c45ff
- PKG_FIXUP:=autoreconf
- PKG_INSTALL:=1
- include $(INCLUDE_DIR)/package.mk
- define Package/stunnel
- SECTION:=net
- CATEGORY:=Network
- DEPENDS:=+libopenssl +zlib +libpthread
- TITLE:=SSL TCP Wrapper
- URL:=http://www.stunnel.org/
- endef
- define Package/stunnel/description
- Stunnel is a program that allows you to encrypt arbitrary TCP
- connections inside SSL (Secure Sockets Layer) available on both Unix
- and Windows. Stunnel can allow you to secure non-SSL aware daemons and
- protocols (like POP, IMAP, LDAP, etc) by having Stunnel provide the
- encryption, requiring no changes to the daemon's code.
- endef
- define Package/stunnel/conffiles
- /etc/stunnel/stunnel.conf
- endef
- CONFIGURE_ARGS+= \
- --with-random=/dev/urandom \
- --with-threads=pthread \
- --with-ssl=$(STAGING_DIR)/usr \
- --disable-libwrap \
- --disable-systemd
- ifeq ($(CONFIG_IPV6),n)
- CONFIGURE_ARGS+= \
- --disable-ipv6
- endif
- define Build/Compile
- mkdir -p $(PKG_INSTALL_DIR)/etc/stunnel
- echo '#dummy' > $(PKG_INSTALL_DIR)/etc/stunnel/stunnel.pem
- $(call Build/Compile/Default)
- endef
- define Package/stunnel/install
- $(INSTALL_DIR) $(1)/usr/bin
- $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/stunnel $(1)/usr/bin/
- $(INSTALL_DIR) $(1)/usr/lib/stunnel
- $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/lib/stunnel/libstunnel.so $(1)/usr/lib/stunnel/
- $(INSTALL_DIR) $(1)/etc/stunnel
- $(INSTALL_CONF) ./files/stunnel.conf $(1)/etc/stunnel/stunnel.conf
- $(INSTALL_DIR) $(1)/etc/init.d
- $(INSTALL_BIN) ./files/stunnel.init $(1)/etc/init.d/stunnel
- endef
- $(eval $(call BuildPackage,stunnel))
|