pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc Update mail/sylpheed-gtk2 to 0.9.11.
details: https://anonhg.NetBSD.org/pkgsrc/rev/5904aec46be3
branches: trunk
changeset: 476765:5904aec46be3
user: xtraeme <xtraeme%pkgsrc.org@localhost>
date: Sun Jun 20 18:57:48 2004 +0000
description:
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:
doc/CHANGES | 3 ++-
mail/sylpheed-gtk2/Makefile | 7 +++----
mail/sylpheed-gtk2/distinfo | 7 +++----
mail/sylpheed-gtk2/patches/patch-ab | 32 --------------------------------
4 files changed, 8 insertions(+), 41 deletions(-)
diffs (79 lines):
diff -r 90dfed7611c6 -r 5904aec46be3 doc/CHANGES
--- a/doc/CHANGES Sun Jun 20 18:48:44 2004 +0000
+++ b/doc/CHANGES Sun Jun 20 18:57:48 2004 +0000
@@ -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 @@
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 -r 90dfed7611c6 -r 5904aec46be3 mail/sylpheed-gtk2/Makefile
--- a/mail/sylpheed-gtk2/Makefile Sun Jun 20 18:48:44 2004 +0000
+++ b/mail/sylpheed-gtk2/Makefile Sun Jun 20 18:57:48 2004 +0000
@@ -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 -r 90dfed7611c6 -r 5904aec46be3 mail/sylpheed-gtk2/distinfo
--- a/mail/sylpheed-gtk2/distinfo Sun Jun 20 18:48:44 2004 +0000
+++ b/mail/sylpheed-gtk2/distinfo Sun Jun 20 18:57:48 2004 +0000
@@ -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 -r 90dfed7611c6 -r 5904aec46be3 mail/sylpheed-gtk2/patches/patch-ab
--- a/mail/sylpheed-gtk2/patches/patch-ab Sun Jun 20 18:48:44 2004 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -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;
Home |
Main Index |
Thread Index |
Old Index