diff options
author | Wenzong Fan <wenzong.fan@windriver.com> | 2015-10-21 04:23:55 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-11-16 11:14:38 +0000 |
commit | 3edf08b38b0af93cef0933b061349264dc86d54c (patch) | |
tree | 2f99a5328a7663ef410def2023903b2b2d4f230c /meta/recipes-graphics/cogl | |
parent | a3310eb5a447864e82a38cb7852f30c17c0b91bb (diff) | |
download | openembedded-core-3edf08b38b0af93cef0933b061349264dc86d54c.tar.gz openembedded-core-3edf08b38b0af93cef0933b061349264dc86d54c.tar.bz2 openembedded-core-3edf08b38b0af93cef0933b061349264dc86d54c.zip |
recipes: add distro_features_check for some packages
* The packages that depends on gtk+3 require any of distro features
from ${GTK3DISTROFEATURES}
* The packages that depends on virtual/egl, virtual/libgl ... require
distro feature 'opengl'
Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-graphics/cogl')
-rw-r--r-- | meta/recipes-graphics/cogl/cogl-1.0.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/recipes-graphics/cogl/cogl-1.0.inc b/meta/recipes-graphics/cogl/cogl-1.0.inc index 3da31c85fd..88d84ea5fe 100644 --- a/meta/recipes-graphics/cogl/cogl-1.0.inc +++ b/meta/recipes-graphics/cogl/cogl-1.0.inc @@ -2,7 +2,9 @@ SUMMARY = "Modern 3D graphics API with associated utility APIs" HOMEPAGE = "http://wiki.clutter-project.org/wiki/Cogl" LICENSE = "MIT" -inherit clutter +inherit clutter distro_features_check +# cogl-1.0 needs opengl to build +REQUIRED_DISTRO_FEATURES ?= "opengl" DEPENDS = "glib-2.0 gdk-pixbuf" PACKAGES =+ "${PN}-examples \ |