source: general/genutils/ibus.xml@ d7fcae6

11.0 11.1 11.2 11.3 12.0 12.1 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since d7fcae6 was b9c590d0, checked in by Xi Ruoyao <xry111@…>, 3 years ago

ibus: document test failures

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@24271 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 9.1 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY ibus-download-http "https://github.com/ibus/ibus/releases/download/&ibus-version;/ibus-&ibus-version;.tar.gz">
8 <!ENTITY ibus-download-ftp " ">
9 <!ENTITY ibus-md5sum "2e2cf49d449c532171b9d9698f934a01">
10 <!ENTITY ibus-size "3.4 MB">
11 <!ENTITY ibus-buildsize "75 MB (with tests)">
12 <!ENTITY ibus-time "0.9 SBU (Using parallelism=4; with tests)">
13
14 <!ENTITY ucd-download-http "https://www.unicode.org/Public/zipped/13.0.0/UCD.zip">
15]>
16
17<sect1 id="ibus" xreflabel="ibus-&ibus-version;">
18 <?dbhtml filename="ibus.html"?>
19
20 <sect1info>
21 <othername>$LastChangedBy$</othername>
22 <date>$Date$</date>
23 </sect1info>
24
25 <title>ibus-&ibus-version;</title>
26
27 <indexterm zone="ibus">
28 <primary sortas="a-ibus">ibus</primary>
29 </indexterm>
30
31 <sect2 role="package">
32 <title>Introduction to ibus</title>
33
34 <para>
35 <application>ibus</application> is an Intelligent Input Bus. It is a new
36 input framework for the Linux OS. It provides a fully featured and user
37 friendly input method user interface.
38 </para>
39
40 &lfs101_checked;
41
42 <bridgehead renderas="sect3">Package Information</bridgehead>
43 <itemizedlist spacing="compact">
44 <listitem>
45 <para>
46 Download (HTTP): <ulink url="&ibus-download-http;"/>
47 </para>
48 </listitem>
49 <listitem>
50 <para>
51 Download (FTP): <ulink url="&ibus-download-ftp;"/>
52 </para>
53 </listitem>
54 <listitem>
55 <para>
56 Download MD5 sum: &ibus-md5sum;
57 </para>
58 </listitem>
59 <listitem>
60 <para>
61 Download size: &ibus-size;
62 </para>
63 </listitem>
64 <listitem>
65 <para>
66 Estimated disk space required: &ibus-buildsize;
67 </para>
68 </listitem>
69 <listitem>
70 <para>
71 Estimated build time: &ibus-time;
72 </para>
73 </listitem>
74 </itemizedlist>
75
76 <bridgehead renderas="sect3">Optional Download</bridgehead>
77
78 <bridgehead renderas="sect4">Unicode Character Database</bridgehead>
79 <itemizedlist spacing="compact">
80 <listitem>
81 <para>
82 Download: <ulink url="&ucd-download-http;"> &ucd-download-http;</ulink>
83 (Unicode Character Database)
84 </para>
85 </listitem>
86 </itemizedlist>
87
88 <bridgehead renderas="sect3">ibus Dependencies</bridgehead>
89
90 <bridgehead renderas="sect4">Required</bridgehead>
91 <para role="required">
92 <xref linkend="dconf"/>,
93 <xref linkend="iso-codes"/>, and
94 <xref linkend="vala"/>
95 </para>
96
97 <bridgehead renderas="sect4">Recommended</bridgehead>
98 <para role="recommended">
99 <xref linkend="gobject-introspection"/>,
100 <xref linkend="gtk2"/>, and
101 <xref linkend="libnotify"/>
102 </para>
103
104 <bridgehead renderas="sect4">Optional</bridgehead>
105 <para role="optional">
106 <xref linkend="dbus-python"/> and
107 <xref linkend="pygobject3"/> (both to build the Python support library),
108 <xref linkend="gtk-doc"/>,
109 <xref linkend="pyxdg"/> (for the <command>ibus-setup</command>), and
110 <xref linkend="libxkbcommon"/>,
111 <xref linkend="wayland"/> (both to build the Wayland support programs), and
112 <ulink url="https://www.joypixels.com/">EmojiOne</ulink>
113 </para>
114
115 <para condition="html" role="usernotes">
116 User Notes: <ulink url="&blfs-wiki;/ibus"/>
117 </para>
118 </sect2>
119
120 <sect2 role="installation">
121 <title>Installation of ibus</title>
122
123 <para>
124 If the optional Unicode Character Database was downloaded, install it
125 now as the <systemitem class="username">root</systemitem> user:
126 </para>
127
128<screen role="root"><userinput>mkdir -p /usr/share/unicode/ucd &amp;&amp;
129unzip -uo ../UCD.zip -d /usr/share/unicode/ucd</userinput></screen>
130
131 <note>
132 <para>
133 Be sure to also remove the --disable-unicode-dict in
134 the configure step below.
135 </para>
136 </note>
137
138 <para>
139 Fix an issue with deprecated schema entries:</para>
140
141<screen><userinput>sed -i 's@/desktop/ibus@/org/freedesktop/ibus@g' \
142 data/dconf/org.freedesktop.ibus.gschema.xml</userinput></screen>
143
144 <para>
145 Install <application>ibus</application> by running the following
146 commands:
147 </para>
148
149<screen><userinput>./configure --prefix=/usr \
150 --sysconfdir=/etc \
151 --disable-unicode-dict \
152 --disable-emoji-dict &amp;&amp;
153rm -f tools/main.c &amp;&amp;
154make</userinput></screen>
155
156 <para>
157 To test the results, issue: <command>make -k check</command>.
158 The test named ibus-compose fails because it uses some locales
159 not installed in LFS. The test named ibus-keypress is known to fail
160 in Wayland based desktop environment.
161 </para>
162
163 <para>
164 Now, as the <systemitem class="username">root</systemitem> user:
165 </para>
166
167<screen role="root"><userinput>make install &amp;&amp;
168gzip -dfv /usr/share/man/man{{1,5}/ibus*.gz,5/00-upstream-settings.5.gz}</userinput></screen>
169
170 </sect2>
171
172 <sect2 role="commands">
173 <title>Command Explanations</title>
174
175 <para>
176 <parameter>--disable-emoji-dict</parameter>: This switch disables the
177 use of emoticon dictionaries. Omit if you installed the optional
178 package.
179 </para>
180
181 <para>
182 <parameter>--disable-unicode-dict</parameter>: This switch disables the use
183 of unicode dictionaries. Omit if you installed the optional
184 Unicode Character Database.
185 </para>
186
187 <para>
188 <command>rm -f tools/main.c</command>: This command removes a generated
189 file that was not removed when packaging.
190 </para>
191
192 <para>
193 <option>--disable-gtk2</option>: This switch disables building
194 the <application>GTK+ 2</application> immodule. Use it if
195 you have not installed <application>GTK+ 2</application>.
196 </para>
197
198 <para>
199 <option>--enable-python-library</option>: This switch enables
200 building the <application>Python</application> support
201 library. Use it if you have installed the optional dependencies.
202 </para>
203
204 <para>
205 <option>--enable-wayland</option>: This switch enables building
206 the <application>Wayland</application> support programs.
207 Use it if you have installed the optional dependencies.
208 </para>
209
210 <para>
211 <option>--with-python=python3</option>: This switch makes
212 the <command>configure</command> script look for
213 <application>Python 3</application>. Use it if you want
214 to build the <application>Python 3</application> support
215 library alongside the <application>Python 2</application>
216 one.
217 </para>
218
219 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
220 href="../../xincludes/gtk-doc-rebuild.xml"/>
221
222 <para>
223 <command>gzip -dfv ...</command>: Decompress installed man pages
224 in accordance with other man pages.
225 </para>
226
227 </sect2>
228
229 <sect2 role="content">
230 <title>Contents</title>
231
232 <segmentedlist>
233 <segtitle>Installed Programs</segtitle>
234 <segtitle>Installed Library</segtitle>
235 <segtitle>Installed Directories</segtitle>
236
237 <seglistitem>
238 <seg>
239 ibus,
240 ibus-daemon, and
241 ibus-setup
242 </seg>
243 <seg>
244 libibus-1.0.so and
245 im-ibus.so (<application>GTK+ Immodule</application>)
246 </seg>
247 <seg>
248 /etc/dconf/db/ibus.d,
249 /usr/include/ibus-1.0,
250 /usr/share/gtk-doc/html/ibus, and
251 /usr/share/ibus
252 </seg>
253 </seglistitem>
254 </segmentedlist>
255
256 <variablelist>
257 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
258 <?dbfo list-presentation="list"?>
259 <?dbhtml list-presentation="table"?>
260
261 <varlistentry id="ibus-daemon">
262 <term><command>ibus-daemon</command></term>
263 <listitem>
264 <para>
265 is the Intelligent Input Bus Daemon
266 </para>
267 <indexterm zone="ibus ibus-daemon">
268 <primary sortas="b-ibus-daemon">ibus-daemon</primary>
269 </indexterm>
270 </listitem>
271 </varlistentry>
272
273 <varlistentry id="ibus-setup">
274 <term><command>ibus-setup</command></term>
275 <listitem>
276 <para>
277 is the <application>GTK+</application> program used to configure
278 the <command>ibus-daemon</command>
279 </para>
280 <indexterm zone="ibus ibus-setup">
281 <primary sortas="b-ibus-setup">ibus-setup</primary>
282 </indexterm>
283 </listitem>
284 </varlistentry>
285
286 <varlistentry id="libibus-1.0">
287 <term><filename class="libraryfile">libibus-1.0.so</filename></term>
288 <listitem>
289 <para>
290 contains the <application>ibus</application> API functions
291 </para>
292 <indexterm zone="ibus libibus-1.0">
293 <primary sortas="c-libibus-1.0">libibus-1.0.so</primary>
294 </indexterm>
295 </listitem>
296 </varlistentry>
297
298 </variablelist>
299
300 </sect2>
301
302</sect1>
Note: See TracBrowser for help on using the repository browser.