813116b0b7
the patch.
57 lines
1.6 KiB
Makefile
57 lines
1.6 KiB
Makefile
# $NetBSD: Makefile,v 1.18 2017/04/27 20:27:36 schmonz Exp $
|
|
#
|
|
|
|
DISTNAME= qgreylist-0.3
|
|
PKGREVISION= 5
|
|
CATEGORIES= mail
|
|
MASTER_SITES= ${HOMEPAGE}
|
|
|
|
MAINTAINER= schmonz@NetBSD.org
|
|
HOMEPAGE= http://www.jonatkins.com/page/software/qgreylist
|
|
COMMENT= Simple greylisting for qmail
|
|
LICENSE= mit
|
|
|
|
DEPENDS_QMAIL= qmail>=1.03nb8:../../mail/qmail
|
|
DEPENDS+= ${DEPENDS_QMAIL}
|
|
|
|
WRKSRC= ${WRKDIR}/qgreylist
|
|
|
|
USE_TOOLS+= perl:run
|
|
OWN_DIRS_PERMS= ${PKG_SYSCONFDIR}/greylist ${QMAIL_DAEMON_USER} wheel 0755
|
|
OWN_DIRS_PERMS+= ${PKG_SYSCONFDIR}/whitelist ${QMAIL_DAEMON_USER} wheel 0755
|
|
NO_BUILD= yes
|
|
|
|
BUILD_DEFS+= QMAIL_DAEMON_USER
|
|
|
|
REPLACE_PERL= greylist
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
# Detect the PKG_SYSCONFDIR of the installed qmail, so we can create
|
|
# config files there and refer to them from rc.d scripts.
|
|
#
|
|
.if !defined(PKG_SYSCONFDIR.qgreylist)
|
|
PKG_SYSCONFDIR.qgreylist!= \
|
|
${PKG_INFO} -Q PKG_SYSCONFDIR \
|
|
${DEPENDS_QMAIL:C/:.*$//:Q} 2>/dev/null || \
|
|
${ECHO} "PKG_SYSCONFDIR.qgreylist_not_set"
|
|
. if empty(PKG_SYSCONFDIR.qgreylist:M*not_set)
|
|
MAKEVARS+= PKG_SYSCONFDIR.qgreylist
|
|
. endif
|
|
.endif
|
|
|
|
SUBST_CLASSES+= qmaildirs
|
|
SUBST_STAGE.qmaildirs= do-configure
|
|
SUBST_FILES.qmaildirs= greylist
|
|
SUBST_SED.qmaildirs= -e 's|/var/qmail/greylist|${PKG_SYSCONFDIR}/greylist|g'
|
|
SUBST_SED.qmaildirs+= -e 's|/var/qmail/whitelist|${PKG_SYSCONFDIR}/whitelist|g'
|
|
SUBST_SED.qmaildirs+= -e 's|/var/qmail|${QMAILDIR}|g'
|
|
|
|
INSTALLATION_DIRS= bin share/doc/qgreylist
|
|
BUILD_DEFS+= QMAILDIR
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/greylist ${DESTDIR}${PREFIX}/bin/qgreylist
|
|
${INSTALL_DATA} ${WRKSRC}/README ${DESTDIR}${PREFIX}/share/doc/qgreylist
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|