Security bugfixes OpenSSL DLLs updated to version 1.0.1j. https://www.openssl.org/news/secadv_20141015.txt The insecure SSLv2 protocol is now disabled by default. It can be enabled with "options = -NO_SSLv2". The insecure SSLv3 protocol is now disabled by default. It can be enabled with "options = -NO_SSLv3". Default sslVersion changed to "all" (also in FIPS mode) to autonegotiate the highest supported TLS version. New features Added missing SSL options to match OpenSSL 1.0.1j. New "-options" commandline option to display the list of supported SSL options. Bugfixes Fixed FORK threading build regression bug. OK gsoares@ (maintainer) OK schwarze@
41 lines
1.1 KiB
Makefile
41 lines
1.1 KiB
Makefile
# $OpenBSD: Makefile,v 1.75 2014/10/27 13:16:48 gonzalo Exp $
|
|
|
|
COMMENT= SSL encryption wrapper for standard network daemons
|
|
|
|
DISTNAME= stunnel-5.06
|
|
CATEGORIES= security
|
|
|
|
MAINTAINER= Gleydson Soares <gsoares@openbsd.org>
|
|
|
|
# GPLv2+ with OpenSSL exemption
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
|
|
WANTLIB += c crypto pthread ssl util z
|
|
|
|
HOMEPAGE= http://www.stunnel.org/
|
|
|
|
# Origin server: https://www.stunnel.org/downloads/archive/5.x/
|
|
# Doesn't currently work with ftp(1) ssl support.
|
|
MASTER_SITES= http://ftp.nluug.nl/pub/networking/stunnel/archive/5.x/ \
|
|
http://mirror.bit.nl/stunnel/archive/5.x/ \
|
|
ftp://ftp.stunnel.org/stunnel/archive/5.x/
|
|
|
|
SEPARATE_BUILD= Yes
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS+= ${CONFIGURE_SHARED} \
|
|
--with-ssl=/usr \
|
|
--with-threads=fork \
|
|
--disable-libwrap
|
|
MODGNU_CONFIG_GUESS_DIRS=${WRKSRC}/auto
|
|
NO_TEST= Yes
|
|
USE_GMAKE= Yes
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKBUILD}/src/stunnel ${PREFIX}/sbin
|
|
${INSTALL_MAN} ${WRKSRC}/doc/stunnel.8 ${PREFIX}/man/man8
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/stunnel
|
|
${INSTALL_DATA} ${WRKBUILD}/tools/stunnel.conf-sample \
|
|
${PREFIX}/share/examples/stunnel
|
|
|
|
.include <bsd.port.mk>
|