ede731e95c
- Added SMTP lightweight balancing proxy with XCLIENT support. - New pre-filters are implemented to support initial checking for messages. - Added ratelimit plugin that uses redis protocol to store data. - Added ipv6 support to spf and some other modules. - DKIM plugin an parsing code was added. - Many bugfixes.
78 lines
2.1 KiB
Makefile
78 lines
2.1 KiB
Makefile
# New ports collection makefile for: rspamd
|
|
# Date created: 2010-09-27
|
|
# Whom: Vsevolod Stakhov <vsevolod@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= rspamd
|
|
PORTVERSION= 0.5.0
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://highsecure.ru/
|
|
|
|
MAINTAINER= vsevolod@FreeBSD.org
|
|
COMMENT= Fast spam filtering system
|
|
|
|
LICENSE= BSD
|
|
|
|
LIB_DEPENDS= pcre.1:${PORTSDIR}/devel/pcre \
|
|
gmime-2.0:${PORTSDIR}/mail/gmime2 \
|
|
event-1.4:${PORTSDIR}/devel/libevent
|
|
|
|
OPTIONS= RSPAMD_GPERF "Enable google perf-tools profiling" off \
|
|
RSPAMD_JUDY "Enable Judy arrays usage for performance" off \
|
|
RSPAMD_REDIRECTOR "Install HTTP redirector" off
|
|
|
|
USE_RC_SUBR= rspamd
|
|
|
|
PLIST_SUB+= ETCDIR=etc/rspamd \
|
|
RSPAMDVERSION=${PORTVERSION}
|
|
CMAKE_ARGS+= -DETC_PREFIX=${PREFIX}/etc -DPREFIX=${PREFIX} \
|
|
-DBUILD_PORT=yes
|
|
|
|
USE_CMAKE= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
USE_GNOME= glib20
|
|
USE_LUA= 5.1-
|
|
USE_SQLITE= yes
|
|
USE_ICONV= yes
|
|
USE_GETTEXT= yes
|
|
USE_OPENSSL= yes
|
|
|
|
MAN8= rspamd.8
|
|
MAN1= rspamc.1
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_RSPAMD_GPERF)
|
|
CMAKE_ARGS+= -DENABLE_GPERF_TOOLS=ON
|
|
LIB_DEPENDS+= profiler.1:${PORTSDIR}/devel/google-perftools
|
|
.endif
|
|
|
|
.if defined(WITH_RSPAMD_JUDY)
|
|
LIB_DEPENDS+= Judy:${PORTSDIR}/devel/judy
|
|
.endif
|
|
|
|
.if defined(WITH_RSPAMD_REDIRECTOR)
|
|
USE_PERL5= 5.8+
|
|
CMAKE_ARGS+= -DENABLE_REDIRECTOR=ON
|
|
PLIST_SUB+= REDIRECTOR=""
|
|
USE_RC_SUBR+= rspamd_redirector
|
|
RUN_DEPENDS+= \
|
|
p5-IO-Socket-SSL>=0:${PORTSDIR}/security/p5-IO-Socket-SSL \
|
|
p5-IO-String>=0:${PORTSDIR}/devel/p5-IO-String \
|
|
p5-XML-Parser>=0:${PORTSDIR}/textproc/p5-XML-Parser \
|
|
p5-Term-ReadKey>=0:${PORTSDIR}/devel/p5-Term-ReadKey \
|
|
p5-POE-Component-Client-DNS>=0:${PORTSDIR}/dns/p5-POE-Component-Client-DNS \
|
|
p5-POE-Component-Client-HTTP>=0:${PORTSDIR}/www/p5-POE-Component-Client-HTTP \
|
|
p5-POE-Component-Server-HTTP>=0:${PORTSDIR}/www/p5-POE-Component-Server-HTTP \
|
|
p5-Cache-Memcached-Fast>=0:${PORTSDIR}/databases/p5-Cache-Memcached-Fast \
|
|
p5-Proc-PidUtil>=0:${PORTSDIR}/sysutils/p5-Proc-PidUtil \
|
|
p5-Proc-Daemon>=0:${PORTSDIR}/devel/p5-Proc-Daemon \
|
|
p5-SWF-File>=0:${PORTSDIR}/graphics/p5-SWF-File
|
|
.else
|
|
PLIST_SUB+= REDIRECTOR="@comment "
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|