source: x/lib/gdk-pixbuf.xml@ 22ff60a

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

Tags and typo fixes
Bump the version of systemd-units after DJ added the Samba AD service. Note that I am not 100% sure if I need to do anything else

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

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