diff options
author | gabor <gabor@FreeBSD.org> | 2011-01-17 22:33:14 +0800 |
---|---|---|
committer | gabor <gabor@FreeBSD.org> | 2011-01-17 22:33:14 +0800 |
commit | a961b71f66dd574c4e0ed3fa436b1f7dcab7b0d3 (patch) | |
tree | 70adb2354aa5165469ba7436b2f0941993577629 /security | |
parent | 304000258697392c1aabcaa001c0ed67291be884 (diff) | |
download | freebsd-ports-gnome-a961b71f66dd574c4e0ed3fa436b1f7dcab7b0d3.tar.gz freebsd-ports-gnome-a961b71f66dd574c4e0ed3fa436b1f7dcab7b0d3.tar.zst freebsd-ports-gnome-a961b71f66dd574c4e0ed3fa436b1f7dcab7b0d3.zip |
- Make IPv6 support optional because it causes a delay on systems that
do not support it
PR: ports/153431
Submitted by: Michael Scheidell <michael.scheidell@secnap.com>
Feature safe: yes
Diffstat (limited to 'security')
-rw-r--r-- | security/amavisd-new/Makefile | 12 | ||||
-rw-r--r-- | security/amavisd-new/distinfo | 1 |
2 files changed, 8 insertions, 5 deletions
diff --git a/security/amavisd-new/Makefile b/security/amavisd-new/Makefile index e6a88564d12e..3ac6e96bfab8 100644 --- a/security/amavisd-new/Makefile +++ b/security/amavisd-new/Makefile @@ -8,7 +8,7 @@ PORTNAME= amavisd-new PORTVERSION= 2.6.4 -PORTREVISION= 9 +PORTREVISION= 10 PORTEPOCH= 1 CATEGORIES= security MASTER_SITES= http://www.ijs.si/software/amavisd/ \ @@ -23,7 +23,6 @@ RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Unix/Syslog.pm:${PORTSDIR}/sysutils/p5-Un ${SITE_PERL}/Convert/TNEF.pm:${PORTSDIR}/converters/p5-Convert-TNEF \ p5-Convert-UUlib>=1.08,1:${PORTSDIR}/converters/p5-Convert-UUlib \ ${SITE_PERL}/Archive/Zip.pm:${PORTSDIR}/archivers/p5-Archive-Zip \ - ${SITE_PERL}/IO/Socket/INET6.pm:${PORTSDIR}/net/p5-IO-Socket-INET6 \ p5-Net-Server>=0.93:${PORTSDIR}/net/p5-Net-Server \ p5-Mail-DKIM>=0.33:${PORTSDIR}/mail/p5-Mail-DKIM @@ -43,7 +42,8 @@ AMAVISDIR?= /var/amavis AMAVISQUARANTINE?= /var/virusmails DAEMON?= /usr/sbin/daemon -p -OPTIONS= BDB "Use BerkeleyDB for nanny/cache/snmp" on \ +OPTIONS= IPV6 "Support IPv6" off \ + BDB "Use BerkeleyDB for nanny/cache/snmp" on \ SNMP "Install amavisd snmp subagent" off \ SQLITE "Use SQLite for lookups" off \ MYSQL "Use MySQL for lookups/logging/quarantine" off \ @@ -89,9 +89,13 @@ PLIST_SUB+= AMAVIS_NOAMAVIS=${AMAVIS_NOAMAVIS} \ USE_RC_SUBR+= amavisd.sh +.if defined(WITH_IPV6) +RUN_DEPENDS+= ${SITE_PERL}/IO/Socket/INET6.pm:${PORTSDIR}/net/p5-IO-Socket-INET6 +.endif + .if defined(WITH_SNMP) && defined(WITH_BDB) USE_RC_SUBR+= amavisd-snmp.sh -RUN_DEPENDS+= ${SITE_PERL}/Net/SNMP.pm:${PORTSDIR}/net-mgmt/p5-Net-SNMP +RUN_DEPENDS+= ${SITE_PERL}/Net/SNMP.pm:${PORTSDIR}/net-mgmt/p5-Net-SNMP .endif .if !defined(WITH_MILTER) || (!exists(/usr/lib/libmilter.a) && !exists(${PREFIX}/lib/libmilter.a)) diff --git a/security/amavisd-new/distinfo b/security/amavisd-new/distinfo index 1eacd0780fa8..6f8fbcd83696 100644 --- a/security/amavisd-new/distinfo +++ b/security/amavisd-new/distinfo @@ -1,3 +1,2 @@ -MD5 (amavisd-new-2.6.4.tar.gz) = 03d31657f14cd64c1cb38786214234b4 SHA256 (amavisd-new-2.6.4.tar.gz) = 40fe1b655deb934c7a655a6b5b430df268ec9ac80754b120795bc45d4ae769ef SIZE (amavisd-new-2.6.4.tar.gz) = 947596 |