diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2013-03-18 00:08:59 +0800 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2013-03-18 00:08:59 +0800 |
commit | 832e827c924833a80992ac09f1620231041119be (patch) | |
tree | 9eaacddb72e05569dad60ee00c06cebe38d86ab8 /mail | |
parent | 79ec566cef861dbcc66ab26e869d70839f653625 (diff) | |
download | freebsd-ports-gnome-832e827c924833a80992ac09f1620231041119be.tar.gz freebsd-ports-gnome-832e827c924833a80992ac09f1620231041119be.tar.zst freebsd-ports-gnome-832e827c924833a80992ac09f1620231041119be.zip |
- Take maintainership
- Allow to build when CC=clang by using USE_GCC=any
- Remove indefinite article from COMMENT
- Remove use of bsd.port.pre.mk
Diffstat (limited to 'mail')
-rw-r--r-- | mail/spamdyke/Makefile | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/mail/spamdyke/Makefile b/mail/spamdyke/Makefile index db38f722c0db..6baab7fa6a91 100644 --- a/mail/spamdyke/Makefile +++ b/mail/spamdyke/Makefile @@ -7,8 +7,8 @@ CATEGORIES= mail MASTER_SITES= http://www.spamdyke.org/releases/ EXTRACT_SUFX= .tgz -MAINTAINER= ports@FreeBSD.org -COMMENT= A filter for monitoring and intercepting SMTP connections on qmail +MAINTAINER= bdrewery@FreeBSD.org +COMMENT= Qmail filter for monitoring and intercepting SMTP connections RUN_DEPENDS= ${LOCALBASE}/bin/tcprules:${PORTSDIR}/sysutils/ucspi-tcp @@ -20,16 +20,13 @@ GNU_CONFIGURE= yes ALL_TARGET= spamdyke +USE_GCC= any + OPTIONS_DEFINE= TLS DEBUG DEBUG_EXCESSIVE DOCS OPTIONS_DEFAULT= TLS -TLS_DESC= Enable TLS support DEBUG_DESC= Enable debugging output -.include <bsd.port.pre.mk> - -.if ${CC:T:Mclang} == "clang" -IGNORE= uses nested functions, not supported by clang -.endif +.include <bsd.port.options.mk> .if ${PORT_OPTIONS:MTLS} CONFIGURE_ARGS+= --enable-tls @@ -72,4 +69,4 @@ post-patch: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/spamdyke ${PREFIX}/bin -.include <bsd.port.post.mk> +.include <bsd.port.mk> |