blob: d290c3c73738bcace481f1e801621b8662f4c758 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# FIXME: can not override PACKAGECONFIG.
PACKAGECONFIG[gles] = "--enable-gles1 --disable-gles2"
PACKAGECONFIG[egl] = "--enable-egl --with-egl-platforms=wayland"
# Disable the gbm modules of mesa
EXTRA_OECONF_rcar-gen3 := \
"${@'${EXTRA_OECONF}'.replace('--enable-gbm', '--disable-gbm')}"
# Remove the gbm and egl packages. These are provided in other recipes.
PACKAGES_remove_rcar-gen3 = " \
libgbm-dev libgbm \
libegl-mesa-dev libegl-mesa \
libegl-dev libegl \
libgles2-mesa libgles2-mesa-dev \
"
INSTALLED_HEADER = "src/egl/wayland/wayland-egl/wayland-egl-priv.h"
# Remove the x11 configure
PACKAGECONFIG_rcar-gen3 := "${@'${PACKAGECONFIG}'.replace('x11', '')}"
do_install_append_rcar-gen3() {
# Remove libegl-mesa modules and headers
rm -f ${D}/${libdir}/libEGL.la
rm -f ${D}/${libdir}/libEGL.so*
rm -f ${D}/${libdir}/pkgconfig/egl.pc
rm -rf ${D}/${includedir}/EGL
rm -rf ${D}/${includedir}/KHR
# install required header for wayland
install -d ${D}/usr/include
install -m 644 ${S}/${INSTALLED_HEADER} ${D}/usr/include/
}
FILES_libwayland-egl-dev += " \
/usr/include \
/usr/include/*.h \
"
|