diff options
author | Bryan Drewery <bdrewery@FreeBSD.org> | 2012-12-12 19:20:45 +0000 |
---|---|---|
committer | Bryan Drewery <bdrewery@FreeBSD.org> | 2012-12-12 19:20:45 +0000 |
commit | 3046198d16d12e3935d4b3c1462398bf7c93f374 (patch) | |
tree | 797a5f819c66b319b064cd81af3a7e546ee959bb /dns/ddclient | |
parent | dc15a356ea61bd581008795da3b8b3e9c9fc888b (diff) | |
download | ports-3046198d16d12e3935d4b3c1462398bf7c93f374.tar.gz ports-3046198d16d12e3935d4b3c1462398bf7c93f374.zip |
Notes
Diffstat (limited to 'dns/ddclient')
-rw-r--r-- | dns/ddclient/Makefile | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/dns/ddclient/Makefile b/dns/ddclient/Makefile index d6f2858f034c..41c47eef82b9 100644 --- a/dns/ddclient/Makefile +++ b/dns/ddclient/Makefile @@ -1,9 +1,5 @@ -# New ports collection makefile for: ddclient -# Date created: Sun Aug 26 14:45:12 CEST 2001 -# Whom: Dirk Froemberg <dirk@FreeBSD.org> -# +# Created by: Dirk Froemberg <dirk@FreeBSD.org> # $FreeBSD$ -# PORTNAME= ddclient PORTVERSION= 3.8.1 @@ -21,11 +17,12 @@ USE_PERL5_RUN= yes NO_BUILD= yes USE_RC_SUBR= ${PORTNAME} -OPTIONS= SSL "Enable SSL support" ON +OPTIONS_DEFINE= SSL +OPTIONS_DEFAULT=SSL .include <bsd.port.options.mk> -.ifndef WITHOUT_SSL +.if ${PORT_OPTIONS:MSSL} RUN_DEPENDS+= p5-IO-Socket-SSL>=0:${PORTSDIR}/security/p5-IO-Socket-SSL .endif @@ -50,7 +47,7 @@ post-patch: do-install: @${INSTALL_DATA} ${WRKSRC}/sample-etc_ddclient.conf ${PREFIX}/etc/ddclient.conf.sample @${INSTALL_SCRIPT} ${WRKSRC}/ddclient ${PREFIX}/sbin/ -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${INSTALL} -d ${DOCSDIR} @${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR}/ .endif |