b32a9ef010
- Fix pkg-plist PR: ports/117470 Submitted by: Harold Paulson <haroldp@internal.org> (maintainer) Approved by: sat (mentor)
69 lines
2.2 KiB
Makefile
69 lines
2.2 KiB
Makefile
# New ports collection makefile for: postgrey
|
|
# Date created: 24 August 2004
|
|
# Whom: Will Andrews <will@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= postgrey
|
|
PORTVERSION= 1.31
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://postgrey.schweikert.ch/pub/ LOCAL/beech
|
|
|
|
MAINTAINER= haroldp@internal.org
|
|
COMMENT= Greylisting policy server for Postfix
|
|
|
|
RUN_DEPENDS= ${SITE_PERL}/Net/Server.pm:${PORTSDIR}/net/p5-Net-Server \
|
|
${SITE_PERL}/IO/Multiplex.pm:${PORTSDIR}/devel/p5-IO-Multiplex \
|
|
${SITE_PERL}/Parse/Syslog.pm:${PORTSDIR}/textproc/p5-Parse-Syslog \
|
|
${SITE_PERL}/${PERL_ARCH}/BerkeleyDB.pm:${PORTSDIR}/databases/p5-BerkeleyDB \
|
|
${SITE_PERL}/${PERL_ARCH}/Net/DNS.pm:${PORTSDIR}/dns/p5-Net-DNS
|
|
|
|
USE_PERL5_RUN= yes
|
|
USE_RC_SUBR= postgrey
|
|
NO_BUILD= yes
|
|
POD2MAN?= pod2man
|
|
PORTDOCS= README Changes README.exim
|
|
SUB_FILES= pkg-install
|
|
SUB_LIST= USER=${PGY_USERNAME} UID=${PGY_USERID} GROUP=${PGY_GROUPNAME} \
|
|
GID=${PGY_GROUPID} ETCFILES="${ETCFILES}" \
|
|
POSTGREYDIR=${PGY_DIR}
|
|
ETCFILES= whitelist_clients whitelist_recipients
|
|
PGY_USERNAME?= postgrey
|
|
PGY_USERID?= 225
|
|
PGY_GROUPNAME?= ${PGY_USERNAME}
|
|
PGY_GROUPID?= ${PGY_USERID}
|
|
PGY_DIR?= /var/db/postgrey
|
|
MAN1= ${PORTNAME}.1 policy-test.1 postgreyreport.1
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e "s#/etc/#${PREFIX}/etc/#" ${WRKSRC}/postgrey
|
|
@${REINPLACE_CMD} -e '/^my.*DEFAULT_DBDIR/s|/var/spool/postfix/postgrey|${PGY_DIR}|' \
|
|
${WRKSRC}/postgrey
|
|
|
|
pre-install:
|
|
@${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL
|
|
|
|
do-install:
|
|
@${POD2MAN} ${WRKSRC}/${PORTNAME} ${WRKSRC}/${PORTNAME}.1
|
|
@${POD2MAN} ${WRKSRC}/policy-test ${WRKSRC}/policy-test.1
|
|
@${POD2MAN} ${WRKSRC}/contrib/postgreyreport ${WRKSRC}/postgreyreport.1
|
|
@${INSTALL_SCRIPT} ${WRKSRC}/postgrey ${PREFIX}/sbin
|
|
@${INSTALL_SCRIPT} ${WRKSRC}/policy-test ${PREFIX}/sbin
|
|
@${INSTALL_SCRIPT} ${WRKSRC}/contrib/postgreyreport ${PREFIX}/sbin
|
|
@${INSTALL} -d ${PREFIX}/etc/postfix
|
|
.for i in ${ETCFILES}
|
|
${INSTALL_DATA} ${WRKSRC}/postgrey_${i} ${PREFIX}/etc/postfix/dist-postgrey_${i}
|
|
.endfor
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
@${INSTALL} -d ${DOCSDIR}
|
|
@cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}
|
|
.endif
|
|
@cd ${WRKSRC} && ${INSTALL_MAN} ${MAN1} ${MANPREFIX}/man/man1
|
|
|
|
post-install:
|
|
@${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
|
|
|
|
.include <bsd.port.mk>
|