summaryrefslogtreecommitdiff
path: root/inputmethod/tomoe-gtk
diff options
context:
space:
mode:
authorobache <obache@pkgsrc.org>2010-06-27 08:51:11 +0000
committerobache <obache@pkgsrc.org>2010-06-27 08:51:11 +0000
commitf018218c548d1637e5bd0e47af664135ef3ef535 (patch)
treef3735522ead1df594ba4bd94a20abad3dcdb5674 /inputmethod/tomoe-gtk
parent8551cd6d3cb50e9db946ffb1b7339b72116e4b29 (diff)
downloadpkgsrc-f018218c548d1637e5bd0e47af664135ef3ef535.tar.gz
Fixes GTK-WARNING **: GtkSpinButton: setting an adjustment with non-zero page size is deprecated
Bump PKGREVISION.
Diffstat (limited to 'inputmethod/tomoe-gtk')
-rw-r--r--inputmethod/tomoe-gtk/Makefile4
-rw-r--r--inputmethod/tomoe-gtk/distinfo3
-rw-r--r--inputmethod/tomoe-gtk/patches/patch-ab24
3 files changed, 28 insertions, 3 deletions
diff --git a/inputmethod/tomoe-gtk/Makefile b/inputmethod/tomoe-gtk/Makefile
index d207d925b00..8ec3367e194 100644
--- a/inputmethod/tomoe-gtk/Makefile
+++ b/inputmethod/tomoe-gtk/Makefile
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.7 2010/06/13 22:44:50 wiz Exp $
+# $NetBSD: Makefile,v 1.8 2010/06/27 08:51:11 obache Exp $
#
DISTNAME= tomoe-gtk-0.6.0
-PKGREVISION= 4
+PKGREVISION= 5
CATEGORIES= inputmethod
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=tomoe/}
diff --git a/inputmethod/tomoe-gtk/distinfo b/inputmethod/tomoe-gtk/distinfo
index 82d9a2934f5..fb39b0fd5ba 100644
--- a/inputmethod/tomoe-gtk/distinfo
+++ b/inputmethod/tomoe-gtk/distinfo
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.2 2010/05/14 11:02:20 obache Exp $
+$NetBSD: distinfo,v 1.3 2010/06/27 08:51:11 obache Exp $
SHA1 (tomoe-gtk-0.6.0.tar.gz) = dddb1178c437380a92b59dbc273dafdd2045e1d1
RMD160 (tomoe-gtk-0.6.0.tar.gz) = 72e0954b8994d1e62acb7d4cb0c478dadb54b8f0
Size (tomoe-gtk-0.6.0.tar.gz) = 448058 bytes
SHA1 (patch-aa) = 7b185b3ec670661c5bcd85f3e1ef91729348b19c
+SHA1 (patch-ab) = 3a06e51f7ca8ab0930a2482d6f006d883b88840d
diff --git a/inputmethod/tomoe-gtk/patches/patch-ab b/inputmethod/tomoe-gtk/patches/patch-ab
new file mode 100644
index 00000000000..0135146031c
--- /dev/null
+++ b/inputmethod/tomoe-gtk/patches/patch-ab
@@ -0,0 +1,24 @@
+$NetBSD: patch-ab,v 1.1 2010/06/27 08:51:11 obache Exp $
+
+Gtk-WARNING **: GtkSpinButton: setting an adjustment with non-zero page size is deprecated
+
+--- src/tomoe-reading-search.c.orig 2007-04-25 07:49:31.000000000 +0000
++++ src/tomoe-reading-search.c
+@@ -203,7 +203,7 @@ tomoe_reading_search_init (TomoeReadingS
+ gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 4);
+ /*gtk_widget_show (label);*/
+
+- adj = gtk_adjustment_new (1.0, 1.0, 200.0, 1.0, 5.0, 5.0);
++ adj = gtk_adjustment_new (1.0, 1.0, 200.0, 1.0, 5.0, 0.0);
+ spin = gtk_spin_button_new (GTK_ADJUSTMENT (adj), 0.0, 0);
+ priv->min_strokes_spin = spin;
+ g_signal_connect (G_OBJECT (spin), "value-changed",
+@@ -217,7 +217,7 @@ tomoe_reading_search_init (TomoeReadingS
+ gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 4);
+ /*gtk_widget_show (label);*/
+
+- adj = gtk_adjustment_new (20.0, 1.0, 200.0, 1.0, 5.0, 5.0);
++ adj = gtk_adjustment_new (20.0, 1.0, 200.0, 1.0, 5.0, 0.0);
+ spin = gtk_spin_button_new (GTK_ADJUSTMENT (adj), 0.0, 0);
+ priv->max_strokes_spin = spin;
+ g_signal_connect (G_OBJECT (spin), "value-changed",