diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-06-04 10:32:49 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-06-04 10:32:49 +0000 |
commit | 7117487ddb38fee864033b869ed6b65f7094a29c (patch) | |
tree | 72a8cb20efc8916ac1fe7ec801ddfe0d2d0136bf /mail/spmfilter-clamav | |
parent | 1f1a5f1e120cc7ffd0b13ccf1e289a157ca7e5dd (diff) | |
download | ports-7117487ddb38fee864033b869ed6b65f7094a29c.tar.gz ports-7117487ddb38fee864033b869ed6b65f7094a29c.zip |
Notes
Diffstat (limited to 'mail/spmfilter-clamav')
-rw-r--r-- | mail/spmfilter-clamav/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mail/spmfilter-clamav/Makefile b/mail/spmfilter-clamav/Makefile index 682ac80c750f..37f2fd2e760f 100644 --- a/mail/spmfilter-clamav/Makefile +++ b/mail/spmfilter-clamav/Makefile @@ -20,11 +20,11 @@ CMAKE_ARGS+= -DCMAKE_INCLUDE_PATH="${LOCALBASE}/include" \ USE_LDCONFIG= ${PREFIX}/lib/spmfilter -OPTIONS= DEBUG "Enable Debugging" off +OPTIONS_DEFINE= DEBUG -.include <bsd.port.pre.mk> +.include <bsd.port.options.mk> -.if defined(WITH_DEBUG) +.if ${PORT_OPTIONS:MDEBUG} CMAKE_ARGS+= -DENABLE_DEBUG=TRUE .endif @@ -38,9 +38,9 @@ post-patch: ${WRKSRC}/cmake/Modules/SMFMacros.cmake post-install: -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${INSTALL} -o ${DOCOWN} -g ${DOCGRP} -m 555 -d ${DOCSDIR}/contrib @${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} @${INSTALL_DATA} ${WRKSRC}/contrib/virus-notify.txt ${DOCSDIR}/contrib .endif -.include <bsd.port.post.mk> +.include <bsd.port.mk> |