blob: 6fe2b0a2b095bd0797402dca71c2ec601348a120 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
# New ports collection makefile for: dovecot-antispam
# Date created: Sat Jan 5 16:31:30 MSK 2008
# Whom: Denis Shaposhnikov <dsh@wizard.volgograd.ru>
#
# $FreeBSD$
#
PORTNAME= dovecot-antispam
PORTVERSION= 1.3
PORTEPOCH= 1
CATEGORIES= mail
MASTER_SITES= http://johannes.sipsolutions.net/download/dovecot-antispam/ \
http://ports.internal.vlink.ru/distfiles/
MAINTAINER= dsh@wizard.volgograd.ru
COMMENT= Dovecot plugin to train dspam about spam or false positives
BUILD_DEPENDS= ${NONEXISTENT}:${PORTSDIR}/mail/dovecot:configure
RUN_DEPENDS= dovecot>=1.1.2:${PORTSDIR}/mail/dovecot
USE_BZIP2= yes
USE_GMAKE= yes
USE_LDCONFIG= ${PREFIX}/lib/dovecot/imap
MAN7= dovecot-antispam.7
OPTIONS+= DSPAM "direct dspam training" on
OPTIONS+= MAILTRAIN "send mail to special addresses for training" off
OPTIONS+= DEBUG "Turn on debug information (syslog)" off
OPTIONS+= DEBUG_VERBOSE "Turn on verbose debug" off
do-install:
${INSTALL_DATA} ${WRKSRC}/lib90_antispam_plugin.so \
${PREFIX}/lib/dovecot/imap/
${INSTALL_MAN} ${WRKSRC}/antispam.7 \
${MANPREFIX}/man/man7/dovecot-antispam.7
@${CAT} ${PKGMESSAGE}
.include <bsd.port.pre.mk>
do-configure:
DOVECOT=`${MAKE} -C ${PORTSDIR}/mail/dovecot -V WRKSRC` && \
${ECHO} "DOVECOT=$$DOVECOT" > ${WRKSRC}/.config
.if defined(WITH_DSPAM)
${ECHO} "BACKEND=dspam-exec" >> ${WRKSRC}/.config
.endif
.if defined(WITH_MAILTRAIN)
${ECHO} "BACKEND=mailtrain" >> ${WRKSRC}/.config
.endif
.if defined(WITH_DEBUG)
${ECHO} "DEBUG=syslog" >> ${WRKSRC}/.config
.endif
.if defined(WITH_DEBUG_VERBOSE)
${ECHO} "DEBUG_VERBOSE=1" >> ${WRKSRC}/.config
.endif
${ECHO} "PLUGINNAME=antispam" >> ${WRKSRC}/.config
.include <bsd.port.post.mk>
|