all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: tumashu <tumashu@163.com>
To: guix <guix-devel@gnu.org>
Subject: A question about im-config
Date: Sun, 22 Jan 2017 08:57:49 +0800 (CST)	[thread overview]
Message-ID: <79e91191.7f7.159c3ade0c8.Coremail.tumashu@163.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 2347 bytes --]

Im-config (https://anonscm.debian.org/cgit/collab-maint/im-config.git) is a shell script which
used to manager input method by debian, I want to package it to guixsd, but many problem I faced:

1.  How to deal with "/usr/bin/XXX" in schell script, for example: /usr/bin/fcitx, /usr/bin/ibux ....
2.  How to deal with "
/usr/lib/*/qt5/plugins/platforminputcontexts/libfcitxplatforminputcontextplugin.
"



----------------------------------------------------------------

# start fcitx
# vim: set sts=4 expandtab:

if [ "$IM_CONFIG_PHASE" = 2 ]; then
# start fcitx daemon
/usr/bin/fcitx &
fi

if [ "$IM_CONFIG_PHASE" = 1 ]; then
# set variables for the plain XIM
XMODIFIERS=@im=fcitx

GTK_IM_MODULE=xim
# use immodule only when available for both GTK 2.0 and 3.0
IM_CONFIG_MARKER2=0
for IM_CONFIG_MARKER in /usr/lib/*/gtk-2.0/*/immodules/im-fcitx.so \
                        /usr/lib/gtk-2.0/*/immodules/im-fcitx.so ; do
    if [ -e $IM_CONFIG_MARKER ]; then
        IM_CONFIG_MARKER2=1
        break
    fi
done

IM_CONFIG_MARKER3=0
for IM_CONFIG_MARKER in /usr/lib/*/gtk-3.0/*/immodules/im-fcitx.so \
                        /usr/lib/gtk-3.0/*/immodules/im-fcitx.so ; do
    if [ -e $IM_CONFIG_MARKER ]; then
        IM_CONFIG_MARKER3=1
        break
    fi
done
if [ $IM_CONFIG_MARKER2 = 1 ] && [ $IM_CONFIG_MARKER3 = 1 ] ; then
    GTK_IM_MODULE=fcitx
fi

QT4_IM_MODULE=xim
# use immodule when available for Qt4
for IM_CONFIG_MARKER in /usr/lib/*/qt4/plugins/inputmethods/qtim-fcitx.so \
                        /usr/lib/qt4/plugins/inputmethods/qtim-fcitx.so ; do
    if [ -e $IM_CONFIG_MARKER ]; then
        QT4_IM_MODULE=fcitx
        break
    fi
done

QT_IM_MODULE=xim
# use immodule when available for Qt5
for IM_CONFIG_MARKER in /usr/lib/*/qt5/plugins/platforminputcontexts/libfcitxplatforminputcontextplugin.so ; do
    if [ -e $IM_CONFIG_MARKER ]; then
        QT_IM_MODULE=fcitx
        break
    fi
done


# This is placeholder at this moment.
CLUTTER_IM_MODULE=xim
# use immodule when available for clutter
for IM_CONFIG_MARKER in /usr/lib/*/clutter-imcontext/immodules/im-fcitx.so \
                        /usr/lib/clutter-imcontext/immodules/im-fcitx.so; do
    if [ -e $IM_CONFIG_MARKER ]; then
        CLUTTER_IM_MODULE=fcitx
        break
    fi
done
fi



------------------------------------------------------------------

[-- Attachment #2: Type: text/html, Size: 2587 bytes --]

             reply	other threads:[~2017-01-22  0:58 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-01-22  0:57 tumashu [this message]
2017-01-22  1:15 ` A question about im-config Danny Milosavljevic
2017-01-22  2:39   ` tumashu
2017-01-22  8:06     ` Integrating different input methods into Guix Danny Milosavljevic
2017-01-22 23:57       ` tumashu
2017-01-23  0:32         ` Integrating " Danny Milosavljevic
2017-01-23  6:38           ` tumashu
2017-01-26  8:02       ` Chris Marusich

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=79e91191.7f7.159c3ade0c8.Coremail.tumashu@163.com \
    --to=tumashu@163.com \
    --cc=guix-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.