diff options
author | Renato Botelho <garga@FreeBSD.org> | 2005-07-14 21:15:47 +0800 |
---|---|---|
committer | Renato Botelho <garga@FreeBSD.org> | 2005-07-14 21:15:47 +0800 |
commit | cc323eeba5401e651956ed06435b77bbf392790a (patch) | |
tree | 70dac912adfd5adc139d881d3225db2f7362aaa9 /security | |
parent | bc72904229f1a8a008907b21a0b2f5c09333d361 (diff) | |
download | freebsd-ports-gnome-cc323eeba5401e651956ed06435b77bbf392790a.tar.gz freebsd-ports-gnome-cc323eeba5401e651956ed06435b77bbf392790a.tar.zst freebsd-ports-gnome-cc323eeba5401e651956ed06435b77bbf392790a.zip |
Add PW_PASS option to compile with --enable-pass-save
PR: 82494
Submitted by: Landon Fuller <landonf@threerings.net>
Reviewed by: Matthias Andree <matthias.andree@gmx.de> (maintainer)
Approved by: mantainer, flz (mentor)
Diffstat (limited to 'security')
-rw-r--r-- | security/openvpn-devel/Makefile | 10 | ||||
-rw-r--r-- | security/openvpn/Makefile | 10 | ||||
-rw-r--r-- | security/openvpn20/Makefile | 10 |
3 files changed, 27 insertions, 3 deletions
diff --git a/security/openvpn-devel/Makefile b/security/openvpn-devel/Makefile index 64ecb9539444..b39638afd95c 100644 --- a/security/openvpn-devel/Makefile +++ b/security/openvpn-devel/Makefile @@ -24,6 +24,14 @@ CONFIGURE_ARGS= --with-lzo-lib=${LOCALBASE}/lib \ MAN8= openvpn.8 +OPTIONS= PW_SAVE "Interactive passwords may be read from a file" off + +.include <bsd.port.pre.mk> + +.if defined(WITH_PW_SAVE) +CONFIGURE_ARGS+= --enable-password-save +.endif + # self-tests here post-build: ( set -e ; cd ${WRKSRC} && \ @@ -49,4 +57,4 @@ post-install: | ${CPIO} -pdmu ${DOCSDIR} ) .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/security/openvpn/Makefile b/security/openvpn/Makefile index 64ecb9539444..b39638afd95c 100644 --- a/security/openvpn/Makefile +++ b/security/openvpn/Makefile @@ -24,6 +24,14 @@ CONFIGURE_ARGS= --with-lzo-lib=${LOCALBASE}/lib \ MAN8= openvpn.8 +OPTIONS= PW_SAVE "Interactive passwords may be read from a file" off + +.include <bsd.port.pre.mk> + +.if defined(WITH_PW_SAVE) +CONFIGURE_ARGS+= --enable-password-save +.endif + # self-tests here post-build: ( set -e ; cd ${WRKSRC} && \ @@ -49,4 +57,4 @@ post-install: | ${CPIO} -pdmu ${DOCSDIR} ) .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/security/openvpn20/Makefile b/security/openvpn20/Makefile index 64ecb9539444..b39638afd95c 100644 --- a/security/openvpn20/Makefile +++ b/security/openvpn20/Makefile @@ -24,6 +24,14 @@ CONFIGURE_ARGS= --with-lzo-lib=${LOCALBASE}/lib \ MAN8= openvpn.8 +OPTIONS= PW_SAVE "Interactive passwords may be read from a file" off + +.include <bsd.port.pre.mk> + +.if defined(WITH_PW_SAVE) +CONFIGURE_ARGS+= --enable-password-save +.endif + # self-tests here post-build: ( set -e ; cd ${WRKSRC} && \ @@ -49,4 +57,4 @@ post-install: | ${CPIO} -pdmu ${DOCSDIR} ) .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |