diff options
author | leeym <leeym@FreeBSD.org> | 2003-06-19 14:42:20 +0800 |
---|---|---|
committer | leeym <leeym@FreeBSD.org> | 2003-06-19 14:42:20 +0800 |
commit | 0a78e0d665d4d8b4e384493912668f24d6645a9b (patch) | |
tree | 40c57725bc179f4cabffa2260c1cf4d825728676 /mail | |
parent | 53743472937c7418dd6f1392c98af71b4b909b03 (diff) | |
download | freebsd-ports-gnome-0a78e0d665d4d8b4e384493912668f24d6645a9b.tar.gz freebsd-ports-gnome-0a78e0d665d4d8b4e384493912668f24d6645a9b.tar.zst freebsd-ports-gnome-0a78e0d665d4d8b4e384493912668f24d6645a9b.zip |
- add optional supports for Zlib and Quota
- cleanup Makefile
Diffstat (limited to 'mail')
-rw-r--r-- | mail/openwebmail/Makefile | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/mail/openwebmail/Makefile b/mail/openwebmail/Makefile index b3e9fe2b0890..52d6893061bc 100644 --- a/mail/openwebmail/Makefile +++ b/mail/openwebmail/Makefile @@ -35,24 +35,45 @@ PLIST= ${WRKDIR}/.PLIST.${PKGNAME} BUILD_DEPENDS+= speedy_suid:${PORTSDIR}/www/p5-CGI-SpeedyCGI RUN_DEPENDS+= speedy_suid:${PORTSDIR}/www/p5-CGI-SpeedyCGI EXTRA_PATCHES= ${PATCH_WRKSRC}/uty/suidperl2speedy.diff +.else +_CUSTOMIZED= yes .endif .if defined(WITH_PAM) RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/Authen/PAM.pm:${PORTSDIR}/security/p5-Authen-PAM +_CUSTOMIZED= yes +.endif + +.if defined(WITH_ZLIB) +RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/Compress/ZLIB.pm:${PORTSDIR}/archivers/p5-Compress-ZLIB +_CUSTOMIZED= yes +.endif + +.if defined(WITH_QUOTA) +RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/Quota.pm:${PORTSDIR}/sysutils/p5-Quota +_CUSTOMIZED= yes .endif .if defined(WITH_ISPELL) RUN_DEPENDS+= ispell:${PORTSDIR}/textproc/ispell +_CUSTOMIZED= yes .endif .if defined(WITH_IMAGEMAGICK) RUN_DEPENDS+= convert:${PORTSDIR}/graphics/ImageMagick +_CUSTOMIZED= yes .endif pre-fetch: .if defined(WITH_PAM) @${ECHO} "PAM support will be added." .endif +.if defined(WITH_ZLIB) + @${ECHO} "Zlib support will be added." +.endif +.if defined(WITH_QUOTA) + @${ECHO} "Quota support will be added." +.endif .if defined(WITH_ISPELL) @${ECHO} "ISpell support will be added." .endif @@ -62,9 +83,11 @@ pre-fetch: .if defined(WITH_IMAGEMAGICK) @${ECHO} "ImageMagick support will be added." .endif -.if !defined(WITH_PAM) && !defined(WITH_ISPELL) && !defined(WITH_IMAGEMAGICK) && !defined(WITHOUT_SPEEDYCGI) +.if !defined(_CUSTOMIZED) @${ECHO} "" @${ECHO} "Type \"make WITH_PAM=yes\" if you want PAM support." + @${ECHO} "Type \"make WITH_ZLIB=yes\" if you want Zlib support." + @${ECHO} "Type \"make WITH_QUOTA=yes\" if you want Quota support." @${ECHO} "Type \"make WITH_ISPELL=yes\" if you want ISpell support." @${ECHO} "Type \"make WITHOUT_SPEEDYCGI=yes\" if you DONT want SpeedyCGI support." @${ECHO} "Type \"make WITH_IMAGEMAGICK=yes\" if you want ImageMagick support." |