source: x/lib/gdk-pixbuf.xml@ 8ee0429

systemd-13485
Last change on this file since 8ee0429 was 8ee0429, checked in by Douglas R. Reno <renodr@…>, 8 years ago

(systemd) LFS79 Tags
(systemd) Tons of GCC6 Tags

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/branches/systemd@17471 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 8.7 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 gdk-pixbuf-download-http
8 "&gnome-download-http;/gdk-pixbuf/2.34/gdk-pixbuf-&gdk-pixbuf-version;.tar.xz">
9 <!ENTITY gdk-pixbuf-download-ftp
10 "&gnome-download-ftp;/gdk-pixbuf/2.34/gdk-pixbuf-&gdk-pixbuf-version;.tar.xz">
11 <!ENTITY gdk-pixbuf-md5sum "63cb19f92cf7709ccf44bbb6fe1ff70c">
12 <!ENTITY gdk-pixbuf-size "2.6 MB">
13 <!ENTITY gdk-pixbuf-buildsize "40 MB (additional 2 MB for tests)">
14 <!ENTITY gdk-pixbuf-time "4.0 SBU (with tests)">
15]>
16
17<!--
18 Test Suite value seems to keep on increasing. This might be worth
19 investigating.-->
20
21<!--
22 Only 3.9SBU for me this time.
23-->
24
25<sect1 id="gdk-pixbuf" xreflabel="gdk-pixbuf-&gdk-pixbuf-version;">
26 <?dbhtml filename="gdk-pixbuf.html"?>
27
28 <sect1info>
29 <othername>$LastChangedBy$</othername>
30 <date>$Date$</date>
31 </sect1info>
32
33 <title>gdk-pixbuf-&gdk-pixbuf-version;</title>
34
35 <indexterm zone="gdk-pixbuf">
36 <primary sortas="a-gdk-pixbuf">gdk-pixbuf</primary>
37 </indexterm>
38
39 <sect2 role="package">
40 <title>Introduction to Gdk Pixbuf</title>
41
42 <para>
43 The <application>Gdk Pixbuf</application> package is a toolkit for image
44 loading and pixel buffer manipulation. It is used by
45 <application>GTK+ 2</application> and <application>GTK+ 3</application> to
46 load and manipulate images. In the past it was distributed as part of
47 <application>GTK+ 2</application> but it was split off into a separate
48 package in preparation for the change to <application>GTK+ 3</application>.
49 </para>
50
51 &lfs79_checked;&gcc6_checked;
52
53<!-- Note that I am very skeptical about tagging this. Munir and I both
54 have had memory allocation/leak issues with the tests. -->
55
56 <bridgehead renderas="sect3">Package Information</bridgehead>
57 <itemizedlist spacing="compact">
58 <listitem>
59 <para>
60 Download (HTTP): <ulink url="&gdk-pixbuf-download-http;"/>
61 </para>
62 </listitem>
63 <listitem>
64 <para>
65 Download (FTP): <ulink url="&gdk-pixbuf-download-ftp;"/>
66 </para>
67 </listitem>
68 <listitem>
69 <para>
70 Download MD5 sum: &gdk-pixbuf-md5sum;
71 </para>
72 </listitem>
73 <listitem>
74 <para>
75 Download size: &gdk-pixbuf-size;
76 </para>
77 </listitem>
78 <listitem>
79 <para>
80 Estimated disk space required: &gdk-pixbuf-buildsize;
81 </para>
82 </listitem>
83 <listitem>
84 <para>
85 Estimated build time: &gdk-pixbuf-time;
86 </para>
87 </listitem>
88 </itemizedlist>
89
90 <bridgehead renderas="sect3">Gdk Pixbuf Dependencies</bridgehead>
91
92 <bridgehead renderas="sect4">Required</bridgehead>
93 <para role="required">
94 <xref linkend="glib2"/>,
95 <xref linkend="libjpeg"/>,
96 <xref linkend="libpng"/> and
97 <xref linkend="libtiff"/>
98 </para>
99
100 <bridgehead renderas="sect4">Recommended</bridgehead>
101 <para role="recommended">
102 <xref linkend="xorg7-lib"/>
103 (<emphasis>Many</emphasis> <application>GTK+</application>
104 applications <emphasis>require</emphasis> gdk-pixbuf-xlib).
105 </para>
106
107 <bridgehead renderas="sect4">Optional (Required if building GNOME)</bridgehead>
108 <para role="optional">
109 <xref linkend="gobject-introspection"/>
110 </para>
111
112 <bridgehead renderas="sect4">Optional</bridgehead>
113 <para role="optional">
114 <xref linkend="jasper"/> and
115 <xref linkend="gtk-doc"/>
116 </para>
117
118 <para condition="html" role="usernotes">
119 User Notes: <ulink url="&blfs-wiki;/gdk-pixbuf"/>
120 </para>
121 </sect2>
122
123 <sect2 role="installation">
124 <title>Installation of Gdk Pixbuf</title>
125
126 <para>
127 Install <application>Gdk Pixbuf</application> by running the following
128 commands:
129 </para>
130
131<screen><userinput>./configure --prefix=/usr --with-x11 &amp;&amp;
132make</userinput></screen>
133
134 <para>
135 To test the results, issue: <command>make check</command>. Some tests
136 might fail for unknown reasons.
137 </para>
138
139 <para>
140 Now, as the <systemitem class="username">root</systemitem> user:
141 </para>
142
143<screen role="root"><userinput>make install</userinput></screen>
144
145 <note>
146 <para>
147 If you installed the package on to your system using a
148 <quote>DESTDIR</quote> method, an important file was not installed and
149 should be copied and/or generated. Generate it using the following
150 command as the <systemitem class="username">root</systemitem> user:
151 </para>
152
153<screen role="root"><userinput>gdk-pixbuf-query-loaders --update-cache</userinput></screen>
154 </note>
155 </sect2>
156
157 <sect2 role="commands">
158 <title>Command Explanations</title>
159
160 <para>
161 <parameter>--with-x11</parameter>: This switch enables building of the
162 <application>Gdk Pixbuf</application> <application>X11</application>
163 library which is needed for <emphasis>many</emphasis> packages.
164 </para>
165
166 <para>
167 <option>--with-libjasper</option>: If you've installed
168 <xref linkend="jasper"/> and you want
169 <application>Gdk Pixbuf</application> to use it to compile a
170 JPEG2000 image loader, pass this switch to configure.
171 </para>
172
173 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
174 href="../../xincludes/gtk-doc-rebuild.xml"/>
175
176 </sect2>
177
178 <sect2 role="content">
179 <title>Contents</title>
180
181 <segmentedlist>
182 <segtitle>Installed Programs</segtitle>
183 <segtitle>Installed Libraries</segtitle>
184 <segtitle>Installed Directories</segtitle>
185
186 <seglistitem>
187 <seg>
188 gdk-pixbuf-csource,
189 gdk-pixbuf-pixdata, and
190 gdk-pixbuf-query-loaders
191 </seg>
192 <seg>
193 libgdk_pixbuf-2.0.so and
194 libgdk_pixbuf_xlib-2.0.so
195 </seg>
196 <seg>
197 /usr/include/gdk-pixbuf-2.0,
198 /usr/lib/gdk-pixbuf-2.0, and
199 /usr/share/gtk-doc/html/gdk-pixbuf
200 </seg>
201 </seglistitem>
202 </segmentedlist>
203
204 <variablelist>
205 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
206 <?dbfo list-presentation="list"?>
207 <?dbhtml list-presentation="table"?>
208
209 <varlistentry id="gdk-pixbuf-csource">
210 <term><command>gdk-pixbuf-csource</command></term>
211 <listitem>
212 <para>
213 is a small utility that generates C code containing images, used
214 for compiling images directly into programs.
215 </para>
216 <indexterm zone="gdk-pixbuf gdk-pixbuf-csource">
217 <primary sortas="b-gdk-pixbuf-csource">gdk-pixbuf-csource</primary>
218 </indexterm>
219 </listitem>
220 </varlistentry>
221
222 <varlistentry id="gdk-pixbuf-pixdata">
223 <term><command>gdk-pixbuf-pixdata</command></term>
224 <listitem>
225 <para>
226 is a tool used to convert GdkPixbuf to GdkPixdata.
227 </para>
228 <indexterm zone="gdk-pixbuf gdk-pixbuf-pixdata">
229 <primary sortas="b-gdk-pixbuf-pixdata">gdk-pixbuf-pixdata</primary>
230 </indexterm>
231 </listitem>
232 </varlistentry>
233
234 <varlistentry id="gdk-pixbuf-query-loaders">
235 <term><command>gdk-pixbuf-query-loaders</command></term>
236 <listitem>
237 <para>
238 collects information about loadable modules for
239 <application>Gdk Pixbuf</application> and writes it
240 to the default cache file location, or to stdout.
241 </para>
242 <indexterm zone="gdk-pixbuf gdk-pixbuf-query-loaders">
243 <primary sortas="b-gdk-pixbuf-query-loaders">gdk-pixbuf-query-loaders</primary>
244 </indexterm>
245 </listitem>
246 </varlistentry>
247
248 <varlistentry id="libgdk_pixbuf-2">
249 <term><filename class="libraryfile">libgdk_pixbuf-2.0.so</filename></term>
250 <listitem>
251 <para>
252 contains functions used to load and render images.
253 </para>
254 <indexterm zone="gdk-pixbuf libgdk_pixbuf-2">
255 <primary sortas="c-libgdk_pixbuf-2">libgdk_pixbuf-2.0.so</primary>
256 </indexterm>
257 </listitem>
258 </varlistentry>
259
260 <varlistentry id="libgdk_pixbuf_xlib-2">
261 <term><filename class="libraryfile">libgdk_pixbuf_xlib-2.0.so</filename></term>
262 <listitem>
263 <para>
264 contains functions used to manipulate images and interfaces with
265 <application>Xlib</application>.
266 </para>
267 <indexterm zone="gdk-pixbuf libgdk_pixbuf_xlib-2">
268 <primary sortas="c-libgdk_pixbuf_xlib-2">libgdk_pixbuf_xlib-2.0.so</primary>
269 </indexterm>
270 </listitem>
271 </varlistentry>
272
273 </variablelist>
274
275 </sect2>
276
277</sect1>
Note: See TracBrowser for help on using the repository browser.