summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/clutter/clutter-1.14
diff options
context:
space:
mode:
authorTomas Frydrych <tomas@sleepfive.com>2013-05-20 16:05:21 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-05-21 09:30:16 +0100
commitbcb0616551abd1e05d6ee88a22d6c0dfbb6c5fda (patch)
tree9ab79c89b626749ae9a24771ab559e49ea7dc5c3 /meta/recipes-graphics/clutter/clutter-1.14
parente847bd9f31210f0e3190cd7193cceb5cacfda5ab (diff)
downloadpoky-bcb0616551abd1e05d6ee88a22d6c0dfbb6c5fda.tar.gz
clutter: Replace with 1.14.4 version
The package has been renamed to clutter-1.0 instead of clutter-vmajor.vminor, keeping up with the upstream versioning policy (all 1.x packages install clutter-1.0 pc file and headers and are backward compatible), and to simplify dependency management (worth noting that since the 1.x development files are not parall installable, it is not possible to use two versions of clutter 1.x at the same time anyway). Package configuration is provided via PACKAGECONFIG options as follows: 'x11' : enable X11 backend, 'glx' : enable GLX backend, 'egl' : enable EGL backend, 'evdev': enable evdev input backend Default configuration is 'glx'; typical configuration for embedded HW using 'native' EGL would be 'egl evdev'. (From OE-Core rev: 4fbae4449fbb3f5eba499418b374c12bccfb4243) Signed-off-by: Tomas Frydrych <tomas@sleepfive.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/clutter/clutter-1.14')
-rw-r--r--meta/recipes-graphics/clutter/clutter-1.14/enable_tests.patch36
1 files changed, 36 insertions, 0 deletions
diff --git a/meta/recipes-graphics/clutter/clutter-1.14/enable_tests.patch b/meta/recipes-graphics/clutter/clutter-1.14/enable_tests.patch
new file mode 100644
index 0000000000..f97d598090
--- /dev/null
+++ b/meta/recipes-graphics/clutter/clutter-1.14/enable_tests.patch
@@ -0,0 +1,36 @@
1Make tests installable
2
3The test applications are useful for image testing.
4
5Imported from clutter 1.8 package, git://git.openembedded.org/openembedded,
6commit ae28ee3f7a060b9e0d13154a84f2444a98490b5b, updated patch header.
7
8Upstream-Status: Inappropriate [configuration]
9Signed-off-by: Tomas Frydrych <tomas@sleepfive.com>
10
11Index: git/tests/interactive/Makefile.am
12===================================================================
13--- git.orig/tests/interactive/Makefile.am 2009-11-30 17:39:46.000000000 +0000
14+++ git/tests/interactive/Makefile.am 2009-11-30 17:42:30.000000000 +0000
15@@ -88,7 +88,7 @@
16
17 common_ldadd = $(top_builddir)/clutter/libclutter-@CLUTTER_WINSYS@-@CLUTTER_API_VERSION@.la
18
19-noinst_PROGRAMS = test-interactive
20+bin_PROGRAMS = test-interactive
21
22 test_interactive_SOURCES = test-main.c $(UNIT_TESTS)
23 test_interactive_CFLAGS = $(CLUTTER_CFLAGS) $(MAINTAINER_CFLAGS)
24Index: git/tests/interactive/test-actors.c
25===================================================================
26--- git.orig/tests/interactive/test-actors.c 2009-11-30 17:39:46.000000000 +0000
27+++ git/tests/interactive/test-actors.c 2009-11-30 17:43:03.000000000 +0000
28@@ -178,7 +178,7 @@
29 oh->scaler_1 = clutter_behaviour_scale_new (alpha, 0.5, 0.5, 1.0, 1.0);
30 oh->scaler_2 = clutter_behaviour_scale_new (alpha, 1.0, 1.0, 0.5, 0.5);
31
32- file = g_build_filename (TESTS_DATADIR, "redhand.png", NULL);
33+ file = g_build_filename (TESTS_DATADIR, "/usr/share/clutter/redhand.png", NULL);
34 real_hand = clutter_texture_new_from_file (file, &error);
35 if (real_hand == NULL)
36 g_error ("image load failed: %s", error->message);