diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2012-09-10 05:12:47 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2012-09-10 05:12:47 +0800 |
commit | 4b4821447ca3d62d478b11559be529f449e7cf5a (patch) | |
tree | 106ad6c17b85f56d5ba8f1a37dca1d369a2586d1 /security | |
parent | 847a3c92f6021514129b2afd4bc09ec3c6e835cb (diff) | |
download | freebsd-ports-gnome-4b4821447ca3d62d478b11559be529f449e7cf5a.tar.gz freebsd-ports-gnome-4b4821447ca3d62d478b11559be529f449e7cf5a.tar.zst freebsd-ports-gnome-4b4821447ca3d62d478b11559be529f449e7cf5a.zip |
- Use OPTIONSng
- Remove deprecated header information
Diffstat (limited to 'security')
-rw-r--r-- | security/vpnc/Makefile | 28 |
1 files changed, 13 insertions, 15 deletions
diff --git a/security/vpnc/Makefile b/security/vpnc/Makefile index 9435d3260227..7e1ae6470f34 100644 --- a/security/vpnc/Makefile +++ b/security/vpnc/Makefile @@ -1,9 +1,4 @@ -# New ports collection makefile for: vpnc -# Date created: 15 December 2003 -# Whom: Christian Lackas -# # $FreeBSD$ -# PORTNAME= vpnc PORTVERSION= 0.5.3 @@ -28,15 +23,18 @@ ALL_TARGET= all PORTDOCS= README TODO MAN8= vpnc.8 -OPTIONS+= DECRYPT "cisco-decypt password decrypt utility" on -OPTIONS+= SSL "OpenSSL certificate support (hybrid only)" off -OPTIONS+= CISCOVERSION "Mask linux presentation string" off - MAKE_ENV+= BINS="${EXTRABUILDS}" -.include <bsd.port.pre.mk> +OPTIONS_DEFINE= DECRYPT SSL CISCOVERSION + +DECRYPT_DESC= cisco-decypt password decrypt utility +CISCOVERSION_DESC= Mask linux presentation string + +OPTIONS_DEFAULT=DECRYPT + +.include <bsd.port.options.mk> -.if defined(WITH_DECRYPT) +.if ${PORT_OPTIONS:MDECRYPT} MAN1= cisco-decrypt.1 EXTRABUILDS+= cisco-decrypt PLIST_SUB+= DECRYPT="" @@ -44,13 +42,13 @@ PLIST_SUB+= DECRYPT="" PLIST_SUB+= DECRYPT="@comment " .endif -.if defined(WITH_SSL) +.if ${PORT_OPTIONS:MSSL} NO_PACKAGE= binary linked against OpenSSL must not be redistributed CFLAGS+= -DOPENSSL_GPL_VIOLATION LDFLAGS+= -lcrypto .endif -.if defined(WITH_CISCOVERSION) +.if ${PORT_OPTIONS:MCISCOVERSION} CFLAGS+= -DCISCO_PATCH_VERSION .endif @@ -61,7 +59,7 @@ post-patch: do-install: ${INSTALL_PROGRAM} -m 751 ${WRKSRC}/vpnc ${PREFIX}/sbin/vpnc -.if defined(WITH_DECRYPT) +.if ${PORT_OPTIONS:MDECRYPT} ${INSTALL_PROGRAM} ${WRKSRC}/cisco-decrypt ${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/${MAN1} ${MANPREFIX}/man/man1 .endif @@ -77,4 +75,4 @@ do-install: @cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR} .endif -.include <bsd.port.post.mk> +.include <bsd.port.mk> |