mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-28 05:29:48 +00:00
f7bcd43826
* Switch to use bundled TomsFastMath library. Upstream made incompatible change to bundled copy and this makes it impossible to use external one. They also dropped option to use it. * Bump PORTREVISION of consumers as shlib version is changed. * Note that though this is new LTS feature release security/clamav-lts stays in 0.103.x until either next regular feature release (probably 1.1.0) is released or 0.103.x reaches its EoL. ReleaseNotes: https://blog.clamav.net/2022/11/clamav-100-lts-released.html
40 lines
927 B
Makefile
40 lines
927 B
Makefile
PORTNAME= clamassassin
|
|
PORTVERSION= 1.2.4
|
|
PORTREVISION= 7
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://jameslick.com/clamassassin/
|
|
|
|
MAINTAINER= chalpin@cs.wisc.edu
|
|
COMMENT= Simple virus filter wrapper for ClamAV
|
|
WWW= http://drivel.com/clamassassin/
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
BUILD_DEPENDS= sigtool:security/clamav \
|
|
formail:mail/procmail
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
|
|
|
PLIST_FILES= bin/clamassassin
|
|
|
|
GNU_CONFIGURE= yes
|
|
# Woky configure script doesn't actually respect prefix
|
|
# Instead, it looks for 'bindir'... so set that.
|
|
CONFIGURE_ARGS= --bindir=${STAGEDIR}${PREFIX}/bin
|
|
|
|
OPTIONS_DEFINE= CLAMDSCAN SUBREWRITE
|
|
OPTIONS_DEFAULT= CLAMDSCAN
|
|
CLAMDSCAN_DESC= Scanning using clamd
|
|
SUBREWRITE_DESC= Mail subject rewriting
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MCLAMDSCAN}
|
|
CONFIGURE_ARGS+= --enable-clamdscan
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MSUBREWRITE}
|
|
CONFIGURE_ARGS+= --enable-subject-rewrite
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|