Move all to deprecated folder.
This commit is contained in:
@@ -0,0 +1,53 @@
|
||||
From upstream git (git://git.directfb.org/git/directfb/libs/LiTE.git)
|
||||
|
||||
From ffe0ce78327a63ddb1265328ea9b5b03acdca019 Mon Sep 17 00:00:00 2001
|
||||
From: Denis Oliver Kropp <dok@directfb.org>
|
||||
Date: Fri, 1 Apr 2011 20:20:26 +0200
|
||||
Subject: [PATCH] dfbspy: Build fix for dfbspy example.
|
||||
|
||||
---
|
||||
examples/dfbspy.c | 20 ++++++++++----------
|
||||
1 files changed, 10 insertions(+), 10 deletions(-)
|
||||
|
||||
diff --git a/examples/dfbspy.c b/examples/dfbspy.c
|
||||
index 5f36f0b..c7f9725 100644
|
||||
--- a/examples/dfbspy.c
|
||||
+++ b/examples/dfbspy.c
|
||||
@@ -89,9 +89,9 @@ read_stat( FusionStat *stat, int world )
|
||||
|
||||
/**************************************************************************************************/
|
||||
|
||||
-#define CALC(x) stat.x = (int)(((s.x - last_stat.x) * 1000 / (float) diff) + 0.5f)
|
||||
+#define CALC(x) stats.x = (int)(((s.x - last_stat.x) * 1000 / (float) diff) + 0.5f)
|
||||
|
||||
-static FusionStat last_stat, stat;
|
||||
+static FusionStat last_stat, stats;
|
||||
static long long last_millis;
|
||||
|
||||
static int
|
||||
@@ -145,14 +145,14 @@ static const struct {
|
||||
void (*update)( LiteLabel *label, void *ctx );
|
||||
void *ctx;
|
||||
} list[] = {
|
||||
- { "lease/purchase", update_number, &stat.lease_purchase },
|
||||
- { "cede", update_number, &stat.cede },
|
||||
- { "attach", update_number, &stat.attach },
|
||||
- { "detach", update_number, &stat.detach },
|
||||
- { "ref up", update_number, &stat.ref_up },
|
||||
- { "ref down", update_number, &stat.ref_down },
|
||||
- { "prevail/swoop", update_number, &stat.prevail_swoop },
|
||||
- { "dismiss", update_number, &stat.dismiss }
|
||||
+ { "lease/purchase", update_number, &stats.lease_purchase },
|
||||
+ { "cede", update_number, &stats.cede },
|
||||
+ { "attach", update_number, &stats.attach },
|
||||
+ { "detach", update_number, &stats.detach },
|
||||
+ { "ref up", update_number, &stats.ref_up },
|
||||
+ { "ref down", update_number, &stats.ref_down },
|
||||
+ { "prevail/swoop", update_number, &stats.prevail_swoop },
|
||||
+ { "dismiss", update_number, &stats.dismiss }
|
||||
};
|
||||
|
||||
#define NUM_LIST (sizeof(list)/sizeof(list[0]))
|
||||
--
|
||||
1.7.6.3
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
--- a/Makefile.in.orig 2008-07-07 13:07:12.000000000 +0200
|
||||
+++ b/Makefile.in 2008-07-07 13:07:05.000000000 +0200
|
||||
@@ -202,7 +202,7 @@
|
||||
target_vendor = @target_vendor@
|
||||
top_builddir = @top_builddir@
|
||||
top_srcdir = @top_srcdir@
|
||||
-SUBDIRS = data fonts lite leck examples tests
|
||||
+SUBDIRS = data fonts lite leck examples
|
||||
EXTRA_DIST = TODO lite.pc.in leck.pc.in
|
||||
pkgconfigdir = $(libdir)/pkgconfig
|
||||
pkgconfig_DATA = lite.pc leck.pc
|
||||
@@ -0,0 +1,22 @@
|
||||
From 7982cccbb6ad58f3802bb266467290200d130a48 Mon Sep 17 00:00:00 2001
|
||||
From: Ville Syrjala <syrjala@sci.fi>
|
||||
Date: Sat, 27 Nov 2010 01:14:25 +0200
|
||||
Subject: [PATCH] Too many '\' characters in the .pc file
|
||||
|
||||
---
|
||||
lite.pc.in | 2 +-
|
||||
1 files changed, 1 insertions(+), 1 deletions(-)
|
||||
|
||||
diff --git a/lite.pc.in b/lite.pc.in
|
||||
index 48eb969..3a21eaa 100644
|
||||
--- a/lite.pc.in
|
||||
+++ b/lite.pc.in
|
||||
@@ -9,4 +9,4 @@ Description: "LiTE" is a Toolkit Engine
|
||||
Requires: directfb >= @DFB_REQUIRED_VERSION@
|
||||
Version: @VERSION@
|
||||
Libs: -L${libdir} -llite
|
||||
-Cflags: -I${includedir} -DLITEFONTDIR=\\\"@LITEFONTDIR@\\\"
|
||||
+Cflags: -I${includedir} -DLITEFONTDIR=\"@LITEFONTDIR@\"
|
||||
--
|
||||
1.7.1
|
||||
|
||||
11
deprecated/firmware/buildroot/package/lite/Config.in
Normal file
11
deprecated/firmware/buildroot/package/lite/Config.in
Normal file
@@ -0,0 +1,11 @@
|
||||
config BR2_PACKAGE_LITE
|
||||
bool "LiTE (toolbox engine)"
|
||||
depends on BR2_PACKAGE_DIRECTFB
|
||||
help
|
||||
LiTE stands for LiTE is a Toolbox Engine.
|
||||
Its role is to facilitate the functions of DirectFB so that a
|
||||
toolbox could be written on top of DirectFB with less effort.
|
||||
As such LiTE has abstractions for the underlying graphics and
|
||||
event systems.
|
||||
|
||||
See http://www.directfb.org/wiki/index.php/LiTE:Architecture
|
||||
2
deprecated/firmware/buildroot/package/lite/lite.hash
Normal file
2
deprecated/firmware/buildroot/package/lite/lite.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
# Locally calculated
|
||||
sha256 1b784cf595c3d5313e3705db210119f77d48826dbc7fcf6328af83a1270c2264 LiTE-0.8.10.tar.gz
|
||||
27
deprecated/firmware/buildroot/package/lite/lite.mk
Normal file
27
deprecated/firmware/buildroot/package/lite/lite.mk
Normal file
@@ -0,0 +1,27 @@
|
||||
################################################################################
|
||||
#
|
||||
# lite
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LITE_VERSION = 0.8.10
|
||||
LITE_SOURCE = LiTE-$(LITE_VERSION).tar.gz
|
||||
LITE_SITE = http://www.directfb.org/downloads/Libs
|
||||
LITE_INSTALL_STAGING = YES
|
||||
LITE_INSTALL_STAGING_OPTS = DESTDIR=$(STAGING_DIR) LDFLAGS=-L$(STAGING_DIR)/usr/lib install
|
||||
LITE_CONF_ENV = DFB_CFLAGS=-I$(STAGING_DIR)/usr/include/directfb
|
||||
LITE_DEPENDENCIES = directfb
|
||||
LITE_LICENSE = LGPLv2.1+
|
||||
LITE_LICENSE_FILES = COPYING
|
||||
|
||||
define LITE_FINALIZE_INSTALL
|
||||
$(INSTALL) -d $(TARGET_DIR)/usr/share/LiTE/examples/
|
||||
$(INSTALL) -d $(TARGET_DIR)/usr/share/fonts/truetype/
|
||||
$(INSTALL) -m0644 $(@D)/data/*.png $(TARGET_DIR)/usr/share/LiTE/
|
||||
$(INSTALL) -m0644 $(@D)/examples/*.png $(TARGET_DIR)/usr/share/LiTE/examples/
|
||||
$(INSTALL) -m0644 $(@D)/fonts/*.ttf $(TARGET_DIR)/usr/share/fonts/truetype/
|
||||
endef
|
||||
|
||||
LITE_POST_INSTALL_TARGET_HOOKS += LITE_FINALIZE_INSTALL
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user