2013-03-05 18:07:43 +01:00
|
|
|
# Created by: Matt <matt@xtaz.net>
|
2004-10-16 03:26:41 +02:00
|
|
|
# $FreeBSD$
|
|
|
|
|
|
|
|
PORTNAME= clamassassin
|
2007-04-26 18:59:56 +02:00
|
|
|
PORTVERSION= 1.2.4
|
2010-04-06 14:01:56 +02:00
|
|
|
PORTREVISION= 5
|
2004-10-16 03:26:41 +02:00
|
|
|
CATEGORIES= security
|
2009-07-19 20:59:40 +02:00
|
|
|
MASTER_SITES= http://jameslick.com/clamassassin/
|
2004-10-16 03:26:41 +02:00
|
|
|
|
2009-03-30 20:33:28 +02:00
|
|
|
MAINTAINER= chalpin@cs.wisc.edu
|
2013-03-29 20:33:41 +01:00
|
|
|
COMMENT= Simple virus filter wrapper for ClamAV
|
2004-10-16 03:26:41 +02:00
|
|
|
|
2004-10-21 16:30:27 +02:00
|
|
|
BUILD_DEPENDS= sigtool:${PORTSDIR}/security/clamav \
|
|
|
|
formail:${PORTSDIR}/mail/procmail
|
2012-01-21 18:40:15 +01:00
|
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
2004-10-16 03:26:41 +02:00
|
|
|
|
|
|
|
PLIST_FILES= bin/clamassassin
|
|
|
|
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
|
2013-03-05 18:07:43 +01:00
|
|
|
OPTIONS_DEFINE= CLAMDSCAN SUBREWRITE
|
|
|
|
OPTIONS_DEFAULT= CLAMDSCAN
|
|
|
|
CLAMDSCAN_DESC= Scanning using clamd
|
|
|
|
SUBREWRITE_DESC= Mail subject rewriting
|
2004-10-16 03:26:41 +02:00
|
|
|
|
2013-03-05 18:07:43 +01:00
|
|
|
.include <bsd.port.options.mk>
|
2004-10-16 03:26:41 +02:00
|
|
|
|
2013-03-05 18:07:43 +01:00
|
|
|
.if ${PORT_OPTIONS:MCLAMDSCAN}
|
2004-10-16 03:26:41 +02:00
|
|
|
CONFIGURE_ARGS+= --enable-clamdscan
|
|
|
|
.endif
|
|
|
|
|
2013-03-05 18:07:43 +01:00
|
|
|
.if ${PORT_OPTIONS:MSUBREWRITE}
|
2004-10-16 03:26:41 +02:00
|
|
|
CONFIGURE_ARGS+= --enable-subject-rewrite
|
|
|
|
.endif
|
|
|
|
|
2013-03-05 18:07:43 +01:00
|
|
|
.include <bsd.port.mk>
|