xref: /OK3568_Linux_fs/buildroot/package/gkrellm/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config 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
13	  http://gkrellm.srcbox.net/
14
15if BR2_PACKAGE_GKRELLM
16
17config BR2_PACKAGE_GKRELLM_SERVER
18	bool "server"
19	help
20	  Enable gkrellm server.
21
22config BR2_PACKAGE_GKRELLM_CLIENT
23	bool "client"
24	depends on BR2_PACKAGE_XORG7 # libgtk2
25	depends on BR2_INSTALL_LIBSTDCPP # libgtk2
26	depends on BR2_TOOLCHAIN_HAS_SYNC_4 # libgtk2
27	depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # libgtk2
28	select BR2_PACKAGE_LIBGTK2
29	select BR2_PACKAGE_XLIB_LIBSM
30	help
31	  Enable gkrellm client.
32
33comment "client needs a toolchain w/ C++, gcc >= 4.8"
34	depends on BR2_TOOLCHAIN_HAS_SYNC_4
35	depends on BR2_PACKAGE_XORG7
36	depends on !BR2_INSTALL_LIBSTDCPP || \
37		!BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
38
39endif # BR2_PACKAGE_GKRELLM
40
41comment "gkrellm needs a toolchain w/ wchar, threads"
42	depends on BR2_USE_MMU
43	depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
44