xref: /openbmc/openbmc/poky/meta/recipes-sato/settings-daemon/settings-daemon_0.0.2.bb (revision eb8dc40360f0cfef56fb6947cc817a547d6d9bc6)
1*eb8dc403SDave CobbleySUMMARY = "Provides a bridge between gconf and xsettings"
2*eb8dc403SDave CobbleyHOMEPAGE = "http://svn.o-hand.com/view/matchbox/trunk/settings-daemon/"
3*eb8dc403SDave CobbleyBUGTRACKER = "http://bugzilla.yoctoproject.org/"
4*eb8dc403SDave CobbleyLICENSE = "MIT-style"
5*eb8dc403SDave CobbleyLIC_FILES_CHKSUM = "file://xsettings-manager.h;endline=22;md5=7cfac9d2d4dc3694cc7eb605cf32a69b \
6*eb8dc403SDave Cobbley                    file://xsettings-common.h;endline=22;md5=7cfac9d2d4dc3694cc7eb605cf32a69b"
7*eb8dc403SDave CobbleyDEPENDS = "gconf glib-2.0 gtk+3"
8*eb8dc403SDave CobbleySECTION = "x11"
9*eb8dc403SDave Cobbley
10*eb8dc403SDave Cobbley# SRCREV tagged 0.0.2
11*eb8dc403SDave CobbleySRCREV = "b2e5da502f8c5ff75e9e6da771372ef8e40fd9a2"
12*eb8dc403SDave CobbleySRC_URI = "git://git.yoctoproject.org/xsettings-daemon \
13*eb8dc403SDave Cobbley           file://addsoundkeys.patch \
14*eb8dc403SDave Cobbley           file://70settings-daemon.sh \
15*eb8dc403SDave Cobbley           "
16*eb8dc403SDave CobbleyUPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>(\d+(\.\d+)+))"
17*eb8dc403SDave Cobbley
18*eb8dc403SDave CobbleyS = "${WORKDIR}/git"
19*eb8dc403SDave Cobbley
20*eb8dc403SDave Cobbleyinherit autotools pkgconfig gconf distro_features_check
21*eb8dc403SDave Cobbley
22*eb8dc403SDave CobbleyFILES_${PN} = 	"${bindir}/* ${sysconfdir}"
23*eb8dc403SDave Cobbley
24*eb8dc403SDave Cobbley# Requires gdk-x11-2.0 which is provided by gtk when x11 in DISTRO_FEATURES
25*eb8dc403SDave CobbleyREQUIRED_DISTRO_FEATURES = "x11"
26*eb8dc403SDave Cobbley
27*eb8dc403SDave Cobbleydo_install_append () {
28*eb8dc403SDave Cobbley	install -d ${D}/${sysconfdir}/X11/Xsession.d
29*eb8dc403SDave Cobbley	install -m 755 ${WORKDIR}/70settings-daemon.sh ${D}/${sysconfdir}/X11/Xsession.d/
30*eb8dc403SDave Cobbley}
31