diff options
author | Akinori Hattori <hattya@gentoo.org> | 2017-06-25 14:21:20 +0900 |
---|---|---|
committer | Akinori Hattori <hattya@gentoo.org> | 2017-06-25 14:21:20 +0900 |
commit | ff743353f7345c2cd3b53713bea29b804e805891 (patch) | |
tree | 53e0bf5ff3e59af89d117c36d069ed2e6e9e5c1e /app-i18n/skkfep | |
parent | app-i18n/skkfep: fix segfault (diff) | |
download | gentoo-ff743353f7345c2cd3b53713bea29b804e805891.tar.gz gentoo-ff743353f7345c2cd3b53713bea29b804e805891.tar.bz2 gentoo-ff743353f7345c2cd3b53713bea29b804e805891.zip |
app-i18n/skkfep: add support for annotation
Package-Manager: Portage-2.3.6, Repoman-2.3.1
Diffstat (limited to 'app-i18n/skkfep')
-rw-r--r-- | app-i18n/skkfep/files/skkfep-annotation.patch | 29 | ||||
-rw-r--r-- | app-i18n/skkfep/skkfep-0.87-r1.ebuild | 1 |
2 files changed, 30 insertions, 0 deletions
diff --git a/app-i18n/skkfep/files/skkfep-annotation.patch b/app-i18n/skkfep/files/skkfep-annotation.patch new file mode 100644 index 000000000000..8145c2b069e0 --- /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 a3e53f72d619..a74c53e6af37 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 ) |