summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/libepoxy/libepoxy_1.5.4.bb
diff options
context:
space:
mode:
authorAnuj Mittal <anuj.mittal@intel.com>2021-01-19 14:45:36 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-01-20 22:46:17 +0000
commit464df4b87d64668137585ace234a10e5c73fa827 (patch)
treea6323bae17425415946515940ac8278d244fef3b /meta/recipes-graphics/libepoxy/libepoxy_1.5.4.bb
parentbd693ad8c5e0e004a71268b5e88474a9d5fe036b (diff)
downloadpoky-464df4b87d64668137585ace234a10e5c73fa827.tar.gz
libepoxy: upgrade 1.5.4 -> 1.5.5
(From OE-Core rev: ef24da0af6fe2eab618e01a70093efba26a12557) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/libepoxy/libepoxy_1.5.4.bb')
-rw-r--r--meta/recipes-graphics/libepoxy/libepoxy_1.5.4.bb33
1 files changed, 0 insertions, 33 deletions
diff --git a/meta/recipes-graphics/libepoxy/libepoxy_1.5.4.bb b/meta/recipes-graphics/libepoxy/libepoxy_1.5.4.bb
deleted file mode 100644
index 6646ef79fe..0000000000
--- a/meta/recipes-graphics/libepoxy/libepoxy_1.5.4.bb
+++ /dev/null
@@ -1,33 +0,0 @@
1SUMMARY = "OpenGL function pointer management library"
2DESCRIPTION = "It hides the complexity of dlopen(), dlsym(), \
3glXGetProcAddress(), eglGetProcAddress(), etc. from the app developer, with \
4very little knowledge needed on their part. They get to read GL specs and \
5write code using undecorated function names like glCompileShader()."
6HOMEPAGE = "https://github.com/anholt/libepoxy/"
7SECTION = "libs"
8
9LICENSE = "MIT"
10LIC_FILES_CHKSUM = "file://COPYING;md5=58ef4c80d401e07bd9ee8b6b58cf464b"
11
12SRC_URI = "https://github.com/anholt/${BPN}/releases/download/${PV}/${BP}.tar.xz \
13 file://0001-dispatch_common.h-define-also-EGL_NO_X11.patch \
14 "
15SRC_URI[md5sum] = "00f47ad447321f9dc59f85bc1c9d0467"
16SRC_URI[sha256sum] = "0bd2cc681dfeffdef739cb29913f8c3caa47a88a451fd2bc6e606c02997289d2"
17UPSTREAM_CHECK_URI = "https://github.com/anholt/libepoxy/releases"
18
19inherit meson pkgconfig features_check
20
21REQUIRED_DISTRO_FEATURES = "opengl"
22
23PACKAGECONFIG[egl] = "-Degl=yes, -Degl=no, virtual/egl"
24PACKAGECONFIG[x11] = "-Dglx=yes, -Dglx=no -Dx11=false, virtual/libx11 virtual/libgl"
25PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'x11', d)} egl"
26
27EXTRA_OEMESON += "-Dtests=false"
28
29PACKAGECONFIG_class-native = "egl x11"
30PACKAGECONFIG_class-nativesdk = "egl x11"
31
32BBCLASSEXTEND = "native nativesdk"
33