diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-10-12 14:14:39 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-10-14 12:04:28 +0100 |
commit | 00545a358fb1fd29a9dd7a77ee54eaf303f41493 (patch) | |
tree | f4c1623cc8a27be76869f60d8cee3692ecd5c604 /meta/recipes-graphics/clutter/cogl.inc | |
parent | c23c4cd439bd43f4d2d57d11d530589c07bfcb11 (diff) | |
download | openembedded-core-00545a358fb1fd29a9dd7a77ee54eaf303f41493.tar.gz openembedded-core-00545a358fb1fd29a9dd7a77ee54eaf303f41493.tar.bz2 openembedded-core-00545a358fb1fd29a9dd7a77ee54eaf303f41493.zip |
cogl: Add git recipe (required by clutter)
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.inc | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/meta/recipes-graphics/clutter/cogl.inc b/meta/recipes-graphics/clutter/cogl.inc new file mode 100644 index 0000000000..387f6ecf43 --- /dev/null +++ b/meta/recipes-graphics/clutter/cogl.inc @@ -0,0 +1,22 @@ +DESCRIPTION = "Clutter graphics library" +HOMEPAGE = "http://www.clutter-project.org/" +LICENSE = "LGPL" + +STDDEPENDS = "virtual/libx11 gtk-doc-native pango glib-2.0 libxfixes gdk-pixbuf libxi" +BASE_CONF = "--disable-gtk-doc ${@get_clutter_fpu_setting(bb, d)}" + +DEPENDS = "${STDDEPENDS} virtual/libgl" +EXTRA_OECONF = "${BASE_CONF} --with-flavour=glx" + +FILESPATH = "${FILE_DIRNAME}/clutter" + +inherit autotools pkgconfig gtk-doc gettext + +#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() { + sed -i s:doc/reference/Makefile::g ${S}/configure.ac + sed -i s:doc::g ${S}/Makefile.am +} |