pkgsrc-wip/pop-before-smtp/Makefile

43 lines
1.3 KiB
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.6 2006/03/14 01:28:09 jlamwww Exp $
#
Significant changes in version 1.41 Version 1.41 was released on March 1, 2006. It was released to fix a problem with the new timestamp parsing that failed to parse the date on March 1st. Significant changes in version 1.40 Version 1.40 was released on February 20, 2006. Here's a list of the most significant changes: * Enhanced the timestamp parsing of the main script. Previously there were some hard-wired timestamp regular expressions in the main script that can now be customized by setting $logtime_pat in the config file. * Improved several patterns (e.g. dovecot, UW). * Updated the contrib patch that enhances popa3d's logging: it's now for the 1.0 release. * A few improvements to the documentation, including some improved sendmail info in the quickstart. Significant changes in version 1.39 Version 1.39 was released on January 7, 2006. Here's a list of the most significant changes: * Various log-file-matching $pat improvements in the config file. * Added an $out_pat for UW POP/IMAP, which is useful if you use thunderbird to access your mail via IMAP (or any other mail client that keeps IMAP connections open for a long time). * Some minor improvements to the logic that handles $out_pat. * An improved popauth.m4 file that works with a sendmail configured to use TLS with SMTP. Significant changes in version 1.38 Version 1.38 was released on July 13, 2005. Here's a list of the most significant changes: * Fixed a DB-locking bug if no IPs were found to be active in the startup scan. * Allow the DB-add and DB-delete actions to be overridden so that the pop-before-smtp script can be easily used for other log-file scanning purposes. For instance, the new ip-blocking-conf.pl file demonstrates how to use iptables (or ipchains) to block IPs that are deemed to be undesireable.
2006-03-09 15:50:27 +01:00
DISTNAME= pop-before-smtp-1.41
CATEGORIES= mail perl5
2006-02-12 02:26:01 +01:00
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=popbsmtp/}
MAINTAINER= obata@lins.jp
HOMEPAGE= http://popbsmtp.sourceforge.net/
COMMENT= Simple daemon for pop-before-smtp
2006-02-12 02:26:01 +01:00
USE_LANGUAGES= # empty
USE_TOOLS+= perl:run pod2man
REPLACE_PERL+= pop-before-smtp
DEPENDS+= p5-Net-Netmask-[0-9]*:../../devel/p5-Net-Netmask
DEPENDS+= p5-TimeDate-[0-9]*:../../time/p5-TimeDate
EGDIR= ${PREFIX}/share/examples/pop-before-smtp
2006-02-12 02:26:01 +01:00
CONF_FILES= ${EGDIR:Q}/pop-before-smtp-conf.pl ${PKG_SYSCONFDIR:Q}/pop-before-smtp-conf.pl
RCD_SCRIPTS= pop-before-smtp
DOCS_DIR= ${PREFIX}/share/doc/pop-before-smtp
INSTALLATION_DIRS=${EGDIR:S|^${PREFIX}/||} ${DOCS_DIR:S|^${PREFIX}/||}
do-build:
2006-02-12 02:26:01 +01:00
${POD2MAN} ${WRKSRC:Q}/pop-before-smtp > ${WRKSRC:Q}/pop-before-smtp.8
do-install:
2006-02-12 02:26:01 +01:00
${INSTALL_SCRIPT} ${WRKSRC:Q}/pop-before-smtp ${PREFIX:Q}/sbin
${INSTALL_DATA} ${WRKSRC:Q}/pop-before-smtp-conf.pl \
${EGDIR:Q}/pop-before-smtp-conf.pl
${INSTALL_MAN} ${WRKSRC:Q}/pop-before-smtp.8 \
${PREFIX:Q}/man/man8/pop-before-smtp.8
.for f in COPYING ChangeLog README TODO
2006-02-26 13:41:48 +01:00
${INSTALL_DATA} ${WRKSRC:Q}/${f:Q} ${DOCS_DIR:Q}/${f:Q}
.endfor
.for f in README.QUICKSTART README.rootless-install popauth.m4
2006-02-26 13:41:48 +01:00
${INSTALL_DATA} ${WRKSRC:Q}/contrib/${f:Q} ${DOCS_DIR}
.endfor
.include "../../mk/bsd.pkg.mk"