source: x/lib/gtk+2.xml@ 080eb9bb

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt nosym perl-modules 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 080eb9bb was b64a9cf0, checked in by Bruce Dubbs <bdubbs@…>, 8 years ago

Tags
Revert exo to version 0.10.7

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

  • Property mode set to 100644
File size: 12.0 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 gtk2-download-http "&gnome-download-http;/gtk+/2.24/gtk+-&gtk2-version;.tar.xz">
8 <!ENTITY gtk2-download-ftp "&gnome-download-ftp;/gtk+/2.24/gtk+-&gtk2-version;.tar.xz">
9 <!ENTITY gtk2-md5sum "04568ba5c58b75e3c7543e45628ad789">
10 <!ENTITY gtk2-size "13 MB">
11 <!ENTITY gtk2-buildsize "368 MB">
12 <!ENTITY gtk2-time "2.7 SBU (plus 0.2 SBU for tests)">
13]>
14
15<sect1 id="gtk2" xreflabel="GTK+-&gtk2-version;">
16 <?dbhtml filename="gtk2.html" ?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>GTK+-&gtk2-version;</title>
24
25 <indexterm zone="gtk2">
26 <primary sortas="a-GTK+2">GTK+2</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to GTK+ 2</title>
31
32 <para>
33 The <application>GTK+ 2</application> package contains
34 libraries used for creating graphical user interfaces
35 for applications.
36 </para>
37
38 &lfs7a_checked;
39
40 <bridgehead renderas="sect3">Package Information</bridgehead>
41 <itemizedlist spacing="compact">
42 <listitem>
43 <para>
44 Download (HTTP): <ulink url="&gtk2-download-http;"/>
45 </para>
46 </listitem>
47 <listitem>
48 <para>
49 Download (FTP): <ulink url="&gtk2-download-ftp;"/>
50 </para>
51 </listitem>
52 <listitem>
53 <para>
54 Download MD5 sum: &gtk2-md5sum;
55 </para>
56 </listitem>
57 <listitem>
58 <para>
59 Download size: &gtk2-size;
60 </para>
61 </listitem>
62 <listitem>
63 <para>
64 Estimated disk space required: &gtk2-buildsize;
65 </para>
66 </listitem>
67 <listitem>
68 <para>
69 Estimated build time: &gtk2-time;
70 </para>
71 </listitem>
72 </itemizedlist>
73
74 <bridgehead renderas="sect3">GTK+ 2 Dependencies</bridgehead>
75
76 <bridgehead renderas="sect4">Required</bridgehead>
77 <para role="required">
78 <xref linkend="atk"/>,
79 <xref linkend="gdk-pixbuf"/> and
80 <xref linkend="pango"/>
81 </para>
82
83 <bridgehead renderas="sect4">Recommended</bridgehead>
84 <para role="recommended">
85 <xref linkend="hicolor-icon-theme"/>
86 </para>
87
88 <bridgehead renderas="sect4">Optional</bridgehead>
89 <para role="optional">
90 <xref linkend="cups"/>,
91 <xref linkend="docbook-utils"/>,
92 <xref linkend="gobject-introspection"/> and
93 <xref linkend="gtk-doc"/>
94 </para>
95
96 <note><para>If <xref linkend="gobject-introspection"/> was installed after
97 <xref linkend="atk"/>, <xref linkend="gdk-pixbuf"/>, and/or <xref
98 linkend="pango"/>, those packages will have to be rebuilt before this
99 package can be built. </para></note>
100
101 <para condition="html" role="usernotes">
102 User Notes: <ulink url="&blfs-wiki;/gtk+2"/>
103 </para>
104 </sect2>
105
106 <sect2 role="installation">
107 <title>Installation of GTK+ 2</title>
108
109 <para>
110 Install <application>GTK+ 2</application> by running the following
111 commands:
112 </para>
113
114<screen><userinput>sed -e 's#l \(gtk-.*\).sgml#&amp; -o \1#' \
115 -i docs/{faq,tutorial}/Makefile.in &amp;&amp;
116
117sed -i "/seems to be moved/s/^/#/" ltmain.sh &amp;&amp;
118
119./configure --prefix=/usr --sysconfdir=/etc &amp;&amp;
120
121make</userinput></screen>
122
123 <para>
124 To test the results, issue: <command>make check</command>. Note that you
125 must run the tests from a session with X Window Display capability (i.e.,
126 not a text-based terminal/console) as the tests attempt to open an X
127 window, and the tests can take an excessively long time. Using an X
128 Window, the tests should take less than 0.3 SBU.
129 </para>
130
131 <para>
132 Now, as the <systemitem class="username">root</systemitem> user:
133 </para>
134
135<screen role="root"><userinput>make install</userinput></screen>
136
137 <note>
138 <para>
139 If you installed the package on to your system using a
140 <quote>DESTDIR</quote> method, an important file was not installed and
141 must be copied and/or generated. Generate it using the following
142 command as the <systemitem class="username">root</systemitem> user:
143 </para>
144
145<screen role="root"><userinput>gtk-query-immodules-2.0 --update-cache</userinput></screen>
146 </note>
147
148 </sect2>
149
150 <sect2 role="commands">
151 <title>Command Explanations</title>
152
153 <para>
154 <command>sed -i ... ltmain.sh</command>: This sed silences several
155 useless and obsolete warnings generated from libtool.
156 </para>
157
158 <para>
159 <command>sed -i 's#l \(gtk-.*\).sgml#&amp; -o \1#'
160 docs/{faq,tutorial}/Makefile.in</command>: If you have
161 <xref linkend="docbook-utils"/> installed (specifically, if configure
162 finds <command>db2html</command>) then it will try to use it to rebuild
163 some of its HTML documentation and fail due to bugs in some of the
164 <filename>Makefile</filename>s. This <command>sed</command> fixes the
165 <filename>Makefile</filename>s.
166 </para>
167<!--
168 <para>
169 <command>sed -i -e 's#pltcheck.sh#$(NULL)#g' gtk/Makefile.in</command>:
170 This <command>sed</command> disables one test known to fail.
171 Not necessary, if not running the tests.
172 </para>-->
173
174 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
175 href="../../xincludes/gtk-doc-rebuild.xml"/>
176
177 </sect2>
178
179 <sect2 role="configuration">
180 <title>Configuring GTK+ 2</title>
181
182 <sect3 id="gtk2-config">
183 <title>Config Files</title>
184 <para>
185 <filename>~/.gtkrc-2.0</filename>,
186 <filename>/etc/gtk-2.0/gtkrc</filename>, and
187 <filename>/usr/share/gtk-2.0/gtkrc</filename>
188 </para>
189
190 <indexterm zone="gtk2 gtk2-config">
191 <primary sortas="e-AA.gtkrc-2.0">~/.gtkrc-2.0</primary>
192 </indexterm>
193
194 <indexterm zone="gtk2 gtk2-config">
195 <primary sortas="e-etc-gtk-2.0-gtkrc">/etc/gtk-2.0/gtkrc</primary>
196 </indexterm>
197
198 <indexterm zone="gtk2 gtk2-config">
199 <primary sortas="e-usr-share-gtk-2.0-gtkrc">/usr/share/gtk-2.0/gtkrc</primary>
200 </indexterm>
201 </sect3>
202
203 <sect3><title>Configuration Information</title>
204
205 <para>
206 <application>GTK+ 2</application> themes change the way a
207 <application>GTK+ 2</application> application looks. A
208 <application>GTK+ 2</application> icon theme can be used to change the
209 icons that appear on the application's toolbar. If you have installed a
210 <application>GTK+ 2</application> theme (such as <ulink
211 url="http://ftp.gnome.org/pub/gnome/sources/gnome-themes/2.32/">gnome-themes</ulink>)
212 <!--(requires <xref linkend="gtk-engines"/>)--> or a
213 <application>GTK+</application> icon theme (such as <xref
214 linkend="adwaita-icon-theme"/>) you can set your preferences in
215 <filename>~/.gtkrc-2.0</filename>:
216 </para>
217
218<screen><userinput>cat &gt; ~/.gtkrc-2.0 &lt;&lt; "EOF"
219include "/usr/share/themes/<replaceable>Glider</replaceable>/gtk-2.0/gtkrc"
220gtk-icon-theme-name = "<replaceable>hicolor</replaceable>"
221EOF</userinput></screen>
222
223 <para>
224 There are many more themes available at
225 <ulink url="http://gnome-look.org/">Gnome-Look.org</ulink> and other
226 places.
227 </para>
228
229 <para>
230 Once you've settled on themes you like, you can (as the
231 <systemitem class="username">root</systemitem> user) make them the
232 default system wide:
233 </para>
234
235<screen role="root"><userinput>cat &gt; /etc/gtk-2.0/gtkrc &lt;&lt; "EOF"
236include "/usr/share/themes/<replaceable>Clearlooks</replaceable>/gtk-2.0/gtkrc"
237gtk-icon-theme-name = "<replaceable>elementary</replaceable>"
238EOF</userinput></screen>
239
240 <para>
241 <xref linkend="lxappearance"/> is a <application>GTK+ 2</application>
242 application that can help you choose the themes you like.
243 </para>
244 </sect3>
245 </sect2>
246
247 <sect2 role="content">
248 <title>Contents</title>
249
250 <segmentedlist>
251 <segtitle>Installed Programs</segtitle>
252 <segtitle>Installed Libraries</segtitle>
253 <segtitle>Installed Directories</segtitle>
254
255 <seglistitem>
256 <seg>
257 gtk-builder-convert, gtk-demo, gtk-query-immodules-2.0, and
258 gtk-update-icon-cache
259 </seg>
260 <seg>
261 libgailutil.so, libgdk-x11-2.0.so, and libgtk-x11-2.0.so
262 </seg>
263 <seg>
264 /etc/gtk-2.0,
265 /usr/include/{gail-1.0,gtk-2.0,gtk-unix-print-2.0},
266 /usr/lib/gtk-2.0,
267 /usr/share/doc/gtk+-&gtk2-version;,
268 /usr/share/gtk-2.0,
269 /usr/share/gtk-doc/html/{gail-libgail-util,gdk2,gtk2}, and
270 /usr/share/themes/{Default,Emacs,Raleigh}
271 </seg>
272 </seglistitem>
273 </segmentedlist>
274
275 <variablelist>
276 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
277 <?dbfo list-presentation="list"?>
278 <?dbhtml list-presentation="table"?>
279
280 <varlistentry id="gtk-builder-convert">
281 <term><command>gtk-builder-convert</command></term>
282 <listitem>
283 <para>
284 converts glade files into XML files which can be loaded with
285 GtkBuilder.
286 </para>
287 <indexterm zone="gtk2 gtk-builder-convert">
288 <primary
289 sortas="b-gtk-builder-convert">gtk-builder-convert</primary>
290 </indexterm>
291 </listitem>
292 </varlistentry>
293
294 <varlistentry id="gtk-demo">
295 <term><command>gtk-demo</command></term>
296 <listitem>
297 <para>
298 demonstrates <application>GTK+ 2</application> functionality and
299 provides code for the examples.
300 </para>
301 <indexterm zone="gtk2 gtk-demo">
302 <primary
303 sortas="b-gtk-demo">gtk-demo</primary>
304 </indexterm>
305 </listitem>
306 </varlistentry>
307
308 <varlistentry id="gtk-query-immodules-2.0">
309 <term><command>gtk-query-immodules-2.0</command></term>
310 <listitem>
311 <para>
312 collects information about loadable input method modules for
313 <application>GTK+ 2</application> and writes it to standard output.
314 </para>
315 <indexterm zone="gtk2 gtk-query-immodules-2.0">
316 <primary
317 sortas="b-gtk-query-immodules-2.0">gtk-query-immodules-2.0</primary>
318 </indexterm>
319 </listitem>
320 </varlistentry>
321
322 <varlistentry id="gtk-update-icon-cache">
323 <term><command>gtk-update-icon-cache</command></term>
324 <listitem>
325 <para>
326 creates mmap()able cache files for icon themes. Starting with
327 <application>gtk+-2.24.24</application>, add the flag
328 <quote>--include-image-data</quote> to this command, if you wish
329 previous behavior, with image data in the cache.
330 </para>
331 <indexterm zone="gtk2 gtk-update-icon-cache">
332 <primary sortas="b-gtk-update-icon-cache">gtk-update-icon-cache</primary>
333 </indexterm>
334 </listitem>
335 </varlistentry>
336
337 <varlistentry id="libgdk-x11-2">
338 <term><filename class="libraryfile">libgdk-x11-2.0.so</filename></term>
339 <listitem>
340 <para>
341 contains functions that act as a wrapper around the low-level
342 drawing and windowing functions provided by the underlying graphics
343 system.
344 </para>
345 <indexterm zone="gtk2 libgdk-x11-2">
346 <primary sortas="c-libgdk-x11-2">libgdk-x11-2.0.so</primary>
347 </indexterm>
348 </listitem>
349 </varlistentry>
350
351 <varlistentry id="libgtk-x11-2">
352 <term><filename class="libraryfile">libgtk-x11-2.0.so</filename></term>
353 <listitem>
354 <para>
355 contains functions that provide an API to implement graphical user
356 interfaces.
357 </para>
358 <indexterm zone="gtk2 libgtk-x11-2">
359 <primary sortas="c-libgtk-x11-2">libgtk-x11-2.0.so</primary>
360 </indexterm>
361 </listitem>
362 </varlistentry>
363
364 </variablelist>
365
366 </sect2>
367
368</sect1>
Note: See TracBrowser for help on using the repository browser.