pkgsrc/mail/qgreylist/Makefile
schmonz f77bbaac58 Initial import of qgreylist-0.2, simple greylisting for qmail.
qgreylist is a 'lite' version of greylisting. It greylists only by
source IP address, mainly because it's written as a wrapper for
qmail-smtpd so has no other information available. For home and
small office use this works nearly as well.
2004-08-29 15:32:12 +00:00

55 lines
1.5 KiB
Makefile

# $NetBSD: Makefile,v 1.1.1.1 2004/08/29 15:32:12 schmonz Exp $
#
DISTNAME= qgreylist-0.2
CATEGORIES= mail
MASTER_SITES= ${HOMEPAGE}
MAINTAINER= schmonz@NetBSD.org
HOMEPAGE= http://www.jonatkins.com/qgreylist/
COMMENT= Simple greylisting for qmail
DEPENDS_QMAIL= qmail>=1.03nb8:../../mail/qmail
DEPENDS+= ${DEPENDS_QMAIL}
WRKSRC= ${WRKDIR}/qgreylist
USE_BUILDLINK3= yes
USE_PERL5= run
USE_PKGINSTALL= yes
OWN_DIRS_PERMS= ${PKG_SYSCONFDIR}/greylist qmaild wheel 0755
NO_BUILD= # defined
QGREYLIST_SCRIPTS= greylist greylist-info
REPLACE_PERL= ${QGREYLIST_SCRIPTS}
.include "../../mk/bsd.prefs.mk"
# Detect the PKG_SYSCONFDIR of the installed qmail, so we can create
# config files there.
.if !empty(PHASES_AFTER_EXTRACT:M${PKG_PHASE})
INSTALLED_QMAIL!= ${PKG_BEST_EXISTS} ${DEPENDS_QMAIL:C/:.*$//:Q:S/\ / /g}
. if empty(INSTALLED_QMAIL:M*_not_found_)
. if !defined(PKG_SYSCONFDIR.qgreylist)
PKG_SYSCONFDIR.qgreylist!= \
${PKG_INFO} -qB ${INSTALLED_QMAIL} | \
${SED} -n '/^PKG_SYSCONFDIR=/s|^PKG_SYSCONFDIR=[ ]*||p'
. endif
. endif
.endif
SUBST_CLASSES+= qmaildirs
SUBST_STAGE.qmaildirs= do-configure
SUBST_FILES.qmaildirs= ${QGREYLIST_SCRIPTS}
SUBST_SED.qmaildirs= -e 's|/var/qmail/greylist|${PKG_SYSCONFDIR}/greylist|g'
SUBST_SED.qmaildirs+= -e 's|/var/qmail|${QMAILDIR}|g'
INSTALLATION_DIRS= bin share/doc/qgreylist
do-install:
for i in ${QGREYLIST_SCRIPTS}; do \
${INSTALL_SCRIPT} ${WRKSRC}/$${i} ${PREFIX}/bin/q$${i}; \
done
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/qgreylist
.include "../../mk/bsd.pkg.mk"