diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2019-06-01 13:26:23 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-06-02 10:23:50 +0100 |
commit | 6bf187a6c0f9974b8fe8d5ae796d8db8004d6c04 (patch) | |
tree | 5b9ec04176ce6aa502e0a44afbc92a0d30b6523c /meta/recipes-graphics/mesa/mesa-demos_8.4.0.bb | |
parent | 6560db9ddfd39a2715ede96430228306b00f53dd (diff) | |
download | poky-6bf187a6c0f9974b8fe8d5ae796d8db8004d6c04.tar.gz |
mesa-demos: update to 8.4.0
(From OE-Core rev: fa51e660345ade5256a1c566ae387914ca1c109b)
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/mesa/mesa-demos_8.4.0.bb')
-rw-r--r-- | meta/recipes-graphics/mesa/mesa-demos_8.4.0.bb | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/meta/recipes-graphics/mesa/mesa-demos_8.4.0.bb b/meta/recipes-graphics/mesa/mesa-demos_8.4.0.bb new file mode 100644 index 0000000000..129a47df48 --- /dev/null +++ b/meta/recipes-graphics/mesa/mesa-demos_8.4.0.bb | |||
@@ -0,0 +1,59 @@ | |||
1 | SUMMARY = "Mesa demo applications" | ||
2 | DESCRIPTION = "This package includes the demonstration application, such as glxgears. \ | ||
3 | These applications can be used for Mesa validation and benchmarking." | ||
4 | HOMEPAGE = "http://mesa3d.org" | ||
5 | BUGTRACKER = "https://bugs.freedesktop.org" | ||
6 | SECTION = "x11" | ||
7 | |||
8 | LICENSE = "MIT & PD" | ||
9 | LIC_FILES_CHKSUM = "file://src/xdemos/glxgears.c;beginline=1;endline=20;md5=914225785450eff644a86c871d3ae00e \ | ||
10 | file://src/xdemos/glxdemo.c;beginline=1;endline=8;md5=b01d5ab1aee94d35b7efaa2ef48e1a06" | ||
11 | |||
12 | SRC_URI = "https://mesa.freedesktop.org/archive/demos/${BPN}-${PV}.tar.bz2 \ | ||
13 | file://0001-mesa-demos-Add-missing-data-files.patch \ | ||
14 | file://0003-configure-Allow-to-disable-demos-which-require-GLEW-.patch \ | ||
15 | file://0004-Use-DEMOS_DATA_DIR-to-locate-data-files.patch \ | ||
16 | file://0007-Install-few-more-test-programs.patch \ | ||
17 | file://0008-glsl-perf-Add-few-missing-.glsl-.vert-.frag-files-to.patch \ | ||
18 | file://0009-glsl-perf-Install-.glsl-.vert-.frag-files.patch \ | ||
19 | file://0012-mesa-demos-OpenVG-demos-with-single-frame-need-eglSw.patch \ | ||
20 | file://0013-only-build-GLX-demos-if-needed.patch \ | ||
21 | " | ||
22 | SRC_URI[md5sum] = "6b65a02622765522176d00f553086fa3" | ||
23 | SRC_URI[sha256sum] = "01e99c94a0184e63e796728af89bfac559795fb2a0d6f506fa900455ca5fff7d" | ||
24 | |||
25 | inherit autotools pkgconfig distro_features_check | ||
26 | # depends on virtual/egl, virtual/libgl ... | ||
27 | REQUIRED_DISTRO_FEATURES = "opengl x11" | ||
28 | |||
29 | PACKAGECONFIG ?= "drm osmesa freetype2 gbm egl gles1 gles2 \ | ||
30 | x11 glew glu glx" | ||
31 | |||
32 | # The Wayland code doesn't work with Wayland 1.0, so disable it for now | ||
33 | #${@bb.utils.filter('DISTRO_FEATURES', 'wayland', d)}" | ||
34 | |||
35 | EXTRA_OECONF = "--with-system-data-files" | ||
36 | |||
37 | PACKAGECONFIG[drm] = "--enable-libdrm,--disable-libdrm,libdrm" | ||
38 | PACKAGECONFIG[egl] = "--enable-egl,--disable-egl,virtual/egl" | ||
39 | PACKAGECONFIG[freetype2] = "--enable-freetype2,--disable-freetype2,freetype" | ||
40 | PACKAGECONFIG[gbm] = "--enable-gbm,--disable-gbm,virtual/libgl" | ||
41 | PACKAGECONFIG[gles1] = "--enable-gles1,--disable-gles1,virtual/libgles1" | ||
42 | PACKAGECONFIG[gles2] = "--enable-gles2,--disable-gles2,virtual/libgles2" | ||
43 | PACKAGECONFIG[glut] = "--with-glut=${STAGING_EXECPREFIXDIR},--without-glut,freeglut" | ||
44 | PACKAGECONFIG[osmesa] = "--enable-osmesa,--disable-osmesa," | ||
45 | PACKAGECONFIG[vg] = "--enable-vg,--disable-vg,virtual/libopenvg" | ||
46 | PACKAGECONFIG[wayland] = "--enable-wayland,--disable-wayland,virtual/libgl wayland" | ||
47 | PACKAGECONFIG[x11] = "--enable-x11,--disable-x11,virtual/libx11" | ||
48 | PACKAGECONFIG[glew] = "--enable-glew,--disable-glew,glew" | ||
49 | PACKAGECONFIG[glu] = "--enable-glu,--disable-glu,virtual/libgl" | ||
50 | PACKAGECONFIG[glx] = "--enable-glx-demos,--disable-glx-demos" | ||
51 | |||
52 | do_install_append() { | ||
53 | # it can be completely empty when all PACKAGECONFIG options are disabled | ||
54 | rmdir --ignore-fail-on-non-empty ${D}${bindir} | ||
55 | |||
56 | if [ -f ${D}${bindir}/clear ]; then | ||
57 | mv ${D}${bindir}/clear ${D}${bindir}/clear.mesa-demos | ||
58 | fi | ||
59 | } | ||