Update msmtp to 1.4.17.
Based on PR 40278 by Leonardo Taccari. Version 1.4.17: - Remove most W32-specific code from net.c and use the appropriate gnulib modules instead. - Gnulib upate to 2008-12-24. - Unified handling of the Gnome and MacOS keyrings. Both are disabled by default and must be enabled using --with-*-keyring options. - Support for SYSCONFDIR/netrc (as a fallback for ~/.netrc) was added by Jim Pryor. Thanks! - Support for the GNOME Keyring was added by Satoru SATOH. Thanks a lot! - Added a vim syntax file for msmtprc files to scripts/vim. The file was written by Simon Ruderich. Thanks! - Updated the msmtpq/msmtpQ scripts.
This commit is contained in:
parent
a8aa9fec12
commit
4e91d3f7e9
3 changed files with 17 additions and 8 deletions
|
@ -1,6 +1,6 @@
|
|||
# $NetBSD: Makefile,v 1.20 2008/08/12 16:39:56 reed Exp $
|
||||
# $NetBSD: Makefile,v 1.21 2009/01/06 12:08:01 obache Exp $
|
||||
|
||||
DISTNAME= msmtp-1.4.16
|
||||
DISTNAME= msmtp-1.4.17
|
||||
CATEGORIES= mail
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=msmtp/}
|
||||
EXTRACT_SUFX= .tar.bz2
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.15 2008/08/12 16:39:56 reed Exp $
|
||||
$NetBSD: distinfo,v 1.16 2009/01/06 12:08:01 obache Exp $
|
||||
|
||||
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
|
||||
SHA1 (msmtp-1.4.17.tar.bz2) = 6b7fa1d9c9eee249b571b3f7720ebd779f94f4de
|
||||
RMD160 (msmtp-1.4.17.tar.bz2) = 749cf22bcbde90dd298f0c96ee0f9e41f93767b6
|
||||
Size (msmtp-1.4.17.tar.bz2) = 766293 bytes
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
# $NetBSD: options.mk,v 1.9 2007/09/08 08:05:23 obache Exp $
|
||||
# $NetBSD: options.mk,v 1.10 2009/01/06 12:08:01 obache Exp $
|
||||
|
||||
PKG_OPTIONS_VAR= PKG_OPTIONS.msmtp
|
||||
|
||||
PKG_OPTIONS_OPTIONAL_GROUPS= ssl
|
||||
PKG_OPTIONS_GROUP.ssl= gnutls ssl
|
||||
|
||||
PKG_SUPPORTED_OPTIONS= gsasl idn inet6
|
||||
PKG_SUPPORTED_OPTIONS= gnome-keyring gsasl idn inet6
|
||||
PKG_SUGGESTED_OPTIONS= ssl
|
||||
|
||||
.include "../../mk/bsd.options.mk"
|
||||
|
@ -37,3 +37,12 @@ CONFIGURE_ARGS+= --disable-ssl
|
|||
. include "../../devel/libidn/buildlink3.mk"
|
||||
CONFIGURE_ARGS+= --with-libidn
|
||||
.endif
|
||||
|
||||
###
|
||||
### GNOME keyring support
|
||||
###
|
||||
.if !empty(PKG_OPTIONS:Mgnome-keyring)
|
||||
. include "../../security/gnome-keyring/buildlink3.mk"
|
||||
CONFIGURE_ARGS+= --with-gnome-keyring
|
||||
USE_TOOLS+= pkg-config
|
||||
.endif
|
||||
|
|
Loading…
Reference in a new issue