1eb8dc403SDave CobbleySUMMARY = "Provides a bridge between gconf and xsettings" 26ce62a20SAndrew GeisslerHOMEPAGE = "https://git.yoctoproject.org/cgit/cgit.cgi/xsettings-daemon/" 3eb8dc403SDave CobbleyBUGTRACKER = "http://bugzilla.yoctoproject.org/" 4*7e0e3c0cSAndrew GeisslerLICENSE = "MIT" 5eb8dc403SDave CobbleyLIC_FILES_CHKSUM = "file://xsettings-manager.h;endline=22;md5=7cfac9d2d4dc3694cc7eb605cf32a69b \ 6eb8dc403SDave Cobbley file://xsettings-common.h;endline=22;md5=7cfac9d2d4dc3694cc7eb605cf32a69b" 7eb8dc403SDave CobbleyDEPENDS = "gconf glib-2.0 gtk+3" 8eb8dc403SDave CobbleySECTION = "x11" 9eb8dc403SDave Cobbley 10eb8dc403SDave Cobbley# SRCREV tagged 0.0.2 11eb8dc403SDave CobbleySRCREV = "b2e5da502f8c5ff75e9e6da771372ef8e40fd9a2" 12595f6308SAndrew GeisslerSRC_URI = "git://git.yoctoproject.org/xsettings-daemon;branch=master \ 13eb8dc403SDave Cobbley file://addsoundkeys.patch \ 14eb8dc403SDave Cobbley file://70settings-daemon.sh \ 15eb8dc403SDave Cobbley " 16eb8dc403SDave CobbleyUPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>(\d+(\.\d+)+))" 17eb8dc403SDave Cobbley 18eb8dc403SDave CobbleyS = "${WORKDIR}/git" 19eb8dc403SDave Cobbley 206dbb316aSBrad Bishopinherit autotools pkgconfig gconf features_check 21eb8dc403SDave Cobbley 22213cb269SPatrick WilliamsFILES:${PN} = "${bindir}/* ${sysconfdir}" 23eb8dc403SDave Cobbley 24eb8dc403SDave Cobbley# Requires gdk-x11-2.0 which is provided by gtk when x11 in DISTRO_FEATURES 25eb8dc403SDave CobbleyREQUIRED_DISTRO_FEATURES = "x11" 26eb8dc403SDave Cobbley 27213cb269SPatrick Williamsdo_install:append () { 28eb8dc403SDave Cobbley install -d ${D}/${sysconfdir}/X11/Xsession.d 29eb8dc403SDave Cobbley install -m 755 ${WORKDIR}/70settings-daemon.sh ${D}/${sysconfdir}/X11/Xsession.d/ 30eb8dc403SDave Cobbley} 31