Colord-1.2.12
      
      
        
          Introduction to Colord
        
        
          Colord is a system activated
          daemon that maps devices to color profiles. It is used by
          GNOME Color Manager for system
          integration and use when there are no users logged in.
        
        
          This package is known to build and work properly using an LFS-7.10
          platform.
        
        
          Package Information
        
        
        
          Colord Dependencies
        
        
          Required
        
        
          D-Bus-1.10.10, GLib-2.48.2, Little CMS-2.8, and
          SQLite-3.14.1
        
        
          Required (for the tests)
        
        
          Valgrind-3.11.0
        
        
          Recommended
        
        
          gobject-introspection-1.48.0,
          libgudev-230, libgusb-0.2.9, Polkit-0.113, Systemd-231, and
          Vala-0.32.1
        
        
          Optional
        
        
          DocBook-utils-0.6.14, gnome-desktop-3.20.2 and colord-gtk-0.1.26 (to build the example
          tools), GTK-Doc-1.25, libxslt-1.1.29, SANE-1.0.25,
          ArgllCMS, and
          Bash Completion,
        
        
          User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/colord
        
       
      
        
          Installation of Colord
        
        
          There should be a dedicated user and group to take control of the
          colord daemon after
          it is started. Issue the following commands as the root user:
        
        
groupadd -g 71 colord &&
useradd -c "Color Daemon Owner" -d /var/lib/colord -u 71 \
        -g colord -s /bin/false colord
        
          Install Colord by running the
          following commands:
        
        
sed -i "/seems to be moved/s/^/#/" ltmain.sh &&
./configure --prefix=/usr                \
            --sysconfdir=/etc            \
            --localstatedir=/var         \
            --with-daemon-user=colord    \
            --enable-vala                \
            --disable-argyllcms-sensor   \
            --disable-bash-completion    \
            --disable-static &&
make
        
          Now, as the root user:
        
        
make install
        
          To test the results, issue: make -k
          check. For unknown reasons, some tests may fail.
          Note that the system-wide D-Bus
          daemon must be running or the tests will fail.
        
       
      
        
          Command Explanations
        
        
          sed -i ... ltmain.sh:
          This sed command silences several useless and annoying warnings
          generated by libtool.
        
        
          --with-daemon-user=colord:
          This switch is used so the colord daemon will run as an
          unprivileged user instead of root
          user.
        
        
          --enable-vala: This switch
          enables building of the Vala bindings. Remove if you don't have
          Vala-0.32.1 installed.
        
        
          --disable-argyllcms-sensor:
          Disables ArgllCMS sensor driver.
        
        
          --disable-bash-completion:
          This switch disables Bash
          Completion support for Colord apps.
        
        
          --disable-static: This
          switch prevents installation of static versions of the libraries.
        
        
          --enable-gtk-doc: Use this switch if
          GTK-Doc is installed and you wish
          to build and install the API documentation.
        
        
          --disable-gusb: Use this switch if you
          don't have libgusb installed.
        
        
          --disable-udev: Use this switch if you
          don't have GUdev installed.
        
        
          --disable-polkit: Use this switch if
          you don't have Polkit installed.
        
       
      
        
          Contents
        
        
          
            
              Installed Programs:
              cd-create-profile, cd-fix-profile,
              cd-iccdump, cd-it8, and colormgr
            
            
              Installed Libraries:
              libcolord.so, libcolordprivate.so, and
              libcolorhug.so
            
            
              Installed Directories:
              /usr/include/colord-1,
              /usr/lib/colord-{plugins,sensors}, /usr/share/color{,d},
              /usr/share/gtk-doc/html/colord, and /var/lib/colord
            
           
         
        
          
            Short Descriptions
          
          
            
            
              
                | 
                    cd-create-profile
                   | 
                    is a Color Manager Profile Creation Tool.
                   | 
              
                | 
                    cd-fix-profile
                   | 
                    is a tool used to fix metadata in ICC profiles.
                   | 
              
                | 
                    cd-iccdump
                   | 
                    dumps the contents of an ICC profile as human readable
                    text.
                   | 
              
                | 
                    cd-it8
                   | 
                    is a Color Manager Testing Tool.
                   | 
              
                | 
                    colormgr
                   | 
                    is a text-mode program that allows you to interact with
                    colord on the command line.
                   | 
              
                | 
                    libcolord.so | 
                    contains the Colord API
                    functions.
                   | 
            
          
         
       
      
        Last updated on 2016-08-29 23:02:26 -0700