diff options
-rw-r--r-- | mail/ingo/options.mk | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/mail/ingo/options.mk b/mail/ingo/options.mk index bf3bd998fd1..dcb5eabe4ee 100644 --- a/mail/ingo/options.mk +++ b/mail/ingo/options.mk @@ -1,7 +1,7 @@ -# $NetBSD: options.mk,v 1.4 2006/08/10 14:35:02 adrianp Exp $ +# $NetBSD: options.mk,v 1.5 2006/08/11 16:32:21 adrianp Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.ingo -PKG_SUPPORTED_OPTIONS= sieve imap ftp +PKG_SUPPORTED_OPTIONS= sieve imap maildrop procmail .include "../../mk/bsd.options.mk" @@ -20,8 +20,15 @@ DEPENDS+= ${PHP_PKG_PREFIX}-imap>4.3.3:../../mail/php-imap .endif ### -### procmail or dropmail support need the PHP FTP extension +### maildrop support needs the PHP FTP extension ### -.if !empty(PKG_OPTIONS:Mftp) +.if !empty(PKG_OPTIONS:Mmaildrop) +DEPENDS+= ${PHP_PKG_PREFIX}-ftp>4.3.3:../../net/php-ftp +.endif + +### +### procmail support needs the PHP FTP extension +### +.if !empty(PKG_OPTIONS:Mprocmail) DEPENDS+= ${PHP_PKG_PREFIX}-ftp>4.3.3:../../net/php-ftp .endif |