diff options
author | mandree <mandree@FreeBSD.org> | 2013-01-14 05:35:06 +0800 |
---|---|---|
committer | mandree <mandree@FreeBSD.org> | 2013-01-14 05:35:06 +0800 |
commit | 7a051589495fde59ba3e92be183f49def368a080 (patch) | |
tree | 8102ec2337c70614e5f4d86111556a71c12bb94d /security/openvpn | |
parent | 0630004dd6479d4af273e604ca08bee91f973271 (diff) | |
download | freebsd-ports-gnome-7a051589495fde59ba3e92be183f49def368a080.tar.gz freebsd-ports-gnome-7a051589495fde59ba3e92be183f49def368a080.tar.zst freebsd-ports-gnome-7a051589495fde59ba3e92be183f49def368a080.zip |
Add a new security/easy-rsa package that contains the bits that got
split out of OpenVPN prior to the current 2.3.0 release, and make that
security/openvpn RUN_DEPENDS on it. Also update UPDATING record.
Diffstat (limited to 'security/openvpn')
-rw-r--r-- | security/openvpn/Makefile | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/security/openvpn/Makefile b/security/openvpn/Makefile index dfcf0d0f2fff..76bb906fbfe4 100644 --- a/security/openvpn/Makefile +++ b/security/openvpn/Makefile @@ -3,11 +3,10 @@ PORTNAME= openvpn DISTVERSION= 2.3.0 +PORTREVISION= 1 CATEGORIES= security net -# MASTER_SITES points to hosts in distinct data centers, -# so just one MASTER_SITES entry should be OK. MASTER_SITES= http://swupdate.openvpn.net/community/releases/ \ - ${MASTER_SITE_LOCAL:S,$,mandree/,} + http://build.openvpn.net/downloads/releases/ MAINTAINER= mandree@FreeBSD.org COMMENT= Secure IP/Ethernet tunnel daemon @@ -24,9 +23,11 @@ CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib # PolarSSL missing: OpenVPN does not currently compile with PolarSSL 1.2.0+ -OPTIONS_DEFINE= PW_SAVE PKCS11 +OPTIONS_DEFINE= PW_SAVE PKCS11 EASYRSA +OPTIONS_DEFAULT= EASYRSA PW_SAVE_DESC= Interactive passwords may be read from a file PKCS11_DESC= Use security/pkcs11-helper +EASYRSA_DESC= Install security/easy-rsa RSA helper package .include <bsd.port.options.mk> @@ -36,6 +37,10 @@ INSTALL_TARGET= install INSTALL_TARGET= install-exec install-man .endif +.if ${PORT_OPTIONS:MEASYRSA} +RUN_DEPENDS+= easy-rsa>=0:${PORTSDIR}/security/easy-rsa +.endif + INSTALL_TARGET+= mandir=${MANPREFIX}/man MAN8= openvpn.8 |