Currently, matchbox-fakekey is missing a Kconfig entry, but is so far solely a build-time dependency of matchbox-keyboard. So, make it a real package, and select it from matchbox-keyboard. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
38 lines
1.2 KiB
Plaintext
38 lines
1.2 KiB
Plaintext
config BR2_PACKAGE_MATCHBOX
|
|
bool "MatchBox Window Manager"
|
|
depends on BR2_PACKAGE_XORG7
|
|
depends on BR2_USE_MMU # fork()
|
|
select BR2_PACKAGE_FONTCONFIG
|
|
select BR2_PACKAGE_EXPAT
|
|
select BR2_PACKAGE_XLIB_LIBXEXT
|
|
select BR2_PACKAGE_XLIB_LIBXDAMAGE
|
|
select BR2_PACKAGE_XLIB_LIBXCURSOR
|
|
select BR2_PACKAGE_MATCHBOX_LIB
|
|
select BR2_PACKAGE_MATCHBOX_WM
|
|
help
|
|
Matchbox is an Open Source base environment for the X Window
|
|
System running on non-desktop embedded platforms such as
|
|
handhelds, set-top boxes, kiosks and anything else for which
|
|
screen space, input mechanisms or system resources are limited.
|
|
|
|
http://matchbox-project.org/
|
|
|
|
if BR2_PACKAGE_MATCHBOX
|
|
|
|
source "package/matchbox/matchbox-lib/Config.in"
|
|
source "package/matchbox/matchbox-wm/Config.in"
|
|
source "package/matchbox/matchbox-panel/Config.in"
|
|
source "package/matchbox/matchbox-desktop/Config.in"
|
|
source "package/matchbox/matchbox-common/Config.in"
|
|
source "package/matchbox/matchbox-fakekey/Config.in"
|
|
|
|
config BR2_PACKAGE_MATCHBOX_KEYBOARD
|
|
bool "Matchbox Virtual Keyboard"
|
|
select BR2_PACKAGE_XLIB_LIBXTST
|
|
select BR2_PACKAGE_XLIB_LIBXFT if !BR2_PACKAGE_CAIRO
|
|
select BR2_PACKAGE_MATCHBOX_FAKEKEY
|
|
help
|
|
Virtual Keyboard
|
|
|
|
endif
|