1config BR2_PACKAGE_TEKUI 2 bool "tekui" 3 depends on !BR2_STATIC_LIBS 4 depends on BR2_PACKAGE_HAS_LUAINTERPRETER 5 depends on BR2_TOOLCHAIN_HAS_THREADS 6 select BR2_PACKAGE_FREETYPE 7 select BR2_PACKAGE_LUAFILESYSTEM # runtime only 8 select BR2_PACKAGE_LUAEXPAT # runtime only 9 select BR2_PACKAGE_LUASOCKET # runtime only 10 select BR2_PACKAGE_LUAPOSIX # runtime only 11 help 12 TekUI is a small, freestanding and portable graphical user 13 interface (GUI) toolkit written in Lua and C. It was 14 initially developed for the X Window System and has been 15 ported to DirectFB, Windows, Nano-X and a raw framebuffer 16 since 17 18 http://tekui.neoscientists.org/ 19 20comment "tekui needs a Lua interpreter and a toolchain w/ threads, dynamic library" 21 depends on !BR2_PACKAGE_HAS_LUAINTERPRETER || !BR2_TOOLCHAIN_HAS_THREADS || \ 22 BR2_STATIC_LIBS 23