diff options
author | shaun <shaun@FreeBSD.org> | 2006-11-08 06:28:14 +0800 |
---|---|---|
committer | shaun <shaun@FreeBSD.org> | 2006-11-08 06:28:14 +0800 |
commit | 565142761a0cdfcf3ba8b7f57d38befad29837f0 (patch) | |
tree | 94a9f51dba2ef932a6977b02f95bd6c1ebfc4ce1 /mail | |
parent | 9461776bb8b553659b5011c9a52b2572ce9be22c (diff) | |
download | freebsd-ports-gnome-565142761a0cdfcf3ba8b7f57d38befad29837f0.tar.gz freebsd-ports-gnome-565142761a0cdfcf3ba8b7f57d38befad29837f0.tar.zst freebsd-ports-gnome-565142761a0cdfcf3ba8b7f57d38befad29837f0.zip |
- Point at an alternative master site, and unDEPRECATE.
- Add a knob to depend on clamav-devel rather than clamav. [1]
Requested by: Gerard Seibert via freebsd-ports [1]
Diffstat (limited to 'mail')
-rw-r--r-- | mail/clamfilter/Makefile | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/mail/clamfilter/Makefile b/mail/clamfilter/Makefile index 2cb165e87643..42c5adcf168f 100644 --- a/mail/clamfilter/Makefile +++ b/mail/clamfilter/Makefile @@ -5,18 +5,25 @@ # $FreeBSD$ # +# Anyone upgrading this port is advised to check all changes since the +# previous tarball; I have updated MASTER_SITES to an alternative +# location, but I have no idea if this is an official mirror or not. +# +# The old site was: http://www.ensita.net/products/clamfilter/ + PORTNAME= clamfilter PORTVERSION= 0.5 CATEGORIES= mail -MASTER_SITES= # disappeared +MASTER_SITES= http://www.wyae.de/software/ensita-clamfilter/ MAINTAINER= ports@FreeBSD.org COMMENT= A small, efficient clamav content filter for Postfix -DEPRECATED= mastersites disappeared -EXPIRATION_DATE= 2006-11-05 - +.if defined(WITH_CLAMAV_DEVEL) +RUN_DEPENDS= ${LOCALBASE}/bin/clamdscan:${PORTSDIR}/security/clamav-devel +.else RUN_DEPENDS= ${LOCALBASE}/bin/clamdscan:${PORTSDIR}/security/clamav +.endif SUB_FILES= pkg-message PLIST_FILES= bin/clamfilter |