Move all to deprecated folder.

This commit is contained in:
2016-11-16 21:57:57 +01:00
parent 01738a7684
commit 05de7d6c04
9777 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
From f974bb1f92603973711bea36a7869dfa8358aae0 Mon Sep 17 00:00:00 2001
From: Bernd Kuhls <bernd.kuhls@t-online.de>
Date: Sun, 31 Jan 2016 09:04:46 +0100
Subject: [PATCH 1/1] Fix build with musl libc
Include missing header to prevent build error detected by buildroot:
http://autobuild.buildroot.net/results/aee/aee411047265bf205f8990a3d0d2310decb5fd19/build-end.log
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
Patch sent upstream: https://github.com/olivopaolo/mtdev2tuio/pull/2
mtdev2tuio.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/mtdev2tuio.c b/mtdev2tuio.c
index 3a9174f..f2c98d5 100644
--- a/mtdev2tuio.c
+++ b/mtdev2tuio.c
@@ -41,6 +41,7 @@
#include <getopt.h>
#include <signal.h>
#include <sys/utsname.h>
+#include <sys/file.h>
#define NSEC_PER_USEC 1000L
#define NSEC_PER_SEC 1000000000L
--
2.7.0.rc3

View File

@@ -0,0 +1,13 @@
config BR2_PACKAGE_MTDEV2TUIO
bool "mtdev2tuio"
select BR2_PACKAGE_LIBLO
select BR2_PACKAGE_MTDEV
depends on BR2_TOOLCHAIN_HAS_THREADS # liblo
help
mtdev2tuio is a simple application for converting touch
events captured from libmtdev to TUIO 1.1
https://github.com/olivopaolo/mtdev2tuio
comment "mtdev2tuio needs a toolchain w/ threads"
depends on !BR2_TOOLCHAIN_HAS_THREADS

View File

@@ -0,0 +1,27 @@
################################################################################
#
# mtdev2tuio
#
################################################################################
MTDEV2TUIO_VERSION = e1e7378d86abe751158e743586133022f32fa4d1
MTDEV2TUIO_SITE = $(call github,olivopaolo,mtdev2tuio,$(MTDEV2TUIO_VERSION))
MTDEV2TUIO_DEPENDENCIES = mtdev liblo
MTDEV2TUIO_LICENSE = GPLv3+
MTDEV2TUIO_LICENSE_FILES = COPYING
# mtdev2tuio Makefile misuses $(LD) as gcc, so we need to override LD
# here. Liblo uses log(3), so we need to link with -lm
define MTDEV2TUIO_BUILD_CMDS
$(MAKE) \
$(TARGET_CONFIGURE_OPTS) \
LD="$(TARGET_CC)" \
LIBS="-lmtdev -llo -lm" \
-C $(@D)
endef
define MTDEV2TUIO_INSTALL_TARGET_CMDS
$(INSTALL) -D -m 0755 $(@D)/mtdev2tuio $(TARGET_DIR)/usr/bin/mtdev2tuio
endef
$(eval $(generic-package))