67 lines
1.9 KiB
Makefile
67 lines
1.9 KiB
Makefile
|
# New ports collection makefile for: pop-before-smtp
|
||
|
# Date created: March 7, 2003
|
||
|
# Whom: Eric W. Bates
|
||
|
#
|
||
|
# $FreeBSD$
|
||
|
#
|
||
|
|
||
|
PORTNAME= pop-before-smtp
|
||
|
PORTVERSION= 1.32
|
||
|
CATEGORIES= mail perl5
|
||
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||
|
MASTER_SITE_SUBDIR= popbsmtp
|
||
|
|
||
|
MAINTAINER= ericx@vineyard.net
|
||
|
COMMENT= A log parser to identify valid POP/IMAP logins for later smtp
|
||
|
|
||
|
RUN_DEPENDS= ${SITE_PERL}/File/Tail.pm:${PORTSDIR}/devel/p5-File-Tail \
|
||
|
${SITE_PERL}/${PERL_ARCH}/Time/HiRes.pm:${PORTSDIR}/devel/p5-Time-HiRes \
|
||
|
${SITE_PERL}/Net/Netmask.pm:${PORTSDIR}/net/p5-Net-Netmask \
|
||
|
${SITE_PERL}/Date/Parse.pm:${PORTSDIR}/devel/p5-TimeDate \
|
||
|
${SITE_PERL}/Date/Format.pm:${PORTSDIR}/devel/p5-TimeDate
|
||
|
|
||
|
NO_BUILD= yes
|
||
|
USE_PERL5= yes
|
||
|
USE_REINPLACE= yes
|
||
|
|
||
|
PKGMESSAGE= ${WRKDIR}/.pkg-message
|
||
|
|
||
|
DOCSDIR= ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME}
|
||
|
|
||
|
# Override this as you see fit
|
||
|
POPBSMTP_RC_SCRIPT?= ${PREFIX}/etc/rc.d/pop-before-smtp.sh.sample
|
||
|
|
||
|
post-patch:
|
||
|
@${REINPLACE_CMD} 's|^#!/usr/bin/perl|#!${PERL}|; \
|
||
|
s|/etc/postfix/pop-before-smtp|${PREFIX}/etc/postfix/pop-before-smtp|g;' \
|
||
|
${WRKSRC}/pop-before-smtp
|
||
|
|
||
|
do-install:
|
||
|
${INSTALL_SCRIPT} ${WRKSRC}/pop-before-smtp ${PREFIX}/sbin
|
||
|
${INSTALL_SCRIPT} \
|
||
|
${WRKSRC}/pop-before-smtp-conf.pl \
|
||
|
${PREFIX}/etc/pop-before-smtp-conf.pl.sample
|
||
|
@${SED} -e "s|%PREFIX%|${PREFIX}|g" \
|
||
|
< ${FILESDIR}/pop-before-smtp.sh > ${POPBSMTP_RC_SCRIPT}
|
||
|
@${CHMOD} 755 ${POPBSMTP_RC_SCRIPT}
|
||
|
.if !defined(NOPORTDOCS)
|
||
|
@${MKDIR} ${DOCSDIR}
|
||
|
.for file in COPYING ChangeLog README TODO
|
||
|
${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
|
||
|
.endfor
|
||
|
.for file in README.QUICKSTART README.rootless-install
|
||
|
${INSTALL_DATA} ${WRKSRC}/contrib/${file} ${DOCSDIR}
|
||
|
.endfor
|
||
|
@${MKDIR} ${DOCSDIR}/popa3d
|
||
|
.for file in README popa3d-0.4.patch
|
||
|
${INSTALL_DATA} ${WRKSRC}/contrib/popa3d/${file} ${DOCSDIR}/popa3d
|
||
|
.endfor
|
||
|
.endif
|
||
|
|
||
|
post-install:
|
||
|
@${SED} -e "s|%PREFIX%|${PREFIX}|" \
|
||
|
${.CURDIR}/pkg-message > ${PKGMESSAGE}
|
||
|
@${CAT} ${PKGMESSAGE}
|
||
|
|
||
|
.include <bsd.port.mk>
|