Config.in 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. config BR2_PACKAGE_LIBPEAS
  2. bool "libpeas"
  3. depends on BR2_USE_MMU # gobject-introspection
  4. depends on BR2_PACKAGE_GOBJECT_INTROSPECTION_ARCH_SUPPORTS
  5. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # gobject-introspection
  6. depends on BR2_HOST_GCC_AT_LEAST_8 # gobject-introspection -> host-qemu
  7. depends on BR2_TOOLCHAIN_USES_GLIBC # gobject-introspection
  8. depends on BR2_PACKAGE_PYTHON3 # gobject-introspection
  9. select BR2_PACKAGE_GOBJECT_INTROSPECTION
  10. select BR2_PACKAGE_LIBGLIB2
  11. help
  12. libpeas is a gobject-based plugins engine, and is targeted at
  13. giving every application the chance to assume its own
  14. extensibility. It also has a set of features including, but
  15. not limited to:
  16. - multiple extension points
  17. - On demand (lazy) programming language support for C,
  18. Python and Lua
  19. - Simplicity of the API
  20. https://wiki.gnome.org/Projects/Libpeas
  21. if BR2_PACKAGE_LIBPEAS
  22. config BR2_PACKAGE_LIBPEAS_WIDGETS
  23. bool "widgets"
  24. depends on BR2_PACKAGE_LIBGTK3
  25. help
  26. Build GTK+ widgetry
  27. comment "widget support needs libgtk3"
  28. depends on !BR2_PACKAGE_LIBGTK3
  29. endif
  30. comment "libpeas needs python3"
  31. depends on BR2_PACKAGE_GOBJECT_INTROSPECTION_ARCH_SUPPORTS
  32. depends on BR2_USE_MMU
  33. depends on !BR2_PACKAGE_PYTHON3
  34. comment "libpeas needs a glibc toolchain, gcc >= 4.9, host gcc >= 8"
  35. depends on BR2_PACKAGE_GOBJECT_INTROSPECTION_ARCH_SUPPORTS
  36. depends on BR2_USE_MMU
  37. depends on !BR2_TOOLCHAIN_USES_GLIBC || \
  38. !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 || !BR2_HOST_GCC_AT_LEAST_8