settings-daemon_0.0.2.bb 1.1 KB

123456789101112131415161718192021222324252627282930
  1. SUMMARY = "Provides a bridge between gconf and xsettings"
  2. HOMEPAGE = "https://git.yoctoproject.org/cgit/cgit.cgi/xsettings-daemon/"
  3. BUGTRACKER = "http://bugzilla.yoctoproject.org/"
  4. LICENSE = "MIT"
  5. LIC_FILES_CHKSUM = "file://xsettings-manager.h;endline=22;md5=7cfac9d2d4dc3694cc7eb605cf32a69b \
  6. file://xsettings-common.h;endline=22;md5=7cfac9d2d4dc3694cc7eb605cf32a69b"
  7. DEPENDS = "gconf glib-2.0 gtk+3"
  8. SECTION = "x11"
  9. PV .= "+git"
  10. # SRCREV tagged 0.0.2 + one patch
  11. SRCREV = "df669c6579a6ac7e1ef56be66617f35ae7d33d68"
  12. SRC_URI = "git://git.yoctoproject.org/xsettings-daemon;branch=master;protocol=https \
  13. file://70settings-daemon.sh \
  14. "
  15. UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>(\d+(\.\d+)+))"
  16. S = "${WORKDIR}/git"
  17. inherit autotools pkgconfig gconf features_check
  18. FILES:${PN} = "${bindir}/* ${sysconfdir}"
  19. # Requires gdk-x11-2.0 which is provided by gtk when x11 in DISTRO_FEATURES
  20. REQUIRED_DISTRO_FEATURES = "x11"
  21. do_install:append () {
  22. install -d ${D}/${sysconfdir}/X11/Xsession.d
  23. install -m 755 ${UNPACKDIR}/70settings-daemon.sh ${D}/${sysconfdir}/X11/Xsession.d/
  24. }