mirror of
https://github.com/Zeckmathederg/glfs.git
synced 2025-01-29 10:52:14 +08:00
78e2a409a6
git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@10899 af4574ff-66df-0310-9fd7-8a98e5e911e0
262 lines
7.4 KiB
XML
262 lines
7.4 KiB
XML
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
|
|
"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
|
|
<!ENTITY % general-entities SYSTEM "../../general.ent">
|
|
%general-entities;
|
|
|
|
<!ENTITY colord-download-http
|
|
"http://www.freedesktop.org/software/colord/releases/colord-&colord-version;.tar.xz">
|
|
<!ENTITY colord-download-ftp " ">
|
|
<!ENTITY colord-md5sum "003dc934ddcdfe09b478b84ac0288dcf">
|
|
<!ENTITY colord-size "624 KB">
|
|
<!ENTITY colord-buildsize "21 MB">
|
|
<!ENTITY colord-time "0.2 SBU">
|
|
]>
|
|
|
|
<sect1 id="colord" xreflabel="Colord-&colord-version;">
|
|
<?dbhtml filename="colord.html"?>
|
|
|
|
<sect1info>
|
|
<othername>$LastChangedBy$</othername>
|
|
<date>$Date$</date>
|
|
</sect1info>
|
|
|
|
<title>Colord-&colord-version;</title>
|
|
|
|
<indexterm zone="colord">
|
|
<primary sortas="a-Colord">Colord</primary>
|
|
</indexterm>
|
|
|
|
<sect2 role="package">
|
|
<title>Introduction to Colord</title>
|
|
|
|
<para>
|
|
<application>Colord</application> is a system activated daemon that
|
|
maps devices to color profiles. It is used by
|
|
<application>GNOME Color Manager</application> for system integration
|
|
and use when there are no users logged in.
|
|
</para>
|
|
|
|
&lfs72_checked;
|
|
|
|
<bridgehead renderas="sect3">Package Information</bridgehead>
|
|
<itemizedlist spacing="compact">
|
|
<listitem>
|
|
<para>
|
|
Download (HTTP): <ulink url="&colord-download-http;"/>
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
Download (FTP): <ulink url="&colord-download-ftp;"/>
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
Download MD5 sum: &colord-md5sum;
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
Download size: &colord-size;
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
Estimated disk space required: &colord-buildsize;
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
Estimated build time: &colord-time;
|
|
</para>
|
|
</listitem>
|
|
</itemizedlist>
|
|
|
|
<bridgehead renderas="sect3">Colord Dependencies</bridgehead>
|
|
|
|
<bridgehead renderas="sect4">Required</bridgehead>
|
|
<para role="required">
|
|
<xref linkend="dbus"/>,
|
|
<xref linkend="glib2"/>,
|
|
<xref linkend="lcms2"/> and
|
|
<xref linkend="sqlite"/>
|
|
</para>
|
|
|
|
<bridgehead renderas="sect4">Recommended</bridgehead>
|
|
<para role="recommended">
|
|
<xref linkend="gobject-introspection"/>,
|
|
<xref linkend="polkit"/>,
|
|
<xref linkend="udev"/> or
|
|
<xref linkend="udev-extras"/> (for GUdev) and
|
|
<xref linkend="vala"/>
|
|
</para>
|
|
|
|
<bridgehead renderas="sect4">Optional</bridgehead>
|
|
<para role="optional">
|
|
<xref linkend="colord-gtk"/> and <xref linkend="gnome-desktop"/>
|
|
(To build example tools),
|
|
<xref linkend="docbook-utils"/>,
|
|
<xref linkend="gtk-doc"/>,
|
|
<ulink url="http://people.freedesktop.org/~hughsient/releases/">libgusb</ulink> and
|
|
<xref linkend="sane"/>
|
|
</para>
|
|
|
|
<para condition="html" role="usernotes">User Notes:
|
|
<ulink url="&blfs-wiki;/colord"/>
|
|
</para>
|
|
</sect2>
|
|
|
|
<sect2 role="installation">
|
|
<title>Installation of Colord</title>
|
|
|
|
<para>
|
|
Install <application>Colord</application> by running the following
|
|
commands:
|
|
</para>
|
|
|
|
<screen><userinput>./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var \
|
|
--libexecdir=/usr/lib/colord \
|
|
--enable-vala \
|
|
--disable-gusb \
|
|
--disable-static &&
|
|
make</userinput></screen>
|
|
|
|
<para>
|
|
To test the results, issue: <command>make check</command>.
|
|
</para>
|
|
|
|
<para>
|
|
Now, as the <systemitem class="username">root</systemitem> user:
|
|
</para>
|
|
|
|
<screen role="root"><userinput>make install</userinput></screen>
|
|
|
|
</sect2>
|
|
|
|
<sect2 role="commands">
|
|
<title>Command Explanations</title>
|
|
|
|
<para>
|
|
<option>--enable-vala</option>: This switch enables
|
|
building of the Vala bindings. Remove if you don't
|
|
have <xref linkend="vala"/> installed.
|
|
</para>
|
|
|
|
<para>
|
|
<option>--disable-gusb</option>: This switch disables
|
|
building of the <application>libgusb</application>
|
|
specific code. Remove it if you have installed
|
|
<application>libgusb</application>.
|
|
</para>
|
|
|
|
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
|
href="../../xincludes/static-libraries.xml"/>
|
|
|
|
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
|
href="../../xincludes/gtk-doc-rebuild.xml"/>
|
|
|
|
</sect2>
|
|
|
|
<sect2 role="content">
|
|
<title>Contents</title>
|
|
|
|
<segmentedlist>
|
|
<segtitle>Installed Programs</segtitle>
|
|
<segtitle>Installed Library</segtitle>
|
|
<segtitle>Installed Directories</segtitle>
|
|
|
|
<seglistitem>
|
|
<seg>
|
|
cd-create-profile, cd-fix-profile, colord,
|
|
colord-sane and colormgr
|
|
</seg>
|
|
<seg>
|
|
libcolord.so
|
|
</seg>
|
|
<seg>
|
|
/usr/include/colord-1,
|
|
/usr/lib/colord,
|
|
/usr/lib/colord-plugins,
|
|
/usr/lib/colord-sensors,
|
|
/usr/share/color,
|
|
/usr/share/gtk-doc/html/colord and
|
|
/var/lib/colord
|
|
</seg>
|
|
</seglistitem>
|
|
</segmentedlist>
|
|
|
|
<variablelist>
|
|
<bridgehead renderas="sect3">Short Descriptions</bridgehead>
|
|
<?dbfo list-presentation="list"?>
|
|
<?dbhtml list-presentation="table"?>
|
|
|
|
<varlistentry id="cd-create-profile">
|
|
<term><command>cd-create-profile</command></term>
|
|
<listitem>
|
|
<para>
|
|
is a Color Manager Profile Creation Tool.
|
|
</para>
|
|
<indexterm zone="colord cd-create-profile">
|
|
<primary sortas="b-cd-create-profile">cd-create-profile</primary>
|
|
</indexterm>
|
|
</listitem>
|
|
</varlistentry>
|
|
|
|
<varlistentry id="cd-fix-profile">
|
|
<term><command>cd-fix-profile</command></term>
|
|
<listitem>
|
|
<para>
|
|
is a tool used to fix metadata in ICC profiles.
|
|
</para>
|
|
<indexterm zone="colord cd-fix-profile">
|
|
<primary sortas="b-cd-fix-profile">cd-fix-profile</primary>
|
|
</indexterm>
|
|
</listitem>
|
|
</varlistentry>
|
|
|
|
<varlistentry id="colord-prog">
|
|
<term><command>colord</command></term>
|
|
<listitem>
|
|
<para>
|
|
is the Color Daemon.
|
|
</para>
|
|
<indexterm zone="colord colord-prog">
|
|
<primary sortas="b-colord">colord</primary>
|
|
</indexterm>
|
|
</listitem>
|
|
</varlistentry>
|
|
|
|
<varlistentry id="colormgr">
|
|
<term><command>colormgr</command></term>
|
|
<listitem>
|
|
<para>
|
|
is a text-mode program that allows you to interact with colord
|
|
on the command line.
|
|
</para>
|
|
<indexterm zone="colord colormgr">
|
|
<primary sortas="b-colormgr">colormgr</primary>
|
|
</indexterm>
|
|
</listitem>
|
|
</varlistentry>
|
|
|
|
<varlistentry id="libcolord">
|
|
<term><filename class='libraryfile'>libcolord.so</filename></term>
|
|
<listitem>
|
|
<para>
|
|
contains the <application>Colord</application> API functions.
|
|
</para>
|
|
<indexterm zone="colord libcolord">
|
|
<primary sortas="c-libcolord">libcolord.so</primary>
|
|
</indexterm>
|
|
</listitem>
|
|
</varlistentry>
|
|
|
|
</variablelist>
|
|
|
|
</sect2>
|
|
|
|
</sect1>
|