diff options
author | Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com> | 2025-06-25 00:54:29 +0300 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2025-06-26 07:26:20 -0700 |
commit | 22fa4bafae7b649ff24bf39ff56af653feb244c7 (patch) | |
tree | eba0bac275a9084e7ca09ac4f173ab63f063ecca | |
parent | 389a2e48a8ea8a83f4a19316c9fc212b3613f81d (diff) | |
download | meta-openembedded-22fa4bafae7b649ff24bf39ff56af653feb244c7.tar.gz |
libglvnd: drop recipe
The libglvnd recipe has been picked up into OE-Core. Drop corresponding
recipe from from meta-oe.
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-graphics/libglvnd/libglvnd_1.7.0.bb | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/meta-oe/recipes-graphics/libglvnd/libglvnd_1.7.0.bb b/meta-oe/recipes-graphics/libglvnd/libglvnd_1.7.0.bb deleted file mode 100644 index f26caf6940..0000000000 --- a/meta-oe/recipes-graphics/libglvnd/libglvnd_1.7.0.bb +++ /dev/null | |||
@@ -1,38 +0,0 @@ | |||
1 | DESCRIPTION = "libglvnd is a vendor-neutral dispatch layer for arbitrating \ | ||
2 | OpenGL API calls between multiple vendors." | ||
3 | HOMEPAGE = "https://gitlab.freedesktop.org/glvnd/libglvnd" | ||
4 | LICENSE = "MIT & BSD-1-Clause & BSD-3-Clause & GPL-3.0-with-autoconf-exception" | ||
5 | LIC_FILES_CHKSUM = "file://README.md;beginline=323;md5=7ac5f0111f648b92fe5427efeb08e8c4" | ||
6 | |||
7 | SRC_URI = "git://git@gitlab.freedesktop.org/glvnd/libglvnd.git;protocol=https;branch=master" | ||
8 | |||
9 | # v1.5.0 tag | ||
10 | SRCREV = "faa23f21fc677af5792825dc30cb1ccef4bf33a6" | ||
11 | |||
12 | REQUIRED_DISTRO_FEATURES = "opengl" | ||
13 | |||
14 | inherit meson pkgconfig features_check | ||
15 | |||
16 | |||
17 | PACKAGECONFIG ?= "\ | ||
18 | ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11', '', d)} \ | ||
19 | ${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'egl gles1 gles2', '', d)} \ | ||
20 | ${@bb.utils.contains('DISTRO_FEATURES', 'opengl x11', 'glx', '', d)} \ | ||
21 | " | ||
22 | |||
23 | PACKAGECONFIG[x11] = "-Dx11=enabled,-Dx11=disabled,libx11 libxext xorgproto" | ||
24 | PACKAGECONFIG[glx] = "-Dglx=enabled,-Dglx=disabled,libx11 libxext xorgproto,,libglx-icd" | ||
25 | PACKAGECONFIG[egl] = "-Degl=true,-Degl=false,,libegl-icd" | ||
26 | PACKAGECONFIG[gles1] = "-Dgles1=true,-Dgles1=false," | ||
27 | PACKAGECONFIG[gles2] = "-Dgles2=true,-Dgles2=false," | ||
28 | |||
29 | BBCLASSEXTEND = "native nativesdk" | ||
30 | |||
31 | PROVIDES = " \ | ||
32 | ${@bb.utils.contains('PACKAGECONFIG', 'glx', 'virtual/libgl', '', d)} \ | ||
33 | ${@bb.utils.contains('PACKAGECONFIG', 'gles1', 'virtual/libgles1', '', d)} \ | ||
34 | ${@bb.utils.contains('PACKAGECONFIG', 'gles2', 'virtual/libgles2 virtual/libgles3', '', d)} \ | ||
35 | ${@bb.utils.contains('PACKAGECONFIG', 'egl', 'virtual/egl', '', d)} \ | ||
36 | " | ||
37 | |||
38 | RPROVIDES:${PN} += "${@bb.utils.contains('PACKAGECONFIG', 'egl', 'libegl', '', d)}" | ||