summaryrefslogtreecommitdiff
path: root/mail
diff options
context:
space:
mode:
authorxtraeme <xtraeme@pkgsrc.org>2004-06-20 18:57:48 +0000
committerxtraeme <xtraeme@pkgsrc.org>2004-06-20 18:57:48 +0000
commit7c78ca650b62eeb151caea9c30746492fa17bf0b (patch)
tree551d236b7850bdd1294117deb003526e3f2827cd /mail
parentc89fd2ff253e86037db21ab9da643ba235e8d50f (diff)
downloadpkgsrc-7c78ca650b62eeb151caea9c30746492fa17bf0b.tar.gz
Update mail/sylpheed-gtk2 to 0.9.11.
Changes: * 0.9.11 * The spring-loaded folder has been implemented for the folder view. * A function to filter selected messages has been added. * Always move messages by default when using DnD (copy if Ctrl key is pressed). * On filtering, the matching algorithm of 'not contain' flag has been fixed. * NNTP servers that require authentication at the beginning of the session has been supported. * The method of updating the progress dialog has been modified. * The context menu on the summary view has been cleaned up. * The image viewer has been fixed. * The cache handling has been fixed for AMD64 and other 64-bit platforms. * The SMTP routine has been fixed to fully comply with RFC 2821
Diffstat (limited to 'mail')
-rw-r--r--mail/sylpheed-gtk2/Makefile7
-rw-r--r--mail/sylpheed-gtk2/distinfo7
-rw-r--r--mail/sylpheed-gtk2/patches/patch-ab32
3 files changed, 6 insertions, 40 deletions
diff --git a/mail/sylpheed-gtk2/Makefile b/mail/sylpheed-gtk2/Makefile
index 1c9199705ba..00e7d1e3f46 100644
--- a/mail/sylpheed-gtk2/Makefile
+++ b/mail/sylpheed-gtk2/Makefile
@@ -1,9 +1,8 @@
-# $NetBSD: Makefile,v 1.14 2004/06/01 17:07:09 recht Exp $
+# $NetBSD: Makefile,v 1.15 2004/06/20 18:57:48 xtraeme Exp $
#
-DISTNAME= sylpheed-0.9.9-gtk2-20040229
-PKGNAME= sylpheed-gtk2-0.9.9
-PKGREVISION= 3
+DISTNAME= sylpheed-0.9.11-gtk2-20040613
+PKGNAME= sylpheed-gtk2-0.9.11
CATEGORIES= mail x11
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=sylpheed-gtk2/}
diff --git a/mail/sylpheed-gtk2/distinfo b/mail/sylpheed-gtk2/distinfo
index 4c2ef721959..f79695d7127 100644
--- a/mail/sylpheed-gtk2/distinfo
+++ b/mail/sylpheed-gtk2/distinfo
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.4 2004/06/01 17:07:09 recht Exp $
+$NetBSD: distinfo,v 1.5 2004/06/20 18:57:48 xtraeme Exp $
-SHA1 (sylpheed-0.9.9-gtk2-20040229.tar.gz) = 1073d3524de2583b0f441f036b80fbe06365f8d4
-Size (sylpheed-0.9.9-gtk2-20040229.tar.gz) = 3275909 bytes
+SHA1 (sylpheed-0.9.11-gtk2-20040613.tar.gz) = 09bdd373413d34771b0d63d13fd846776ba459a5
+Size (sylpheed-0.9.11-gtk2-20040613.tar.gz) = 3378496 bytes
SHA1 (patch-aa) = a02ce94641b1b75dd050973e282f43af7d4aa505
-SHA1 (patch-ab) = 45ba070adbf51358a5bcbc3f1f77f4ed0df8ddc0
diff --git a/mail/sylpheed-gtk2/patches/patch-ab b/mail/sylpheed-gtk2/patches/patch-ab
deleted file mode 100644
index bfb15892a58..00000000000
--- a/mail/sylpheed-gtk2/patches/patch-ab
+++ /dev/null
@@ -1,32 +0,0 @@
-$NetBSD: patch-ab,v 1.1 2004/06/01 17:07:09 recht Exp $
-
---- src/prefs.c.orig Fri Jan 23 12:08:46 2004
-+++ src/prefs.c Fri Jan 23 12:16:37 2004
-@@ -109,17 +109,18 @@
- case P_STRING:
- {
- #warning FIXME_GTK2
-- gchar *tmp;
-+ gchar *tmp = NULL;
-
-- tmp = *value ?
-- conv_codeset_strdup(value,
-- conv_get_current_charset_str(),
-- CS_UTF_8)
-- : g_strdup("");
-- if (!tmp) {
-- g_warning("faild to convert character set.");
-- tmp = g_strdup(value);
-+ if (*value) {
-+ tmp = conv_codeset_strdup(value,
-+ conv_get_current_charset_str(),
-+ CS_UTF_8);
-+ if (!tmp) {
-+ g_warning("failed to convert character set.");
-+ tmp = g_strdup(value);
-+ }
- }
-+
- g_free(*((gchar **)param[i].data));
- *((gchar **)param[i].data) = tmp;
- break;