source: general/sysutils/colord.xml@ 91e382cd

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.6 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind 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 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 91e382cd was 91e382cd, checked in by Krejzi <krejzi@…>, 10 years ago

Fixes to colord.

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

  • Property mode set to 100644
File size: 9.7 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 colord-download-http
8 "http://www.freedesktop.org/software/colord/releases/colord-&colord-version;.tar.xz">
9 <!ENTITY colord-download-ftp " ">
10 <!ENTITY colord-md5sum "452e02b3a7cc3ae5b4fc9bef304a6902">
11 <!ENTITY colord-size "1.2 MB">
12 <!ENTITY colord-buildsize "31 MB (additional 3 MB to rebuild and install the API documentation, and 2 MB for the tests)">
13 <!ENTITY colord-time "0.5 SBU (additional 0.1 SBU for the tests)">
14]>
15
16<sect1 id="colord" xreflabel="Colord-&colord-version;">
17 <?dbhtml filename="colord.html"?>
18
19 <sect1info>
20 <othername>$LastChangedBy$</othername>
21 <date>$Date$</date>
22 </sect1info>
23
24 <title>Colord-&colord-version;</title>
25
26 <indexterm zone="colord">
27 <primary sortas="a-Colord">Colord</primary>
28 </indexterm>
29
30 <sect2 role="package">
31 <title>Introduction to Colord</title>
32
33 <para>
34 <application>Colord</application> is a system activated daemon that
35 maps devices to color profiles. It is used by
36 <application>GNOME Color Manager</application> for system integration
37 and use when there are no users logged in.
38 </para>
39
40 &lfs75_checked;
41
42 <bridgehead renderas="sect3">Package Information</bridgehead>
43 <itemizedlist spacing="compact">
44 <listitem>
45 <para>
46 Download (HTTP): <ulink url="&colord-download-http;"/>
47 </para>
48 </listitem>
49 <listitem>
50 <para>
51 Download (FTP): <ulink url="&colord-download-ftp;"/>
52 </para>
53 </listitem>
54 <listitem>
55 <para>
56 Download MD5 sum: &colord-md5sum;
57 </para>
58 </listitem>
59 <listitem>
60 <para>
61 Download size: &colord-size;
62 </para>
63 </listitem>
64 <listitem>
65 <para>
66 Estimated disk space required: &colord-buildsize;
67 </para>
68 </listitem>
69 <listitem>
70 <para>
71 Estimated build time: &colord-time;
72 </para>
73 </listitem>
74 </itemizedlist>
75
76 <bridgehead renderas="sect3">Colord Dependencies</bridgehead>
77
78 <bridgehead renderas="sect4">Required</bridgehead>
79 <para role="required">
80 <xref linkend="dbus"/>,
81 <xref linkend="glib2"/>,
82 <xref linkend="lcms2"/>, and
83 <xref linkend="sqlite"/>
84 </para>
85
86 <bridgehead renderas="sect4">Recommended</bridgehead>
87 <para role="recommended">
88 <xref linkend="libgusb"/>,
89 <xref linkend="gobject-introspection"/>,
90 <xref linkend="polkit"/>
91 <xref linkend="udev-extras"/> (for GUdev), and
92 <xref linkend="vala"/>
93 </para>
94
95 <bridgehead renderas="sect4">Optional</bridgehead>
96 <para role="optional">
97 <ulink url="http://bash-completion.alioth.debian.org/">Bash Completion</ulink>,
98 <ulink url="http://www.freedesktop.org/software/colord/releases/">
99 colord-gtk</ulink> and <xref linkend="gnome-desktop"/>
100 (To build the example tools),
101 <xref linkend="docbook-utils"/>,
102 <xref linkend="gtk-doc"/>,
103 <xref linkend="libxslt"/>,
104 <xref linkend="sane"/>, and
105 <xref linkend="valgrind"/> (required for the tests)
106 </para>
107
108 <para condition="html" role="usernotes">User Notes:
109 <ulink url="&blfs-wiki;/colord"/>
110 </para>
111 </sect2>
112
113 <sect2 role="installation">
114 <title>Installation of Colord</title>
115
116 <para>
117 There should be a dedicated user and group to take control
118 of the <command>colord</command> daemon after it is started.
119 Issue the following commands as the
120 <systemitem class="username">root</systemitem> user:
121 </para>
122
123<screen role="root"><userinput>groupadd -g 71 colord &amp;&amp;
124useradd -c "Color Daemon Owner" -d /var/lib/colord -u 71 \
125 -g colord -s /bin/false colord</userinput></screen>
126
127 <para>
128 Install <application>Colord</application> by running the following
129 commands:
130 </para>
131
132<screen><userinput>./configure --prefix=/usr \
133 --sysconfdir=/etc \
134 --localstatedir=/var \
135 --with-daemon-user=colord \
136 --enable-vala \
137 --disable-systemd-login \
138 --disable-bash-completion \
139 --disable-static \
140 --without-systemdsystemunitdir &amp;&amp;
141make</userinput></screen>
142
143 <para>
144 Now, as the <systemitem class="username">root</systemitem> user:
145 </para>
146
147<screen role="root"><userinput>make install</userinput></screen>
148
149 <para>
150 To test the results, issue: <command>make -k check</command>. For unknown
151 reasons, some tests may fail. Note that system-wide
152 <application>D-Bus</application> daemon must be running or the tests
153 will fail.
154 </para>
155
156 </sect2>
157
158 <sect2 role="commands">
159 <title>Command Explanations</title>
160
161 <para>
162 <parameter>--with-daemon-user=colord</parameter>: This
163 switch is used so the <command>colord</command> daemon
164 will run as an unprivileged user instead of
165 <systemitem class="username">root</systemitem> user.
166 </para>
167
168 <para>
169 <parameter>--enable-vala</parameter>: This switch enables
170 building of the Vala bindings. Remove if you don't
171 have <xref linkend="vala"/> installed.
172 </para>
173
174 <para>
175 <parameter>--disable-bash-completion</parameter>: This switch
176 disables <application>Bash Completion</application>
177 support for <application>Colord</application> apps.
178 </para>
179
180 <para>
181 <option>--disable-systemd-login</option>: This switch prevents
182 <command>configure</command> to look for
183 <application>Systemd</application> libraries.
184 </para>
185
186
187 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
188 href="../../xincludes/static-libraries.xml"/>
189
190 <para>
191 <option>--without-systemdsystemunitdir</option>: This switch
192 prevents the build system from installing the
193 <application>systemd</application> units..
194 </para>
195
196 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
197 href="../../xincludes/gtk-doc-rebuild.xml"/>
198
199 <para>
200 <option>--disable-gusb</option>: Use this switch if you don't have
201 <application>libgusb</application> installed.
202 </para>
203
204 <para>
205 <option>--disable-gudev</option>: Use this switch if you don't have
206 GUdev installed.
207 </para>
208
209 <para>
210 <option>--disable-polkit</option>: Use this switch if you don't have
211 <application>Polkit</application> installed.
212 </para>
213
214 <para><option>--libexecdir=/usr/lib/colord</option>: This option
215 creates a <filename class="directory">colord</filename> directory in
216 <filename class="directory">/usr/lib</filename> instead of putting the
217 program's private programs into <filename
218 class="directory">/usr/libexec</filename> in accordance with the old
219 version of the FHS used before LFS-7.5.</para>
220
221 </sect2>
222
223 <sect2 role="content">
224 <title>Contents</title>
225
226 <segmentedlist>
227 <segtitle>Installed Programs</segtitle>
228 <segtitle>Installed Libraries</segtitle>
229 <segtitle>Installed Directories</segtitle>
230
231 <seglistitem>
232 <seg>
233 cd-create-profile, cd-fix-profile, cd-iccdump, colord,
234 colord-sane, colord-session, and colormgr
235 </seg>
236 <seg>
237 libcolordprivate.so, libcolord.so, libcolorhug.so, and several under
238 /usr/lib/colord-plugin and /usr/lib/colord-sensors
239 </seg>
240 <seg>
241 /usr/include/colord-1,
242 /usr/lib/colord,
243 /usr/lib/colord-plugins,
244 /usr/lib/colord-sensors,
245 /usr/share/color,
246 /usr/share/colord,
247 /usr/share/gtk-doc/html/colord and
248 /var/lib/colord
249 </seg>
250 </seglistitem>
251 </segmentedlist>
252
253 <variablelist>
254 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
255 <?dbfo list-presentation="list"?>
256 <?dbhtml list-presentation="table"?>
257
258 <varlistentry id="cd-create-profile">
259 <term><command>cd-create-profile</command></term>
260 <listitem>
261 <para>
262 is a Color Manager Profile Creation Tool.
263 </para>
264 <indexterm zone="colord cd-create-profile">
265 <primary sortas="b-cd-create-profile">cd-create-profile</primary>
266 </indexterm>
267 </listitem>
268 </varlistentry>
269
270 <varlistentry id="cd-fix-profile">
271 <term><command>cd-fix-profile</command></term>
272 <listitem>
273 <para>
274 is a tool used to fix metadata in ICC profiles.
275 </para>
276 <indexterm zone="colord cd-fix-profile">
277 <primary sortas="b-cd-fix-profile">cd-fix-profile</primary>
278 </indexterm>
279 </listitem>
280 </varlistentry>
281
282 <varlistentry id="colormgr">
283 <term><command>colormgr</command></term>
284 <listitem>
285 <para>
286 is a text-mode program that allows you to interact with colord
287 on the command line.
288 </para>
289 <indexterm zone="colord colormgr">
290 <primary sortas="b-colormgr">colormgr</primary>
291 </indexterm>
292 </listitem>
293 </varlistentry>
294
295 <varlistentry id="libcolord">
296 <term><filename class="libraryfile">libcolord.so</filename></term>
297 <listitem>
298 <para>
299 contains the <application>Colord</application> API functions.
300 </para>
301 <indexterm zone="colord libcolord">
302 <primary sortas="c-libcolord">libcolord.so</primary>
303 </indexterm>
304 </listitem>
305 </varlistentry>
306
307 </variablelist>
308
309 </sect2>
310
311</sect1>
Note: See TracBrowser for help on using the repository browser.