blob: 7d84a1a940c303c0399d2376da39948387c11c69 (
plain)
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
|
# $NetBSD: Makefile,v 1.91 2016/09/19 13:04:18 wiz Exp $
#
.include "../../mail/dovecot2/Makefile.common"
PKGREVISION= 3
RCD_SCRIPTS= dovecot
SMF_NAME= dovecot
DOVECOT_USER?= dovecot
DOVECOT_GROUP?= dovecot
DOVENULL_USER?= dovenull
DOVENULL_GROUP?= dovenull
PKG_GROUPS= ${DOVECOT_GROUP} ${DOVENULL_GROUP}
PKG_USERS= ${DOVECOT_USER}:${DOVECOT_GROUP} \
${DOVENULL_USER}:${DOVENULL_GROUP}
PKG_GROUPS_VARS= DOVECOT_GROUP DOVENULL_GROUP
PKG_USERS_VARS= DOVECOT_USER DOVENULL_USER
PKG_GECOS.${DOVECOT_USER}= Dovecot IMAP/POP3 user
PKG_GECOS.${DOVENULL_USER}= Dovecot login user
EGDIR= ${PREFIX}/share/examples/dovecot
CNFS_cmd= ${SED} -ne "s,^share/examples/dovecot/,,p" PLIST
CNFS= ${CNFS_cmd:sh}
CONF_FILES= ${EGDIR}/dovecot.conf ${PKG_SYSCONFDIR}/dovecot/dovecot-example.conf
.for file in ${CNFS}
CONF_FILES+= ${EGDIR}/${file:Q} ${PKG_SYSCONFDIR}/dovecot/${file:Q}
.endfor
INSTALLATION_DIRS+= libexec/dovecot sbin share/doc/dovecot
INSTALLATION_DIRS+= share/examples/dovecot share/examples/dovecot/conf.d
OWN_DIRS= ${PKG_SYSCONFDIR}/dovecot/
OWN_DIRS+= ${PKG_SYSCONFDIR}/dovecot/conf.d
BUILD_DEFS+= VARBASE
post-install:
${INSTALL_DATA} ${WRKSRC}/doc/dovecot-openssl.cnf ${DESTDIR}${EGDIR}
${INSTALL_SCRIPT} ${WRKSRC}/doc/mkcert.sh ${DESTDIR}${EGDIR}
.include "options.mk"
# Don't compress manual pages as they include each other.
.undef MANZ
.include "../../mk/bsd.pkg.mk"
|