source: x/lib/clutter-systemd.xml@ 65336f2

systemd-13485
Last change on this file since 65336f2 was 656e4130, checked in by Christopher Gregory <cjg@…>, 10 years ago

Forgot to remove unrequired patch from clutter page.

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

  • Property mode set to 100644
File size: 6.1 KB
RevLine 
[ec889cf3]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
[87848c28]7 <!ENTITY clutter-download-http "&gnome-download-http;/clutter/1.20/clutter-&clutter-version;.tar.xz">
8 <!ENTITY clutter-download-ftp "&gnome-download-ftp;/clutter/1.20/clutter-&clutter-version;.tar.xz">
9 <!ENTITY clutter-md5sum "a8a33a57a944c6d7c7c013ce9aa3222b">
[1b387d2]10 <!ENTITY clutter-size "5.0 MB">
[87848c28]11 <!ENTITY clutter-buildsize "82.8 MB">
12 <!ENTITY clutter-time "4.2 SBU">
[ec889cf3]13]>
14
[cd68ead6]15<sect1 id="clutter" xreflabel="Clutter-&clutter-version;">
[ec889cf3]16 <?dbhtml filename="clutter.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
[cd68ead6]23 <title>Clutter-&clutter-version;</title>
[ec889cf3]24
25 <indexterm zone="clutter">
[983fc68]26 <primary sortas="a-Clutter">Clutter</primary>
[ec889cf3]27 </indexterm>
28
29 <sect2 role="package">
[cd68ead6]30 <title>Introduction to Clutter</title>
[ec889cf3]31
[3ee626e]32 <para>
[983fc68]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.
[2001b3e]36 </para>
37
[6e78ab5]38 &lfs76_checked;
[625d5fe5]39
[3ee626e]40 <note>
41 <para>
[0d7900a]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),
[983fc68]45 but is not available for every graphics card nor for all virtual
46 machines. You may wish to review <xref linkend="checking-dri"/>.
[3ee626e]47 </para>
48 </note>
[a33e01ac]49
[ec889cf3]50 <bridgehead renderas="sect3">Package Information</bridgehead>
51 <itemizedlist spacing="compact">
52 <listitem>
[3ee626e]53 <para>
54 Download (HTTP): <ulink url="&clutter-download-http;"/>
55 </para>
[ec889cf3]56 </listitem>
57 <listitem>
[3ee626e]58 <para>
59 Download (FTP): <ulink url="&clutter-download-ftp;"/>
60 </para>
[ec889cf3]61 </listitem>
62 <listitem>
[3ee626e]63 <para>
64 Download MD5 sum: &clutter-md5sum;
65 </para>
[ec889cf3]66 </listitem>
67 <listitem>
[3ee626e]68 <para>
69 Download size: &clutter-size;
70 </para>
[ec889cf3]71 </listitem>
72 <listitem>
[3ee626e]73 <para>
74 Estimated disk space required: &clutter-buildsize;
75 </para>
[ec889cf3]76 </listitem>
77 <listitem>
[3ee626e]78 <para>
79 Estimated build time: &clutter-time;
80 </para>
[ec889cf3]81 </listitem>
82 </itemizedlist>
83
[8692448]84
[cd68ead6]85 <bridgehead renderas="sect3">Clutter Dependencies</bridgehead>
[ec889cf3]86
87 <bridgehead renderas="sect4">Required</bridgehead>
[cd68ead6]88 <para role="required">
89 <xref linkend="atk"/>,
[773db87]90 <xref linkend="cogl"/>, and
[cd68ead6]91 <xref linkend="json-glib"/>
92 </para>
93
94 <bridgehead renderas="sect4">Recommended</bridgehead>
95 <para role="recommended">
[8692448]96 <xref linkend="gobject-introspection"/>,
97 <xref linkend="libinput"/>,
98 <xref linkend="libxkbcommon"/>,
99 <xref linkend="systemd"/> (for GUdev), and
100 <xref linkend="wayland"/>
[cd68ead6]101 </para>
[ec889cf3]102
103 <bridgehead renderas="sect4">Optional</bridgehead>
[cd68ead6]104 <para role="optional">
[8692448]105 <xref linkend="gtk-doc"/> and
106 <ulink url="http://tslib.berlios.de/">Tslib</ulink>
[cd68ead6]107 </para>
[ec889cf3]108
109 <para condition="html" role="usernotes">User Notes:
[694c7a8]110 <ulink url="&blfs-wiki;/clutter"/>
111 </para>
[ec889cf3]112 </sect2>
113
114 <sect2 role="installation">
[983fc68]115 <title>Installation of Clutter</title>
[ec889cf3]116
[3ee626e]117 <para>
[983fc68]118 Install <application>Clutter</application> by running the following
[3ee626e]119 commands:
120 </para>
[ec889cf3]121
[656e4130]122<screen><userinput>./configure --prefix=/usr \
[8692448]123 --sysconfdir=/etc \
124 --enable-egl-backend \
125 --enable-evdev-input \
126 --enable-wayland-backend \
127 --enable-wayland-compositor &amp;&amp;
[ec889cf3]128make</userinput></screen>
129
[3ee626e]130 <para>
[850f9aa]131 To test the results, issue: <command>make check</command> from an
132 X terminal emulator.
[3ee626e]133 </para>
[ec889cf3]134
[3ee626e]135 <para>
136 Now, as the <systemitem class="username">root</systemitem> user:
137 </para>
[ec889cf3]138
139<screen role="root"><userinput>make install</userinput></screen>
140
141 </sect2>
142
143 <sect2 role="commands">
144 <title>Command Explanations</title>
145
[3ee626e]146 <para>
[7ea83d7]147 <parameter>--enable-egl-backend</parameter>: This switch enables
[8692448]148 the experimental EGL windowing backend which is required for
149 <application>GNOME</application> Wayland support.
150 </para>
151
152 <para>
153 <parameter>--enable-evdev-input</parameter>: This switch enables
154 the experimental Evdev input backend which is required for
155 <application>GNOME</application> Wayland support.
156 </para>
157
158 <para>
159 <parameter>--enable-wayland-*</parameter>: These switches enable
160 experimental <application>Wayland</application> API in
161 <application>Clutter</application> which is required for
162 <application>GNOME</application> Wayland support.
[3ee626e]163 </para>
[ec889cf3]164
[e05cd03f]165 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[3ee626e]166 href="../../xincludes/gtk-doc-rebuild.xml"/>
[ec889cf3]167
168 </sect2>
169
170 <sect2 role="content">
171 <title>Contents</title>
172
173 <segmentedlist>
[7ea83d7]174 <segtitle>Installed Programs</segtitle>
[850f9aa]175 <segtitle>Installed Libraries</segtitle>
[ec889cf3]176 <segtitle>Installed Directories</segtitle>
177
178 <seglistitem>
[7ea83d7]179 <seg>
180 None
181 </seg>
[cd68ead6]182 <seg>
[0fed30eb]183 libclutter-1.0.so and libclutter-glx-1.0.so
[cd68ead6]184 </seg>
185 <seg>
[7ea83d7]186 /usr/include/clutter-1.0 and
187 /usr/share/gtk-doc/html/{cally,clutter}
[cd68ead6]188 </seg>
[ec889cf3]189 </seglistitem>
190 </segmentedlist>
191
192 <variablelist>
193 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
194 <?dbfo list-presentation="list"?>
195 <?dbhtml list-presentation="table"?>
196
[983fc68]197 <varlistentry id="libclutter-1">
198 <term><filename class="libraryfile">libclutter-1.0.so</filename></term>
[ec889cf3]199 <listitem>
[3ee626e]200 <para>
201 contains the <application>Clutter</application> API functions.
202 </para>
[983fc68]203 <indexterm zone="clutter libclutter-1">
204 <primary sortas="c-libclutter-1">libclutter-1.0.so</primary>
[ec889cf3]205 </indexterm>
206 </listitem>
207 </varlistentry>
208
209 </variablelist>
210
211 </sect2>
212
213</sect1>
Note: See TracBrowser for help on using the repository browser.