mirror of
https://git.yoctoproject.org/poky
synced 2026-03-25 19:02:23 +01:00
The base_contains is kept as a compatibility method and we ought to not use it in OE-Core so we can remove it from base metadata in future. (From OE-Core rev: d83b16dbf0862be387f84228710cb165c6d2b03b) Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
25 lines
850 B
BlitzBasic
25 lines
850 B
BlitzBasic
require ${BPN}.inc
|
|
|
|
DEFAULT_PREFERENCE = "-1"
|
|
|
|
LIC_FILES_CHKSUM = "file://docs/license.html;md5=f69a4626e9efc40fa0d3cc3b02c9eacf"
|
|
|
|
PR = "${INC_PR}.0"
|
|
SRCREV = "4636e87191fddd492ed8c61ba61faf4b2d89b2e4"
|
|
PV = "9.2.5+git${SRCPV}"
|
|
|
|
SRC_URI = "git://anongit.freedesktop.org/git/mesa/mesa \
|
|
file://0002-pipe_loader_sw-include-xlib_sw_winsys.h-only-when-HA.patch \
|
|
file://0006-fix-out-of-tree-egl.patch \
|
|
"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
#because we cannot rely on the fact that all apps will use pkgconfig,
|
|
#make eglplatform.h independent of MESA_EGL_NO_X11_HEADER
|
|
do_install_append() {
|
|
if ${@bb.utils.contains('PACKAGECONFIG', 'egl', 'true', 'false', d)}; then
|
|
sed -i -e 's/^#ifdef MESA_EGL_NO_X11_HEADERS/#if ${@bb.utils.contains('DISTRO_FEATURES', 'x11', '0', '1', d)}/' ${D}${includedir}/EGL/eglplatform.h
|
|
fi
|
|
}
|