commit:     ff743353f7345c2cd3b53713bea29b804e805891
Author:     Akinori Hattori <hattya <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 25 05:21:20 2017 +0000
Commit:     Akinori Hattori <hattya <AT> gentoo <DOT> org>
CommitDate: Sun Jun 25 05:21:20 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff743353

app-i18n/skkfep: add support for annotation

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 app-i18n/skkfep/files/skkfep-annotation.patch | 29 +++++++++++++++++++++++++++
 app-i18n/skkfep/skkfep-0.87-r1.ebuild         |  1 +
 2 files changed, 30 insertions(+)

diff --git a/app-i18n/skkfep/files/skkfep-annotation.patch 
b/app-i18n/skkfep/files/skkfep-annotation.patch
new file mode 100644
index 00000000000..8145c2b069e
--- /dev/null
+++ b/app-i18n/skkfep/files/skkfep-annotation.patch
@@ -0,0 +1,29 @@
+--- a/kkconv.c
++++ b/kkconv.c
+@@ -645,6 +645,7 @@
+ char c;
+ {
+       int l;
++      char *p;
+       DicList dlist;
+ 
+       kanjiSelectionEffect(0);
+@@ -653,7 +654,17 @@
+               if (OkuriInput)
+                       l += strlen(OkuriBuf);
+               csrLeft(l);
+-              writeShells(CurrentCand->candword);
++              p= strrchr(CurrentCand->candword,';');
++              if (p != NULL) {
++                      erase(l);
++                      csrLeft(l);
++                      l -= strlen(p);
++                      *p = '\0';
++                      writeShells(CurrentCand->candword);
++                      *p = ';';
++              } else {
++                      writeShells(CurrentCand->candword);
++              }
+               if (OkuriInput) {
+                       writeShells(OkuriBuf);
+               }

diff --git a/app-i18n/skkfep/skkfep-0.87-r1.ebuild 
b/app-i18n/skkfep/skkfep-0.87-r1.ebuild
index a3e53f72d61..a74c53e6af3 100644
--- a/app-i18n/skkfep/skkfep-0.87-r1.ebuild
+++ b/app-i18n/skkfep/skkfep-0.87-r1.ebuild
@@ -23,6 +23,7 @@ RDEPEND="sys-libs/ncurses:=
 PATCHES=(
        "${FILESDIR}"/${PN}-gentoo.patch
        "${FILESDIR}"/${PN}-system-dic.patch
+       "${FILESDIR}"/${PN}-annotation.patch
 )
 DOCS=( README HISTORY TODO )
 

Reply via email to