From patchwork Wed Nov 28 23:54:12 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [13/51] package/spice: enable client From: "Yann E. MORIN" X-Patchwork-Id: 202583 Message-Id: <1354146890-27380-14-git-send-email-yann.morin.1998@free.fr> To: buildroot@busybox.net Cc: "Yann E. MORIN" Date: Thu, 29 Nov 2012 00:54:12 +0100 Signed-off-by: "Yann E. MORIN" --- package/spice/Config.in | 12 ++++++++++++ package/spice/spice.mk | 8 +++++++- 2 files changed, 19 insertions(+), 1 deletions(-) diff --git a/package/spice/Config.in b/package/spice/Config.in index ced3ec7..e906acf 100644 --- a/package/spice/Config.in +++ b/package/spice/Config.in @@ -21,3 +21,15 @@ config BR2_PACKAGE_SPICE This package implements the server-part of Spice. http://www.spice-space.org/ + +if BR2_PACKAGE_SPICE + +comment "client depends on X.org" + depends on !BR2_PACKAGE_XORG7 + +config BR2_PACKAGE_SPICE_CLIENT + bool "Enable client" + depends on BR2_PACKAGE_XORG7 + select BR2_PACKAGE_XLIB_LIBXRANDR + +endif # BR2_PACKAGE_SPICE diff --git a/package/spice/spice.mk b/package/spice/spice.mk index dbd2d5f..2f9dcbd 100644 --- a/package/spice/spice.mk +++ b/package/spice/spice.mk @@ -26,12 +26,18 @@ SPICE_CONF_OPT = \ --disable-gui \ --disable-opengl \ --disable-smartcard \ - --disable-client \ --disable-automated-tests \ --without-sasl \ SPICE_DEPENDENCIES += host-pkgconf +ifeq ($(BR2_PACKAGE_SPICE_CLIENT),y) +SPICE_CONF_OPT += --enable-client +SPICE_DEPENDENCIES += xlib_libXrandr xlib_libXfixes +else +SPICE_CONF_OPT += --disable-client +endif + SPICE_CONF_ENV = PYTHONPATH=$(TARGET_DIR)/usr/lib/python$(PYTHON_VERSION_MAJOR)/site-packages SPICE_MAKE_ENV = PYTHONPATH=$(TARGET_DIR)/usr/lib/python$(PYTHON_VERSION_MAJOR)/site-packages