source: x/lib/clutter-systemd.xml@ d8ada13

systemd-11177
Last change on this file since d8ada13 was d8ada13, checked in by Krejzi <krejzi@…>, 10 years ago

Enable wayland support in cogl, clutter and gtk+3.

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

  • Property mode set to 100644
File size: 6.9 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 clutter-download-http "&gnome-download-http;/clutter/1.18/clutter-&clutter-version;.tar.xz">
8 <!ENTITY clutter-download-ftp "&gnome-download-ftp;/clutter/1.18/clutter-&clutter-version;.tar.xz">
9 <!ENTITY clutter-md5sum "471f5ea423e20d4140c7771873daef29">
10 <!ENTITY clutter-size "5.0 MB">
11 <!ENTITY clutter-buildsize "85 MB (additional 7 MB for docs creation and 13 MB for tests)">
12 <!ENTITY clutter-time "0.8 SBU (additional 2.1 SBU for docs creation and 0.5 SBU for tests)">
13]>
14
15<sect1 id="clutter" xreflabel="Clutter-&clutter-version;">
16 <?dbhtml filename="clutter.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>Clutter-&clutter-version;</title>
24
25 <indexterm zone="clutter">
26 <primary sortas="a-Clutter">Clutter</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to Clutter</title>
31
32 <para>
33 The <application>Clutter</application> package contains an open
34 source software library used for creating fast, visually rich
35 and animated graphical user interfaces.
36 </para>
37
38 &lfs75_checked;
39
40 <note>
41 <para>
42 Anything built with this toolkit needs hardware 3D acceleration from
43 the graphics driver at runtime. This is provided by
44 <application>MesaLib</application> (or by proprietary graphics drivers),
45 but is not available for every graphics card nor for all virtual
46 machines. You may wish to review <xref linkend="checking-dri"/>.
47 </para>
48 </note>
49
50 <bridgehead renderas="sect3">Package Information</bridgehead>
51 <itemizedlist spacing="compact">
52 <listitem>
53 <para>
54 Download (HTTP): <ulink url="&clutter-download-http;"/>
55 </para>
56 </listitem>
57 <listitem>
58 <para>
59 Download (FTP): <ulink url="&clutter-download-ftp;"/>
60 </para>
61 </listitem>
62 <listitem>
63 <para>
64 Download MD5 sum: &clutter-md5sum;
65 </para>
66 </listitem>
67 <listitem>
68 <para>
69 Download size: &clutter-size;
70 </para>
71 </listitem>
72 <listitem>
73 <para>
74 Estimated disk space required: &clutter-buildsize;
75 </para>
76 </listitem>
77 <listitem>
78 <para>
79 Estimated build time: &clutter-time;
80 </para>
81 </listitem>
82 </itemizedlist>
83
84 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
85 <itemizedlist spacing="compact">
86 <listitem>
87 <para>
88 Required patch:
89 <ulink url="&patch-root;/clutter-&clutter-version;-libinput_fixes-1.patch"/>
90 </para>
91 </listitem>
92 </itemizedlist>
93
94 <bridgehead renderas="sect3">Clutter Dependencies</bridgehead>
95
96 <bridgehead renderas="sect4">Required</bridgehead>
97 <para role="required">
98 <xref linkend="atk"/>,
99 <xref linkend="cogl"/>, and
100 <xref linkend="json-glib"/>
101 </para>
102
103 <bridgehead renderas="sect4">Recommended</bridgehead>
104 <para role="recommended">
105 <xref linkend="gobject-introspection"/>,
106 <xref linkend="libinput"/>,
107 <xref linkend="libxkbcommon"/>,
108 <xref linkend="systemd"/> (for GUdev), and
109 <xref linkend="wayland"/>
110 </para>
111
112 <bridgehead renderas="sect4">Optional</bridgehead>
113 <para role="optional">
114 <xref linkend="gtk-doc"/> and
115 <ulink url="http://tslib.berlios.de/">Tslib</ulink>
116 </para>
117
118 <para condition="html" role="usernotes">User Notes:
119 <ulink url="&blfs-wiki;/clutter"/>
120 </para>
121 </sect2>
122
123 <sect2 role="installation">
124 <title>Installation of Clutter</title>
125
126 <para>
127 If you wish to run the tests, the following commands disables two tests
128 that fail.
129 </para>
130
131<screen><userinput>sed -i '/actor-offscreen-redirect/d' \
132 tests/conform/Makefile.am tests/conform/Makefile.in &amp;&amp;
133autoreconf -f -i</userinput></screen>
134
135 <para>
136 Install <application>Clutter</application> by running the following
137 commands:
138 </para>
139
140<screen><userinput>patch -Np1 -i ../clutter-&clutter-version;-libinput_fixes-1.patch &amp;&amp;
141./configure --prefix=/usr \
142 --sysconfdir=/etc \
143 --enable-egl-backend \
144 --enable-evdev-input \
145 --enable-wayland-backend \
146 --enable-wayland-compositor &amp;&amp;
147make</userinput></screen>
148
149 <para>
150 To test the results, issue: <command>make check</command> (you must be
151 in an xterm or similar to do this, because it launches some windows).
152 </para>
153
154 <para>
155 Now, as the <systemitem class="username">root</systemitem> user:
156 </para>
157
158<screen role="root"><userinput>make install</userinput></screen>
159
160 </sect2>
161
162 <sect2 role="commands">
163 <title>Command Explanations</title>
164
165 <para>
166 <parameter>--enable-egl-backend</parameter>: This switch enables
167 the experimental EGL windowing backend which is required for
168 <application>GNOME</application> Wayland support.
169 </para>
170
171 <para>
172 <parameter>--enable-evdev-input</parameter>: This switch enables
173 the experimental Evdev input backend which is required for
174 <application>GNOME</application> Wayland support.
175 </para>
176
177 <para>
178 <parameter>--enable-wayland-*</parameter>: These switches enable
179 experimental <application>Wayland</application> API in
180 <application>Clutter</application> which is required for
181 <application>GNOME</application> Wayland support.
182 </para>
183
184 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
185 href="../../xincludes/gtk-doc-rebuild.xml"/>
186
187 </sect2>
188
189 <sect2 role="content">
190 <title>Contents</title>
191
192 <segmentedlist>
193 <segtitle>Installed Programs</segtitle>
194 <segtitle>Installed Library</segtitle>
195 <segtitle>Installed Directories</segtitle>
196
197 <seglistitem>
198 <seg>
199 None
200 </seg>
201 <seg>
202 libclutter-1.0.so and libclutter-glx-1.0.so
203 </seg>
204 <seg>
205 /usr/include/clutter-1.0 and
206 /usr/share/gtk-doc/html/{cally,clutter}
207 </seg>
208 </seglistitem>
209 </segmentedlist>
210
211 <variablelist>
212 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
213 <?dbfo list-presentation="list"?>
214 <?dbhtml list-presentation="table"?>
215
216 <varlistentry id="libclutter-1">
217 <term><filename class="libraryfile">libclutter-1.0.so</filename></term>
218 <listitem>
219 <para>
220 contains the <application>Clutter</application> API functions.
221 </para>
222 <indexterm zone="clutter libclutter-1">
223 <primary sortas="c-libclutter-1">libclutter-1.0.so</primary>
224 </indexterm>
225 </listitem>
226 </varlistentry>
227
228 </variablelist>
229
230 </sect2>
231
232</sect1>
Note: See TracBrowser for help on using the repository browser.