summaryrefslogtreecommitdiff
path: root/mail/tmda
diff options
context:
space:
mode:
authorschmonz <schmonz@pkgsrc.org>2007-07-31 04:44:01 +0000
committerschmonz <schmonz@pkgsrc.org>2007-07-31 04:44:01 +0000
commit003bfdcad74b062ceb1a90c6733a167205a9f4b1 (patch)
treecb430195483bf8aa136ff812769d35e1da936aac /mail/tmda
parent91fb6d6e0be35f1785b947ffe76ebf4fa114f08c (diff)
downloadpkgsrc-003bfdcad74b062ceb1a90c6733a167205a9f4b1.tar.gz
Update to 1.1.12. From the changelog:
* tmda-ofmipd now has native STARTTLS and SSL support courtesy of Stephen Warren. The new options are '--tls', '--ssl', '--ssl-key', and '--ssl-crt'. Note that the tlslite Python module needs to be installed to use this feature. For more information, see the "Builtin SSL/TLS" section of http://wiki.tmda.net/TmdaOfmipdHowto * Fixed a minor bug that prevented the use of both SMTPSSL and SMTPAUTH together.
Diffstat (limited to 'mail/tmda')
-rw-r--r--mail/tmda/Makefile7
-rw-r--r--mail/tmda/PLIST4
-rw-r--r--mail/tmda/distinfo8
-rw-r--r--mail/tmda/options.mk10
4 files changed, 21 insertions, 8 deletions
diff --git a/mail/tmda/Makefile b/mail/tmda/Makefile
index 4e2431247dc..a8e00a34837 100644
--- a/mail/tmda/Makefile
+++ b/mail/tmda/Makefile
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.39 2007/07/30 04:25:50 schmonz Exp $
+# $NetBSD: Makefile,v 1.40 2007/07/31 04:44:01 schmonz Exp $
#
-DISTNAME= tmda-1.1.11
-PKGREVISION= 2
+DISTNAME= tmda-1.1.12
CATEGORIES= mail python
MASTER_SITES= http://tmda.sourceforge.net/ftp/releases/
MASTER_SITES+= ftp://tmda.net/pub/tmda/releases/
@@ -49,6 +48,8 @@ INSTALLATION_DIRS= bin ${SHAREDIR} ${DOCDIR} ${HTMLDIR} ${EGDIR}
INSTALLATION_DIRS+= ${PYSITELIB}/TMDA/pythonlib/email/mime
INSTALLATION_DIRS+= ${PYSITELIB}/TMDA/Queue
+.include "options.mk"
+
post-extract:
rm ${WRKSRC}/doc/html/error.log
diff --git a/mail/tmda/PLIST b/mail/tmda/PLIST
index 823e77e137d..7f1c6d6a775 100644
--- a/mail/tmda/PLIST
+++ b/mail/tmda/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.14 2007/07/30 04:25:50 schmonz Exp $
+@comment $NetBSD: PLIST,v 1.15 2007/07/31 04:44:01 schmonz Exp $
bin/tmda-address
bin/tmda-check-address
bin/tmda-filter
@@ -232,6 +232,7 @@ ${HTMLDIR}/SlideShowHandOutTemplate.html
${HTMLDIR}/SlideShowTemplate.html
${HTMLDIR}/SlideTemplate.html
${HTMLDIR}/SpamAssassin.html
+${HTMLDIR}/SquirrelMail.html
${HTMLDIR}/SyntaxReference.html
${HTMLDIR}/SystemInfo.html
${HTMLDIR}/SystemPagesGroup.html
@@ -253,6 +254,7 @@ ${HTMLDIR}/TmdaFingerprint.html
${HTMLDIR}/TmdaHashCashHowto.html
${HTMLDIR}/TmdaHistory.html
${HTMLDIR}/TmdaHowtos.html
+${HTMLDIR}/TmdaI18n.html
${HTMLDIR}/TmdaInUse.html
${HTMLDIR}/TmdaInstall.html
${HTMLDIR}/TmdaInstallation.html
diff --git a/mail/tmda/distinfo b/mail/tmda/distinfo
index a21365f61b7..a52f5ccb836 100644
--- a/mail/tmda/distinfo
+++ b/mail/tmda/distinfo
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.20 2007/02/26 03:44:21 schmonz Exp $
+$NetBSD: distinfo,v 1.21 2007/07/31 04:44:01 schmonz Exp $
-SHA1 (tmda-1.1.11.tgz) = 790ab6f4258451cb5f18a39883015b896a48a9c1
-RMD160 (tmda-1.1.11.tgz) = cc8160a3b60e927611e2363d530d9e539f92dbc0
-Size (tmda-1.1.11.tgz) = 1422504 bytes
+SHA1 (tmda-1.1.12.tgz) = 0b175d01cd03cb4046d41c62ede2268d4eb12b03
+RMD160 (tmda-1.1.12.tgz) = 8a674f312fe9612fe204d081e7fd3d38d802cdba
+Size (tmda-1.1.12.tgz) = 1427638 bytes
SHA1 (patch-ab) = 4cac0a76d160eebedc06e1789728be5872113fee
diff --git a/mail/tmda/options.mk b/mail/tmda/options.mk
new file mode 100644
index 00000000000..47e7c08f048
--- /dev/null
+++ b/mail/tmda/options.mk
@@ -0,0 +1,10 @@
+# $NetBSD: options.mk,v 1.1 2007/07/31 04:44:01 schmonz Exp $
+
+PKG_OPTIONS_VAR= PKG_OPTIONS.tmda
+PKG_SUPPORTED_OPTIONS+= ssl tls
+
+.include "../../mk/bsd.options.mk"
+
+.if !empty(PKG_OPTIONS:Mssl) || !empty(PKG_OPTIONS:Mtls)
+DEPENDS+= ${PYPKGPREFIX}-tlslite-[0-9]*:../../security/py-tlslite
+.endif