xvkbd: fix X.org dependencies

xvkbd is a X.org client application, so there is no reason to depend
on the X.org server. Instead, depend on the X.org client libraries
that xvkbd actually links against.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Thomas Petazzoni 2013-01-06 11:29:37 +00:00 committed by Peter Korsgaard
parent 9d4a588cac
commit ab0e905aaf
2 changed files with 17 additions and 1 deletions

View File

@ -1,7 +1,14 @@
config BR2_PACKAGE_XVKBD
bool "xvkbd"
depends on BR2_PACKAGE_XORG7
select BR2_PACKAGE_XLIB_LIBICE
select BR2_PACKAGE_XLIB_LIBSM
select BR2_PACKAGE_XLIB_LIBX11
select BR2_PACKAGE_XLIB_LIBXAW
select BR2_PACKAGE_XLIB_LIBXEXT
select BR2_PACKAGE_XLIB_LIBXMU
select BR2_PACKAGE_XLIB_LIBXPM
select BR2_PACKAGE_XLIB_LIBXT
select BR2_PACKAGE_XLIB_LIBXTST
help
on-screen keyboard for X

View File

@ -10,7 +10,16 @@ XVKBD_SITE = http://homepage3.nifty.com/tsato/xvkbd
XVKBD_MAKE_OPT = CC="$(TARGET_CC)" CXX="$(TARGET_CXX)" LD="$(TARGET_CC)" \
CFLAGS="-O2 -I$(STAGING_DIR)/usr/include" USRLIBDIR="$(STAGING_DIR)/usr/lib"
XVKBD_DEPENDENCIES = xserver_xorg-server xlib_libXaw xlib_libXtst
XVKBD_DEPENDENCIES = \
xlib_libICE \
xlib_libSM \
xlib_libX11 \
xlib_libXaw \
xlib_libXext \
xlib_libXmu \
xlib_libXpm \
xlib_libXt \
xlib_libXtst
$(eval $(autotools-package))