diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2004-05-20 09:02:07 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2004-05-20 09:02:07 +0000 |
commit | 6c9281307debaf3f2c8b285b5766d131a8c8eb44 (patch) | |
tree | 1a85dfbdf6167271fb75740f5b1d560894c7a1ac /security/clamav | |
parent | - Update to version 0.5.0 (diff) |
- Fix dependencies
PR: ports/66879
Submitted by: Beresovsky Andrey <and@rsu.ru>
Approved by: maintainer
Notes
Notes:
svn path=/head/; revision=109550
Diffstat (limited to 'security/clamav')
-rw-r--r-- | security/clamav/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/security/clamav/Makefile b/security/clamav/Makefile index b4b0c233c311..d5f981b514e0 100644 --- a/security/clamav/Makefile +++ b/security/clamav/Makefile @@ -98,14 +98,12 @@ PLIST_SUB+= RC_DIR=${RC_DIR} \ .include <bsd.port.pre.mk> .if defined(WITH_MILTER) -.if exists(/usr/lib/libmilter.a) || exists(${LOCALBASE}/lib/libmilter.a) +.if !exists(/usr/lib/libmilter.a) +BUILD_DEPENDS+= ${LOCALBASE}/lib/libmilter.a:${PORTSDIR}/mail/sendmail +.endif CONFIGURE_ARGS+= --enable-milter PLIST_SUB+= CLAMAV-MILTER="" .else -BROKEN= requires Sendmail 8.12 -PLIST_SUB+= CLAMAV-MILTER="@comment " -.endif -.else PLIST_SUB+= CLAMAV-MILTER="@comment " .endif |