diff options
author | wiz <wiz@pkgsrc.org> | 2002-03-14 17:24:18 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2002-03-14 17:24:18 +0000 |
commit | 87b88e46c4f5c0f040a639a13f74b7202ca6118a (patch) | |
tree | 0a64961b4ae241a13e02519f1385bcdca8eca0b0 /mail/tmda/Makefile | |
parent | 6340b505102bfab788fb4481e4ba6542c5ba53bd (diff) | |
download | pkgsrc-87b88e46c4f5c0f040a639a13f74b7202ca6118a.tar.gz |
Update to 0.48, provided by Amitai Schlair in pkg/15783.
Changes:
* TMDA has acquired the ability to handle local mail delivery itself.
It can now do safe and reliable delivery to qmail-style Maildirs and
mboxrd-format mboxes, as well as program (pipe) delivery, and
forward to a different e-mail address.
* Added an -autodbm argument to the 'from-file' and 'to-file' filter
sources to match the existing -autocdb capability. -autodbm
automatically maintains a DBM file for the specified TMDA list file.
No more rebuilding your DBM files by hand, cron, or scripting.
* Added the ability to use 'from*' rules in outgoing filters.
See the TMDA Filter Specification for details.
* Lots of internal reorganization.
Diffstat (limited to 'mail/tmda/Makefile')
-rw-r--r-- | mail/tmda/Makefile | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/mail/tmda/Makefile b/mail/tmda/Makefile index be26c22c756..cf987fa837e 100644 --- a/mail/tmda/Makefile +++ b/mail/tmda/Makefile @@ -1,9 +1,10 @@ -# $NetBSD: Makefile,v 1.1.1.1 2002/02/14 13:00:25 drochner Exp $ +# $NetBSD: Makefile,v 1.2 2002/03/14 17:24:18 wiz Exp $ # -DISTNAME= tmda-0.46 +DISTNAME= tmda-0.48 CATEGORIES= mail python -MASTER_SITES= http://software.libertine.org/tmda/releases/ +MASTER_SITES= http://software.libertine.org/tmda/releases/ \ + http://software.libertine.org/tmda/releases/old/ EXTRACT_SUFX= .tgz MAINTAINER= schmonz+netbsd@schmonz.com @@ -24,13 +25,21 @@ PLIST_SUBST+= HTMLDIR="${HTMLDIR}" TMDA_PROGRAMS= bin/tmda-address TMDA_PROGRAMS+= bin/tmda-check-address -TMDA_PROGRAMS+= bin/tmda-clean TMDA_PROGRAMS+= bin/tmda-filter TMDA_PROGRAMS+= bin/tmda-inject TMDA_PROGRAMS+= bin/tmda-keygen +TMDA_PROGRAMS+= bin/tmda-pending TMDA_PROGRAMS+= bin/tmda-rfilter TMDA_PROGRAMS+= bin/tmda-sendmail +TMDA_DOCS= COPYING +TMDA_DOCS+= CRYPTO +TMDA_DOCS+= ChangeLog +TMDA_DOCS+= INSTALL +TMDA_DOCS+= README +TMDA_DOCS+= THANKS +TMDA_DOCS+= UPGRADE + do-build: cd ${WRKSRC}; ${PYTHONBIN} ./compileall @@ -46,7 +55,7 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/templates/*.txt ${PREFIX}/${SHAREDIR} ${INSTALL_DATA_DIR} ${PREFIX}/${DOCDIR} - for file in ChangeLog COPYRIGHT CRYPTO INSTALL README THANKS UPGRADE; do \ + for file in ${TMDA_DOCS}; do \ ${INSTALL_DATA} ${WRKSRC}/$${file} ${PREFIX}/${DOCDIR}; \ done |