source: x/lib/cairo.xml@ fb0fc4e

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 6.3 6.3-rc1 6.3-rc2 6.3-rc3 7.10 7.4 7.5 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 fb0fc4e was fb0fc4e, checked in by Randy McMurchy <randy@…>, 19 years ago

Added the creation of an xrender.pc file for XFree users in the cairo instructions

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

  • Property mode set to 100644
File size: 5.5 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
3 "http://www.oasis-open.org/docbook/xml/4.4/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.gz">
8 <!ENTITY cairo-download-ftp "ftp://ftp.fu-berlin.de/unix/linux/mirrors/gentoo/distfiles/cairo-&cairo-version;.tar.gz">
9 <!ENTITY cairo-md5sum "f0ff35c91983b7bf226154e68b280be3">
10 <!ENTITY cairo-size "1.4 MB">
11 <!ENTITY cairo-buildsize "29.4 MB">
12 <!ENTITY cairo-time "0.4 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><application>cairo</application> is a 2D graphics library with
33 support for multiple output devices. Currently supported output targets
34 include the <application>X</application> Window System, win32, and image
35 buffers. Experimental backends include OpenGL (through glitz), Quartz,
36 XCB, PostScript and PDF file output. cairo is designed to produce
37 consistent output on all output media while taking advantage of display
38 hardware acceleration when available (e.g., through the X Render
39 Extension). The <application>cairo</application> API provides operations
40 similar to the drawing operators of PostScript and PDF. Operations in
41 <application>cairo</application> include stroking and filling cubic
42 Bézier splines, transforming and compositing translucent images, and
43 antialiased text rendering. All drawing operations can be transformed by
44 any affine transformation (scale, rotation, shear, etc.).</para>
45
46 <bridgehead renderas="sect3">Package Information</bridgehead>
47 <itemizedlist spacing="compact">
48 <listitem>
49 <para>Download (HTTP): <ulink url="&cairo-download-http;"/></para>
50 </listitem>
51 <listitem>
52 <para>Download (FTP): <ulink url="&cairo-download-ftp;"/></para>
53 </listitem>
54 <listitem>
55 <para>Download MD5 sum: &cairo-md5sum;</para>
56 </listitem>
57 <listitem>
58 <para>Download size: &cairo-size;</para>
59 </listitem>
60 <listitem>
61 <para>Estimated disk space required: &cairo-buildsize;</para>
62 </listitem>
63 <listitem>
64 <para>Estimated build time: &cairo-time;</para>
65 </listitem>
66 </itemizedlist>
67
68 <bridgehead renderas="sect3">cairo Dependencies</bridgehead>
69
70 <bridgehead renderas="sect4">Required</bridgehead>
71 <para>X (<xref linkend="xorg"/> or <xref linkend="xfree86"/>)</para>
72
73 <bridgehead renderas="sect4">Optional</bridgehead>
74 <para><ulink url="http://www.freedesktop.org/Software/glitz">glitz</ulink>,
75 <ulink url="http://xcb.freedesktop.org/wiki/">XCB</ulink> and
76 <xref linkend="gtk-doc"/></para>
77
78 </sect2>
79
80 <sect2 role="installation">
81 <title>Installation of cairo</title>
82
83 <note>
84 <para><application>XFree86</application> installs the
85 <application>X Render</application> extension library during the package
86 installation, but does not install an <filename>xrender.pc</filename>
87 file. Cairo will look for this file during configuration. Satisfy the
88 need for this file by creating one using the following command as the
89 <systemitem class="username">root</systemitem> user (not required if you
90 have <application>Xorg</application> installed):</para>
91
92<screen role="root"><userinput>cat &gt; /usr/X11R6/lib/pkgconfig/xrender.pc &lt;&lt; "EOF"
93<literal>prefix=/usr/X11R6
94exec_prefix=${prefix}
95libdir=${exec_prefix}/lib
96includedir=${prefix}/include
97
98Name: Xrender
99Description: X Render Library
100Version: 0.8.3
101Cflags: -I${includedir} -I/usr/X11R6/include
102Libs: -L${libdir} -lXrender -L/usr/X11R6/lib -lX11</literal>
103EOF</userinput></screen>
104
105 </note>
106
107 <para>Install <application>cairo</application> by running the following
108 commands:</para>
109
110<screen><userinput>./configure --prefix=/usr &amp;&amp;
111make</userinput></screen>
112
113 <para>To test the results, issue: <command>make check</command>.</para>
114
115 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
116
117<screen role="root"><userinput>make install</userinput></screen>
118
119 </sect2>
120
121 <sect2 role="content">
122 <title>Contents</title>
123
124 <segmentedlist>
125 <segtitle>Installed Programs</segtitle>
126 <segtitle>Installed Libraries</segtitle>
127 <segtitle>Installed Directories</segtitle>
128
129 <seglistitem>
130 <seg>None</seg>
131 <seg>libcairo.[so,a]</seg>
132 <seg>/usr/include/cairo and /usr/share/gtk-doc/html/cairo</seg>
133 </seglistitem>
134 </segmentedlist>
135
136 <variablelist>
137 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
138 <?dbfo list-presentation="list"?>
139 <?dbhtml list-presentation="table"?>
140
141 <varlistentry id="libcairo">
142 <term><filename class='libraryfile'>libcairo.[so,a]</filename></term>
143 <listitem>
144 <para>contains the 2D graphics functions required for rendering to
145 the various output targets.</para>
146 <indexterm zone="cairo libcairo">
147 <primary sortas="c-libcairo">libcairo.[so,a]</primary>
148 </indexterm>
149 </listitem>
150 </varlistentry>
151
152 </variablelist>
153
154 </sect2>
155
156</sect1>
Note: See TracBrowser for help on using the repository browser.