mirror of
https://git.yoctoproject.org/poky
synced 2026-09-14 12:49:34 +02:00
Add clutter, clutter-cairo, clutter-gst, aaina and table, excluded from world builds for now
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2143 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
@@ -119,7 +119,7 @@ SRCDATE_libsyncml = "20070529"
|
|||||||
SRCDATE_matchbox-applet-light = "20070529"
|
SRCDATE_matchbox-applet-light = "20070529"
|
||||||
SRCDATE_fstests = "20070529"
|
SRCDATE_fstests = "20070529"
|
||||||
SRCDATE_abiword ?= "20070130"
|
SRCDATE_abiword ?= "20070130"
|
||||||
SRCDATE_xvideo-tests ?= "20070623"
|
SRCDATE_xvideo-tests ?= "20070702"
|
||||||
|
|
||||||
#
|
#
|
||||||
# Preferred Versions:
|
# Preferred Versions:
|
||||||
@@ -231,3 +231,9 @@ EXCLUDE_FROM_WORLD_pn-syncml-client = "1"
|
|||||||
# temporary
|
# temporary
|
||||||
EXCLUDE_FROM_WORLD_pn-lirc = "1"
|
EXCLUDE_FROM_WORLD_pn-lirc = "1"
|
||||||
EXCLUDE_FROM_WORLD_pn-lirc-modules = "1"
|
EXCLUDE_FROM_WORLD_pn-lirc-modules = "1"
|
||||||
|
# clutter needs some kind of gl to build, not yet added
|
||||||
|
EXCLUDE_FROM_WORLD_clutter = "1"
|
||||||
|
EXCLUDE_FROM_WORLD_clutter-cairo = "1"
|
||||||
|
EXCLUDE_FROM_WORLD_clutter-gst = "1"
|
||||||
|
EXCLUDE_FROM_WORLD_aaina = "1"
|
||||||
|
EXCLUDE_FROM_WORLD_table = "1"
|
||||||
12
meta/packages/clutter/aaina.inc
Normal file
12
meta/packages/clutter/aaina.inc
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
DESCRIPTION = "Aaina Clutter Demo"
|
||||||
|
HOMEPAGE = "http://www.clutter-project.org/"
|
||||||
|
LICENSE = "GPL"
|
||||||
|
|
||||||
|
DEPENDS = "clutter libxml2 gtk+ neon"
|
||||||
|
|
||||||
|
inherit autotools pkgconfig
|
||||||
|
|
||||||
|
do_stage () {
|
||||||
|
autotools_stage_all
|
||||||
|
}
|
||||||
|
|
||||||
8
meta/packages/clutter/aaina_svn.bb
Normal file
8
meta/packages/clutter/aaina_svn.bb
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
require aaina.inc
|
||||||
|
|
||||||
|
PV = "0.3.0+svn${SRCDATE}"
|
||||||
|
PR = "r1"
|
||||||
|
|
||||||
|
SRC_URI = "svn://svn.o-hand.com/repos/clutter/trunk/toys;module=aaina;proto=http"
|
||||||
|
|
||||||
|
S = "${WORKDIR}/aaina"
|
||||||
15
meta/packages/clutter/clutter-cairo.inc
Normal file
15
meta/packages/clutter/clutter-cairo.inc
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
DESCRIPTION = "Clutter Cairo"
|
||||||
|
HOMEPAGE = "http://www.clutter-project.org/"
|
||||||
|
LICENSE = "LGPL"
|
||||||
|
|
||||||
|
DEPENDS = "clutter cairo"
|
||||||
|
|
||||||
|
PACKAGES =+ "${PN}-examples"
|
||||||
|
FILES_${PN}-examples = "${bindir}/flowers ${bindir}/clock"
|
||||||
|
|
||||||
|
inherit autotools pkgconfig
|
||||||
|
|
||||||
|
do_stage () {
|
||||||
|
autotools_stage_all
|
||||||
|
}
|
||||||
|
|
||||||
28
meta/packages/clutter/clutter-cairo/enable_examples.patch
Normal file
28
meta/packages/clutter/clutter-cairo/enable_examples.patch
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
---
|
||||||
|
examples/Makefile.am | 2 +-
|
||||||
|
examples/flowers.c | 2 +-
|
||||||
|
2 files changed, 2 insertions(+), 2 deletions(-)
|
||||||
|
|
||||||
|
Index: clutter-cairo/examples/Makefile.am
|
||||||
|
===================================================================
|
||||||
|
--- clutter-cairo.orig/examples/Makefile.am 2007-07-10 00:25:03.000000000 +0100
|
||||||
|
+++ clutter-cairo/examples/Makefile.am 2007-07-10 12:06:49.000000000 +0100
|
||||||
|
@@ -1,4 +1,4 @@
|
||||||
|
-noinst_PROGRAMS = clock flowers
|
||||||
|
+bin_PROGRAMS = clock flowers
|
||||||
|
|
||||||
|
INCLUDES = -I$(top_srcdir)/ @GCC_FLAGS@ @DEPS_CFLAGS@
|
||||||
|
LDFLAGS = @DEPS_LIBS@ $(top_builddir)/libclutter-cairo-@CLUTTER_CAIRO_MAJORMINOR@.la
|
||||||
|
Index: clutter-cairo/examples/flowers.c
|
||||||
|
===================================================================
|
||||||
|
--- clutter-cairo.orig/examples/flowers.c 2007-07-10 12:30:44.000000000 +0100
|
||||||
|
+++ clutter-cairo/examples/flowers.c 2007-07-10 12:30:51.000000000 +0100
|
||||||
|
@@ -11,7 +11,7 @@
|
||||||
|
|
||||||
|
#define PETAL_MIN 20
|
||||||
|
#define PETAL_VAR 40
|
||||||
|
-#define N_FLOWERS 40 /* reduce if you have a small card */
|
||||||
|
+#define N_FLOWERS 8 /* reduce if you have a small card */
|
||||||
|
|
||||||
|
typedef struct Flower
|
||||||
|
{
|
||||||
11
meta/packages/clutter/clutter-cairo_svn.bb
Normal file
11
meta/packages/clutter/clutter-cairo_svn.bb
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
require clutter-cairo.inc
|
||||||
|
|
||||||
|
PV = "0.3.0+svn${SRCDATE}"
|
||||||
|
PR = "r2"
|
||||||
|
|
||||||
|
SRC_URI = "svn://svn.o-hand.com/repos/clutter/trunk;module=${PN};proto=http \
|
||||||
|
file://enable_examples.patch;patch=1"
|
||||||
|
|
||||||
|
S = "${WORKDIR}/${PN}"
|
||||||
|
|
||||||
|
|
||||||
6
meta/packages/clutter/clutter-fpu.inc
Normal file
6
meta/packages/clutter/clutter-fpu.inc
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
def get_clutter_fpu_setting(bb, d):
|
||||||
|
if bb.data.getVar('TARGET_FPU', d, 1) in [ 'soft' ]:
|
||||||
|
return "--without-fpu"
|
||||||
|
return ""
|
||||||
|
|
||||||
19
meta/packages/clutter/clutter-gst.inc
Normal file
19
meta/packages/clutter/clutter-gst.inc
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
DESCRIPTION = "Clutter GStreamer"
|
||||||
|
HOMEPAGE = "http://www.clutter-project.org/"
|
||||||
|
LICENSE = "LGPL"
|
||||||
|
|
||||||
|
DEPENDS = "clutter gstreamer gst-plugins-base"
|
||||||
|
|
||||||
|
PACKAGES =+ "${PN}-examples"
|
||||||
|
FILES_${PN}-examples = "${bindir}/video-player ${bindir}/video-sink ${bindir}/audio"
|
||||||
|
|
||||||
|
inherit autotools pkgconfig
|
||||||
|
|
||||||
|
do_configure_prepend() {
|
||||||
|
touch ${S}/gtk-doc.make
|
||||||
|
}
|
||||||
|
|
||||||
|
do_stage () {
|
||||||
|
autotools_stage_all
|
||||||
|
}
|
||||||
|
|
||||||
45
meta/packages/clutter/clutter-gst/autofoo.patch
Normal file
45
meta/packages/clutter/clutter-gst/autofoo.patch
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
---
|
||||||
|
configure.ac | 2 +-
|
||||||
|
doc/reference/Makefile.am | 2 +-
|
||||||
|
examples/Makefile.am | 14 +++++++-------
|
||||||
|
3 files changed, 9 insertions(+), 9 deletions(-)
|
||||||
|
|
||||||
|
Index: clutter-gst/examples/Makefile.am
|
||||||
|
===================================================================
|
||||||
|
--- clutter-gst.orig/examples/Makefile.am 2007-07-10 13:01:28.000000000 +0100
|
||||||
|
+++ clutter-gst/examples/Makefile.am 2007-07-10 13:07:33.000000000 +0100
|
||||||
|
@@ -1,4 +1,4 @@
|
||||||
|
-noinst_PROGRAMS = video-player video-sink audio
|
||||||
|
+bin_PROGRAMS = video-player video-sink audio
|
||||||
|
|
||||||
|
INCLUDES = -I$(top_srcdir)/
|
||||||
|
|
||||||
|
@@ -9,12 +9,12 @@ video_player_LDFLAGS = \
|
||||||
|
$(GST_LIBS) \
|
||||||
|
$(top_builddir)/clutter-gst/libclutter-gst-@CLUTTER_GST_MAJORMINOR@.la
|
||||||
|
|
||||||
|
-video_cube_SOURCES = video-cube.c
|
||||||
|
-video_cube_CFLAGS = $(CLUTTER_GST_CFLAGS) $(GST_CFLAGS)
|
||||||
|
-video_cube_LDFLAGS = \
|
||||||
|
- $(CLUTTER_LIBS) \
|
||||||
|
- $(GST_LIBS) \
|
||||||
|
- $(top_builddir)/clutter-gst/libclutter-gst-@CLUTTER_GST_MAJORMINOR@.la
|
||||||
|
+#video_cube_SOURCES = video-cube.c
|
||||||
|
+#video_cube_CFLAGS = $(CLUTTER_GST_CFLAGS) $(GST_CFLAGS)
|
||||||
|
+#video_cube_LDFLAGS = \
|
||||||
|
+# $(CLUTTER_LIBS) \
|
||||||
|
+# $(GST_LIBS) \
|
||||||
|
+# $(top_builddir)/clutter-gst/libclutter-gst-@CLUTTER_GST_MAJORMINOR@.la
|
||||||
|
|
||||||
|
video_sink_SOURCES = video-sink.c
|
||||||
|
video_sink_CFLAGS = $(CLUTTER_GST_CFLAGS) $(GST_CFLAGS)
|
||||||
|
Index: clutter-gst/doc/reference/Makefile.am
|
||||||
|
===================================================================
|
||||||
|
--- clutter-gst.orig/doc/reference/Makefile.am 2007-07-10 13:01:17.000000000 +0100
|
||||||
|
+++ clutter-gst/doc/reference/Makefile.am 2007-07-10 13:02:50.000000000 +0100
|
||||||
|
@@ -77,4 +77,4 @@ include $(top_srcdir)/gtk-doc.make
|
||||||
|
|
||||||
|
# Other files to distribute
|
||||||
|
# e.g. EXTRA_DIST += version.xml.in
|
||||||
|
-EXTRA_DIST += version.xml.in
|
||||||
|
+EXTRA_DIST = version.xml.in
|
||||||
11
meta/packages/clutter/clutter-gst_svn.bb
Normal file
11
meta/packages/clutter/clutter-gst_svn.bb
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
require clutter-gst.inc
|
||||||
|
|
||||||
|
PV = "0.3.0+svn${SRCDATE}"
|
||||||
|
PR = "r3"
|
||||||
|
|
||||||
|
SRC_URI = "svn://svn.o-hand.com/repos/clutter/trunk;module=${PN};proto=http \
|
||||||
|
file://autofoo.patch;patch=1"
|
||||||
|
|
||||||
|
S = "${WORKDIR}/${PN}"
|
||||||
|
|
||||||
|
|
||||||
27
meta/packages/clutter/clutter.inc
Normal file
27
meta/packages/clutter/clutter.inc
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
DESCRIPTION = "Clutter graphics library"
|
||||||
|
HOMEPAGE = "http://www.clutter-project.org/"
|
||||||
|
LICENSE = "LGPL"
|
||||||
|
|
||||||
|
STDDEPENDS = "virtual/libx11 gtk-doc pango glib-2.0 libxfixes"
|
||||||
|
BASE_CONF = "--disable-gtk-doc ${@get_clutter_fpu_setting(bb, d)}"
|
||||||
|
|
||||||
|
DEPENDS = "${STDDEPENDS}"
|
||||||
|
EXTRA_OECONF = "${BASE_CONF}"
|
||||||
|
|
||||||
|
inherit autotools pkgconfig
|
||||||
|
|
||||||
|
#check for TARGET_FPU=soft and inform configure of the result so it can disable some floating points
|
||||||
|
require clutter-fpu.inc
|
||||||
|
|
||||||
|
#Fix up some weirdness in the docs
|
||||||
|
do_configure_prepend() {
|
||||||
|
touch ${S}/gtk-doc.make
|
||||||
|
sed -i s:doc/reference/Makefile::g ${S}/configure.ac
|
||||||
|
sed -i s:doc::g ${S}/Makefile.am
|
||||||
|
}
|
||||||
|
|
||||||
|
do_stage () {
|
||||||
|
cp ${S}/clutter.pc ${S}/clutter-0.3.pc
|
||||||
|
autotools_stage_all
|
||||||
|
}
|
||||||
|
|
||||||
52
meta/packages/clutter/clutter/enable_tests.patch
Normal file
52
meta/packages/clutter/clutter/enable_tests.patch
Normal file
@@ -0,0 +1,52 @@
|
|||||||
|
---
|
||||||
|
tests/Makefile.am | 7 ++++++-
|
||||||
|
tests/test-actors.c | 2 +-
|
||||||
|
tests/test-text.c | 2 +-
|
||||||
|
3 files changed, 8 insertions(+), 3 deletions(-)
|
||||||
|
|
||||||
|
Index: clutter/tests/Makefile.am
|
||||||
|
===================================================================
|
||||||
|
--- clutter.orig/tests/Makefile.am 2007-07-09 13:51:59.000000000 +0100
|
||||||
|
+++ clutter/tests/Makefile.am 2007-07-09 19:14:47.000000000 +0100
|
||||||
|
@@ -1,4 +1,4 @@
|
||||||
|
-noinst_PROGRAMS = test-textures test-events test-offscreen test-scale \
|
||||||
|
+bin_PROGRAMS = test-textures test-events test-offscreen test-scale \
|
||||||
|
test-actors test-behave test-text test-entry test-project \
|
||||||
|
test-boxes test-perspective
|
||||||
|
|
||||||
|
@@ -19,4 +19,9 @@ test_project_SOURCES = test-project.c
|
||||||
|
test_boxes_SOURCES = test-boxes.c
|
||||||
|
test_perspective_SOURCES = test-perspective.c
|
||||||
|
|
||||||
|
+test_textdir = $(pkgdatadir)
|
||||||
|
+test_text_DATA = test-text.c
|
||||||
|
+test_actorsdir = $(pkgdatadir)
|
||||||
|
+test_actors_DATA = redhand.png
|
||||||
|
+
|
||||||
|
EXTRA_DIST = redhand.png
|
||||||
|
Index: clutter/tests/test-actors.c
|
||||||
|
===================================================================
|
||||||
|
--- clutter.orig/tests/test-actors.c 2007-07-09 19:17:50.000000000 +0100
|
||||||
|
+++ clutter/tests/test-actors.c 2007-07-09 19:18:10.000000000 +0100
|
||||||
|
@@ -146,7 +146,7 @@ main (int argc, char *argv[])
|
||||||
|
stage = clutter_stage_get_default ();
|
||||||
|
clutter_actor_set_size (stage, 800, 600);
|
||||||
|
|
||||||
|
- pixbuf = gdk_pixbuf_new_from_file ("redhand.png", NULL);
|
||||||
|
+ pixbuf = gdk_pixbuf_new_from_file ("/usr/share/clutter/redhand.png", NULL);
|
||||||
|
|
||||||
|
if (!pixbuf)
|
||||||
|
g_error("pixbuf load failed");
|
||||||
|
Index: clutter/tests/test-text.c
|
||||||
|
===================================================================
|
||||||
|
--- clutter.orig/tests/test-text.c 2007-07-09 19:17:57.000000000 +0100
|
||||||
|
+++ clutter/tests/test-text.c 2007-07-09 19:18:47.000000000 +0100
|
||||||
|
@@ -27,7 +27,7 @@ main (int argc, char *argv[])
|
||||||
|
|
||||||
|
stage = clutter_stage_get_default ();
|
||||||
|
|
||||||
|
- if (!g_file_get_contents ("test-text.c", &text, &size, NULL))
|
||||||
|
+ if (!g_file_get_contents ("/usr/share/clutter/test-text.c", &text, &size, NULL))
|
||||||
|
g_error("g_file_get_contents() of test-text.c failed");
|
||||||
|
|
||||||
|
clutter_actor_set_size (stage, 800, 600);
|
||||||
11
meta/packages/clutter/clutter_svn.bb
Normal file
11
meta/packages/clutter/clutter_svn.bb
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
require clutter.inc
|
||||||
|
|
||||||
|
PV = "0.3.0+svn${SRCDATE}"
|
||||||
|
PR = "r7"
|
||||||
|
|
||||||
|
SRC_URI = "svn://svn.o-hand.com/repos/clutter/trunk;module=clutter;proto=http \
|
||||||
|
file://enable_tests.patch;patch=1 "
|
||||||
|
|
||||||
|
S = "${WORKDIR}/clutter"
|
||||||
|
|
||||||
|
|
||||||
17
meta/packages/clutter/table.inc
Normal file
17
meta/packages/clutter/table.inc
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
DESCRIPTION = "Table Clutter Demo"
|
||||||
|
HOMEPAGE = "http://www.clutter-project.org/"
|
||||||
|
LICENSE = "LGPL"
|
||||||
|
|
||||||
|
DEPENDS = "clutter-gst gnome-vfs"
|
||||||
|
|
||||||
|
inherit autotools pkgconfig
|
||||||
|
|
||||||
|
do_install() {
|
||||||
|
install -d ${D}${bindir}
|
||||||
|
install -m 0755 ${S}/table ${D}${bindir}/table
|
||||||
|
}
|
||||||
|
|
||||||
|
#do_stage () {
|
||||||
|
# autotools_stage_all
|
||||||
|
#}
|
||||||
|
|
||||||
14
meta/packages/clutter/table/fixes.patch
Normal file
14
meta/packages/clutter/table/fixes.patch
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
Index: table/Makefile
|
||||||
|
===================================================================
|
||||||
|
--- table.orig/Makefile 2007-07-10 13:24:18.000000000 +0100
|
||||||
|
+++ table/Makefile 2007-07-10 13:28:10.000000000 +0100
|
||||||
|
@@ -8,7 +8,7 @@ all: table
|
||||||
|
|
||||||
|
|
||||||
|
table: table.o clutter-dominatrix.o clutter-video-player.o
|
||||||
|
- $(CC) -g -Wall $(CFLAGS) -o $@ table.o clutter-dominatrix.o clutter-video-player.o $(LIBS)
|
||||||
|
+ $(CC) -g -Wall $(CFLAGS) $(LDFLAGS) -o $@ table.o clutter-dominatrix.o clutter-video-player.o $(LIBS)
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -fr *.o table
|
||||||
|
\ No newline at end of file
|
||||||
11
meta/packages/clutter/table_svn.bb
Normal file
11
meta/packages/clutter/table_svn.bb
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
require table.inc
|
||||||
|
|
||||||
|
PV = "0.3.0+svn${SRCDATE}"
|
||||||
|
PR = "r0"
|
||||||
|
|
||||||
|
SRC_URI = "svn://svn.o-hand.com/repos/clutter/trunk/toys;module=table;proto=http \
|
||||||
|
file://fixes.patch;patch=1"
|
||||||
|
|
||||||
|
S = "${WORKDIR}/table"
|
||||||
|
|
||||||
|
|
||||||
Reference in New Issue
Block a user