• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

client/H03-May-2022-5,9034,514

contrib/H03-May-2022-7,1595,721

data/H03-May-2022-32,57431,669

doc/H03-May-2022-4,9924,443

examples/H03-May-2022-1,2401,027

lib/H03-May-2022-61,47540,740

m4/H27-Feb-2017-12,00710,954

man/H03-May-2022-1,6801,577

po/H27-Feb-2017-44,87535,570

policy/H03-May-2022-809669

rules/H03-May-2022-765658

src/H03-May-2022-43,72138,121

ABOUT-NLSH A D09-Nov-201674.7 KiB1,0691,022

AUTHORSH A D22-Apr-201537 21

COPYINGH A D22-Apr-201517.7 KiB340281

ChangeLogH A D27-Feb-2017511.9 KiB20,79514,905

MAINTAINERSH A D22-Apr-201537 21

Makefile.amH A D17-Feb-20163.4 KiB136115

Makefile.inH A D03-May-202232.3 KiB1,049935

NEWSH A D27-Feb-201764.1 KiB1,3061,124

README.mdH A D01-May-20152 KiB6751

aclocal.m4H A D02-Jan-201759.8 KiB1,6631,498

autogen.shH A D22-Apr-20151 KiB3619

compileH A D09-Nov-20167.2 KiB348258

config.guessH A D09-Nov-201641.9 KiB1,4221,230

config.hH A D21-Nov-20163.3 KiB12432

config.h.inH A D02-Jan-20173 KiB12383

config.rpathH A D09-Nov-201617.9 KiB667563

config.subH A D09-Nov-201635.2 KiB1,8081,670

configureH A D03-May-2022649.4 KiB21,58118,349

configure.acH A D02-Jan-201719.4 KiB525471

depcompH A D09-Nov-201623 KiB792502

gtk-doc.makeH A D09-Nov-20169.8 KiB305258

install-shH A D09-Nov-201614.3 KiB502327

ltmain.shH A D09-Nov-2016316.5 KiB11,1487,979

missingH A D09-Nov-20166.7 KiB216143

test-driverH A D09-Nov-20164.5 KiB14987

README.md

1colord
2======
3
4colord is a system service that makes it easy to manage, install and generate
5color profiles to accurately color manage input and output devices.
6
7This functionality is implemented as a system activated daemon called colord.
8Being system activated means that it's only started when the user is using a
9text mode or graphical tool.
10
11What colord does:
12
13* Provides a DBus API for other programs to query, e.g.
14  "Get me the profiles for device $foo" or
15  "Create a device and assign it profile $bar"
16
17* Provides a persistent database backed store for device -> profile mapping.
18
19* Provides the session for a way to set system settings, for instance
20  setting the display profile for all users and all sessions.
21
22See [the website](http://www.freedesktop.org/software/colord/) for more details.
23
24Compiling for Linux
25===================
26
27Ensure the following packages are installed:
28
29* dbus-devel
30* docbook-utils
31* gettext
32* glib2-devel
33* gobject-introspection-devel
34* gtk-doc
35* intltool
36* lcms2-devel
37* libgudev1-devel
38* libgusb-devel
39* polkit-devel
40* sqlite-devel
41* systemd-devel
42* vala-tools
43
44Then just do `./autogen.sh && make`
45
46Compiling for Microsoft Windows
47===============================
48
49* Ensure wine is installed
50
51* Compile with a lot of restricted options, e.g.
52
53    mingw64-configure                               \
54            --disable-argyllcms-sensor              \
55            --disable-bash-completion               \
56            --disable-examples                      \
57            --disable-polkit                        \
58            --disable-print-profiles                \
59            --disable-sane                          \
60            --disable-session-example               \
61            --disable-systemd-login                 \
62            --disable-udev                          \
63            --disable-unix                          \
64            --without-pic                           \
65            --with-systemdsystemunitdir=/tmp        \
66            --with-udevrulesdir=/tmp && make
67