Magellan Linux

Contents of /trunk/extras/colord/colord-0.1.17-r4.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 11716 - (show annotations) (download)
Mon Mar 19 16:18:15 2012 UTC (12 years, 3 months ago) by niro
File size: 1912 byte(s)
-fixed libxec dir
1 # $Id$
2
3 PNAME="colord"
4 PVER="0.1.17"
5 PBUILD="r4"
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.30
13 >= dev-db/sqlite-3.7
14 >= media-libs/lcms2-2.3
15 >= sys-fs/udev-181
16 >= sys-apps/polkit-0.104
17 >= dev-libs/libgusb-0.1.3
18 >= media-gfx/sane-backends-1.0.22
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.14
25 >= sys-dev/gettext-0.18
26 >= sys-dev/autoconf-4
27 >= sys-dev/automake-3
28 >= dev-libs/gobject-introspection-1.30"
29
30 SRCFILE="${PNAME}-${PVER}.tar.xz"
31 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
32
33 sminclude multilib mtools
34 msetfeature "!check"
35
36 SRC_URI=(
37 http://www.freedesktop.org/software/${PNAME}/releases/${SRCFILE}
38 mirror://${PNAME}/${SRCFILE}
39 mirror://${PNAME}/${PNAME}-${PVER}-build.patch
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 compilation against <glib-2.31
49 mpatch ${PNAME}-${PVER}-build.patch || die
50 }
51
52 src_compile()
53 {
54 mconfigure \
55 --libexecdir=/usr/'$(mlibdir)'/${PNAME} \
56 --with-daemon-user=colord \
57 --with-systemdsystemunitdir=/usr/lib/systemd/system \
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 || die
71
72 # fixme
73 mmake VAPIGENFLAGS="--girdir=$(pkg-config --variable=girdir gobject-introspection-1.0)" || die
74 }
75
76 preinstall()
77 {
78 # adding ssh user
79 ${MLIBDIR}/mgroupadd colord
80 ${MLIBDIR}/museradd -o "-g colord -d /var/lib/colord -s /bin/false" colord
81 }
82
83 postinstall()
84 {
85 mstartunit colord.service
86 }
87
88 postremove()
89 {
90 mstopunit colord.service
91 }