blob: 0aa77e0370d2566011a237feb7535a64deaf2c00 (
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
|
# 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
PACKAGECONFIG_remove = "gbm"
# Remove the gbm and egl packages. These are provided in other recipes.
PACKAGES_remove = " \
libgbm-dev libgbm \
libegl-mesa-dev libegl-mesa \
libegl-dev libegl \
libgles2-mesa libgles2-mesa-dev \
libwayland-egl libwayland-egl-dev \
"
do_install_append() {
# 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
}
|