source: x/lib/cairo.xml@ 9d4de3fb

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 9d4de3fb was 9d4de3fb, checked in by Fernando de Oliveira <fernando@…>, 10 years ago

Fixes to Inkscape-0.48.4, Cairo-1.12.16, Poppler-0.26.0 and Ruby-2.1.1. Thanks Igor Z and Armin K.

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

  • Property mode set to 100644
File size: 8.2 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 cairo-download-http "http://cairographics.org/releases/cairo-&cairo-version;.tar.xz">
8 <!ENTITY cairo-download-ftp " ">
9 <!ENTITY cairo-md5sum "a1304edcdc99282f478b995ee5f8f854">
10 <!ENTITY cairo-size "35 MB">
11 <!ENTITY cairo-buildsize "158 MB">
12 <!ENTITY cairo-time "1.0 SBU">
13]>
14
15<sect1 id="cairo" xreflabel="Cairo-&cairo-version;">
16 <?dbhtml filename="cairo.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>Cairo-&cairo-version;</title>
24
25 <indexterm zone="cairo">
26 <primary sortas="a-Cairo">Cairo</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to Cairo</title>
31
32 <para>
33 <application>Cairo</application> is a 2D graphics library with support for
34 multiple output devices. Currently supported output targets include the
35 <application>X</application> Window System, win32, image buffers,
36 PostScript, PDF and SVG. Experimental backends include OpenGL, Quartz and
37 XCB file output. <application>Cairo</application> is designed to produce
38 consistent output on all output media while taking advantage of display
39 hardware acceleration when available (e.g., through the X Render
40 Extension). The <application>Cairo</application> API provides operations
41 similar to the drawing operators of PostScript and PDF. Operations in
42 <application>Cairo</application> include stroking and filling cubic
43 B&eacute;zier splines, transforming and compositing translucent images,
44 and antialiased text rendering. All drawing operations can be transformed
45 by any
46 <ulink url="http://en.wikipedia.org/wiki/Affine_transformation">affine
47 transformation</ulink> (scale, rotation, shear, etc.).
48 </para>
49
50 &lfs75_checked;
51
52 <bridgehead renderas="sect3">Package Information</bridgehead>
53 <itemizedlist spacing="compact">
54 <listitem>
55 <para>
56 Download (HTTP): <ulink url="&cairo-download-http;"/>
57 </para>
58 </listitem>
59 <listitem>
60 <para>
61 Download (FTP): <ulink url="&cairo-download-ftp;"/>
62 </para>
63 </listitem>
64 <listitem>
65 <para>
66 Download MD5 sum: &cairo-md5sum;
67 </para>
68 </listitem>
69 <listitem>
70 <para>
71 Download size: &cairo-size;
72 </para>
73 </listitem>
74 <listitem>
75 <para>
76 Estimated disk space required: &cairo-buildsize;
77 </para>
78 </listitem>
79 <listitem>
80 <para>
81 Estimated build time: &cairo-time;
82 </para>
83 </listitem>
84 </itemizedlist>
85
86 <bridgehead renderas="sect3">Cairo Dependencies</bridgehead>
87
88 <bridgehead renderas="sect4">Required</bridgehead>
89 <para role="required">
90 <xref linkend="libpng"/>,
91 <xref linkend="glib2"/> and
92 <xref linkend="pixman"/>
93 </para>
94
95 <bridgehead renderas="sect4">Recommended</bridgehead>
96 <para role="recommended">
97 <xref linkend="fontconfig"/> and
98 <xref linkend="xorg7-lib"/>
99 </para>
100
101 <bridgehead renderas="sect4">Optional</bridgehead>
102 <para role="optional">
103 <xref linkend="cogl"/>,
104 <ulink url="http://www.directfb.org/">DirectFB</ulink>,
105 <xref linkend="gtk-doc"/>,
106 <xref linkend="libdrm"/>,
107 <xref linkend="LZO"/>,
108 <xref linkend="mesalib"/>,
109 <xref linkend="qt4"/>,
110 <ulink url="http://code.google.com/p/skia/">Skia</ulink>, and
111 <xref linkend="valgrind"/>
112 </para>
113
114 <para condition="html" role="usernotes">
115 User Notes: <ulink url="&blfs-wiki;/cairo"/>
116 </para>
117 </sect2>
118
119 <sect2 role="installation">
120 <title>Installation of Cairo</title>
121
122 <para>
123 Install <application>Cairo</application> by running the following
124 commands:
125 </para>
126
127<screen><userinput>CFLAGS="$CFLAGS -ffat-lto-objects" \
128./configure --prefix=/usr --disable-static &amp;&amp;
129make</userinput></screen>
130
131 <para>
132 This package does not have a working testsuite.
133 </para>
134
135 <para>
136 Now, as the <systemitem class="username">root</systemitem> user:
137 </para>
138
139<screen role="root"><userinput>make install</userinput></screen>
140 </sect2>
141
142 <sect2 role="commands">
143 <title>Command Explanations</title>
144
145 <para>
146 <command>CFLAGS="$CFLAGS -ffat-lto-objects"</command>: Fixes building
147 with GCC 4.9.
148 </para>
149
150 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
151 href="../../xincludes/static-libraries.xml"/>
152
153 <para>
154 <option>--enable-xlib-xcb</option>: This switch enables experimental
155 Xlib/XCB functions used by some window managers.
156 </para>
157
158 <para>
159 <option>--enable-gl</option>: This switch enables
160 <application>Cairo</application>'s experimental
161 <application>OpenGL</application> surface which
162 is required for <application>Wayland</application>
163 compositor and some other packages that are not
164 part of BLFS.
165 </para>
166
167 <para>
168 <option>--enable-tee</option>: This switch enables experimental tee
169 surface backend which is required if using system-installed
170 <application>Cairo</application> with Mozilla applications.
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 cairo-sphinx and cairo-trace
189 </seg>
190 <seg>
191 libcairo.so, libcairo-gobject.so and
192 libcairo-script-interpreter.so
193 </seg>
194 <seg>
195 /usr/include/cairo,
196 /usr/lib/cairo and
197 /usr/share/gtk-doc/html/cairo
198 </seg>
199 </seglistitem>
200 </segmentedlist>
201
202 <variablelist>
203 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
204 <?dbfo list-presentation="list"?>
205 <?dbhtml list-presentation="table"?>
206
207 <varlistentry id="cairo-trace">
208 <term><command>cairo-trace</command></term>
209 <listitem>
210 <para>
211 generates a log of all calls made by an application to
212 <application>Cairo</application>.
213 </para>
214 <indexterm zone="cairo cairo-trace">
215 <primary sortas="b-cairo-trace">cairo-trace</primary>
216 </indexterm>
217 </listitem>
218 </varlistentry>
219
220 <varlistentry id="libcairo">
221 <term><filename class="libraryfile">libcairo.so</filename></term>
222 <listitem>
223 <para>
224 contains the 2D graphics functions required for rendering to the
225 various output targets.
226 </para>
227 <indexterm zone="cairo libcairo">
228 <primary sortas="c-libcairo">libcairo.so</primary>
229 </indexterm>
230 </listitem>
231 </varlistentry>
232
233 <varlistentry id="libcairo-gobject">
234 <term><filename class="libraryfile">libcairo-gobject.so</filename></term>
235 <listitem>
236 <para>
237 contains functions that integrate
238 <application>Cairo</application> with <xref linkend="glib2"/>'s
239 GObject type system.
240 </para>
241 <indexterm zone="cairo libcairo-gobject">
242 <primary sortas="c-libcairo-gobject">libcairo-gobject.so</primary>
243 </indexterm>
244 </listitem>
245 </varlistentry>
246
247 <varlistentry id="libcairo-script-interpreter">
248 <term><filename class="libraryfile">libcairo-script-interpreter.so</filename></term>
249 <listitem>
250 <para>
251 contains the script interpreter functions for executing and
252 manipulating <application>Cairo</application> execution traces.
253 </para>
254 <indexterm zone="cairo libcairo-script-interpreter">
255 <primary sortas="c-libcairo-script-interpreter">libcairo-script-interpreter.so</primary>
256 </indexterm>
257 </listitem>
258 </varlistentry>
259
260 </variablelist>
261
262 </sect2>
263
264</sect1>
Note: See TracBrowser for help on using the repository browser.