Magellan Linux

Contents of /branches/R11-stable/extras/colord/colord-1.2.1-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 21705 - (show annotations) (download)
Mon Jul 21 09:35:52 2014 UTC (9 years, 9 months ago) by niro
File size: 1844 byte(s)
-release branches/R11-stable
1 # $Id$
2
3 PNAME="colord"
4 PVER="1.2.1"
5 PBUILD="r1"
6
7 PCAT="x11-misc"
8
9 DESCRIPTION="System service to accurately color manage input and output devices."
10 HOMEPAGE="http://www.freedesktop.org/software/colord/"
11
12 DEPEND=">= dev-libs/glib2-2.40
13 >= dev-db/sqlite-3.8
14 >= media-libs/lcms2-2.6
15 >= sys-fs/udev-211
16 >= sys-apps/polkit-0.112
17 >= dev-libs/libgusb-0.1.3
18 >= media-gfx/sane-backends-1.0.24
19 >= media-gfx/shared-color-profiles-0.1.5"
20
21 SDEPEND=">= dev-libs/libxslt-1.1.26
22 >= dev-util/intltool-0.50
23 >= dev-util/pkgconfig-0.25
24 >= dev-lang/vala-0.24
25 >= sys-dev/gettext-0.18
26 >= sys-dev/autoconf-4
27 >= sys-dev/automake-3
28 >= dev-libs/gobject-introspection-1.40
29 >= virtual/sed"
30
31 SRCFILE="${PNAME}-${PVER}.tar.xz"
32 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
33
34 sminclude multilib mtools systemd
35 msetfeature "!check"
36
37 SRC_URI=(
38 http://www.freedesktop.org/software/${PNAME}/releases/${SRCFILE}
39 mirror://${PNAME}/${SRCFILE}
40 )
41
42 UP2DATE="updatecmd '${HOMEPAGE}/releases/?C=M;O=A' | lasttarball xz"
43
44 src_prepare()
45 {
46 munpack ${SRCFILE} || die
47
48 # fix udev dir location
49 all-abis 'sed -i "s:^\(udevrulesdir =\).*:\1 /usr/lib/udev:" rules/Makefile.{am,in} || die'
50 }
51
52 src_compile()
53 {
54 mconfigure \
55 --libexecdir=/usr/'$(mlibdir)'/${PNAME} \
56 --with-daemon-user=colord \
57 --with-systemdsystemunitdir='$(mget-systemd-unit-dir)' \
58 --enable-polkit \
59 --enable-gusb \
60 --enable-reverse \
61 --enable-introspection \
62 --enable-sane \
63 --enable-gudev \
64 --enable-vala \
65 --disable-schemas-compile \
66 --disable-examples \
67 --disable-volume-search \
68 --disable-rpath \
69 --disable-gtk-doc \
70 --disable-bash-completion \
71 || die
72
73 # fixme
74 mmake VAPIGENFLAGS="--girdir=$(pkg-config --variable=girdir gobject-introspection-1.0)" || die
75 }
76
77 preinstall()
78 {
79 # adding ssh user
80 mgroupadd colord
81 museradd -o "-g colord -d /var/lib/colord -s /bin/false" colord
82 }