diff options
author | Zhai Edwin <edwin.zhai@intel.com> | 2011-01-30 10:28:17 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-01 23:59:39 +0000 |
commit | 1357d222387b19a84431ae3a24fcb3a18e20faa8 (patch) | |
tree | f174a1ab6b439b240b0b577b01a49f8d31be46f0 /meta/recipes-graphics | |
parent | 3bb0b9ae97f89507b742cd9b3e03f37c2d928270 (diff) | |
download | poky-1357d222387b19a84431ae3a24fcb3a18e20faa8.tar.gz |
clutter-gtk-1.0: Upgrade to one version prior to 0.90.2 (clutter 1.4 series)
0.90.2 depends on unstable gtk+-2.90.x that is not in poky, so pick up one
version prior to it. Also rebase disable_deprecated.patch to keep the API
compatibility with gtk+ and install example binary for poky-image-clutter.
Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
Diffstat (limited to 'meta/recipes-graphics')
-rw-r--r-- | meta/recipes-graphics/clutter/clutter-gtk-1.4_git.bb (renamed from meta/recipes-graphics/clutter/clutter-gtk-1.0_git.bb) | 8 | ||||
-rw-r--r-- | meta/recipes-graphics/clutter/clutter-gtk.inc | 2 | ||||
-rw-r--r-- | meta/recipes-graphics/clutter/clutter-gtk/disable_deprecated.patch | 9 | ||||
-rw-r--r-- | meta/recipes-graphics/clutter/clutter-gtk/enable_tests.patch | 17 | ||||
-rw-r--r-- | meta/recipes-graphics/tasks/task-poky-clutter.bb | 4 |
5 files changed, 30 insertions, 10 deletions
diff --git a/meta/recipes-graphics/clutter/clutter-gtk-1.0_git.bb b/meta/recipes-graphics/clutter/clutter-gtk-1.4_git.bb index ddb7d5aaaf..3822b31d5e 100644 --- a/meta/recipes-graphics/clutter/clutter-gtk-1.0_git.bb +++ b/meta/recipes-graphics/clutter/clutter-gtk-1.4_git.bb | |||
@@ -1,10 +1,12 @@ | |||
1 | require clutter-gtk.inc | 1 | require clutter-gtk.inc |
2 | 2 | ||
3 | PV = "0.90.0+git${SRCPV}" | 3 | PV = "0.90.0+git${SRCPV}" |
4 | PR = "r2" | 4 | PR = "r0" |
5 | 5 | ||
6 | SRC_URI = "git://git.clutter-project.org/clutter-gtk.git;protocol=git;branch=master \ | 6 | SRC_URI = "git://git.clutter-project.org/clutter-gtk.git;protocol=git;branch=master \ |
7 | file://disable_deprecated.patch" | 7 | file://disable_deprecated.patch \ |
8 | file://enable_tests.patch \ | ||
9 | " | ||
8 | 10 | ||
9 | LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552" | 11 | LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552" |
10 | 12 | ||
diff --git a/meta/recipes-graphics/clutter/clutter-gtk.inc b/meta/recipes-graphics/clutter/clutter-gtk.inc index 25b5200ca2..8492d9f53f 100644 --- a/meta/recipes-graphics/clutter/clutter-gtk.inc +++ b/meta/recipes-graphics/clutter/clutter-gtk.inc | |||
@@ -7,7 +7,7 @@ DEPENDS = "gtk+" | |||
7 | FILESPATH = "${FILE_DIRNAME}/clutter-gtk" | 7 | FILESPATH = "${FILE_DIRNAME}/clutter-gtk" |
8 | 8 | ||
9 | PACKAGES =+ "${PN}-examples" | 9 | PACKAGES =+ "${PN}-examples" |
10 | FILES_${PN}-examples = "${bindir}/gtk-clutter-test ${bindir}/gtk-clutter-events ${bindir}/gtk-clutter-multistage" | 10 | FILES_${PN}-examples = "${bindir}/*" |
11 | 11 | ||
12 | inherit autotools pkgconfig gtk-doc | 12 | inherit autotools pkgconfig gtk-doc |
13 | 13 | ||
diff --git a/meta/recipes-graphics/clutter/clutter-gtk/disable_deprecated.patch b/meta/recipes-graphics/clutter/clutter-gtk/disable_deprecated.patch index fbfaceeefd..df0c52c1d6 100644 --- a/meta/recipes-graphics/clutter/clutter-gtk/disable_deprecated.patch +++ b/meta/recipes-graphics/clutter/clutter-gtk/disable_deprecated.patch | |||
@@ -6,12 +6,13 @@ Signed-off-by: Saul Wold <sgw@linux.intel.com> | |||
6 | 6 | ||
7 | Index: git/clutter-gtk/Makefile.am | 7 | Index: git/clutter-gtk/Makefile.am |
8 | =================================================================== | 8 | =================================================================== |
9 | --- git.orig/clutter-gtk/Makefile.am 2010-11-16 11:04:29.000000000 -0800 | 9 | --- git.orig/clutter-gtk/Makefile.am 2011-01-30 13:10:29.000000000 +0800 |
10 | +++ git/clutter-gtk/Makefile.am 2010-11-16 11:06:16.278993999 -0800 | 10 | +++ git/clutter-gtk/Makefile.am 2011-01-30 13:15:09.000000000 +0800 |
11 | @@ -16,7 +16,6 @@ | 11 | @@ -15,8 +15,6 @@ |
12 | -DCLUTTER_GTK_COMPILATION \ | ||
12 | -DG_DISABLE_DEPRECATED \ | 13 | -DG_DISABLE_DEPRECATED \ |
13 | -DGDK_PIXBUF_DISABLE_DEPRECATED \ | 14 | -DGDK_PIXBUF_DISABLE_DEPRECATED \ |
14 | -DGDK_DISABLE_DEPRECATED \ | 15 | - -DGDK_DISABLE_DEPRECATED \ |
15 | - -DGTK_DISABLE_DEPRECATED \ | 16 | - -DGTK_DISABLE_DEPRECATED \ |
16 | -DCLUTTER_DISABLE_DEPRECATED \ | 17 | -DCLUTTER_DISABLE_DEPRECATED \ |
17 | $(CLUTTER_GTK_DEBUG_CFLAGS) \ | 18 | $(CLUTTER_GTK_DEBUG_CFLAGS) \ |
diff --git a/meta/recipes-graphics/clutter/clutter-gtk/enable_tests.patch b/meta/recipes-graphics/clutter/clutter-gtk/enable_tests.patch new file mode 100644 index 0000000000..e91b8272f6 --- /dev/null +++ b/meta/recipes-graphics/clutter/clutter-gtk/enable_tests.patch | |||
@@ -0,0 +1,17 @@ | |||
1 | Install the test binary needed for poky-image-clutter | ||
2 | |||
3 | Signed-off-by: Zhai Edwin <edwin.zhai@intel.com> | ||
4 | |||
5 | Index: git/examples/Makefile.am | ||
6 | =================================================================== | ||
7 | --- git.orig/examples/Makefile.am 2011-01-31 09:58:47.000000000 +0800 | ||
8 | +++ git/examples/Makefile.am 2011-01-31 09:59:02.000000000 +0800 | ||
9 | @@ -2,7 +2,7 @@ | ||
10 | |||
11 | NULL = | ||
12 | |||
13 | -noinst_PROGRAMS = \ | ||
14 | +bin_PROGRAMS = \ | ||
15 | animated-notebook \ | ||
16 | expose-test \ | ||
17 | gtk-clutter-events \ | ||
diff --git a/meta/recipes-graphics/tasks/task-poky-clutter.bb b/meta/recipes-graphics/tasks/task-poky-clutter.bb index f740d74c54..c5d829d071 100644 --- a/meta/recipes-graphics/tasks/task-poky-clutter.bb +++ b/meta/recipes-graphics/tasks/task-poky-clutter.bb | |||
@@ -26,11 +26,11 @@ ALLOW_EMPTY = "1" | |||
26 | RDEPENDS_task-poky-clutter-core = "\ | 26 | RDEPENDS_task-poky-clutter-core = "\ |
27 | clutter-1.4 \ | 27 | clutter-1.4 \ |
28 | clutter-gst-1.0 \ | 28 | clutter-gst-1.0 \ |
29 | clutter-gtk-1.0" | 29 | clutter-gtk-1.4" |
30 | 30 | ||
31 | RDEPENDS_task-poky-clutter-tests = "\ | 31 | RDEPENDS_task-poky-clutter-tests = "\ |
32 | clutter-gst-1.0-examples \ | 32 | clutter-gst-1.0-examples \ |
33 | clutter-gtk-1.0-examples" | 33 | clutter-gtk-1.4-examples" |
34 | 34 | ||
35 | #RDEPENDS_task-poky-clutter-apps = "\ | 35 | #RDEPENDS_task-poky-clutter-apps = "\ |
36 | # clutter-box2d " | 36 | # clutter-box2d " |