packagegroup-core-x11.bb 709 B

12345678910111213141516171819202122232425262728293031323334
  1. #
  2. # Copyright (C) 2011 Intel Corporation
  3. #
  4. LICENSE = "MIT"
  5. PR = "r40"
  6. inherit packagegroup distro_features_check
  7. # rdepends on x11-common
  8. REQUIRED_DISTRO_FEATURES = "x11"
  9. PACKAGES = "${PN} ${PN}-utils"
  10. # xserver-common, x11-common
  11. VIRTUAL-RUNTIME_xserver_common ?= "x11-common"
  12. # elsa, xserver-nodm-init
  13. VIRTUAL-RUNTIME_graphical_init_manager ?= "xserver-nodm-init"
  14. SUMMARY = "X11 display server and basic utilities"
  15. RDEPENDS_${PN} = "\
  16. ${PN}-xserver \
  17. ${PN}-utils \
  18. "
  19. SUMMARY_${PN}-utils = "X11 basic utilities and init"
  20. RDEPENDS_${PN}-utils = "\
  21. ${VIRTUAL-RUNTIME_xserver_common} \
  22. ${VIRTUAL-RUNTIME_graphical_init_manager} \
  23. xauth \
  24. xhost \
  25. xset \
  26. xrandr \
  27. "