summaryrefslogtreecommitdiff
path: root/package/stunnel/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@uclibc-ng.org>2016-09-28 19:04:37 +0200
committerWaldemar Brodkorb <wbx@uclibc-ng.org>2016-09-30 21:18:09 +0200
commit4237c9d899a7e5dfb9d62644601bcbfa1574ab82 (patch)
treeccb7b6d3fe16110c0dbc0648ca5c7760ab6d2b31 /package/stunnel/Makefile
parentf9be3a73d76d5cf4f8b07cbbff925872927a1eaa (diff)
remove OpenSSL support
I thought some time about this, we have it in parallel some time and it have issues for allmodconfig builds. Anyway I have no fun doing openssl updates twice a week. We just can not support stunnel/ssltunnel anymore. For nodejs we use bundled openssl. I am an old OpenBSD geek anyway, so get rid of OpenSSL.
Diffstat (limited to 'package/stunnel/Makefile')
-rw-r--r--package/stunnel/Makefile33
1 files changed, 0 insertions, 33 deletions
diff --git a/package/stunnel/Makefile b/package/stunnel/Makefile
deleted file mode 100644
index e5962f38a..000000000
--- a/package/stunnel/Makefile
+++ /dev/null
@@ -1,33 +0,0 @@
-# This file is part of the OpenADK project. OpenADK is copyrighted
-# material, please see the LICENCE file in the top-level directory.
-
-include $(ADK_TOPDIR)/rules.mk
-
-PKG_NAME:= stunnel
-PKG_VERSION:= 5.36
-PKG_RELEASE:= 1
-PKG_HASH:= eb8952fcfdfcdf5056a1f1a78e1ec5014b819c5f5f7599b924dc4490ffe4b5ea
-PKG_DESCR:= encryption wrapper
-PKG_SECTION:= net/security
-PKG_DEPENDS:= libopenssl
-PKG_BUILDDEP:= openssl
-PKG_URL:= https://www.stunnel.org
-PKG_SITES:= https://www.stunnel.org/downloads/
-
-DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.gz
-
-include $(ADK_TOPDIR)/mk/package.mk
-
-$(eval $(call PKG_template,STUNNEL,stunnel,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
-
-AUTOTOOL_STYLE:= autoreconf
-CONFIGURE_ARGS+= --with-ssl=${STAGING_TARGET_DIR}/usr \
- --disable-systemd \
- --disable-libwrap
-
-stunnel-install:
- $(INSTALL_DIR) $(IDIR_STUNNEL)/usr/bin
- $(INSTALL_BIN) $(WRKINST)/usr/bin/stunnel \
- $(IDIR_STUNNEL)/usr/bin
-
-include ${ADK_TOPDIR}/mk/pkg-bottom.mk