blob: 19e165e43866c4acb6e6b7b775ace6bc9bcf6113 (
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
37
|
SUMMARY = "Renesas package group for Weston"
LICENSE = "CLOSED & MIT"
inherit packagegroup
require include/gles-control.inc
PACKAGES = " \
packagegroup-wayland-community \
packagegroup-graphics-renesas-proprietary \
packagegroup-graphics-renesas-wayland \
"
PR = "r0"
RDEPENDS_packagegroup-wayland-community = " \
wayland \
weston \
weston-bin \
alsa-utils \
alsa-tools \
libdrm-tests \
libdrm-kms \
"
RDEPENDS_packagegroup-graphics-renesas-proprietary = " \
${@bb.utils.contains('USE_GLES', '1', \
'kernel-module-gles gles-user-module' , \
'', d)} \
"
DEPENDS_packagegroup-graphics-renesas-wayland = "libegl"
RDEPENDS_packagegroup-graphics-renesas-wayland = " \
${@bb.utils.contains('USE_GLES_WAYLAND', '1', \
'libgbm libgbm-dev wayland-kms', \
'', d)} \
"
|