summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxtraeme <xtraeme>2004-06-20 18:57:48 +0000
committerxtraeme <xtraeme>2004-06-20 18:57:48 +0000
commitfd779b3e980b20a2d88b14945069b5bddb6e52f6 (patch)
tree551d236b7850bdd1294117deb003526e3f2827cd
parent238fd25881a8fc25e20afeae3f902be190f4d9d5 (diff)
downloadpkgsrc-fd779b3e980b20a2d88b14945069b5bddb6e52f6.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
-rw-r--r--doc/CHANGES3
-rw-r--r--mail/sylpheed-gtk2/Makefile7
-rw-r--r--mail/sylpheed-gtk2/distinfo7
-rw-r--r--mail/sylpheed-gtk2/patches/patch-ab32
4 files changed, 8 insertions, 41 deletions
diff --git a/doc/CHANGES b/doc/CHANGES
index 1604fbb7184..48403301309 100644
--- a/doc/CHANGES
+++ b/doc/CHANGES
@@ -1,4 +1,4 @@
-$NetBSD: CHANGES,v 1.6234 2004/06/20 18:48:44 xtraeme Exp $
+$NetBSD: CHANGES,v 1.6235 2004/06/20 18:57:48 xtraeme Exp $
Changes to the packages collection and infrastructure in 2004:
@@ -2967,3 +2967,4 @@ Changes to the packages collection and infrastructure in 2004:
Updated vlc to 0.7.2 [xtraeme 2004-06-20]
Updated mysql4-server to 4.0.20 [xtraeme 2004-06-20]
Updated mysql4-client to 4.0.20 [xtraeme 2004-06-20]
+ Updated sylpheed-gtk2 to 0.9.11 [xtraeme 2004-06-20]
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;