diff options
author | wen <wen@FreeBSD.org> | 2012-09-19 15:01:24 +0800 |
---|---|---|
committer | wen <wen@FreeBSD.org> | 2012-09-19 15:01:24 +0800 |
commit | ef734f5f71f0022463c14e371b0e2e03d4a99f1a (patch) | |
tree | 2a2dad69923f82c3c75f9470306ac4d5671b08db /chinese | |
parent | 623aa26ea08c4f2bbd2318d7a9b36c2ccb31f736 (diff) | |
download | freebsd-ports-gnome-ef734f5f71f0022463c14e371b0e2e03d4a99f1a.tar.gz freebsd-ports-gnome-ef734f5f71f0022463c14e371b0e2e03d4a99f1a.tar.zst freebsd-ports-gnome-ef734f5f71f0022463c14e371b0e2e03d4a99f1a.zip |
- Update to 4.2.6
PR: 171608
Submitted by: Zhihao Yuan <lichray@gmail.com> (maintainer)
Diffstat (limited to 'chinese')
-rw-r--r-- | chinese/fcitx/Makefile | 11 | ||||
-rw-r--r-- | chinese/fcitx/distinfo | 6 | ||||
-rw-r--r-- | chinese/fcitx/files/patch-data_CMakeLists.txt | 27 | ||||
-rw-r--r-- | chinese/fcitx/files/patch-data_script_CMakeLists.txt | 11 | ||||
-rw-r--r-- | chinese/fcitx/files/patch-src_lib_fcitx-gclient_fcitxclient.c | 17 | ||||
-rw-r--r-- | chinese/fcitx/files/patch-src_lib_fcitx-gclient_fcitxinputmethod.c | 16 | ||||
-rw-r--r-- | chinese/fcitx/files/patch-src_lib_fcitx-gclient_fcitxkbd.c | 16 | ||||
-rw-r--r-- | chinese/fcitx/files/patch-src_lib_fcitx-utils_utils.c | 23 | ||||
-rw-r--r-- | chinese/fcitx/files/patch-src_lib_fcitx_instance-internal.h | 11 | ||||
-rw-r--r-- | chinese/fcitx/files/patch-src_module_unicode_charselectdata.c | 11 | ||||
-rw-r--r-- | chinese/fcitx/files/pkg-message.in | 3 | ||||
-rw-r--r-- | chinese/fcitx/pkg-plist | 34 |
12 files changed, 53 insertions, 133 deletions
diff --git a/chinese/fcitx/Makefile b/chinese/fcitx/Makefile index ff2db356f96d..99f258598738 100644 --- a/chinese/fcitx/Makefile +++ b/chinese/fcitx/Makefile @@ -6,10 +6,11 @@ # PORTNAME= fcitx -PORTVERSION= 4.2.5 +PORTVERSION= 4.2.6 CATEGORIES= chinese x11 MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} -DISTFILES= ${DISTNAME}${EXTRACT_SUFX} pinyin.tar.gz table.tar.gz +DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ + pinyin.tar.gz table.tar.gz en_dict-${_DICT_VER}.tar.gz DIST_SUBDIR= ${PORTNAME} EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} @@ -21,7 +22,6 @@ LICENSE= GPLv2 BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/iso-codes.pc:${PORTSDIR}/misc/iso-codes LIB_DEPENDS= execinfo:${PORTSDIR}/devel/libexecinfo \ dbus-1:${PORTSDIR}/devel/dbus \ - enchant:${PORTSDIR}/textproc/enchant \ icuuc:${PORTSDIR}/devel/icu RUN_DEPENDS= xdg-open:${PORTSDIR}/devel/xdg-utils @@ -50,6 +50,8 @@ TPUNC_DESC= Use traditional quotation marks .include <bsd.port.options.mk> +CMAKE_ARGS+= -DENABLE_XDGAUTOSTART=OFF -DFORCE_ENCHANT=ON + .if ${PORT_OPTIONS:MGTK2} USE_GNOME+= gtk20 PLIST_SUB+= GTK2="" @@ -101,9 +103,12 @@ EXTRA_PATCHES+= ${FILESDIR}/nodocs-doc_CMakeLists.txt IGNORE= code tables are required, undefine NOPORTDATA .endif +_DICT_VER= 20120815 + post-patch: @${CP} ${_DISTDIR}/pinyin.tar.gz ${WRKSRC}/data @${CP} ${_DISTDIR}/table.tar.gz ${WRKSRC}/data/table + @${CP} ${_DISTDIR}/en_dict-${_DICT_VER}.tar.gz ${WRKSRC}/data .if ${OSVERSION} < 800067 # getline() is GNU extension which FreeBSD only recently adopted EXTRA_PATCHES+= ${FILESDIR}/getline-src_lib_fcitx-utils_utils.c \ diff --git a/chinese/fcitx/distinfo b/chinese/fcitx/distinfo index 20dba762ad49..b14be62d7cc1 100644 --- a/chinese/fcitx/distinfo +++ b/chinese/fcitx/distinfo @@ -1,6 +1,8 @@ -SHA256 (fcitx/fcitx-4.2.5.tar.xz) = 478d311d3427e255729671f3a461762348bf5d83ed694d78021012778047140a -SIZE (fcitx/fcitx-4.2.5.tar.xz) = 1413724 +SHA256 (fcitx/fcitx-4.2.6.tar.xz) = 13479bca8d7f420f486f1e2ea733dc9a0060f18c0f08b415c3c56694f2fd775e +SIZE (fcitx/fcitx-4.2.6.tar.xz) = 1439664 SHA256 (fcitx/pinyin.tar.gz) = 583829b24a758c087c08de4a69480d0bf5946354fe77db360d6d7f467c2bd8e1 SIZE (fcitx/pinyin.tar.gz) = 1608886 SHA256 (fcitx/table.tar.gz) = 6196053c724125e3ae3d8bd6b2f9172d0c83b65b0d410d3cde63b7a8d6ab87b7 SIZE (fcitx/table.tar.gz) = 4144686 +SHA256 (fcitx/en_dict-20120815.tar.gz) = a73c989eae586a681a0e64bd7e8a43d45fc6dfbfd45b98e4b83f715a87639945 +SIZE (fcitx/en_dict-20120815.tar.gz) = 679983 diff --git a/chinese/fcitx/files/patch-data_CMakeLists.txt b/chinese/fcitx/files/patch-data_CMakeLists.txt deleted file mode 100644 index ddff9aa87b5b..000000000000 --- a/chinese/fcitx/files/patch-data_CMakeLists.txt +++ /dev/null @@ -1,27 +0,0 @@ ---- data/CMakeLists.txt.orig 2012-07-17 15:21:04.000000000 -0500 -+++ data/CMakeLists.txt 2012-07-25 09:15:36.331202614 -0500 -@@ -29,7 +29,6 @@ set(FCITX_PY_FILES - set(FCITX_DSEKTOP_FILES - fcitx.desktop - fcitx-configtool.desktop -- fcitx-autostart.desktop - ) - - set(PY_ORGDATA pyPhrase.org) -@@ -45,7 +44,6 @@ intltool_merge_translation(${CMAKE_CURRE - add_custom_target(pinyin_data ALL DEPENDS ${PY_DATA}) - - add_custom_command(OUTPUT ${PY_ORGDATA} -- COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/download.sh "${WGET}" "${PY_URL}" "${PY_TAR}" - COMMAND ${TAR} xzmvf ${PY_TAR}) - add_custom_command(OUTPUT ${PY_DATA} - DEPENDS ${PY_ORGDATA} -@@ -60,7 +58,3 @@ fcitx_add_configdesc_file(${FCITX_DESC_F - install(FILES ${FCITX_PY_FILES} ${CMAKE_CURRENT_BINARY_DIR}/pybase.mb ${CMAKE_CURRENT_BINARY_DIR}/pyphrase.mb DESTINATION ${pkgdatadir}/pinyin) - - set_directory_properties(PROPERTIES ADDITIONAL_MAKE_CLEAN_FILES "${CMAKE_CURRENT_BINARY_DIR}/pyERROR,${CMAKE_CURRENT_BINARY_DIR}/pyPhrase.ok") -- --if (_ENABLE_DBUS) --install(FILES ${CMAKE_CURRENT_BINARY_DIR}/fcitx-autostart.desktop DESTINATION /etc/xdg/autostart) --endif (_ENABLE_DBUS) -\ No newline at end of file diff --git a/chinese/fcitx/files/patch-data_script_CMakeLists.txt b/chinese/fcitx/files/patch-data_script_CMakeLists.txt deleted file mode 100644 index 8ac82eaef643..000000000000 --- a/chinese/fcitx/files/patch-data_script_CMakeLists.txt +++ /dev/null @@ -1,11 +0,0 @@ ---- data/script/CMakeLists.txt~ 2012-07-17 15:21:04.000000000 -0500 -+++ data/script/CMakeLists.txt 2012-07-18 03:16:21.077945464 -0500 -@@ -2,7 +2,3 @@ install(FILES fcitx-configtool DESTINATI - - configure_file(fcitx4-config.in ${CMAKE_CURRENT_BINARY_DIR}/fcitx4-config) - install(FILES ${CMAKE_CURRENT_BINARY_DIR}/fcitx4-config DESTINATION ${bindir} PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE) -- --if (_ENABLE_DBUS) --install(FILES fcitx-autostart DESTINATION ${bindir} PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE) --endif (_ENABLE_DBUS) -\ No newline at end of file diff --git a/chinese/fcitx/files/patch-src_lib_fcitx-gclient_fcitxclient.c b/chinese/fcitx/files/patch-src_lib_fcitx-gclient_fcitxclient.c new file mode 100644 index 000000000000..58826bbda24a --- /dev/null +++ b/chinese/fcitx/files/patch-src_lib_fcitx-gclient_fcitxclient.c @@ -0,0 +1,17 @@ +--- src/lib/fcitx-gclient/fcitxclient.c.orig 2012-09-19 14:25:18.000000000 +0800 ++++ src/lib/fcitx-gclient/fcitxclient.c 2012-09-19 14:29:55.000000000 +0800 +@@ -26,10 +26,14 @@ + #include "fcitxclient.h" + #include "marshall.h" + ++#ifdef _DEBUG + #define fcitx_gclient_debug(...) g_log ("fcitx-client", \ + G_LOG_LEVEL_DEBUG, \ + __VA_ARGS__) + ++#else ++#define fcitx_gclient_debug(...) ++#endif + typedef struct _ProcessKeyStruct ProcessKeyStruct; + + struct _ProcessKeyStruct { diff --git a/chinese/fcitx/files/patch-src_lib_fcitx-gclient_fcitxinputmethod.c b/chinese/fcitx/files/patch-src_lib_fcitx-gclient_fcitxinputmethod.c deleted file mode 100644 index d936493eda16..000000000000 --- a/chinese/fcitx/files/patch-src_lib_fcitx-gclient_fcitxinputmethod.c +++ /dev/null @@ -1,16 +0,0 @@ ---- src/lib/fcitx-gclient/fcitxinputmethod.c~ 2012-07-17 15:21:04.000000000 -0500 -+++ src/lib/fcitx-gclient/fcitxinputmethod.c 2012-07-18 00:24:39.533453747 -0500 -@@ -58,11 +58,11 @@ enum { - - static guint signals[LAST_SIGNAL] = {0}; - --G_DEFINE_TYPE(FcitxInputMethod, fcitx_input_method, G_TYPE_DBUS_PROXY); -- - FCITX_EXPORT_API - GType fcitx_input_method_get_type(void) G_GNUC_CONST; - -+G_DEFINE_TYPE(FcitxInputMethod, fcitx_input_method, G_TYPE_DBUS_PROXY); -+ - static GDBusInterfaceInfo * _fcitx_input_method_get_interface_info(void); - static void _fcitx_im_item_foreach_cb(gpointer data, gpointer user_data); - diff --git a/chinese/fcitx/files/patch-src_lib_fcitx-gclient_fcitxkbd.c b/chinese/fcitx/files/patch-src_lib_fcitx-gclient_fcitxkbd.c deleted file mode 100644 index 7a4138a39bd4..000000000000 --- a/chinese/fcitx/files/patch-src_lib_fcitx-gclient_fcitxkbd.c +++ /dev/null @@ -1,16 +0,0 @@ ---- src/lib/fcitx-gclient/fcitxkbd.c~ 2012-07-17 15:21:04.000000000 -0500 -+++ src/lib/fcitx-gclient/fcitxkbd.c 2012-07-18 00:25:05.368996486 -0500 -@@ -45,11 +45,11 @@ static const gchar introspection_xml[] = - "</node>"; - - --G_DEFINE_TYPE(FcitxKbd, fcitx_kbd, G_TYPE_DBUS_PROXY); -- - FCITX_EXPORT_API - GType fcitx_kbd_get_type(void) G_GNUC_CONST; - -+G_DEFINE_TYPE(FcitxKbd, fcitx_kbd, G_TYPE_DBUS_PROXY); -+ - static GDBusInterfaceInfo * _fcitx_kbd_get_interface_info(void); - - static GDBusInterfaceInfo * diff --git a/chinese/fcitx/files/patch-src_lib_fcitx-utils_utils.c b/chinese/fcitx/files/patch-src_lib_fcitx-utils_utils.c deleted file mode 100644 index de72b3b8a65e..000000000000 --- a/chinese/fcitx/files/patch-src_lib_fcitx-utils_utils.c +++ /dev/null @@ -1,23 +0,0 @@ ---- ./src/lib/fcitx-utils/utils.c~ 2012-07-17 15:21:04.000000000 -0500 -+++ ./src/lib/fcitx-utils/utils.c 2012-07-18 00:14:56.901797676 -0500 -@@ -113,13 +113,13 @@ void fcitx_utils_init_as_daemon() - exit(0); - } - setsid(); -- sighandler_t oldint = signal(SIGINT, SIG_IGN); -- sighandler_t oldhup =signal(SIGHUP, SIG_IGN); -- sighandler_t oldquit = signal(SIGQUIT, SIG_IGN); -- sighandler_t oldpipe = signal(SIGPIPE, SIG_IGN); -- sighandler_t oldttou = signal(SIGTTOU, SIG_IGN); -- sighandler_t oldttin = signal(SIGTTIN, SIG_IGN); -- sighandler_t oldchld = signal(SIGCHLD, SIG_IGN); -+ sig_t oldint = signal(SIGINT, SIG_IGN); -+ sig_t oldhup =signal(SIGHUP, SIG_IGN); -+ sig_t oldquit = signal(SIGQUIT, SIG_IGN); -+ sig_t oldpipe = signal(SIGPIPE, SIG_IGN); -+ sig_t oldttou = signal(SIGTTOU, SIG_IGN); -+ sig_t oldttin = signal(SIGTTIN, SIG_IGN); -+ sig_t oldchld = signal(SIGCHLD, SIG_IGN); - if (fork() > 0) - exit(0); - chdir("/"); diff --git a/chinese/fcitx/files/patch-src_lib_fcitx_instance-internal.h b/chinese/fcitx/files/patch-src_lib_fcitx_instance-internal.h deleted file mode 100644 index 0955b8e45043..000000000000 --- a/chinese/fcitx/files/patch-src_lib_fcitx_instance-internal.h +++ /dev/null @@ -1,11 +0,0 @@ ---- src/lib/fcitx/instance-internal.h~ 2011-10-02 05:43:11.000000000 -0500 -+++ src/lib/fcitx/instance-internal.h 2011-11-09 04:34:08.305040197 -0600 -@@ -26,6 +26,8 @@ - #define _FCITX_INSTANCE_INTERNAL_H_ - - #include <semaphore.h> -+#include <sys/select.h> -+#include <pthread.h> - - #include "fcitx-utils/utarray.h" - #include "configfile.h" diff --git a/chinese/fcitx/files/patch-src_module_unicode_charselectdata.c b/chinese/fcitx/files/patch-src_module_unicode_charselectdata.c deleted file mode 100644 index ea11c6d22b6c..000000000000 --- a/chinese/fcitx/files/patch-src_module_unicode_charselectdata.c +++ /dev/null @@ -1,11 +0,0 @@ ---- src/module/unicode/charselectdata.c~ 2012-07-17 15:21:04.000000000 -0500 -+++ src/module/unicode/charselectdata.c 2012-07-18 00:20:19.447890414 -0500 -@@ -4,7 +4,7 @@ - * original file is licensed under GPLv2+ - */ - --#include <endian.h> -+#include <sys/endian.h> - #include <ctype.h> - #include <libintl.h> - #include <fcitx-utils/uthash.h> diff --git a/chinese/fcitx/files/pkg-message.in b/chinese/fcitx/files/pkg-message.in index 38de6a4834f8..2c13f3178948 100644 --- a/chinese/fcitx/files/pkg-message.in +++ b/chinese/fcitx/files/pkg-message.in @@ -23,7 +23,4 @@ To start fcitx with your desktop, just cp %%PREFIX%%/share/applications/fcitx.desktop \ ~/.config/autostart/ -if your desktop environment is XDG-compatible. Otherwise, you have to -make sure fcitx is started AFTER dbus-launch. - ************************************************************************ diff --git a/chinese/fcitx/pkg-plist b/chinese/fcitx/pkg-plist index 45a642eb2857..50bd6818b5d3 100644 --- a/chinese/fcitx/pkg-plist +++ b/chinese/fcitx/pkg-plist @@ -1,6 +1,7 @@ bin/createPYMB bin/fcitx bin/fcitx-configtool +bin/fcitx-dbus-watcher bin/fcitx-remote bin/fcitx-skin-installer bin/fcitx4-config @@ -13,11 +14,12 @@ bin/txt2mb include/fcitx-config/fcitx-config.h include/fcitx-config/hotkey.h include/fcitx-config/xdg.h -include/fcitx-gclient/fcitxkbd.h include/fcitx-gclient/fcitxclient.h include/fcitx-gclient/fcitxinputmethod.h -include/fcitx-utils/keysymgen.h +include/fcitx-gclient/fcitxkbd.h +include/fcitx-utils/bitset.h include/fcitx-utils/keysym.h +include/fcitx-utils/keysymgen.h include/fcitx-utils/log.h include/fcitx-utils/memory.h include/fcitx-utils/utarray.h @@ -42,6 +44,7 @@ include/fcitx/module/ipc/ipc.h include/fcitx/module/pinyin/pydef.h include/fcitx/module/punc/punc.h include/fcitx/module/quickphrase/quickphrase.h +include/fcitx/module/spell/spell.h include/fcitx/module/x11/x11stuff.h include/fcitx/profile.h include/fcitx/ui.h @@ -50,15 +53,17 @@ lib/fcitx/fcitx-chttrans.so lib/fcitx/fcitx-classic-ui.so lib/fcitx/fcitx-dbus.so lib/fcitx/fcitx-fullwidth-char.so -lib/fcitx/fcitx-keyboard.so lib/fcitx/fcitx-imselector.so lib/fcitx/fcitx-ipc.so +lib/fcitx/fcitx-keyboard.so lib/fcitx/fcitx-kimpanel-ui.so +lib/fcitx/fcitx-pinyin-enhance.so lib/fcitx/fcitx-pinyin.so lib/fcitx/fcitx-punc.so lib/fcitx/fcitx-quickphrase.so lib/fcitx/fcitx-qw.so lib/fcitx/fcitx-remote-module.so +lib/fcitx/fcitx-spell.so lib/fcitx/fcitx-table.so lib/fcitx/fcitx-unicode.so lib/fcitx/fcitx-vk.so @@ -99,10 +104,10 @@ share/applications/fcitx.desktop share/cmake/fcitx/FcitxConfig.cmake share/cmake/fcitx/FcitxConfigVersion.cmake share/cmake/fcitx/FcitxMacro.cmake +share/cmake/fcitx/getdescpo %%PORTDOCS%%%%DOCSDIR%%/API.txt %%PORTDOCS%%%%DOCSDIR%%/Develop_Readme %%PORTDOCS%%%%DOCSDIR%%/cjkvinput.txt -%%PORTDOCS%%%%DOCSDIR%%/disable-table.conf.template %%PORTDOCS%%%%DOCSDIR%%/pinyin.txt %%PORTDOCS%%%%DOCSDIR%%/wb_fh.htm %%DATADIR%%/addon/fcitx-autoeng.conf @@ -114,11 +119,13 @@ share/cmake/fcitx/FcitxMacro.cmake %%DATADIR%%/addon/fcitx-ipc.conf %%DATADIR%%/addon/fcitx-keyboard.conf %%DATADIR%%/addon/fcitx-kimpanel-ui.conf +%%DATADIR%%/addon/fcitx-pinyin-enhance.conf %%DATADIR%%/addon/fcitx-pinyin.conf %%DATADIR%%/addon/fcitx-punc.conf %%DATADIR%%/addon/fcitx-quickphrase.conf %%DATADIR%%/addon/fcitx-qw.conf %%DATADIR%%/addon/fcitx-remote-module.conf +%%DATADIR%%/addon/fcitx-spell.conf %%DATADIR%%/addon/fcitx-table.conf %%DATADIR%%/addon/fcitx-unicode.conf %%DATADIR%%/addon/fcitx-vk.conf @@ -128,12 +135,15 @@ share/cmake/fcitx/FcitxMacro.cmake %%DATADIR%%/addon/fcitx-xkbdbus.conf %%DATADIR%%/configdesc/addon.desc %%DATADIR%%/configdesc/config.desc +%%DATADIR%%/configdesc/fcitx-autoeng.desc %%DATADIR%%/configdesc/fcitx-chttrans.desc %%DATADIR%%/configdesc/fcitx-classic-ui.desc %%DATADIR%%/configdesc/fcitx-imselector.desc %%DATADIR%%/configdesc/fcitx-keyboard.desc +%%DATADIR%%/configdesc/fcitx-pinyin-enhance.desc %%DATADIR%%/configdesc/fcitx-pinyin.desc %%DATADIR%%/configdesc/fcitx-quickphrase.desc +%%DATADIR%%/configdesc/fcitx-spell.desc %%DATADIR%%/configdesc/fcitx-table.desc %%DATADIR%%/configdesc/fcitx-unicode.desc %%DATADIR%%/configdesc/fcitx-xim.desc @@ -144,18 +154,20 @@ share/cmake/fcitx/FcitxMacro.cmake %%DATADIR%%/configdesc/table.desc %%DATADIR%%/data/AutoEng.dat %%DATADIR%%/data/charselectdata +%%DATADIR%%/data/en_dict.fscd %%DATADIR%%/data/gbks2t.tab %%DATADIR%%/data/punc.mb.zh_CN %%DATADIR%%/data/punc.mb.zh_HK %%DATADIR%%/data/punc.mb.zh_TW %%DATADIR%%/data/vk.conf -%%DATADIR%%/imicon/wbpy.png -%%DATADIR%%/imicon/ziranma.png +%%DATADIR%%/dbus/daemon.conf +%%DATADIR%%/imicon/cangjie.png %%DATADIR%%/imicon/erbi.png -%%DATADIR%%/imicon/wubi.png -%%DATADIR%%/imicon/shuangpin.png %%DATADIR%%/imicon/pinyin.png -%%DATADIR%%/imicon/cangjie.png +%%DATADIR%%/imicon/shuangpin.png +%%DATADIR%%/imicon/wbpy.png +%%DATADIR%%/imicon/wubi.png +%%DATADIR%%/imicon/ziranma.png %%DATADIR%%/inputmethod/pinyin.conf %%DATADIR%%/inputmethod/qw.conf %%DATADIR%%/inputmethod/shuangpin.conf @@ -358,6 +370,7 @@ share/mime/packages/x-fskin.xml @dirrm %%DATADIR%%/pinyin @dirrm %%DATADIR%%/inputmethod @dirrm %%DATADIR%%/imicon +@dirrm %%DATADIR%%/dbus @dirrm %%DATADIR%%/data @dirrm %%DATADIR%%/configdesc @dirrm %%DATADIR%%/addon @@ -366,16 +379,17 @@ share/mime/packages/x-fskin.xml @dirrm share/cmake/fcitx @dirrm lib/fcitx @dirrm include/fcitx/module/x11 +@dirrm include/fcitx/module/spell @dirrm include/fcitx/module/quickphrase @dirrm include/fcitx/module/punc @dirrm include/fcitx/module/pinyin @dirrm include/fcitx/module/ipc -@dirrm include/fcitx-gclient @dirrm include/fcitx/module/dbus @dirrm include/fcitx/module/classicui @dirrm include/fcitx/module/chttrans @dirrm include/fcitx/module @dirrm include/fcitx-utils +@dirrm include/fcitx-gclient @dirrm include/fcitx-config @dirrm include/fcitx @dirrmtry lib/girepository-1.0 |