diff options
author | Jussi Kukkonen <jussi.kukkonen@intel.com> | 2015-05-27 11:16:53 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-05-29 10:17:14 +0100 |
commit | 320d766fe405c686b5339897f6f5a1baaed4c61d (patch) | |
tree | ea1e7e9f35b015be8e264ed123960efb3068cbc2 /meta/recipes-graphics/waffle/waffle_1.5.1.bb | |
parent | 346ef9245db8423796cb3e0675ea82fd973d80f1 (diff) | |
download | poky-320d766fe405c686b5339897f6f5a1baaed4c61d.tar.gz |
waffle: Upgrade 1.3.0 -> 1.5.1
* Update SRC_URI to waffle-gl.org
* Add new cmake files to -dev package
* Inherit lib_package so the new wflinfo binary is packaged properly
* Fix PACKAGECONFIG line for gbm
* Add the not-found configuration for all PACKAGECONFIG options to make
builds reproducible (the default builds if dependencies are there)
(From OE-Core rev: f58ddacfa153e2bd9fcc79fa1e2c65ae6ef6af02)
Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/waffle/waffle_1.5.1.bb')
-rw-r--r-- | meta/recipes-graphics/waffle/waffle_1.5.1.bb | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/meta/recipes-graphics/waffle/waffle_1.5.1.bb b/meta/recipes-graphics/waffle/waffle_1.5.1.bb new file mode 100644 index 0000000000..b8aa05a2db --- /dev/null +++ b/meta/recipes-graphics/waffle/waffle_1.5.1.bb | |||
@@ -0,0 +1,33 @@ | |||
1 | SUMMARY = "cross-platform C library to defer selection of GL API and of window system" | ||
2 | LICENSE = "BSD-2-Clause" | ||
3 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=4c5154407c2490750dd461c50ad94797 \ | ||
4 | file://include/waffle/waffle.h;endline=24;md5=61dbf8697f61c78645e75a93c585b1bf" | ||
5 | |||
6 | SRC_URI = "http://waffle-gl.org/files/release/${BPN}-${PV}/${BPN}-${PV}.tar.xz" | ||
7 | SRC_URI[md5sum] = "c0d802bc3d0aba87c51e423a3a8bdd69" | ||
8 | SRC_URI[sha256sum] = "cbab0e926515064e818bf089a5af04be33307e5f40d07659fb40d59b2bfe20aa" | ||
9 | |||
10 | inherit cmake distro_features_check lib_package | ||
11 | |||
12 | # This should be overridden per-machine to reflect the capabilities of the GL | ||
13 | # stack. | ||
14 | PACKAGECONFIG ??= "glx" | ||
15 | |||
16 | # libx11 requires x11 in DISTRO_FEATURES. | ||
17 | REQUIRED_DISTRO_FEATURES = "${@bb.utils.contains('PACKAGECONFIG', 'glx', 'x11', '', d)}" | ||
18 | |||
19 | # I say virtual/libgl, actually wants gl.pc | ||
20 | PACKAGECONFIG[glx] = "-Dwaffle_has_glx=1,-Dwaffle_has_glx=0,virtual/libgl libx11" | ||
21 | |||
22 | # I say virtual/libgl, actually wants wayland-egl.pc, egl.pc, and the wayland | ||
23 | # DISTRO_FEATURE. | ||
24 | PACKAGECONFIG[wayland] = "-Dwaffle_has_wayland=1,-Dwaffle_has_wayland=0,virtual/libgl wayland" | ||
25 | |||
26 | # I say virtual/libgl, actually wants gbm.pc egl.pc | ||
27 | PACKAGECONFIG[gbm] = "-Dwaffle_has_gbm=1,-Dwaffle_has_gbm=0,virtual/libgl udev" | ||
28 | |||
29 | # I say virtual/libgl, actually wants egl.pc | ||
30 | PACKAGECONFIG[x11-egl] = "-Dwaffle_has_x11_egl=1,-Dwaffle_has_x11_egl=0,virtual/libgl libxcb" | ||
31 | |||
32 | FILES_${PN}-dev += "${datadir}/cmake/Modules/FindWaffle.cmake \ | ||
33 | ${libdir}/cmake/Waffle/" | ||