View | Details | Raw Unified | Return to bug 254164
Collapse All | Expand All

(-)mail/dovecot/Makefile (+24 lines)
Lines 23-28 Link Here
23
USES=		cpe iconv libtool pkgconfig ssl
23
USES=		cpe iconv libtool pkgconfig ssl
24
USE_RC_SUBR=	dovecot
24
USE_RC_SUBR=	dovecot
25
25
26
FLAVORS=	default cdb ldap mysql pgsql sqlite3
27
FLAVOR?=	${FLAVORS:[1]}
28
cdb_PKGNAMESUFFIX=	-cdb
29
ldap_PKGNAMESUFFIX=	-ldap
30
mysql_PKGNAMESUFFIX=	-mysql
31
pgsql_PKGNAMESUFFIX=	-pgsql
32
sqlite3_PKGNAMESUFFIX=	-sqlite3
33
26
GNU_CONFIGURE=	yes
34
GNU_CONFIGURE=	yes
27
CONFIGURE_ARGS=	--localstatedir=/var \
35
CONFIGURE_ARGS=	--localstatedir=/var \
28
		--with-statedir=/var/db/dovecot \
36
		--with-statedir=/var/db/dovecot \
Lines 46-51 Link Here
46
54
47
OPTIONS_SINGLE=		GSSAPI
55
OPTIONS_SINGLE=		GSSAPI
48
OPTIONS_SINGLE_GSSAPI=	GSSAPI_NONE GSSAPI_BASE GSSAPI_HEIMDAL GSSAPI_MIT
56
OPTIONS_SINGLE_GSSAPI=	GSSAPI_NONE GSSAPI_BASE GSSAPI_HEIMDAL GSSAPI_MIT
57
58
.if ${FLAVOR} == cdb
59
OPTIONS_DEFAULT+=	CDB
60
.endif
61
.if ${FLAVOR} == ldap
62
OPTIONS_DEFAULT+=	LDAP
63
.endif
64
.if ${FLAVOR} == mysql
65
OPTIONS_DEFAULT+=	MYSQL
66
.endif
67
.if ${FLAVOR} == pgsql
68
OPTIONS_DEFAULT+=	PGSQL
69
.endif
70
.if ${FLAVOR} == sqlite3
71
OPTIONS_DEFAULT+=	SQLITE3
72
.endif
49
73
50
LZ4_DESC=	LZ4 compression support
74
LZ4_DESC=	LZ4 compression support
51
75

Return to bug 254164