summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/clutter/cogl.inc
diff options
context:
space:
mode:
authorTomas Frydrych <tomas@sleepfive.com>2013-05-20 16:05:20 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-05-21 09:30:15 +0100
commite847bd9f31210f0e3190cd7193cceb5cacfda5ab (patch)
tree50025a262d53a31356135d81ad302bf1ae66d660 /meta/recipes-graphics/clutter/cogl.inc
parent525771c46aa8540a395138f7dd2417cf305dad51 (diff)
downloadpoky-e847bd9f31210f0e3190cd7193cceb5cacfda5ab.tar.gz
cogl: Replace with 1.14.0 version
The package has been renamed to cogl-1.0 instead of cogl-vmajor.vminor, keeping up with the upstream versioning policy (e.g., all 1.x packages install cogl-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 parallel installable, it is not possible to use two versions of cogl 1.x at the same time anyway). Package configuration is provided via PACKAGECONFIG options as follows: GL flavour: 'gl' for big GL or 'gles2' for GLES2 (GLES1 is availabe in cogl, but not supporeted here at present.) EGL platform: 'egl-null' -- PVR-style null platform 'egl-kms' -- kms platform provide by Mesa 'egl-x11' -- egl over xlib platform (Additional EGL platforms, e.g., Wayland are supported by cogl, but not supported here at present.) GLX: 'glx' for the GLX extension support (implies 'gl') Default configuration is 'glx'; typical configuration providing 'native' egl on embedded HW would be 'gles2 egl-null'. (From OE-Core rev: b508fdd2b19ca30da8d09caf646897dc4cf195c8) Signed-off-by: Tomas Frydrych <tomas@sleepfive.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/clutter/cogl.inc')
-rw-r--r--meta/recipes-graphics/clutter/cogl.inc22
1 files changed, 0 insertions, 22 deletions
diff --git a/meta/recipes-graphics/clutter/cogl.inc b/meta/recipes-graphics/clutter/cogl.inc
deleted file mode 100644
index 26f7889ca4..0000000000
--- a/meta/recipes-graphics/clutter/cogl.inc
+++ /dev/null
@@ -1,22 +0,0 @@
1DESCRIPTION = "a modern 3D graphics API with associated utility APIs"
2HOMEPAGE = "http://wiki.clutter-project.org/wiki/Cogl"
3LICENSE = "LGPLv2.1+"
4
5STDDEPENDS = "virtual/libx11 pango glib-2.0 libxfixes gdk-pixbuf libxi"
6BASE_CONF = "${@get_clutter_fpu_setting(bb, d)}"
7
8DEPENDS = "${STDDEPENDS} virtual/libgl libxcomposite libxdamage libdrm"
9EXTRA_OECONF = "${BASE_CONF} --with-flavour=glx"
10
11FILESPATH = "${FILE_DIRNAME}/cogl"
12
13inherit autotools pkgconfig gtk-doc gettext
14
15#check for TARGET_FPU=soft and inform configure of the result so it can disable some floating points
16require clutter-fpu.inc
17
18#Fix up some weirdness in the docs
19do_configure_prepend() {
20 sed -i s:doc/reference/Makefile::g ${S}/configure.ac
21 sed -i s:doc::g ${S}/Makefile.am
22}