aboutsummaryrefslogtreecommitdiffstats
path: root/mail/prayer
diff options
context:
space:
mode:
authorbapt <bapt@FreeBSD.org>2012-05-29 20:18:32 +0800
committerbapt <bapt@FreeBSD.org>2012-05-29 20:18:32 +0800
commitcd1768db41f7b1311e3e7421da8a1623fb4f2081 (patch)
tree5a04cd27c17b566160c019f6f6b76c66ae104109 /mail/prayer
parent45cc41efc289905fe8c96d5124eca8d0921754a9 (diff)
downloadfreebsd-ports-gnome-cd1768db41f7b1311e3e7421da8a1623fb4f2081.tar.gz
freebsd-ports-gnome-cd1768db41f7b1311e3e7421da8a1623fb4f2081.tar.zst
freebsd-ports-gnome-cd1768db41f7b1311e3e7421da8a1623fb4f2081.zip
Switch prayer to new options format.
While here SSL, LDAP and TIDY description in shared bsd.options.desc.mk set maintainer of bsd.options.desc.mk to ports@FreeBSD.org to point that it is open to any committer
Diffstat (limited to 'mail/prayer')
-rw-r--r--mail/prayer/Makefile14
1 files changed, 7 insertions, 7 deletions
diff --git a/mail/prayer/Makefile b/mail/prayer/Makefile
index 4034730adc99..f36c30c7328e 100644
--- a/mail/prayer/Makefile
+++ b/mail/prayer/Makefile
@@ -31,10 +31,10 @@ PORTDOCS= ACCOUNTD CMD_LINE DESIGN DONE DONE-OLD FEATURES ICONLIST \
USE_RC_SUBR= prayer
-OPTIONS= SESSIONCACHE "Activate Session Cache" On \
- TIDY "Enable tidy support" On \
- SSL "Enable SSL support" On \
- LDAP "Enable LDAP support" On
+OPTIONS_DEFINE= SESSIONCACHE TIDY SSL LDAP
+OPTIONS_DEFAULT= SESSIONCACHE TIDY SSL LDAP
+
+SESSIONCACHE_DESC= Activate Session Cache
USERS= _prayer
GROUPS= prayer
@@ -44,15 +44,15 @@ MAN8= prayer-session.8 prayer-ssl-prune.8 prayer.8
.include <bsd.port.pre.mk>
-.if defined(WITH_SESSIONCACHE)
+.if ${PORT_OPTIONS:MSESSIONCACHE}
USE_BDB= yes
.endif
-.if !defined(WITHOUT_LDAP)
+.if ${PORT_OPTIONS:MLDAP}
USE_OPENLDAP= yes
.endif
-.if !defined(WITHOUT_TIDY)
+.if ${PORT_OPTIONS:MTIDY}
LIB_DEPENDS+= tidy-0.99.0:${PORTSDIR}/www/tidy-lib
.endif