You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
2.5 KiB
65 lines
2.5 KiB
3 years ago
|
From 2078913c2735cfb8322af5430511ec1d6d43d3dd Mon Sep 17 00:00:00 2001
|
||
|
From: fujiwarat <takao.fujiwara1@gmail.com>
|
||
|
Date: Thu, 10 Feb 2022 19:38:49 +0900
|
||
|
Subject: [PATCH] Enable anthy-unicode build
|
||
|
|
||
|
anthy is no longer maintained currently and anthy-unicode is generated
|
||
|
to convert internal EUC data to UTF-8 and maintained.
|
||
|
If anthy-unicode package is found, it can be used instead of anthy.
|
||
|
---
|
||
|
CMakeLists.txt | 9 ++++++++-
|
||
|
cmake/FindAnthyUnicode.cmake | 14 ++++++++++++++
|
||
|
2 files changed, 22 insertions(+), 1 deletion(-)
|
||
|
create mode 100644 cmake/FindAnthyUnicode.cmake
|
||
|
|
||
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||
|
index 2233e11b..869458b1 100644
|
||
|
--- a/CMakeLists.txt
|
||
|
+++ b/CMakeLists.txt
|
||
|
@@ -35,6 +35,7 @@ find_package(Qt5Multimedia)
|
||
|
find_package(Qt5Feedback)
|
||
|
find_package(Intl REQUIRED)
|
||
|
|
||
|
+find_package(AnthyUnicode)
|
||
|
find_package(Anthy)
|
||
|
find_package(Pinyin)
|
||
|
find_package(Chewing)
|
||
|
@@ -353,7 +354,13 @@ abstract_language_plugin(en@dv englishdvorak
|
||
|
abstract_language_plugin(fr-ch french LIBRARIES westernsupport)
|
||
|
abstract_language_plugin(th thai DIRECTORY qml/keys)
|
||
|
|
||
|
-if(Anthy_FOUND)
|
||
|
+if(AnthyUnicode_FOUND)
|
||
|
+ abstract_language_plugin(ja japanese ABSTRACT_LANGUAGE_PLUGIN
|
||
|
+ SOURCES anthyadapter.cpp anthyadapter.h
|
||
|
+ LIBRARIES ${AnthyUnicode_LIBRARIES}
|
||
|
+ INCLUDE_DIRS ${AnthyUnicode_INCLUDE_DIRS}
|
||
|
+ DIRECTORY qml/keys)
|
||
|
+elseif(Anthy_FOUND)
|
||
|
abstract_language_plugin(ja japanese ABSTRACT_LANGUAGE_PLUGIN
|
||
|
SOURCES anthyadapter.cpp anthyadapter.h
|
||
|
LIBRARIES ${Anthy_LIBRARIES}
|
||
|
diff --git a/cmake/FindAnthyUnicode.cmake b/cmake/FindAnthyUnicode.cmake
|
||
|
new file mode 100644
|
||
|
index 00000000..6c13a222
|
||
|
--- /dev/null
|
||
|
+++ b/cmake/FindAnthyUnicode.cmake
|
||
|
@@ -0,0 +1,14 @@
|
||
|
+include(FeatureSummary)
|
||
|
+set_package_properties(anthyunicode PROPERTIES
|
||
|
+ URL "https://github.com/fujiwarat/anthy-unicode"
|
||
|
+ DESCRIPTION "Anthy provides the library to input Japanese on the applications.")
|
||
|
+
|
||
|
+find_package(PkgConfig)
|
||
|
+pkg_check_modules(PC_AnthyUnicode QUIET anthy-unicode)
|
||
|
+
|
||
|
+find_library(AnthyUnicode_LIBRARIES NAMES anthy-unicode ${PC_AnthyUnicode_LIBRARIES} HINTS ${PC_AnthyUnicode_LIBRARY_DIRS})
|
||
|
+find_path(AnthyUnicode_INCLUDE_DIRS anthy/anthy.h HINTS ${PC_AnthyUnicode_INCLUDE_DIRS})
|
||
|
+
|
||
|
+include(FindPackageHandleStandardArgs)
|
||
|
+find_package_handle_standard_args(AnthyUnicode DEFAULT_MSG AnthyUnicode_LIBRARIES AnthyUnicode_INCLUDE_DIRS)
|
||
|
+mark_as_advanced(AnthyUnicode_INCLUDE_DIRS AnthyUnicode_LIBRARIES)
|
||
|
--
|
||
|
2.33.1
|
||
|
|