diff options
author | reed <reed@pkgsrc.org> | 2008-08-12 16:39:56 +0000 |
---|---|---|
committer | reed <reed@pkgsrc.org> | 2008-08-12 16:39:56 +0000 |
commit | 1ddad13c4a14728f4818e68e91537ec6befbe89d (patch) | |
tree | a1f50ecc8847bafff1b36b004a697ff6c38e5029 | |
parent | 9a8d16602e7a9da0d526ef28c794f9e1e7177d7a (diff) | |
download | pkgsrc-1ddad13c4a14728f4818e68e91537ec6befbe89d.tar.gz |
Update to 1.4.16. This is from Leonardo Taccari via PR 39337.
Okayed by maintainer (private email to me).
Adds DESTDIR support.
Changes from ChangeLog:
Version 1.4.16:
- Changed all scripts to '#!/usr/bin/env bash' instead of '#!/bin/sh' or
'#!/bin/bash', because they use bash features that are not available in POSIX
/bin/sh and because bash might not live in /bin, e.g. on BSD systems. This is
a quick fix for Debian bug #489635.
- Accept both 250 and 251 in return of the RCPT TO command, as required by RFC
2821 sections 4.3.2 and 3.4. Reported and fixed by Matthias Bernhardt.
Thanks!
- Fix scripts/msmtpqueue/msmtp-runqueue.sh. An error made while applying a
patch accidently broke it. Reported by Thomas Weber. Thanks!
Version 1.4.15:
- Added the new tls_crl_file configuration command and the corresponding
--tls-crl-file option.
- Added the new tls_min_dh_prime_bits configuration command and the
corresponding --tls-min-dh-prime-bits option. This closes Debian bug
#440344.
- Added the new tls_priorities configuration command and the corresponding
--tls-priorities option.
- Gnulib upate to 2008-06-02. Use getpass-gnu instead of getpass module.
- Add msmtpq scripts by Chris Gianniotis to the scripts directory. Suggest
them as a replacement in the README of the msmtpqueue scripts.
- Do not let getpass() read from stdin, because we read the mail from there.
Reported by Karol Lewandowski. Thanks!
- Updated the set_sendmail script by Gautam Iyer. Thanks!
- Return EX_TEMPFAIL instead of EX_DATAERR in case of 4xx replies to the MAIL
FROM, RCPT TO and DATA commands. Reported by Kent Vinther Friis. Thanks!
Version 1.4.14:
- Add support for the SMTPSERVER and EMAIL environment variables. These
variables are used when no other configuration is available. Suggested by
Jari Aalto.
- Add the --read-envelope-from option, which extracts the envelope from address
from the From: header.
- Fix a typo in the man page.
- Add support for Resent-* headers to the -t/--read-recipients option. Fixes
Debian bug #464474, reported by Tim Abbott.
- Buffer read operations also when TLS/SSL is active. Fixes performance problems
with GnuTLS, reported by Dimitrios Apostolou for mpop.
- Fixed a potential problem with VPATH builds.
- Updated gnulib to 2008-02-26. Imported havelib module.
- Always log smtpstatus and smtpmsg, even in case of success. Suggested by
Bruno De Fraine.
- Use locale-independent c_toupper() instead of toupper() to avoid problems
with the tr_TR.UTF-8 locale. Reported by S.Çağlar Onur. Thanks!
- Updated gnulib to 2008-02-15. Imported c-ctype module.
- Support for the Max OS X keychain was added by Jay Soffian. Thanks a lot!
- Fix network input/output timeouts for W32. Bug reported and fixed by
Shoorick for mpop. Thanks!
-rw-r--r-- | mail/msmtp/Makefile | 13 | ||||
-rw-r--r-- | mail/msmtp/distinfo | 8 |
2 files changed, 12 insertions, 9 deletions
diff --git a/mail/msmtp/Makefile b/mail/msmtp/Makefile index 01e0a47199c..48fa0930477 100644 --- a/mail/msmtp/Makefile +++ b/mail/msmtp/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.19 2008/01/18 05:08:27 tnn Exp $ +# $NetBSD: Makefile,v 1.20 2008/08/12 16:39:56 reed Exp $ -DISTNAME= msmtp-1.4.13 -PKGREVISION= 1 +DISTNAME= msmtp-1.4.16 CATEGORIES= mail MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=msmtp/} EXTRACT_SUFX= .tar.bz2 @@ -10,6 +9,10 @@ MAINTAINER= bcv@hub3.net HOMEPAGE= http://msmtp.sourceforge.net/ COMMENT= SMTP plugin for MUAs +#LICENSE= gnu-gpl-v3 + +PKG_DESTDIR_SUPPORT= user-destdir + GNU_CONFIGURE= yes USE_PKGLOCALEDIR= yes @@ -29,8 +32,8 @@ CPPFLAGS+= -D__WINSOCK .include "options.mk" post-install: - ${INSTALL_DATA_DIR} ${EGDIR} - ${INSTALL_DATA} ${WRKSRC}/doc/msmtprc-user.example ${EGDIR} + ${INSTALL_DATA_DIR} ${DESTDIR}${EGDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/msmtprc-user.example ${DESTDIR}${EGDIR} .include "../../devel/gettext-lib/buildlink3.mk" .include "../../mk/bsd.pkg.mk" diff --git a/mail/msmtp/distinfo b/mail/msmtp/distinfo index 3c13ae08343..574ce0055f9 100644 --- a/mail/msmtp/distinfo +++ b/mail/msmtp/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.14 2007/09/08 08:05:23 obache Exp $ +$NetBSD: distinfo,v 1.15 2008/08/12 16:39:56 reed Exp $ -SHA1 (msmtp-1.4.13.tar.bz2) = c1d0dee2b8e035289a0467d687ec8066dba61e97 -RMD160 (msmtp-1.4.13.tar.bz2) = a9e701fcfbcf38d240c474dbc8860de259dedc4e -Size (msmtp-1.4.13.tar.bz2) = 704779 bytes +SHA1 (msmtp-1.4.16.tar.bz2) = 784ee281cee05e4a312629efaa4ea892bb98a51f +RMD160 (msmtp-1.4.16.tar.bz2) = 1142042235e42457f8244e02f078dbd53f350886 +Size (msmtp-1.4.16.tar.bz2) = 727517 bytes |