summaryrefslogtreecommitdiff
path: root/mail/wl/patches
diff options
context:
space:
mode:
authorobache <obache@pkgsrc.org>2008-11-29 02:55:41 +0000
committerobache <obache@pkgsrc.org>2008-11-29 02:55:41 +0000
commit0f220e4428ed4f4193fa9ac29d92e0fd24c607c5 (patch)
treea0e90c0ca31b3c2d30abcf55c518389c98491bb1 /mail/wl/patches
parent19d936aa16c70dfe3f24d5cb2525617ef8978435 (diff)
downloadpkgsrc-0f220e4428ed4f4193fa9ac29d92e0fd24c607c5.tar.gz
Fixes two issuses:
* compatibility with flim-1.14.9 (patch-ad) * default icon location (patch-ae), reported in PR 40022. Bump PKGREVISION.
Diffstat (limited to 'mail/wl/patches')
-rw-r--r--mail/wl/patches/patch-ad18
-rw-r--r--mail/wl/patches/patch-ae17
2 files changed, 35 insertions, 0 deletions
diff --git a/mail/wl/patches/patch-ad b/mail/wl/patches/patch-ad
new file mode 100644
index 00000000000..a6301f5d4ac
--- /dev/null
+++ b/mail/wl/patches/patch-ad
@@ -0,0 +1,18 @@
+$NetBSD: patch-ad,v 1.1 2008/11/29 02:55:41 obache Exp $
+
+smtp-end-of-line was abolished by flim-1.4.19.
+patch taken from upstream CVS repository.
+
+--- wl/wl-draft.el.orig 2005-03-20 13:10:03.000000000 +0000
++++ wl/wl-draft.el
+@@ -147,10 +147,6 @@ e.g.
+ (if (eq wl-smtp-connection-type 'ssl)
+ #'open-ssl-stream
+ smtp-open-connection-function))
+- (smtp-end-of-line
+- (if (eq wl-smtp-connection-type 'ssl)
+- "\n"
+- smtp-end-of-line))
+ smtp-sasl-user-name smtp-sasl-properties sasl-read-passphrase)
+ (setq smtp-sasl-user-name wl-smtp-posting-user
+ smtp-sasl-properties (when wl-smtp-authenticate-realm
diff --git a/mail/wl/patches/patch-ae b/mail/wl/patches/patch-ae
new file mode 100644
index 00000000000..e4d8e91b3e5
--- /dev/null
+++ b/mail/wl/patches/patch-ae
@@ -0,0 +1,17 @@
+$NetBSD: patch-ae,v 1.1 2008/11/29 02:55:41 obache Exp $
+
+Refrect custmization of PIXMAPDIR by pkgsrc.
+
+--- wl/wl-vars.el.orig 2005-02-25 15:05:50.000000000 +0000
++++ wl/wl-vars.el
+@@ -172,8 +172,8 @@ Supersede `wl-user-mail-address-list'."
+
+ (defcustom wl-icon-directory (if (fboundp 'locate-data-directory)
+ (locate-data-directory "wl")
+- (let ((icons (expand-file-name "wl/icons/"
+- data-directory)))
++ (let ((icons (expand-file-name "share/wl/"
++ "@PREFIX@")))
+ (if (file-directory-p icons)
+ icons)))
+ "*Directory to load the icon files from, or nil if none."