2011-09-29 12:38:13 +02:00
|
|
|
# Template file for 'colord'
|
|
|
|
pkgname=colord
|
2015-04-11 07:57:27 +02:00
|
|
|
version=1.2.10
|
|
|
|
revision=1
|
2011-10-24 14:14:47 +02:00
|
|
|
build_style=gnu-configure
|
2012-05-18 10:54:53 +02:00
|
|
|
configure_args="--disable-static --disable-schemas-compile
|
2012-10-30 22:11:38 +01:00
|
|
|
--with-systemdsystemunitdir=/usr/lib/systemd/system --enable-vala
|
2014-05-09 11:58:32 +02:00
|
|
|
--with-udevrulesdir=/usr/lib/udev/rules.d --with-daemon-user=colord
|
2015-01-13 02:18:03 +01:00
|
|
|
--enable-polkit --enable-gusb --enable-udev --enable-sane
|
2015-01-15 08:09:19 +01:00
|
|
|
--disable-argyllcms-sensor $(vopt_enable gir introspection)
|
|
|
|
$(vopt_enable systemd systemd-login)"
|
2015-04-11 07:57:27 +02:00
|
|
|
conf_files="/etc/dbus-1/system.d/org.freedesktop.ColorManager.conf"
|
2014-01-01 16:10:11 +01:00
|
|
|
system_accounts="colord"
|
|
|
|
colord_homedir="/var/lib/colord"
|
|
|
|
make_dirs="
|
2015-02-21 08:59:34 +01:00
|
|
|
/var/lib/colord 0755 colord colord
|
|
|
|
/var/lib/colord/icc 0755 colord colord"
|
2013-01-26 08:24:25 +01:00
|
|
|
short_desc="System daemon for managing color devices"
|
2015-04-10 09:16:30 +02:00
|
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
2012-07-09 18:41:39 +02:00
|
|
|
homepage="http://www.freedesktop.org/software/colord"
|
2013-01-26 08:24:25 +01:00
|
|
|
license="GPL-2"
|
2012-07-09 18:41:39 +02:00
|
|
|
distfiles="$homepage/releases/$pkgname-$version.tar.xz"
|
2015-04-11 07:57:27 +02:00
|
|
|
checksum=1dea0453cc778326e700f6cb0a206836a57dedfb0fbdc3acaf2be02ea77a963a
|
2014-05-09 11:58:32 +02:00
|
|
|
|
2015-01-19 09:13:54 +01:00
|
|
|
hostmakedepends="pkg-config intltool docbook2x gobject-introspection"
|
2015-03-27 10:50:40 +01:00
|
|
|
makedepends="vala-devel libgudev-devel polkit-devel lcms2-devel dbus-devel
|
|
|
|
libusb-devel libgusb-devel sqlite-devel sane-devel libudev-devel
|
2015-01-15 08:09:19 +01:00
|
|
|
$(vopt_if systemd systemd-devel) bash-completion"
|
2015-01-13 09:09:42 +01:00
|
|
|
|
2014-02-07 05:06:20 +01:00
|
|
|
if [ "$CROSS_BUILD" ]; then
|
2015-01-19 09:13:54 +01:00
|
|
|
hostmakedepends+=" automake libtool gettext-devel glib-devel gtk-doc colord"
|
2014-02-07 05:06:20 +01:00
|
|
|
fi
|
|
|
|
|
2014-02-01 16:02:29 +01:00
|
|
|
# Package build options
|
2014-05-09 11:58:32 +02:00
|
|
|
build_options="gir systemd"
|
2014-02-01 16:02:29 +01:00
|
|
|
|
|
|
|
# Disable gir for cross builds.
|
|
|
|
if [ -z "$CROSS_BUILD" ]; then
|
2014-05-09 11:58:32 +02:00
|
|
|
build_options_default+=" gir"
|
2014-02-01 16:02:29 +01:00
|
|
|
fi
|
|
|
|
|
2014-02-07 05:06:20 +01:00
|
|
|
pre_configure() {
|
|
|
|
if [ "$CROSS_BUILD" ]; then
|
2015-01-15 08:09:19 +01:00
|
|
|
# Use host utils instead.
|
|
|
|
sed -e 's,$(CD_IT8),cd-it8,g' -i data/cmf/Makefile.am data/illuminant/Makefile.am
|
|
|
|
sed -e 's,$(CD_CREATE_PROFILE),cd-create-profile,g' -i data/profiles/Makefile.am
|
2014-07-28 17:37:37 +02:00
|
|
|
NOCONFIGURE=1 ./autogen.sh
|
2014-02-07 05:06:20 +01:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2013-04-12 08:55:23 +02:00
|
|
|
libcolord_package() {
|
2013-05-03 19:37:29 +02:00
|
|
|
short_desc+=" - runtime library"
|
2013-04-12 08:55:23 +02:00
|
|
|
pkg_install() {
|
2014-02-01 16:02:29 +01:00
|
|
|
if [ "$build_option_gir" ]; then
|
|
|
|
vmove usr/lib/girepository-1.0
|
|
|
|
fi
|
2013-06-27 06:44:57 +02:00
|
|
|
vmove "usr/lib/*.so.*"
|
2013-04-12 08:55:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
colord-devel_package() {
|
2014-05-09 12:10:04 +02:00
|
|
|
depends="dbus-devel libglib-devel lcms2-devel libudev-devel libcolord>=${version}_${revision}"
|
2013-05-03 19:37:29 +02:00
|
|
|
short_desc+=" - development files"
|
2013-04-12 08:55:23 +02:00
|
|
|
pkg_install() {
|
|
|
|
vmove usr/include
|
|
|
|
vmove usr/lib/pkgconfig
|
2013-06-27 06:44:57 +02:00
|
|
|
vmove "usr/lib/*.so"
|
2014-02-01 16:02:29 +01:00
|
|
|
if [ "$build_option_gir" ]; then
|
|
|
|
vmove usr/share/gir-1.0
|
2014-02-07 05:06:20 +01:00
|
|
|
vmove usr/share/vala
|
2014-02-01 16:02:29 +01:00
|
|
|
fi
|
2013-04-12 08:55:23 +02:00
|
|
|
}
|
|
|
|
}
|