x11-common_0.1.bb 572 B

1234567891011121314151617181920212223
  1. SUMMARY = "Common X11 scripts and configuration files"
  2. LICENSE = "GPLv2"
  3. LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe"
  4. SECTION = "x11"
  5. PR = "r47"
  6. inherit distro_features_check
  7. # rdepends on xdypinfo xmodmap xinit
  8. REQUIRED_DISTRO_FEATURES = "x11"
  9. SRC_URI = "file://etc \
  10. file://gplv2-license.patch"
  11. S = "${WORKDIR}"
  12. do_install() {
  13. cp -R ${S}/etc ${D}${sysconfdir}
  14. chmod -R 755 ${D}${sysconfdir}
  15. find ${D}${sysconfdir} -type f -name \*~ -exec rm -rf {} \;
  16. }
  17. RDEPENDS_${PN} = "dbus-x11 xmodmap xdpyinfo xtscal xinit formfactor"