50 lines
1.4 KiB
Makefile
50 lines
1.4 KiB
Makefile
# $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"
|