Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
Introduction
Scim-hangul is a SCIM IMEngine module for inputing korean scripts. Scim-hangul
is for native speakers, not for foreigners. If you don't want to learn korean
keyboard layout, use scim-table :)
Feature
This engine supports 2 beolsik, 3 beolsik final, 3 beolsik 390, 3 beolsik
no-shift and etc. You can input chinese character (hanja) with F9 key when you
have preedit string.
Check other korean input methods here:
http://wiki.kldp.org/wiki.php/KoreanInputMethod

View File

@@ -0,0 +1,25 @@
# $NetBSD: Makefile,v 1.21 2013/06/06 12:54:38 wiz Exp $
#
DISTNAME= scim-hangul-0.4.0
PKGREVISION= 8
CATEGORIES= inputmethod korean
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=scim/}
MAINTAINER= obache@NetBSD.org
HOMEPAGE= http://www.scim-im.org/
COMMENT= SCIM IMEngine module for inputing korean scripts
LICENSE= gnu-gpl-v2
USE_LANGUAGES= c c++
USE_PKGLOCALEDIR= yes
USE_LIBTOOL= yes
USE_TOOLS+= msgfmt pkg-config gmake
GNU_CONFIGURE= yes
USE_SCIM_GTKUTILS= yes
.include "../../devel/gettext-lib/buildlink3.mk"
.include "../../inputmethod/libhangul/buildlink3.mk"
.include "../../inputmethod/scim/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"

View File

@@ -0,0 +1,14 @@
@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
share/locale/fr/LC_MESSAGES/scim-hangul.mo
share/locale/ja/LC_MESSAGES/scim-hangul.mo
share/locale/ko/LC_MESSAGES/scim-hangul.mo
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

View File

@@ -0,0 +1,7 @@
$NetBSD: distinfo,v 1.3 2013/03/20 06:15:58 obache Exp $
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.cpp) = ee684faefa3d9a54d44edc92d1559172774bcf06
SHA1 (patch-src_scim__hangul__imengine__setup.cpp) = ef01740a3e28cff8c6aa60036c53772f95fb7a19

View File

@@ -0,0 +1,14 @@
$NetBSD: patch-src_scim__hangul__imengine.cpp,v 1.1 2013/03/20 06:15:58 obache Exp $
* require unistd.h for access(2)
--- src/scim_hangul_imengine.cpp.orig 2012-07-08 11:16:59.000000000 +0000
+++ src/scim_hangul_imengine.cpp
@@ -33,6 +33,7 @@
#include <config.h>
#endif
+#include <unistd.h>
#include <cstring>
#include <scim.h>
#include "scim_hangul_imengine.h"

View File

@@ -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