diff options
author | Patrick Li <pat@FreeBSD.org> | 2002-06-24 16:13:10 +0000 |
---|---|---|
committer | Patrick Li <pat@FreeBSD.org> | 2002-06-24 16:13:10 +0000 |
commit | c37c057b2e8a21a2779015cccd01474fd3c1e8a9 (patch) | |
tree | ba28dd315b0afefedd51be741e9514b85188d146 /security/openvpn-devel/Makefile | |
parent | 66087db901b7c4d6e28ea576323b2b0860cbae14 (diff) |
Add new port openvpn: Secure IP/Ethernet tunnel daemon
PR: ports/39750
Submitted by: Matthias Andree <matthias.andree@web.de>
Notes
Notes:
svn path=/head/; revision=61883
Diffstat (limited to 'security/openvpn-devel/Makefile')
-rw-r--r-- | security/openvpn-devel/Makefile | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/security/openvpn-devel/Makefile b/security/openvpn-devel/Makefile new file mode 100644 index 000000000000..c19f50915d6b --- /dev/null +++ b/security/openvpn-devel/Makefile @@ -0,0 +1,39 @@ +# New ports collection makefile for: openvpn +# Date created: 2002-06-23 +# Whom: Matthias Andree <matthias.andree@web.de> +# +# $FreeBSD$ +# + +PORTNAME= openvpn +PORTVERSION= 1.2.1 +CATEGORIES= security +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} + +MAINTAINER= matthias.andree@web.de + +LIB_DEPENDS= lzo.1:${PORTSDIR}/archivers/lzo + +GNU_CONFIGURE= yes +USE_OPENSSL= yes +CONFIGURE_ARGS= --with-lzo-lib=${LOCALBASE}/lib \ + --with-lzo-headers=${LOCALBASE}/include \ + --program-transform-name="s/x/x/" + +MAN8= openvpn.8 + +post-install: +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} +.for docs in AUTHORS COPYING COPYRIGHT.GPL ChangeLog INSTALL NEWS \ + PORTS README + @${INSTALL_DATA} ${WRKSRC}/${docs} ${DOCSDIR} +.endfor +.for dirs in easy-rsa sample-config-files sample-scripts + @${MKDIR} ${DOCSDIR}/${dirs} + @${INSTALL_DATA} ${WRKSRC}/${dirs}/* ${DOCSDIR}/${dirs} +.endfor +.endif + +.include <bsd.port.mk> |