diff options
author | jgh <jgh@FreeBSD.org> | 2013-06-06 02:24:42 +0800 |
---|---|---|
committer | jgh <jgh@FreeBSD.org> | 2013-06-06 02:24:42 +0800 |
commit | f2239d9222497cbf37b4c00b6ce2cca3b3ee30d8 (patch) | |
tree | 90b4230852e25230ea4a7653e00f8e5409c93d5b /mail/milter-skem | |
parent | 38d0de022dc7f6d9da92cc6e941a8763785b1d94 (diff) | |
download | freebsd-ports-gnome-f2239d9222497cbf37b4c00b6ce2cca3b3ee30d8.tar.gz freebsd-ports-gnome-f2239d9222497cbf37b4c00b6ce2cca3b3ee30d8.tar.zst freebsd-ports-gnome-f2239d9222497cbf37b4c00b6ce2cca3b3ee30d8.zip |
- adoption of optionsNG
Approved by: portmgr (bapt)
Diffstat (limited to 'mail/milter-skem')
-rw-r--r-- | mail/milter-skem/Makefile | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/mail/milter-skem/Makefile b/mail/milter-skem/Makefile index 3e1c9b065057..a655e0b005ad 100644 --- a/mail/milter-skem/Makefile +++ b/mail/milter-skem/Makefile @@ -1,9 +1,5 @@ -# New ports collection makefile for: milter-skem -# Date created: 14 July 2004 -# Whom: Mikhail Teterin -# +# Created by: Mikhail Teterin # $FreeBSD$ -# PORTNAME= skem PORTVERSION= 1.0.1 @@ -19,16 +15,20 @@ PLIST_FILES= sbin/skem MAN8= skem.8 MANCOMPRESSED= maybe -OPTIONS= SKEM_MILTER421 "Sendmail was built with -D_FFR_MILTER_421" off \ - SKEM_NO_CLEANUP "Omit the auto-cleanup module" off \ - SKEM_NO_LOGWATCHER "Omit the log-watching module" off \ - SKEM_NETINET6 "Support IPv6 addresses (not tested)" off \ - SKEM_NETINET "Support IPv4 addresses" on +OPTIONS_DEFINE= SKEM_MILTER421 SKEM_NO_CLEANUP SKEM_NO_LOGWATCHER SKEM_NETINET6 SKEM_NETINET +SKEM_MILTER421_DESC= Sendmail was built with -D_FFR_MILTER_421 +SKEM_NO_CLEANUP_DESC= Omit the auto-cleanup module +SKEM_NO_LOGWATCHER_DESC= Omit the log-watching module +SKEM_NETINET6_DESC= Support IPv6 addresses (not tested) +SKEM_NETINET_DESC= Support IPv4 addresses + +OPTIONS_DEFAULT= SKEM_NETINET + post-install: @${CAT} ${PKGMESSAGE} -.include <bsd.port.pre.mk> +.include <bsd.port.options.mk> .if ${ARCH} == "powerpc" BROKEN= Does not compile on powerpc @@ -45,10 +45,10 @@ MAKE_ENV+= PTHREAD_LIBS="${PTHREAD_LIBS}" MAKE_ENV+= PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" .endif -.for o in ${OPTIONS:MSKEM_*} -. if defined(WITH_$o) +.for o in ${PORT_OPTIONS:MSKEM_*} +. if ${PORT_OPTIONS:M$o} MAKE_ARGS+= -D$o . endif .endfor -.include <bsd.port.post.mk> +.include <bsd.port.mk> |