Config.in 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. config BR2_PACKAGE_GKRELLM
  2. bool "gkrellm"
  3. depends on BR2_USE_WCHAR # libglib2
  4. depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
  5. depends on BR2_USE_MMU # libglib2
  6. select BR2_PACKAGE_GKRELLM_SERVER if !BR2_PACKAGE_GKRELLM_CLIENT
  7. select BR2_PACKAGE_LIBGLIB2
  8. help
  9. GKrellM is a single process stack of system monitors which
  10. supports applying themes to match its appearance to your
  11. window manager, Gtk, or any other theme.
  12. http://gkrellm.srcbox.net/
  13. if BR2_PACKAGE_GKRELLM
  14. config BR2_PACKAGE_GKRELLM_SERVER
  15. bool "server"
  16. help
  17. Enable gkrellm server.
  18. config BR2_PACKAGE_GKRELLM_CLIENT
  19. bool "client"
  20. depends on BR2_PACKAGE_XORG7 # libgtk2
  21. depends on BR2_INSTALL_LIBSTDCPP # libgtk2
  22. depends on BR2_TOOLCHAIN_HAS_SYNC_4 # libgtk2
  23. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # libgtk2
  24. select BR2_PACKAGE_LIBGTK2
  25. select BR2_PACKAGE_XLIB_LIBSM
  26. help
  27. Enable gkrellm client.
  28. comment "client needs a toolchain w/ C++, gcc >= 4.8"
  29. depends on BR2_TOOLCHAIN_HAS_SYNC_4
  30. depends on BR2_PACKAGE_XORG7
  31. depends on !BR2_INSTALL_LIBSTDCPP || \
  32. !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
  33. endif # BR2_PACKAGE_GKRELLM
  34. comment "gkrellm needs a toolchain w/ wchar, threads"
  35. depends on BR2_USE_MMU
  36. depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS