Index: head/chinese/fcitx/pkg-message =================================================================== --- head/chinese/fcitx/pkg-message (revision 298282) +++ head/chinese/fcitx/pkg-message (nonexistent) @@ -1,18 +0,0 @@ -************************************************************************ - -Remember to set environment variable XMODIFIERS: - - csh/tcsh: setenv XMODIFIERS @im=fcitx - sh/bash: export XMODIFIERS='@im=fcitx' - -Additionally, for GTK/Qt programs, you must also set: - - csh/tcsh: setenv GTK_IM_MODULE xim - setenv QT_IM_MODULE xim - sh/bash: export GTK_IM_MODULE=xim - export QT_IM_MODULE=xim - -You can replace the `xim` above with `fcitx` if you built fcitx with -the corresponding IM module. - -************************************************************************ Property changes on: head/chinese/fcitx/pkg-message ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.8 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/chinese/fcitx/Makefile =================================================================== --- head/chinese/fcitx/Makefile (revision 298282) +++ head/chinese/fcitx/Makefile (revision 298283) @@ -1,99 +1,121 @@ # New ports collection makefile for: Free Chinese Input Toy for X # Date created: 26 March 2003 # Whom: Shen Chuan-Hsing # # $FreeBSD$ # PORTNAME= fcitx PORTVERSION= 4.2.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= chinese x11 MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} DISTFILES= ${DISTNAME}${EXTRACT_SUFX} pinyin.tar.gz table.tar.gz DIST_SUBDIR= ${PORTNAME} EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} MAINTAINER= lichray@gmail.com COMMENT= A Flexible Input Method Framework LICENSE= GPLv2 LIB_DEPENDS= execinfo.1:${PORTSDIR}/devel/libexecinfo \ dbus-1.3:${PORTSDIR}/devel/dbus RUN_DEPENDS= xdg-open:${PORTSDIR}/devel/xdg-utils -MAN1= createPYMB.1 fcitx-remote.1 fcitx.1 mb2org.1 mb2txt.1 \ - readPYBase.1 readPYMB.1 scel2org.1 txt2mb.1 +MAN1= createPYMB.1 fcitx-remote.1 fcitx.1 mb2org.1 mb2txt.1 \ + readPYBase.1 readPYMB.1 scel2org.1 txt2mb.1 +SUB_FILES= pkg-message +SUB_LIST+= PORTSDIR=${PORTSDIR} -USE_XZ= yes +USE_XZ= yes USE_GNOME= pango intltool gnomehack USE_GETTEXT= yes USE_XORG= x11 xext USE_LDCONFIG= yes USE_CMAKE= yes INSTALLS_ICONS= yes -OPTIONS= GTK2 "Enable Gtk2 IM module" off \ - GTK3 "Enable Gtk3 IM module" off \ - QT4 "Enable Qt4 IM module" off \ - OPENCC "Enable OpenCC for Chinese Transform" off \ - TPUNC "Use traditional quotation marks" off +OPTIONS_DEFINE= GTK2 GTK3 QT4 OPENCC TPUNC +GTK2_DESC= "Enable Gtk2 IM module" +GTK3_DESC= "Enable Gtk3 IM module" +QT4_DESC= "Enable Qt4 IM module" +OPENCC_DESC= "Enable OpenCC for Chinese Transform" +TPUNC_DESC= "Use traditional quotation marks" + .include -.if defined(WITH_GTK2) +.if ${PORT_OPTIONS:MGTK2} USE_GNOME+= gtk20 +PLIST_SUB+= GTK2="" +SUB_LIST+= GTK2_IM=fcitx .else CMAKE_ARGS+= -DENABLE_GTK2_IM_MODULE=OFF +PLIST_SUB+= GTK2="@comment " +SUB_LIST+= GTK2_IM=xim .endif -.if defined(WITH_GTK3) +.if ${PORT_OPTIONS:MGTK3} USE_GNOME+= gtk30 CMAKE_ARGS+= -DENABLE_GTK3_IM_MODULE=ON +PLIST_SUB+= GTK3="" +SUB_LIST+= GTK3_IM=fcitx +.else +PLIST_SUB+= GTK3="@comment " +SUB_LIST+= GTK3_IM=xim .endif -.if defined(WITH_QT4) +.if ${PORT_OPTIONS:MQT4} USE_QT= yes USE_QT_VER= 4 QT_COMPONENTS= gui CMAKE_ARGS+= -DENABLE_QT_IM_MODULE=ON +PLIST_SUB+= QT4="" +.else +PLIST_SUB+= QT4="@comment " .endif -.if defined(WITH_OPENCC) +.if ${PORT_OPTIONS:MOPENCC} LIB_DEPENDS+= opencc.1:${PORTSDIR}/chinese/opencc .else CMAKE_ARGS+= -DENABLE_OPENCC=OFF .endif -.if defined(WITH_TPUNC) +.if ${PORT_OPTIONS:MTPUNC} EXTRA_PATCHES+= ${FILESDIR}/tpunc-data_punc.mb.zh_CN .endif .if defined(WITH_DEBUG) CMAKE_ARGS+= -DENABLE_DEBUG=ON .endif .if defined(NOPORTDOCS) EXTRA_PATCHES+= ${FILESDIR}/nodocs-doc_CMakeLists.txt .endif .if defined(NOPORTDATA) IGNORE= code tables are required, undefine NOPORTDATA .endif post-patch: @${CP} ${_DISTDIR}/pinyin.tar.gz ${WRKSRC}/data @${CP} ${_DISTDIR}/table.tar.gz ${WRKSRC}/data/table .if ${OSVERSION} < 800067 # getline() is GNU extension which FreeBSD only recently adopted EXTRA_PATCHES+= ${FILESDIR}/getline-src_lib_fcitx-utils_utils.c \ ${FILESDIR}/getline-src_lib_fcitx-utils_utils.h .endif post-install: +.if ${PORT_OPTIONS:MGTK2} + -gtk-query-immodules-2.0 > ${LOCALBASE}/etc/gtk-2.0/gtk.immodules +.endif +.if ${PORT_OPTIONS:MGTK3} + -gtk-query-immodules-3.0 > ${LOCALBASE}/lib/gtk-3.0/${GTK3_VERSION}/immodules.cache +.endif @${ECHO_CMD} @${CAT} ${PKGMESSAGE} @${ECHO_CMD} .include Property changes on: head/chinese/fcitx/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.44 \ No newline at end of property +1.45 \ No newline at end of property Index: head/chinese/fcitx/files/pkg-message.in =================================================================== --- head/chinese/fcitx/files/pkg-message.in (nonexistent) +++ head/chinese/fcitx/files/pkg-message.in (revision 298283) @@ -0,0 +1,29 @@ +************************************************************************ + +Remember to set the environment variable XMODIFIERS: + + csh/tcsh: setenv XMODIFIERS @im=fcitx + sh/bash: export XMODIFIERS='@im=fcitx' + +For GTK+ programs, you may want to set: + + csh/tcsh: setenv GTK_IM_MODULE %%GTK2_IM%% + setenv GTK3_IM_MODULE %%GTK3_IM%% + sh/bash: export GTK_IM_MODULE=%%GTK2_IM%% + export GTK3_IM_MODULE=%%GTK3_IM%% + +For Qt4 programs, we recommend you to use + + qtconfig-qt4: %%PORTSDIR%%/misc/qt4-qtconfig + +instead of to manually set QT4_IM_MODULE. + +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. + +************************************************************************ Property changes on: head/chinese/fcitx/files/pkg-message.in ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/chinese/fcitx/pkg-plist =================================================================== --- head/chinese/fcitx/pkg-plist (revision 298282) +++ head/chinese/fcitx/pkg-plist (revision 298283) @@ -1,333 +1,342 @@ bin/createPYMB bin/fcitx bin/fcitx-configtool bin/fcitx-remote bin/fcitx-skin-installer bin/fcitx4-config bin/mb2org bin/mb2txt bin/readPYBase bin/readPYMB bin/scel2org bin/txt2mb include/fcitx-config/fcitx-config.h include/fcitx-config/hotkey.h include/fcitx-config/xdg.h include/fcitx-utils/log.h include/fcitx-utils/memory.h include/fcitx-utils/utarray.h include/fcitx-utils/utf8.h include/fcitx-utils/uthash.h include/fcitx-utils/utils.h include/fcitx/addon.h include/fcitx/candidate.h include/fcitx/configfile.h include/fcitx/context.h include/fcitx/fcitx.h include/fcitx/frontend.h include/fcitx/hook.h include/fcitx/ime.h include/fcitx/instance.h include/fcitx/keys.h include/fcitx/module.h include/fcitx/module/chttrans/chttrans.h include/fcitx/module/classicui/classicuiinterface.h include/fcitx/module/dbus/dbusstuff.h include/fcitx/module/ipc/ipc.h include/fcitx/module/pinyin/pydef.h include/fcitx/module/punc/punc.h include/fcitx/module/x11/x11stuff.h include/fcitx/profile.h include/fcitx/ui.h lib/fcitx/fcitx-autoeng.so 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-ipc.so lib/fcitx/fcitx-kimpanel-ui.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-table.so lib/fcitx/fcitx-vk.so lib/fcitx/fcitx-x11.so lib/fcitx/fcitx-xim.so lib/libfcitx-config.so lib/libfcitx-config.so.4 lib/libfcitx-config.so.4.1 lib/libfcitx-core.so lib/libfcitx-core.so.0 lib/libfcitx-core.so.0.3 lib/libfcitx-utils.so lib/libfcitx-utils.so.0 lib/libfcitx-utils.so.0.1 +%%GTK2%%lib/gtk-2.0/%%GTK2_VERSION%%/immodules/im-fcitx.so +%%GTK2%%@exec gtk-query-immodules-2.0 > %%LOCALBASE%%/etc/gtk-2.0/gtk.immodules +%%GTK2%%@unexec gtk-query-immodules-2.0 > %%LOCALBASE%%/etc/gtk-2.0/gtk.immodules +%%GTK3%%lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-fcitx.so +%%GTK3%%@exec gtk-query-immodules-3.0 > %%LOCALBASE%%/lib/gtk-3.0/%%GTK3_VERSION%%/immodules.cache +%%GTK3%%@unexec gtk-query-immodules-3.0 > %%LOCALBASE%%/lib/gtk-3.0/%%GTK3_VERSION%%/immodules.cache +%%QT4%%lib/qt4/plugins/inputmethods/qtim-fcitx.so +%%QT4%%@dirrmtry lib/qt4/plugins/inputmethods +%%QT4%%@dirrmtry lib/qt4/plugins libdata/pkgconfig/fcitx-config.pc libdata/pkgconfig/fcitx-utils.pc libdata/pkgconfig/fcitx.pc share/applications/fcitx-configtool.desktop share/applications/fcitx-skin-installer.desktop share/applications/fcitx.desktop share/cmake/fcitx/FcitxConfig.cmake share/cmake/fcitx/FcitxConfigVersion.cmake share/cmake/fcitx/FcitxMacro.cmake %%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 %%DATADIR%%/addon/fcitx-chttrans.conf %%DATADIR%%/addon/fcitx-classic-ui.conf %%DATADIR%%/addon/fcitx-dbus.conf %%DATADIR%%/addon/fcitx-fullwidth-char.conf %%DATADIR%%/addon/fcitx-ipc.conf %%DATADIR%%/addon/fcitx-kimpanel-ui.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-table.conf %%DATADIR%%/addon/fcitx-vk.conf %%DATADIR%%/addon/fcitx-x11.conf %%DATADIR%%/addon/fcitx-xim.conf %%DATADIR%%/configdesc/addon.desc %%DATADIR%%/configdesc/config.desc %%DATADIR%%/configdesc/fcitx-chttrans.desc %%DATADIR%%/configdesc/fcitx-classic-ui.desc %%DATADIR%%/configdesc/fcitx-pinyin.desc %%DATADIR%%/configdesc/fcitx-quickphrase.desc %%DATADIR%%/configdesc/fcitx-xim.desc %%DATADIR%%/configdesc/inputmethod.desc %%DATADIR%%/configdesc/profile.desc %%DATADIR%%/configdesc/skin.desc %%DATADIR%%/configdesc/table.desc %%DATADIR%%/data/AutoEng.dat %%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%%/inputmethod/pinyin.conf %%DATADIR%%/inputmethod/qw.conf %%DATADIR%%/inputmethod/shuangpin.conf %%DATADIR%%/pinyin/pySym.mb %%DATADIR%%/pinyin/pybase.mb %%DATADIR%%/pinyin/pyphrase.mb %%DATADIR%%/pinyin/sp.dat %%DATADIR%%/skin/classic/active.png %%DATADIR%%/skin/classic/bar.png %%DATADIR%%/skin/classic/bingchan.png %%DATADIR%%/skin/classic/cangjie.png %%DATADIR%%/skin/classic/chttrans_active.png %%DATADIR%%/skin/classic/chttrans_inactive.png %%DATADIR%%/skin/classic/cn.png %%DATADIR%%/skin/classic/dianbaoma.png %%DATADIR%%/skin/classic/en.png %%DATADIR%%/skin/classic/erbi.png %%DATADIR%%/skin/classic/fcitx_skin.conf %%DATADIR%%/skin/classic/fullwidth_active.png %%DATADIR%%/skin/classic/fullwidth_inactive.png %%DATADIR%%/skin/classic/inactive.png %%DATADIR%%/skin/classic/input.png %%DATADIR%%/skin/classic/kbd.png %%DATADIR%%/skin/classic/logo.png %%DATADIR%%/skin/classic/menu.png %%DATADIR%%/skin/classic/next.png %%DATADIR%%/skin/classic/pinyin.png %%DATADIR%%/skin/classic/prev.png %%DATADIR%%/skin/classic/punc_active.png %%DATADIR%%/skin/classic/punc_inactive.png %%DATADIR%%/skin/classic/quwei.png %%DATADIR%%/skin/classic/remind_active.png %%DATADIR%%/skin/classic/remind_inactive.png %%DATADIR%%/skin/classic/shuangpin.png %%DATADIR%%/skin/classic/vk_active.png %%DATADIR%%/skin/classic/vk_inactive.png %%DATADIR%%/skin/classic/wanfeng.png %%DATADIR%%/skin/classic/wbpy.png %%DATADIR%%/skin/classic/wubi.png %%DATADIR%%/skin/classic/ziranma.png %%DATADIR%%/skin/dark/active.png %%DATADIR%%/skin/dark/bar.png %%DATADIR%%/skin/dark/bingchan.png %%DATADIR%%/skin/dark/cangjie.png %%DATADIR%%/skin/dark/chttrans_active.png %%DATADIR%%/skin/dark/chttrans_inactive.png %%DATADIR%%/skin/dark/cn.png %%DATADIR%%/skin/dark/dianbaoma.png %%DATADIR%%/skin/dark/en.png %%DATADIR%%/skin/dark/erbi.png %%DATADIR%%/skin/dark/fcitx_skin.conf %%DATADIR%%/skin/dark/fullwidth_active.png %%DATADIR%%/skin/dark/fullwidth_inactive.png %%DATADIR%%/skin/dark/inactive.png %%DATADIR%%/skin/dark/input.png %%DATADIR%%/skin/dark/kbd.png %%DATADIR%%/skin/dark/keyboard.png %%DATADIR%%/skin/dark/logo.png %%DATADIR%%/skin/dark/menu.png %%DATADIR%%/skin/dark/next.png %%DATADIR%%/skin/dark/pinyin.png %%DATADIR%%/skin/dark/prev.png %%DATADIR%%/skin/dark/punc_active.png %%DATADIR%%/skin/dark/punc_inactive.png %%DATADIR%%/skin/dark/quwei.png %%DATADIR%%/skin/dark/remind_active.png %%DATADIR%%/skin/dark/remind_inactive.png %%DATADIR%%/skin/dark/shuangpin.png %%DATADIR%%/skin/dark/vk_active.png %%DATADIR%%/skin/dark/vk_inactive.png %%DATADIR%%/skin/dark/wanfeng.png %%DATADIR%%/skin/dark/wbpy.png %%DATADIR%%/skin/dark/wubi.png %%DATADIR%%/skin/dark/ziranma.png %%DATADIR%%/skin/default/active.png %%DATADIR%%/skin/default/bar.png %%DATADIR%%/skin/default/bingchan.png %%DATADIR%%/skin/default/cangjie.png %%DATADIR%%/skin/default/chttrans_active.png %%DATADIR%%/skin/default/chttrans_inactive.png %%DATADIR%%/skin/default/cn.png %%DATADIR%%/skin/default/dianbaoma.png %%DATADIR%%/skin/default/en.png %%DATADIR%%/skin/default/erbi.png %%DATADIR%%/skin/default/fcitx_skin.conf %%DATADIR%%/skin/default/fullwidth_active.png %%DATADIR%%/skin/default/fullwidth_inactive.png %%DATADIR%%/skin/default/inactive.png %%DATADIR%%/skin/default/input.png %%DATADIR%%/skin/default/kbd.png %%DATADIR%%/skin/default/keyboard.png %%DATADIR%%/skin/default/logo.png %%DATADIR%%/skin/default/menu.png %%DATADIR%%/skin/default/next.png %%DATADIR%%/skin/default/pinyin.png %%DATADIR%%/skin/default/prev.png %%DATADIR%%/skin/default/punc_active.png %%DATADIR%%/skin/default/punc_inactive.png %%DATADIR%%/skin/default/quwei.png %%DATADIR%%/skin/default/remind_active.png %%DATADIR%%/skin/default/remind_inactive.png %%DATADIR%%/skin/default/shuangpin.png %%DATADIR%%/skin/default/vk_active.png %%DATADIR%%/skin/default/vk_inactive.png %%DATADIR%%/skin/default/wanfeng.png %%DATADIR%%/skin/default/wbpy.png %%DATADIR%%/skin/default/wubi.png %%DATADIR%%/skin/default/ziranma.png %%DATADIR%%/table/cangjie.conf %%DATADIR%%/table/cj.mb %%DATADIR%%/table/db.conf %%DATADIR%%/table/db.mb %%DATADIR%%/table/erbi.conf %%DATADIR%%/table/erbi.mb %%DATADIR%%/table/qxm.conf %%DATADIR%%/table/qxm.mb %%DATADIR%%/table/wanfeng.conf %%DATADIR%%/table/wanfeng.mb %%DATADIR%%/table/wbpy.conf %%DATADIR%%/table/wbpy.mb %%DATADIR%%/table/wbx.conf %%DATADIR%%/table/wbx.mb %%DATADIR%%/table/zrm.conf %%DATADIR%%/table/zrm.mb share/icons/gnome/scalable/status/fcitx-fullwidth-active.svg share/icons/gnome/scalable/status/fcitx-fullwidth-inactive.svg share/icons/gnome/scalable/status/fcitx-kbd.svg share/icons/gnome/scalable/status/fcitx-punc-active.svg share/icons/gnome/scalable/status/fcitx-punc-inactive.svg share/icons/gnome/scalable/status/fcitx-vk-active.svg share/icons/gnome/scalable/status/fcitx-vk-inactive.svg share/icons/hicolor/128x128/apps/fcitx.png share/icons/hicolor/16x16/apps/fcitx.png share/icons/hicolor/16x16/status/fcitx-fullwidth-active.png share/icons/hicolor/16x16/status/fcitx-fullwidth-inactive.png share/icons/hicolor/16x16/status/fcitx-kbd.png share/icons/hicolor/16x16/status/fcitx-punc-active.png share/icons/hicolor/16x16/status/fcitx-punc-inactive.png share/icons/hicolor/16x16/status/fcitx-vk-active.png share/icons/hicolor/16x16/status/fcitx-vk-inactive.png share/icons/hicolor/22x22/apps/fcitx.png share/icons/hicolor/22x22/status/fcitx-fullwidth-active.png share/icons/hicolor/22x22/status/fcitx-fullwidth-inactive.png share/icons/hicolor/22x22/status/fcitx-kbd.png share/icons/hicolor/22x22/status/fcitx-punc-active.png share/icons/hicolor/22x22/status/fcitx-punc-inactive.png share/icons/hicolor/22x22/status/fcitx-vk-active.png share/icons/hicolor/22x22/status/fcitx-vk-inactive.png share/icons/hicolor/24x24/apps/fcitx.png share/icons/hicolor/24x24/status/fcitx-fullwidth-active.png share/icons/hicolor/24x24/status/fcitx-fullwidth-inactive.png share/icons/hicolor/24x24/status/fcitx-kbd.png share/icons/hicolor/24x24/status/fcitx-punc-active.png share/icons/hicolor/24x24/status/fcitx-punc-inactive.png share/icons/hicolor/24x24/status/fcitx-vk-active.png share/icons/hicolor/24x24/status/fcitx-vk-inactive.png share/icons/hicolor/32x32/apps/fcitx.png share/icons/hicolor/48x48/apps/fcitx.png share/icons/hicolor/48x48/status/fcitx-cangjie.png share/icons/hicolor/48x48/status/fcitx-chn.png share/icons/hicolor/48x48/status/fcitx-chttrans-active.png share/icons/hicolor/48x48/status/fcitx-chttrans-inactive.png share/icons/hicolor/48x48/status/fcitx-erbi.png share/icons/hicolor/48x48/status/fcitx-fullwidth-active.png share/icons/hicolor/48x48/status/fcitx-fullwidth-inactive.png share/icons/hicolor/48x48/status/fcitx-kbd.png share/icons/hicolor/48x48/status/fcitx-pinyin.png share/icons/hicolor/48x48/status/fcitx-punc-active.png share/icons/hicolor/48x48/status/fcitx-punc-inactive.png share/icons/hicolor/48x48/status/fcitx-remind-active.png share/icons/hicolor/48x48/status/fcitx-remind-inactive.png share/icons/hicolor/48x48/status/fcitx-shuangpin.png share/icons/hicolor/48x48/status/fcitx-vk-active.png share/icons/hicolor/48x48/status/fcitx-vk-inactive.png share/icons/hicolor/48x48/status/fcitx-wbpy.png share/icons/hicolor/48x48/status/fcitx-wubi.png share/icons/hicolor/48x48/status/fcitx-ziranma.png share/icons/hicolor/scalable/status/fcitx-fullwidth-active.svg share/icons/hicolor/scalable/status/fcitx-fullwidth-inactive.svg share/icons/hicolor/scalable/status/fcitx-kbd.svg share/icons/hicolor/scalable/status/fcitx-punc-active.svg share/icons/hicolor/scalable/status/fcitx-punc-inactive.svg share/icons/hicolor/scalable/status/fcitx-vk-active.svg share/icons/hicolor/scalable/status/fcitx-vk-inactive.svg share/locale/ja/LC_MESSAGES/fcitx.mo share/locale/zh_CN/LC_MESSAGES/fcitx.mo share/locale/zh_TW/LC_MESSAGES/fcitx.mo share/mime/packages/x-fskin.xml @dirrmtry share/applications @dirrmtry share/icons/gnome/scalable/status @dirrmtry share/icons/gnome/scalable @dirrmtry share/icons/gnome @dirrmtry share/icons/hicolor/scalable/status @dirrmtry share/icons/hicolor/scalable @dirrm %%DATADIR%%/table @dirrm %%DATADIR%%/skin/default @dirrm %%DATADIR%%/skin/dark @dirrm %%DATADIR%%/skin/classic @dirrm %%DATADIR%%/skin @dirrm %%DATADIR%%/pinyin @dirrm %%DATADIR%%/inputmethod @dirrm %%DATADIR%%/data @dirrm %%DATADIR%%/configdesc @dirrm %%DATADIR%%/addon @dirrm %%DATADIR%% %%PORTDOCS%%@dirrm %%DOCSDIR%% @dirrm share/cmake/fcitx @dirrm lib/fcitx @dirrm include/fcitx/module/x11 @dirrm include/fcitx/module/punc @dirrm include/fcitx/module/pinyin @dirrm include/fcitx/module/ipc @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-config @dirrm include/fcitx Property changes on: head/chinese/fcitx/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.20 \ No newline at end of property +1.21 \ No newline at end of property