diff options
author | Oliver Lehmann <oliver@FreeBSD.org> | 2005-04-26 19:22:11 +0000 |
---|---|---|
committer | Oliver Lehmann <oliver@FreeBSD.org> | 2005-04-26 19:22:11 +0000 |
commit | 3c879ce4c56cf0a8a4238db0f7bc050de0bbb03a (patch) | |
tree | b2c1a0f0b776e96fbf8c8a3979670d0fd5a40cb3 /mail/sqwebmail | |
parent | 39baf03e56f6b08644601e8047ac1e95576260f8 (diff) |
Notes
Diffstat (limited to 'mail/sqwebmail')
-rw-r--r-- | mail/sqwebmail/Makefile | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/mail/sqwebmail/Makefile b/mail/sqwebmail/Makefile index 38cce6912064..b681226989e6 100644 --- a/mail/sqwebmail/Makefile +++ b/mail/sqwebmail/Makefile @@ -15,11 +15,15 @@ MASTER_SITE_SUBDIR= courier MAINTAINER= oliver@FreeBSD.org COMMENT= CGI Webmail client for Maildirs -BUILD_DEPENDS= ${LOCALBASE}/bin/courierauthconfig:${PORTSDIR}/mail/courier-authlib -RUN_DEPENDS= ${LOCALBASE}/bin/courierauthconfig:${PORTSDIR}/mail/courier-authlib - CONFIGURE_ENV= CFLAGS="${CFLAGS} -I${LOCALBASE}/include" +BUILD_DEPENDS= courierauthconfig:${PORTSDIR}/security/courier-authlib-base +RUN_DEPENDS= courierauthconfig:${PORTSDIR}/security/courier-authlib-base + +.if exists(${.CURDIR}/../../security/courier-authlib/Makefile.opt) +.include "${.CURDIR}/../../security/courier-authlib/Makefile.opt" +.endif + # # User-serviceable variables # @@ -44,6 +48,8 @@ CACHEDIR?= ${PREFIX}/var/sqwebmail/cache CACHEOWNER?= bin # +# will be migrated to options if possible sooner or later! +# # set WITHOUT_CACHEDIR to disable the cache dir # set WITH_HTTPS to generate https:// URLs for all accesses # set WITH_HTTPS=login to generate https:// URLs for only password access @@ -182,6 +188,12 @@ MAN8= deliverquota.8 EXTRA_DOCS= README README.logindomainlist.html README.pam sqwebmail/ChangeLog \ maildir/README.maildirquota.txt maildir/README.sharedfolders.txt +.include <bsd.port.pre.mk> + +.if exists(${.CURDIR}/../../security/courier-authlib/Makefile.dep) +.include "${.CURDIR}/../../security/courier-authlib/Makefile.dep" +.endif + post-patch: @${REINPLACE_CMD} -e 's|^case x$$lockmethod in|${TEST} \&\& &|g' \ ${WRKSRC}/liblock/configure @@ -214,4 +226,4 @@ post-install: @${ECHO_MSG} "0 * * * * ${CACHEOWNER} ${PREFIX}/share/sqwebmail/cleancache.pl" @${ECHO_MSG} "" -.include <bsd.port.mk> +.include <bsd.port.post.mk> |