d02c485634
Changes since the 2020-W12 snapshot: * be453156 2020-03-12 | Normalise ncp-ciphers option and restrict it to 127 bytes (HEAD -> master-2020-13, origin/master, origin/HEAD, master) [Arne Schwabe] * f67efa94 2019-10-21 | Fix OpenSSL private key passphrase notices [Santtu Lakkala] * 072f7d35 2020-03-22 | travis-ci: add arm64, s390x builds. [Ilya Shipitsin] * 50d68142 2020-03-09 | openvpnmsica, tapctl: Revise default hardware ID management [Simon Rozman] * d263e4f3 2020-03-09 | openvpnmsica: Extend to support arbitrary HWID network adapters [Simon Rozman] * 8c487854 2020-03-09 | openvpnmsica: "TAP" => "TUN/TAP" [Simon Rozman] * 52b2414d 2020-03-09 | openvpnmsica, tapctl: "interface" => "adapter" [Simon Rozman] * c8de3ddb 2020-03-09 | openvpnmsica: Simplify static function names [Simon Rozman] * e24049d5 2020-03-09 | openvpnmsica: Revise MSI custom actions interop [Simon Rozman] * d15bc3ad 2020-03-09 | tapctl: Add functions for enabling/disabling adapters [Simon Rozman] PR: 245192 Submitted by: ecrist@secure-computing.net (maintainer)
147 lines
5.0 KiB
Makefile
147 lines
5.0 KiB
Makefile
# Created by: Matthias Andree <mandree@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= openvpn
|
|
DISTVERSION= 202013
|
|
CATEGORIES= security net net-vpn
|
|
MASTER_SITES= https://secure-computing.net/files/openvpn/
|
|
PKGNAMESUFFIX= -devel
|
|
|
|
MAINTAINER= ecrist@secure-computing.net
|
|
# let's use ?= in spite of portlint WARNings because this might become
|
|
# security/openvpn one day which would then have a slave port:
|
|
COMMENT?= Secure IP/Ethernet tunnel daemon
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYRIGHT.GPL
|
|
|
|
IGNORE_SSL= libressl libressl-devel
|
|
|
|
USES= cpe libtool pkgconfig shebangfix tar:xz
|
|
|
|
CONFLICTS_INSTALL?= openvpn-2.[!4].* openvpn-[!2].* openvpn-beta-[0-9]* openvpn-devel-[0-9]* openvpn-mbedtls-[0-9]*
|
|
GNU_CONFIGURE= yes
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}${PKGNAMESUFFIX}
|
|
SHEBANG_FILES= sample/sample-scripts/verify-cn \
|
|
sample/sample-scripts/auth-pam.pl \
|
|
sample/sample-scripts/ucn.pl
|
|
CONFIGURE_ARGS+= --enable-strict
|
|
# avoid picking up CMAKE, we don't have cmocka in the tarballs..
|
|
CONFIGURE_ENV+= ac_cv_prog_CMAKE= CMAKE=
|
|
|
|
# let OpenVPN's configure script pick up the requisite libraries,
|
|
# but do not break the plugin build if an older version is installed
|
|
CPPFLAGS+= -I${WRKSRC}/include -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
# set PLUGIN_LIBDIR so that unqualified plugin paths are found:
|
|
CPPFLAGS+= -DPLUGIN_LIBDIR=\\\"${PREFIX}/lib/openvpn/plugins\\\"
|
|
|
|
OPTIONS_DEFINE= PKCS11 EASYRSA DOCS EXAMPLES X509ALTUSERNAME \
|
|
TEST LZ4 SMALL TUNNELBLICK
|
|
OPTIONS_DEFAULT= EASYRSA OPENSSL TEST LZ4
|
|
OPTIONS_SINGLE= SSL
|
|
OPTIONS_SINGLE_SSL= OPENSSL MBEDTLS
|
|
PKCS11_DESC= Use security/pkcs11-helper
|
|
EASYRSA_DESC= Install security/easy-rsa RSA helper package
|
|
MBEDTLS_DESC= SSL/TLS via mbedTLS (lacks TLS v1.3)
|
|
TUNNELBLICK_DESC= Tunnelblick XOR scramble patch (READ HELP!)
|
|
X509ALTUSERNAME_DESC= Enable --x509-username-field (OpenSSL only)
|
|
SMALL_DESC= Build a smaller executable with fewer features
|
|
|
|
EASYRSA_RUN_DEPENDS= easy-rsa>=0:security/easy-rsa
|
|
|
|
PKCS11_LIB_DEPENDS= libpkcs11-helper.so:security/pkcs11-helper
|
|
PKCS11_CONFIGURE_ENABLE= pkcs11
|
|
PKCS11_PREVENTS= MBEDTLS
|
|
PKCS11_PREVENTS_MSG= OpenVPN cannot use pkcs11-helper with mbedTLS. Disable PKCS11, or use OpenSSL instead
|
|
|
|
TUNNELBLICK_EXTRA_PATCHES= ${FILESDIR}/extra-tunnelblick-openvpn_xorpatch
|
|
|
|
X509ALTUSERNAME_CONFIGURE_ENABLE= x509-alt-username
|
|
|
|
X509ALTUSERNAME_PREVENTS= MBEDTLS
|
|
X509ALTUSERNAME_PREVENTS_MSG= OpenVPN ${DISTVERSION} cannot use --x509-username-field with mbedTLS. Disable X509ALTUSERNAME, or use OpenSSL instead
|
|
|
|
OPENSSL_USES= ssl
|
|
OPENSSL_CONFIGURE_ON= --with-crypto-library=openssl
|
|
|
|
LZ4_CONFIGURE_OFF= --disable-lz4
|
|
|
|
SMALL_CONFIGURE_ON= --enable-small
|
|
|
|
MBEDTLS_LIB_DEPENDS= libmbedtls.so:security/mbedtls
|
|
MBEDTLS_CONFIGURE_ON= --with-crypto-library=mbedtls
|
|
|
|
USE_RC_SUBR= openvpn
|
|
|
|
SUB_FILES= pkg-message openvpn-client
|
|
|
|
.ifdef (LOG_OPENVPN)
|
|
CFLAGS+= -DLOG_OPENVPN=${LOG_OPENVPN}
|
|
.endif
|
|
|
|
LIB_DEPENDS+= liblzo2.so:archivers/lzo2
|
|
|
|
LZ4_LIB_DEPENDS+= liblz4.so:archivers/liblz4
|
|
|
|
PORTDOCS= *
|
|
PORTEXAMPLES= *
|
|
|
|
TEST_ALL_TARGET= check
|
|
TEST_TEST_TARGET_OFF= check
|
|
|
|
pre-configure:
|
|
.ifdef (LOG_OPENVPN)
|
|
@${ECHO} "Building with LOG_OPENVPN=${LOG_OPENVPN}"
|
|
.else
|
|
@${ECHO} ""
|
|
@${ECHO} "You may use the following build options:"
|
|
@${ECHO} ""
|
|
@${ECHO} " LOG_OPENVPN={Valid syslog facility, default LOG_DAEMON}"
|
|
@${ECHO} " EXAMPLE: make LOG_OPENVPN=LOG_LOCAL6"
|
|
@${ECHO} ""
|
|
.endif
|
|
|
|
post-configure:
|
|
${REINPLACE_CMD} '/^CFLAGS =/s/$$/ -fPIC/' \
|
|
${WRKSRC}/src/plugins/auth-pam/Makefile \
|
|
${WRKSRC}/src/plugins/down-root/Makefile
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MMBEDTLS}
|
|
_tlslibs=libmbedtls libmbedx509 libmbedcrypto
|
|
.else
|
|
# OpenSSL
|
|
_tlslibs=libssl libcrypto
|
|
.endif
|
|
|
|
# sanity check that we don't inherit incompatible SSL libs through,
|
|
# for instance, pkcs11-helper:
|
|
post-build:
|
|
@a=$$(LC_ALL=C ldd -f '%o\n' ${WRKSRC}/src/openvpn/openvpn \
|
|
| ${SORT} -u) ; set -- $$(for i in ${_tlslibs} ; do ${PRINTF} '%s\n' "$$a" | ${GREP} $${i}.so | wc -l ; done | ${SORT} -u) ;\
|
|
if test "$$*" != "1" ; then ${ECHO_CMD} >&2 "${.CURDIR} FAILED: either of ${_tlslibs} libraries linked multiple times" ; ${PRINTF} '%s\n' "$$a"; ${RM} ${BUILD_COOKIE} ; exit 1 ; fi
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/openvpn/plugins/openvpn-plugin-auth-pam.so
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/openvpn/plugins/openvpn-plugin-down-root.so
|
|
${INSTALL_SCRIPT} ${WRKSRC}/contrib/pull-resolv-conf/client.up ${STAGEDIR}${PREFIX}/libexec/openvpn-client.up
|
|
${INSTALL_SCRIPT} ${WRKSRC}/contrib/pull-resolv-conf/client.down ${STAGEDIR}${PREFIX}/libexec/openvpn-client.down
|
|
@${REINPLACE_CMD} 's|resolvconf -p -a|resolvconf -a|' ${STAGEDIR}${PREFIX}/libexec/openvpn-client.up
|
|
${INSTALL_SCRIPT} ${WRKDIR}/openvpn-client ${STAGEDIR}${PREFIX}/sbin/openvpn-client
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/include
|
|
|
|
post-install-DOCS-on:
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}/
|
|
.for i in AUTHORS ChangeLog PORTS
|
|
${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR}/
|
|
.endfor
|
|
|
|
post-install-EXAMPLES-on:
|
|
(cd ${WRKSRC}/sample && ${COPYTREE_SHARE} \* ${STAGEDIR}${EXAMPLESDIR}/)
|
|
${CHMOD} ${BINMODE} ${STAGEDIR}${EXAMPLESDIR}/sample-scripts/*
|
|
|
|
.include <bsd.port.mk>
|