mirror of
https://git.yoctoproject.org/poky
synced 2026-04-27 21:32:13 +02:00
* 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'
(From OE-Core rev: 3edf08b38b0af93cef0933b061349264dc86d54c)
Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
17 lines
470 B
PHP
17 lines
470 B
PHP
SUMMARY = "Library for embedding a Clutter canvas in a GTK+ application"
|
|
HOMEPAGE = "http://www.clutter-project.org/"
|
|
LICENSE = "LGPLv2+"
|
|
|
|
inherit clutter distro_features_check
|
|
# depends on clutter-1.0 which depends on cogl-1.0
|
|
REQUIRED_DISTRO_FEATURES ?= "opengl"
|
|
# depends on gtk+3
|
|
ANY_OF_DISTRO_FEATURES = "${GTK3DISTROFEATURES}"
|
|
|
|
DEPENDS = "clutter-1.0 gtk+3"
|
|
PACKAGES =+ "${PN}-examples"
|
|
AUTOTOOLS_AUXDIR = "${S}/build"
|
|
|
|
EXTRA_OECONF += "--disable-introspection"
|
|
|