Commit eed671a9 authored by Stephan Hoffmann's avatar Stephan Hoffmann Committed by Peter Korsgaard
Browse files

qtuio: new package

Implementation of an interface connecting TUIO messages and QT events

https://github.com/x29a/qTUIO



Signed-off-by: default avatarStephan Hoffmann <sho@relinux.de>
Acked-by: default avatarArnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Tested-by: default avatarArnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
 build-tested with a minimal internal toolchain for ARM.
Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent 93e4785a
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -134,6 +134,12 @@ source "package/sdl_gfx/Config.in"
comment "other GUIs"
source "package/efl/Config.in"
source "package/qt/Config.in"

if BR2_PACKAGE_QT
comment "QT libraries and helper libraries"
source "package/qtuio/Config.in"
endif

source "package/x11r7/Config.in"

comment "X libraries and helper libraries"
+18 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_QTUIO
	bool "qtuio"
	depends on BR2_PACKAGE_QT_GUI_MODULE
	help
	  Implementation of an interface connecting TUIO messages
	  and QT events

	  https://github.com/x29a/qTUIO

config BR2_QTUIO_EXAMPLES
	bool "qtuio examples"
	depends on BR2_PACKAGE_QTUIO
	help
	  Build and install qtuio examples

comment "qtuio depends on QT gui module"
	depends on !BR2_PACKAGE_QT_GUI_MODULE

package/qtuio/qtuio.mk

0 → 100644
+69 −0
Original line number Diff line number Diff line
#############################################################
#
# qTUIO
#
#############################################################
QTUIO_VERSION = abe4973ff6
QTUIO_SITE = git://github.com/x29a/qTUIO.git
QTUIO_INSTALL_STAGING = YES
QTUIO_DEPENDENCIES = qt

QTUIO_LICENSE = GPLv3+
QTUIO_LICENSE_FILES = COPYING

# The pong example needs QtOpenGL support, which might become available
# some time in the future. Then add pong to the list of examples.
QTUIO_EXAMPLES = dials fingerpaint knobs pinchzoom

ifeq ($(BR2_QTUIO_EXAMPLES),y)
define QTUIO_CONFIGURE_EXAMPLES
	for example in $(QTUIO_EXAMPLES) ; do \
		(cd $(@D)/examples/$${example} && $(QT_QMAKE)) ; \
	done
endef
endif

define QTUIO_CONFIGURE_CMDS
	cd $(@D)/src && $(QT_QMAKE)
	$(QTUIO_CONFIGURE_EXAMPLES)
endef

ifeq ($(BR2_QTUIO_EXAMPLES),y)
define QTUIO_BUILD_EXAMPLES
	for example in $(QTUIO_EXAMPLES) ; do \
		($(MAKE) -C $(@D)/examples/$${example}) ; \
	done
endef
endif

define QTUIO_BUILD_CMDS
	$(MAKE) -C $(@D)/src
	$(QTUIO_BUILD_EXAMPLES)
endef

# Unfortunately, there is no working "install" target available
ifeq ($(BR2_QTUIO_EXAMPLES),y)
define QTUIO_INSTALL_EXAMPLES
	for example in $(QTUIO_EXAMPLES) ; do \
		($(INSTALL) -D -m 0755 $(@D)/examples/$${example}/$${example} $(TARGET_DIR)/usr/share/qtuio/$${example}) ; \
	done
endef
endif

define QTUIO_INSTALL_TARGET_CMDS
	cp -dpf $(@D)/lib/libqTUIO.so* $(TARGET_DIR)/usr/lib
	$(QTUIO_INSTALL_EXAMPLES)
endef

define QTUIO_INSTALL_STAGING_CMDS
	cp -dpf $(@D)/lib/libqTUIO.so* $(STAGING_DIR)/usr/lib
endef

define QTUIO_CLEAN_CMDS
	$(MAKE) -C $(@D)/src clean
	for example in $(QTUIO_EXAMPLES) ; do \
		($(MAKE) -C $(@D)/examples/$${example} clean) ; \
	done
endef

$(eval $(generic-package))