aboutsummaryrefslogtreecommitdiff
path: root/mail/rmilter/Makefile
blob: 997ba916ef0d194b4b5b68a5f8e9e590cdef604c (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
# $FreeBSD$

PORTNAME=	rmilter
PORTVERSION=	1.10.0
CATEGORIES=	mail

MAINTAINER=	vsevolod@FreeBSD.org
COMMENT=	Milter that performs rspamd, clamav, and other checks

LICENSE=	BSD2CLAUSE

LIB_DEPENDS=	libpcre.so:devel/pcre

BROKEN_powerpc64=	fails to build: btrie.c: '__SIZEOF_POINTER__' undeclared here
NOT_FOR_ARCHS=		mips sparc64
NOT_FOR_ARCHS_REASON=	fails to compile: error: Unsupported word size

USE_GITHUB=	yes
GH_ACCOUNT=	vstakhov

USES=		cmake bison pkgconfig ssl
USE_GNOME=	glib20

USERS=		_rmilter
GROUPS=		_rmilter

WITH_SENDMAIL_BASE=	yes

OPTIONS_DEFINE=		DKIM
OPTIONS_DEFAULT=	DKIM

DKIM_DESC=		DKIM signing support
DKIM_LIB_DEPENDS=	libopendkim.so:mail/opendkim

.include <bsd.port.pre.mk>

# Workaround to prevent bsd.milter.mk from breaking the build with the recent clang
WITHOUT_MILTER_LDFLAGS=	yes
.include "${PORTSDIR}/mail/sendmail/bsd.milter.mk"

.if ! ${PORT_OPTIONS:MDKIM}
CMAKE_ARGS+=	-DENABLE_DKIM=OFF
.endif

post-patch:
	${SED} ${SUB_LIST:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} \
		${WRKSRC}/freebsd/rmilter > ${WRKDIR}/rmilter

do-install:
	${INSTALL_SCRIPT} ${WRKDIR}/rmilter ${STAGEDIR}${PREFIX}/etc/rc.d/
	${INSTALL_PROGRAM} ${BUILD_WRKSRC}/rmilter ${STAGEDIR}${PREFIX}/sbin
	${INSTALL_DATA} ${WRKSRC}/rmilter.conf.sample ${STAGEDIR}${PREFIX}/etc/

	${INSTALL} -d ${STAGEDIR}/var/run/rmilter

.include <bsd.port.post.mk>