mirror of
https://git.yoctoproject.org/poky
synced 2026-04-25 15:32:13 +02:00
Imports the current EGL API registry from Khronos. Makes EGL support optional: this is reflected in the recipe but egl is enabled by default as before. (From OE-Core rev: c6b71bc608c66c216a02fafa4781f19cf6f0f465) Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
22 lines
820 B
BlitzBasic
22 lines
820 B
BlitzBasic
SUMMARY = "OpenGL function pointer management library"
|
|
HOMEPAGE = "https://github.com/anholt/libepoxy/"
|
|
SECTION = "libs"
|
|
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=58ef4c80d401e07bd9ee8b6b58cf464b"
|
|
|
|
SRC_URI = "https://github.com/anholt/${BPN}/releases/download/${PV}/${BP}.tar.xz"
|
|
SRC_URI[md5sum] = "af4c3ce0fb1143bdc4e43f85695a9bed"
|
|
SRC_URI[sha256sum] = "0b808a06c9685a62fca34b680abb8bc7fb2fda074478e329b063c1f872b826f6"
|
|
UPSTREAM_CHECK_URI = "https://github.com/anholt/libepoxy/releases"
|
|
|
|
inherit autotools pkgconfig distro_features_check
|
|
|
|
REQUIRED_DISTRO_FEATURES = "opengl"
|
|
|
|
DEPENDS = "util-macros"
|
|
|
|
PACKAGECONFIG[egl] = "--enable-egl, --disable-egl, virtual/egl"
|
|
PACKAGECONFIG[x11] = "--enable-glx, --disable-glx, virtual/libx11"
|
|
PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'x11', d)} egl"
|