summaryrefslogtreecommitdiff
path: root/inputmethod/scim-hangul
diff options
context:
space:
mode:
authorobache <obache@pkgsrc.org>2012-08-19 09:04:16 +0000
committerobache <obache@pkgsrc.org>2012-08-19 09:04:16 +0000
commitb64c5f9eaf641590b46416a763688653a6507f6d (patch)
tree2cd7fa4866e1d07783e3cc6f45dfa924f9ae99e7 /inputmethod/scim-hangul
parenta436131b613e47cabbe4520a89f9b3327f8767f8 (diff)
downloadpkgsrc-b64c5f9eaf641590b46416a763688653a6507f6d.tar.gz
Update scim-hangul to 0.4.0.
Changes: * Support GTK+ 3.0 * Remove skim related codes
Diffstat (limited to 'inputmethod/scim-hangul')
-rw-r--r--inputmethod/scim-hangul/Makefile5
-rw-r--r--inputmethod/scim-hangul/PLIST4
-rw-r--r--inputmethod/scim-hangul/distinfo9
-rw-r--r--inputmethod/scim-hangul/patches/patch-src_scim__hangul__imengine__setup.cpp15
4 files changed, 25 insertions, 8 deletions
diff --git a/inputmethod/scim-hangul/Makefile b/inputmethod/scim-hangul/Makefile
index 61c8a0c33a0..3473d1cdbfc 100644
--- a/inputmethod/scim-hangul/Makefile
+++ b/inputmethod/scim-hangul/Makefile
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.11 2012/03/03 00:13:23 wiz Exp $
+# $NetBSD: Makefile,v 1.12 2012/08/19 09:04:16 obache Exp $
#
-DISTNAME= scim-hangul-0.3.2
-PKGREVISION= 10
+DISTNAME= scim-hangul-0.4.0
CATEGORIES= inputmethod korean
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=scim/}
diff --git a/inputmethod/scim-hangul/PLIST b/inputmethod/scim-hangul/PLIST
index ba53635bcfa..4f3bc940aa5 100644
--- a/inputmethod/scim-hangul/PLIST
+++ b/inputmethod/scim-hangul/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.1.1.1 2009/11/24 11:54:35 obache Exp $
+@comment $NetBSD: PLIST,v 1.2 2012/08/19 09:04:17 obache Exp $
lib/scim-1.0/1.4.0/IMEngine/hangul.la
lib/scim-1.0/1.4.0/SetupUI/hangul-imengine-setup.la
share/locale/de/LC_MESSAGES/scim-hangul.mo
@@ -9,4 +9,6 @@ share/locale/nl/LC_MESSAGES/scim-hangul.mo
share/locale/pa/LC_MESSAGES/scim-hangul.mo
share/locale/zh_CN/LC_MESSAGES/scim-hangul.mo
share/scim/hangul/symbol.txt
+share/scim/icons/scim-hangul-off.png
+share/scim/icons/scim-hangul-on.png
share/scim/icons/scim-hangul.png
diff --git a/inputmethod/scim-hangul/distinfo b/inputmethod/scim-hangul/distinfo
index 08da77c46b3..2e73fb2b12e 100644
--- a/inputmethod/scim-hangul/distinfo
+++ b/inputmethod/scim-hangul/distinfo
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.1.1.1 2009/11/24 11:54:35 obache Exp $
+$NetBSD: distinfo,v 1.2 2012/08/19 09:04:17 obache Exp $
-SHA1 (scim-hangul-0.3.2.tar.gz) = d1f4a2114d284c926d64fbfe8ea83307b8d8e2ec
-RMD160 (scim-hangul-0.3.2.tar.gz) = 52fd93c3f6fdd3d4c407a7b0069fc3a4d4ac9bc0
-Size (scim-hangul-0.3.2.tar.gz) = 1176577 bytes
+SHA1 (scim-hangul-0.4.0.tar.gz) = 2ba06a6d851a1d86c5a9b659c573bfd87e6a7555
+RMD160 (scim-hangul-0.4.0.tar.gz) = 7c03cb5461e05f1d4944bef06ebf25005ee0e403
+Size (scim-hangul-0.4.0.tar.gz) = 456953 bytes
+SHA1 (patch-src_scim__hangul__imengine__setup.cpp) = ef01740a3e28cff8c6aa60036c53772f95fb7a19
diff --git a/inputmethod/scim-hangul/patches/patch-src_scim__hangul__imengine__setup.cpp b/inputmethod/scim-hangul/patches/patch-src_scim__hangul__imengine__setup.cpp
new file mode 100644
index 00000000000..5831cb7fce7
--- /dev/null
+++ b/inputmethod/scim-hangul/patches/patch-src_scim__hangul__imengine__setup.cpp
@@ -0,0 +1,15 @@
+$NetBSD: patch-src_scim__hangul__imengine__setup.cpp,v 1.1 2012/08/19 09:04:17 obache Exp $
+
+* Upstream SVN repo is correct, where is this codes came from?
+
+--- src/scim_hangul_imengine_setup.cpp.orig 2012-07-08 11:52:07.000000000 +0000
++++ src/scim_hangul_imengine_setup.cpp
+@@ -346,7 +346,7 @@ create_keyboard_page(GtkTooltips *toolti
+ for (i = 0; i < n; i++) {
+ const char* name = hangul_ic_get_keyboard_name(i);
+ #if GTK_CHECK_VERSION(2, 24, 0)
+- gtk_combo_box_text_append(GTK_COMBO_BOX_TEXT(combo_box), NULL, name);
++ gtk_combo_box_text_append_text(GTK_COMBO_BOX_TEXT(combo_box), name);
+ #else
+ gtk_combo_box_append_text(GTK_COMBO_BOX(combo_box), name);
+ #endif