mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
22c58a5a70
- performance improvements by async dictionaries - add dictionary gui tool (mozc_tool --mode=dictionary_tool) - add config gui tool (mozc_tool --mode=config_dialog) - add kana input mode - separate server process from uni-binary - etc etc FreeBSD specific change: - add some scripts to control mozc_server and mozc_tool mozc_server_start (start mozc_server w/o lockfile issue) mozc_server_stop (stop mozc_server w/olockfile issue) mozc_server_restart (restart mozc_server w/o lockfile issue) mozc_tool_config (as mozc_tool --mode=dictionary_tool) mozc_tool_dictionaly (as mozc_tool --mode=config_dialog) Notice - You should start mozc_server by mozc_server_start command before ibus-daemon starts bacause to prevent mozc_server lockfile issue. Read pkg-message file well.
39 lines
1.1 KiB
Plaintext
39 lines
1.1 KiB
Plaintext
ibus-mozc installation finished. To use ibus-mozc, please do the following:
|
|
|
|
If you are using bash or zsh, please add following lines to your $HOME/.bashrc or
|
|
$HOME/.zshrc:
|
|
|
|
mozc_server_start
|
|
export XIM=ibus
|
|
export GTK_IM_MODULE=ibus
|
|
export QT_IM_MODULE=xim
|
|
export XMODIFIERS=@im=ibus
|
|
export XIM_PROGRAM="ibus-daemon"
|
|
export XIM_ARGS="-r --daemonize --xim"
|
|
|
|
If you are using tcsh, please add following lines to your $HOME/.cshrc:
|
|
|
|
mozc_server_start
|
|
setenv XIM ibus
|
|
setenv GTK_IM_MODULE ibus
|
|
setenv QT_IM_MODULE xim
|
|
setenv XMODIFIERS @im=ibus
|
|
setenv XIM_PROGRAM ibus-daemon
|
|
setenv XIM_ARGS "-r --daemonize --xim"
|
|
|
|
If you are using KDE4, you may create a shell script in $HOME/.kde4/env,
|
|
and add following lines:
|
|
|
|
#!/bin/sh
|
|
mozc_server_start
|
|
export XIM=ibus
|
|
export GTK_IM_MODULE=ibus
|
|
export QT_IM_MODULE=xim
|
|
export XMODIFIERS=@im=ibus
|
|
export XIM_PROGRAM="ibus-daemon"
|
|
export XIM_ARGS="-r --daemonize --xim"
|
|
|
|
If ibus cannot start or the panel does not appear, please ensure
|
|
that you are using up-to-date python.
|
|
There's a bug in python 2.5, which may prevent the panel from appearing.
|