blob: 35bfd378c807a1b1e712f1b153894663c6075aa3 (
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
|
SUMMARY = "Graphics OpenGL ES user libraries and depenencies package group"
LICENSE = "CLOSED & MIT"
DEPENDS = "gles-user-module \
${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'libgbm wayland-kms', '', d)} \
"
PR = "r0"
inherit packagegroup
PACKAGES = " \
packagegroup-graphics-libegl \
"
RDEPENDS_packagegroup-graphics-libegl = " \
gles-user-module \
${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'libgbm wayland-kms', '', d)} \
"
PROVIDES = "virtual/egl"
RPROVIDES_${PN} += " \
libegl \
libegl1 \
"
|