blob: 8d8e5288a97918de9d54d402b086d41296c2290e [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001SUMMARY = "A free implementation of the OpenGL API"
2DESCRIPTION = "Mesa is an open-source implementation of the OpenGL specification - \
3a system for rendering interactive 3D graphics. \
4A variety of device drivers allows Mesa to be used in many different environments \
5ranging from software emulation to complete hardware acceleration for modern GPUs. \
6Mesa is used as part of the overall Direct Rendering Infrastructure and X.org \
7environment."
8
9HOMEPAGE = "http://mesa3d.org"
10BUGTRACKER = "https://bugs.freedesktop.org"
11SECTION = "x11"
12LICENSE = "MIT"
Andrew Geissler82c905d2020-04-13 13:39:40 -050013LIC_FILES_CHKSUM = "file://docs/license.html;md5=c1843d93c460bbf778d6037ce324f9f7"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050014
15PE = "2"
16
Andrew Geissler4ed12e12020-06-05 18:00:41 -050017SRC_URI = "https://mesa.freedesktop.org/archive/mesa-${PV}.tar.xz \
18 file://0001-meson.build-check-for-all-linux-host_os-combinations.patch \
19 file://0002-meson.build-make-TLS-ELF-optional.patch \
20 file://0003-Allow-enable-DRI-without-DRI-drivers.patch \
21 file://0004-Revert-mesa-Enable-asm-unconditionally-now-that-gen_.patch \
22 file://0005-vc4-use-intmax_t-for-formatted-output-of-timespec-me.patch \
23 file://0001-meson-misdetects-64bit-atomics-on-mips-clang.patch \
24 "
25
Andrew Geissler635e0e42020-08-21 15:58:33 -050026SRC_URI[sha256sum] = "6800271c2be2a0447510eb4e9b67edd9521859a4d565310617c4b359eb6799fe"
Andrew Geissler4ed12e12020-06-05 18:00:41 -050027
28UPSTREAM_CHECK_GITTAGREGEX = "mesa-(?P<pver>\d+(\.\d+)+)"
29
30#because we cannot rely on the fact that all apps will use pkgconfig,
31#make eglplatform.h independent of MESA_EGL_NO_X11_HEADER
32do_install_append() {
33 if ${@bb.utils.contains('PACKAGECONFIG', 'egl', 'true', 'false', d)}; then
34 sed -i -e 's/^#elif defined(__unix__) && defined(EGL_NO_X11)$/#elif defined(__unix__) \&\& defined(EGL_NO_X11) || ${@bb.utils.contains('PACKAGECONFIG', 'x11', '0', '1', d)}/' ${D}${includedir}/EGL/eglplatform.h
35 fi
36}
37
Brad Bishop393846f2019-05-20 12:24:11 -040038DEPENDS = "expat makedepend-native flex-native bison-native libxml2-native zlib chrpath-replacement-native python3-mako-native gettext-native"
Brad Bishopd7bf8c12018-02-25 22:55:05 -050039EXTRANATIVEPATH += "chrpath-native"
Brad Bishop316dfdd2018-06-25 12:45:53 -040040PROVIDES = " \
41 ${@bb.utils.contains('PACKAGECONFIG', 'opengl', 'virtual/libgl', '', d)} \
42 ${@bb.utils.contains('PACKAGECONFIG', 'gles', 'virtual/libgles1 virtual/libgles2', '', d)} \
43 ${@bb.utils.contains('PACKAGECONFIG', 'egl', 'virtual/egl', '', d)} \
44 ${@bb.utils.contains('PACKAGECONFIG', 'gbm', 'virtual/libgbm', '', d)} \
45 virtual/mesa \
46 "
Patrick Williamsc124f4f2015-09-15 14:41:29 -050047
Brad Bishop6dbb3162019-11-25 09:41:34 -050048inherit meson pkgconfig python3native gettext features_check
Patrick Williamsc124f4f2015-09-15 14:41:29 -050049
Brad Bishopa34c0302019-09-23 22:34:48 -040050# Unset these to stop python trying to report the target Python setup
51_PYTHON_SYSCONFIGDATA_NAME[unexport] = "1"
52STAGING_INCDIR[unexport] = "1"
53STAGING_LIBDIR[unexport] = "1"
54
Brad Bishop19323692019-04-05 15:28:33 -040055BBCLASSEXTEND = "native nativesdk"
56
57ANY_OF_DISTRO_FEATURES_class-target = "opengl vulkan"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050058
Brad Bishopd7bf8c12018-02-25 22:55:05 -050059PLATFORMS ??= "${@bb.utils.filter('PACKAGECONFIG', 'x11 wayland', d)} \
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080060 ${@bb.utils.contains('PACKAGECONFIG', 'gbm', 'drm', '', d)} \
61 surfaceless"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050062
Brad Bishopd7bf8c12018-02-25 22:55:05 -050063export YOCTO_ALTERNATE_EXE_PATH = "${STAGING_LIBDIR}/llvm${MESA_LLVM_RELEASE}/llvm-config"
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080064export YOCTO_ALTERNATE_MULTILIB_NAME = "${base_libdir}"
Brad Bishop08902b02019-08-20 09:16:51 -040065export LLVM_CONFIG = "${STAGING_BINDIR_NATIVE}/llvm-config${MESA_LLVM_RELEASE}"
66export WANT_LLVM_RELEASE = "${MESA_LLVM_RELEASE}"
67
68MESA_LLVM_RELEASE ?= "${LLVMVERSION}"
Brad Bishop393846f2019-05-20 12:24:11 -040069
Andrew Geissler82c905d2020-04-13 13:39:40 -050070# set the MESA_BUILD_TYPE to either 'release' (default) or 'debug'
71# by default the upstream mesa sources build a debug release
72# here we assume the user will want a release build by default
73MESA_BUILD_TYPE ?= "release"
74def check_buildtype(d):
75 _buildtype = d.getVar('MESA_BUILD_TYPE')
76 if _buildtype not in ['release', 'debug']:
77 bb.fatal("unknown build type (%s), please set MESA_BUILD_TYPE to either 'release' or 'debug'" % _buildtype)
78 if _buildtype == 'debug':
79 return 'debugoptimized'
80 return 'plain'
81MESON_BUILDTYPE = "${@check_buildtype(d)}"
82
Brad Bishop393846f2019-05-20 12:24:11 -040083EXTRA_OEMESON = " \
84 -Dshared-glapi=true \
85 -Dgallium-opencl=disabled \
86 -Dglx-read-only-text=true \
87 -Dplatforms='${@",".join("${PLATFORMS}".split())}' \
Brad Bishop19323692019-04-05 15:28:33 -040088"
Brad Bishopd7bf8c12018-02-25 22:55:05 -050089
Brad Bishop19323692019-04-05 15:28:33 -040090PACKAGECONFIG_class-target ??= "${@bb.utils.filter('DISTRO_FEATURES', 'wayland vulkan', d)} \
Andrew Geissler82c905d2020-04-13 13:39:40 -050091 ${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'opengl egl gles gbm dri gallium virgl', '', d)} \
Brad Bishop316dfdd2018-06-25 12:45:53 -040092 ${@bb.utils.contains('DISTRO_FEATURES', 'x11 opengl', 'x11 dri3', '', d)} \
Brad Bishopd7bf8c12018-02-25 22:55:05 -050093 ${@bb.utils.contains('DISTRO_FEATURES', 'x11 vulkan', 'dri3', '', d)} \
Brad Bishop6dbb3162019-11-25 09:41:34 -050094 elf-tls \
Brad Bishopd7bf8c12018-02-25 22:55:05 -050095 "
Andrew Geisslerc182c622020-05-15 14:13:32 -050096PACKAGECONFIG_class-native ?= "gbm dri egl opengl elf-tls x11"
97PACKAGECONFIG_class-nativesdk ?= "gbm dri egl opengl elf-tls x11"
Brad Bishopd7bf8c12018-02-25 22:55:05 -050098
Brad Bishop6dbb3162019-11-25 09:41:34 -050099PACKAGECONFIG_remove_libc-musl = "elf-tls"
Brad Bishop393846f2019-05-20 12:24:11 -0400100
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500101# "gbm" requires "dri", "opengl"
Brad Bishop393846f2019-05-20 12:24:11 -0400102PACKAGECONFIG[gbm] = "-Dgbm=true,-Dgbm=false"
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600103
Brad Bishop19323692019-04-05 15:28:33 -0400104X11_DEPS = "xorgproto virtual/libx11 libxext libxxf86vm libxdamage libxfixes xrandr"
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500105# "x11" requires "opengl"
Brad Bishop393846f2019-05-20 12:24:11 -0400106PACKAGECONFIG[x11] = ",-Dglx=disabled,${X11_DEPS}"
Brad Bishop6dbb3162019-11-25 09:41:34 -0500107PACKAGECONFIG[elf-tls] = "-Delf-tls=true, -Delf-tls=false"
Brad Bishop393846f2019-05-20 12:24:11 -0400108PACKAGECONFIG[xvmc] = "-Dgallium-xvmc=true,-Dgallium-xvmc=false,libxvmc"
Brad Bishop316dfdd2018-06-25 12:45:53 -0400109PACKAGECONFIG[wayland] = ",,wayland-native wayland libdrm wayland-protocols"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500110
Brad Bishop19323692019-04-05 15:28:33 -0400111DRIDRIVERS_class-native = "swrast"
112DRIDRIVERS_class-nativesdk = "swrast"
Brad Bishop393846f2019-05-20 12:24:11 -0400113DRIDRIVERS_append_x86_class-target = ",r100,r200,nouveau,i965,i915"
114DRIDRIVERS_append_x86-64_class-target = ",r100,r200,nouveau,i965,i915"
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500115# "dri" requires "opengl"
Brad Bishop15ae2502019-06-18 21:44:24 -0400116PACKAGECONFIG[dri] = "-Ddri=true -Ddri-drivers=${DRIDRIVERS}, -Ddri=false -Ddri-drivers='', xorgproto libdrm"
Brad Bishop393846f2019-05-20 12:24:11 -0400117PACKAGECONFIG[dri3] = "-Ddri3=true, -Ddri3=false, xorgproto libxshmfence"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500118
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500119# Vulkan drivers need dri3 enabled
120# radeon could be enabled as well but requires gallium-llvm with llvm >= 3.9
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500121VULKAN_DRIVERS = ""
Brad Bishop19323692019-04-05 15:28:33 -0400122VULKAN_DRIVERS_append_x86_class-target = ",intel"
123VULKAN_DRIVERS_append_x86-64_class-target = ",intel"
Andrew Geissler635e0e42020-08-21 15:58:33 -0500124VULKAN_DRIVERS_append ="${@bb.utils.contains('PACKAGECONFIG', 'freedreno', ',freedreno', '', d)}"
Brad Bishop393846f2019-05-20 12:24:11 -0400125PACKAGECONFIG[vulkan] = "-Dvulkan-drivers=${VULKAN_DRIVERS}, -Dvulkan-drivers='',"
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500126
Brad Bishop393846f2019-05-20 12:24:11 -0400127PACKAGECONFIG[opengl] = "-Dopengl=true, -Dopengl=false"
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500128
129# "gles" requires "opengl"
Brad Bishop393846f2019-05-20 12:24:11 -0400130PACKAGECONFIG[gles] = "-Dgles1=true -Dgles2=true, -Dgles1=false -Dgles2=false"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500131
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500132# "egl" requires "dri", "opengl"
Brad Bishop393846f2019-05-20 12:24:11 -0400133PACKAGECONFIG[egl] = "-Degl=true, -Degl=false"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500134
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500135PACKAGECONFIG[etnaviv] = ""
Brad Bishop00e122a2019-10-05 11:10:57 -0400136PACKAGECONFIG[freedreno] = ""
Brad Bishop393846f2019-05-20 12:24:11 -0400137PACKAGECONFIG[kmsro] = ""
Brad Bishopc68388fc2019-08-26 01:33:31 -0400138PACKAGECONFIG[vc4] = ""
139PACKAGECONFIG[v3d] = ""
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500140
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500141GALLIUMDRIVERS = "swrast"
Brad Bishop79641f22019-09-10 07:20:22 -0400142# gallium swrast was found to crash Xorg on startup in x32 qemu
143GALLIUMDRIVERS_x86-x32 = ""
144
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500145GALLIUMDRIVERS_append ="${@bb.utils.contains('PACKAGECONFIG', 'etnaviv', ',etnaviv', '', d)}"
Brad Bishop00e122a2019-10-05 11:10:57 -0400146GALLIUMDRIVERS_append ="${@bb.utils.contains('PACKAGECONFIG', 'freedreno', ',freedreno', '', d)}"
Brad Bishop393846f2019-05-20 12:24:11 -0400147GALLIUMDRIVERS_append ="${@bb.utils.contains('PACKAGECONFIG', 'kmsro', ',kmsro', '', d)}"
Brad Bishopc68388fc2019-08-26 01:33:31 -0400148GALLIUMDRIVERS_append ="${@bb.utils.contains('PACKAGECONFIG', 'vc4', ',vc4', '', d)}"
149GALLIUMDRIVERS_append ="${@bb.utils.contains('PACKAGECONFIG', 'v3d', ',v3d', '', d)}"
Brad Bishop19323692019-04-05 15:28:33 -0400150
151# radeonsi requires LLVM
152GALLIUMDRIVERS_LLVM33 = "${@bb.utils.contains('PACKAGECONFIG', 'r600', ',radeonsi', '', d)}"
Brad Bishop316dfdd2018-06-25 12:45:53 -0400153GALLIUMDRIVERS_LLVM33_ENABLED = "${@oe.utils.version_less_or_equal('MESA_LLVM_RELEASE', '3.2', False, len('${GALLIUMDRIVERS_LLVM33}') > 0, d)}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500154GALLIUMDRIVERS_LLVM = "r300,svga,nouveau${@',${GALLIUMDRIVERS_LLVM33}' if ${GALLIUMDRIVERS_LLVM33_ENABLED} else ''}"
Brad Bishop19323692019-04-05 15:28:33 -0400155
156PACKAGECONFIG[r600] = ""
Andrew Geissler82c905d2020-04-13 13:39:40 -0500157PACKAGECONFIG[virgl] = ""
Brad Bishop19323692019-04-05 15:28:33 -0400158
159GALLIUMDRIVERS_append = "${@bb.utils.contains('PACKAGECONFIG', 'gallium-llvm', ',${GALLIUMDRIVERS_LLVM}', '', d)}"
160GALLIUMDRIVERS_append = "${@bb.utils.contains('PACKAGECONFIG', 'r600', ',r600', '', d)}"
Andrew Geissler82c905d2020-04-13 13:39:40 -0500161GALLIUMDRIVERS_append = "${@bb.utils.contains('PACKAGECONFIG', 'virgl', ',virgl', '', d)}"
Brad Bishop19323692019-04-05 15:28:33 -0400162
Brad Bishop393846f2019-05-20 12:24:11 -0400163PACKAGECONFIG[gallium] = "-Dgallium-drivers=${GALLIUMDRIVERS}, -Dgallium-drivers=''"
Brad Bishop393846f2019-05-20 12:24:11 -0400164PACKAGECONFIG[gallium-llvm] = "-Dllvm=true -Dshared-llvm=true, -Dllvm=false, llvm${MESA_LLVM_RELEASE} llvm-native \
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500165 ${@'elfutils' if ${GALLIUMDRIVERS_LLVM33_ENABLED} else ''}"
Brad Bishop393846f2019-05-20 12:24:11 -0400166PACKAGECONFIG[xa] = "-Dgallium-xa=true, -Dgallium-xa=false"
Andrew Geisslerc182c622020-05-15 14:13:32 -0500167PACKAGECONFIG[va] = "-Dgallium-va=true,-Dgallium-va=false,libva-initial"
168
169PACKAGECONFIG[vdpau] = "-Dgallium-vdpau=true,-Dgallium-vdpau=false,libvdpau"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500170
Brad Bishop96ff1982019-08-19 13:50:42 -0400171PACKAGECONFIG[lima] = ""
172GALLIUMDRIVERS_append ="${@bb.utils.contains('PACKAGECONFIG', 'lima', ',lima', '', d)}"
173
Brad Bishop79641f22019-09-10 07:20:22 -0400174PACKAGECONFIG[panfrost] = ""
175GALLIUMDRIVERS_append ="${@bb.utils.contains('PACKAGECONFIG', 'panfrost', ',panfrost', '', d)}"
176
Brad Bishop393846f2019-05-20 12:24:11 -0400177OSMESA = "${@bb.utils.contains('PACKAGECONFIG', 'gallium', 'gallium', 'classic', d)}"
178PACKAGECONFIG[osmesa] = "-Dosmesa=${OSMESA},-Dosmesa=none"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500179
Brad Bishop393846f2019-05-20 12:24:11 -0400180PACKAGECONFIG[unwind] = "-Dlibunwind=true,-Dlibunwind=false,libunwind"
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500181
Brad Bishop393846f2019-05-20 12:24:11 -0400182# mesa tries to run cross-built gen_matypes on build machine to get struct size information
183EXTRA_OEMESON_append = " -Dasm=false"
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800184
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500185# llvmpipe is slow if compiled with -fomit-frame-pointer (e.g. -O2)
186FULL_OPTIMIZATION_append = " -fno-omit-frame-pointer"
187
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500188CFLAGS_append_armv5 = " -DMISSING_64BIT_ATOMICS"
Andrew Geissler82c905d2020-04-13 13:39:40 -0500189CFLAGS_append_armv6 = " -DMISSING_64BIT_ATOMICS"
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500190
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500191# Remove the mesa dependency on mesa-dev, as mesa is empty
192RDEPENDS_${PN}-dev = ""
193
Brad Bishop37a0e4d2017-12-04 01:01:44 -0500194# Add dependency so that GLES3 header don't need to be added manually
195RDEPENDS_libgles2-mesa-dev += "libgles3-mesa-dev"
196
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500197PACKAGES =+ "libegl-mesa libegl-mesa-dev \
198 libosmesa libosmesa-dev \
199 libgl-mesa libgl-mesa-dev \
200 libglapi libglapi-dev \
201 libgbm libgbm-dev \
202 libgles1-mesa libgles1-mesa-dev \
203 libgles2-mesa libgles2-mesa-dev \
204 libgles3-mesa libgles3-mesa-dev \
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500205 libxatracker libxatracker-dev \
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500206 mesa-megadriver mesa-vulkan-drivers \
Andrew Geisslerc182c622020-05-15 14:13:32 -0500207 mesa-vdpau-drivers \
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500208 "
209
210do_install_append () {
211 # Drivers never need libtool .la files
212 rm -f ${D}${libdir}/dri/*.la
213 rm -f ${D}${libdir}/egl/*.la
214 rm -f ${D}${libdir}/gallium-pipe/*.la
215 rm -f ${D}${libdir}/gbm/*.la
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500216
Brad Bishop19323692019-04-05 15:28:33 -0400217 # it was packaged in libdricore9.1.3-1 and preventing upgrades when debian.bbclass was used
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500218 chrpath --delete ${D}${libdir}/dri/*_dri.so || true
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800219
220 # libwayland-egl has been moved to wayland 1.15+
221 rm -f ${D}${libdir}/libwayland-egl*
222 rm -f ${D}${libdir}/pkgconfig/wayland-egl.pc
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500223}
224
225# For the packages that make up the OpenGL interfaces, inject variables so that
226# they don't get Debian-renamed (which would remove the -mesa suffix), and
227# RPROVIDEs/RCONFLICTs on the generic libgl name.
228python __anonymous() {
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500229 pkgconfig = (d.getVar('PACKAGECONFIG') or "").split()
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500230 for p in (("egl", "libegl", "libegl1"),
231 ("dri", "libgl", "libgl1"),
232 ("gles", "libgles1", "libglesv1-cm1"),
233 ("gles", "libgles2", "libglesv2-2"),
234 ("gles", "libgles3",)):
235 if not p[0] in pkgconfig:
236 continue
Andrew Geissler1e34c2d2020-05-29 16:02:59 -0500237 mlprefix = d.getVar("MLPREFIX")
238 fullp = mlprefix + p[1] + "-mesa"
239 mlprefix = d.getVar("MLPREFIX")
240 pkgs = " ".join(mlprefix + x for x in p[1:])
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500241 d.setVar("DEBIAN_NOAUTONAME_" + fullp, "1")
242 d.appendVar("RREPLACES_" + fullp, pkgs)
243 d.appendVar("RPROVIDES_" + fullp, pkgs)
244 d.appendVar("RCONFLICTS_" + fullp, pkgs)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500245
Andrew Geissler1e34c2d2020-05-29 16:02:59 -0500246 d.appendVar("RRECOMMENDS_" + fullp, " ${MLPREFIX}mesa-megadriver")
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500247
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500248 # For -dev, the first element is both the Debian and original name
249 fullp += "-dev"
Andrew Geissler1e34c2d2020-05-29 16:02:59 -0500250 pkgs = mlprefix + p[1] + "-dev"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500251 d.setVar("DEBIAN_NOAUTONAME_" + fullp, "1")
252 d.appendVar("RREPLACES_" + fullp, pkgs)
253 d.appendVar("RPROVIDES_" + fullp, pkgs)
254 d.appendVar("RCONFLICTS_" + fullp, pkgs)
255}
256
257python mesa_populate_packages() {
258 pkgs = ['mesa', 'mesa-dev', 'mesa-dbg']
259 for pkg in pkgs:
260 d.setVar("RPROVIDES_%s" % pkg, pkg.replace("mesa", "mesa-dri", 1))
261 d.setVar("RCONFLICTS_%s" % pkg, pkg.replace("mesa", "mesa-dri", 1))
262 d.setVar("RREPLACES_%s" % pkg, pkg.replace("mesa", "mesa-dri", 1))
263
264 import re
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500265 dri_drivers_root = oe.path.join(d.getVar('PKGD'), d.getVar('libdir'), "dri")
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600266 if os.path.isdir(dri_drivers_root):
267 dri_pkgs = os.listdir(dri_drivers_root)
268 lib_name = d.expand("${MLPREFIX}mesa-megadriver")
269 for p in dri_pkgs:
Brad Bishop19323692019-04-05 15:28:33 -0400270 m = re.match(r'^(.*)_dri\.so$', p)
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600271 if m:
272 pkg_name = " ${MLPREFIX}mesa-driver-%s" % legitimize_package_name(m.group(1))
273 d.appendVar("RPROVIDES_%s" % lib_name, pkg_name)
274 d.appendVar("RCONFLICTS_%s" % lib_name, pkg_name)
275 d.appendVar("RREPLACES_%s" % lib_name, pkg_name)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500276
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500277 pipe_drivers_root = os.path.join(d.getVar('libdir'), "gallium-pipe")
Brad Bishop19323692019-04-05 15:28:33 -0400278 do_split_packages(d, pipe_drivers_root, r'^pipe_(.*)\.so$', 'mesa-driver-pipe-%s', 'Mesa %s pipe driver', extra_depends='')
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500279}
280
281PACKAGESPLITFUNCS_prepend = "mesa_populate_packages "
282
283PACKAGES_DYNAMIC += "^mesa-driver-.*"
284
Brad Bishop19323692019-04-05 15:28:33 -0400285FILES_mesa-megadriver = "${libdir}/dri/* ${datadir}/drirc.d/00-mesa-defaults.conf"
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500286FILES_mesa-vulkan-drivers = "${libdir}/libvulkan_*.so ${datadir}/vulkan"
Andrew Geisslerc182c622020-05-15 14:13:32 -0500287FILES_${PN}-vdpau-drivers = "${libdir}/vdpau/*.so.*"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500288FILES_libegl-mesa = "${libdir}/libEGL.so.*"
289FILES_libgbm = "${libdir}/libgbm.so.*"
290FILES_libgles1-mesa = "${libdir}/libGLESv1*.so.*"
291FILES_libgles2-mesa = "${libdir}/libGLESv2.so.*"
292FILES_libgl-mesa = "${libdir}/libGL.so.*"
293FILES_libglapi = "${libdir}/libglapi.so.*"
294FILES_libosmesa = "${libdir}/libOSMesa.so.*"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500295FILES_libxatracker = "${libdir}/libxatracker.so.*"
296
Andrew Geisslerc182c622020-05-15 14:13:32 -0500297FILES_${PN}-dev = "${libdir}/pkgconfig/dri.pc ${includedir}/vulkan ${libdir}/vdpau/*.so"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500298FILES_libegl-mesa-dev = "${libdir}/libEGL.* ${includedir}/EGL ${includedir}/KHR ${libdir}/pkgconfig/egl.pc"
299FILES_libgbm-dev = "${libdir}/libgbm.* ${libdir}/pkgconfig/gbm.pc ${includedir}/gbm.h"
300FILES_libgl-mesa-dev = "${libdir}/libGL.* ${includedir}/GL ${libdir}/pkgconfig/gl.pc"
301FILES_libglapi-dev = "${libdir}/libglapi.*"
302FILES_libgles1-mesa-dev = "${libdir}/libGLESv1*.* ${includedir}/GLES ${libdir}/pkgconfig/glesv1*.pc"
303FILES_libgles2-mesa-dev = "${libdir}/libGLESv2.* ${includedir}/GLES2 ${libdir}/pkgconfig/glesv2.pc"
304FILES_libgles3-mesa-dev = "${includedir}/GLES3"
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500305FILES_libosmesa-dev = "${libdir}/libOSMesa.* ${includedir}/GL/osmesa.h ${libdir}/pkgconfig/osmesa.pc"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500306FILES_libxatracker-dev = "${libdir}/libxatracker.so ${libdir}/libxatracker.la \
307 ${includedir}/xa_tracker.h ${includedir}/xa_composite.h ${includedir}/xa_context.h \
308 ${libdir}/pkgconfig/xatracker.pc"
Brad Bishop19323692019-04-05 15:28:33 -0400309
310# Fix upgrade path from mesa to mesa-megadriver
311RREPLACES_mesa-megadriver = "mesa"
312RCONFLICTS_mesa-megadriver = "mesa"
313RPROVIDES_mesa-megadriver = "mesa"