diff options
author | wiz <wiz@pkgsrc.org> | 2007-12-03 16:47:25 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2007-12-03 16:47:25 +0000 |
commit | 36c45f6e865b4ecb8362fef8788f1875a8c421f1 (patch) | |
tree | bfb0b606ed8f6bb4030140fb3b2cfb433f7624d7 /mail | |
parent | b6ec5c986fdcbd5aeee34cd1099c4dcd4ade7f52 (diff) | |
download | pkgsrc-36c45f6e865b4ecb8362fef8788f1875a8c421f1.tar.gz |
Update to 1.5.17nb2:
Make smime_keys.pl work if .smime is in your home directory.
(mutt -Q reduces paths to ~, but smime_keys didn't expand that.)
Patch from Anon.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/mutt-devel/Makefile | 4 | ||||
-rw-r--r-- | mail/mutt-devel/distinfo | 3 | ||||
-rw-r--r-- | mail/mutt-devel/patches/patch-ac | 13 |
3 files changed, 17 insertions, 3 deletions
diff --git a/mail/mutt-devel/Makefile b/mail/mutt-devel/Makefile index 098ad266a8f..95e7cad1def 100644 --- a/mail/mutt-devel/Makefile +++ b/mail/mutt-devel/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.62 2007/11/08 21:56:00 bjs Exp $ +# $NetBSD: Makefile,v 1.63 2007/12/03 16:47:25 wiz Exp $ DISTNAME= mutt-1.5.17 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= mail MUTT_SITES= ftp://ftp.mutt.org/mutt/ \ ftp://ftp.stealth.net/pub/mirrors/ftp.mutt.org/pub/mutt/ \ diff --git a/mail/mutt-devel/distinfo b/mail/mutt-devel/distinfo index 1c7a8ffd7da..ac791ec35a2 100644 --- a/mail/mutt-devel/distinfo +++ b/mail/mutt-devel/distinfo @@ -1,10 +1,11 @@ -$NetBSD: distinfo,v 1.43 2007/11/07 21:19:37 tonio Exp $ +$NetBSD: distinfo,v 1.44 2007/12/03 16:47:25 wiz Exp $ SHA1 (mutt-1.5.17.tar.gz) = 6b51745fc4baf463adde53e91efb2a6c7eec8492 RMD160 (mutt-1.5.17.tar.gz) = e5c84a27ad25730afe64879e91bed89a021e0580 Size (mutt-1.5.17.tar.gz) = 3572651 bytes SHA1 (patch-aa) = 59d89dce24110be2927c8a1ea1fa5b780d644372 SHA1 (patch-ab) = 4f9e8cbcec719263998d61fcc9a707548d804477 +SHA1 (patch-ac) = 48cae7543eeb3980dfdea8573ea2ec2192aca091 SHA1 (patch-ad) = ecfa994c7c5e494b6eb7356327b96de6559146fc SHA1 (patch-ag) = b8daf23256cd2cfd8c60cae646eb36ec1656823f SHA1 (patch-al) = ac8d963286d9edee73ee00bdb8f4ffcd65c6cd5d diff --git a/mail/mutt-devel/patches/patch-ac b/mail/mutt-devel/patches/patch-ac new file mode 100644 index 00000000000..b91a8b930cd --- /dev/null +++ b/mail/mutt-devel/patches/patch-ac @@ -0,0 +1,13 @@ +$NetBSD: patch-ac,v 1.6 2007/12/03 16:47:25 wiz Exp $ + +--- smime_keys.pl.orig 2007-03-02 19:44:44.000000000 +0100 ++++ smime_keys.pl +@@ -225,7 +225,7 @@ You must set this in your mutt config fi + EOF + #' + +- $answer =~ /\"(.*?)\"/ and return $1; ++ $answer =~ /\"(.*?)\"/ and return `echo -n $1`; + + $answer =~ /^Mutt (.*?) / and die<<EOF; + This script requires mutt 1.5.0 or later. You are using mutt $1. |