Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | SUMMARY = "A free implementation of the OpenGL API" |
| 2 | DESCRIPTION = "Mesa is an open-source implementation of the OpenGL specification - \ |
| 3 | a system for rendering interactive 3D graphics. \ |
| 4 | A variety of device drivers allows Mesa to be used in many different environments \ |
| 5 | ranging from software emulation to complete hardware acceleration for modern GPUs. \ |
| 6 | Mesa is used as part of the overall Direct Rendering Infrastructure and X.org \ |
| 7 | environment." |
| 8 | |
| 9 | HOMEPAGE = "http://mesa3d.org" |
| 10 | BUGTRACKER = "https://bugs.freedesktop.org" |
| 11 | SECTION = "x11" |
| 12 | LICENSE = "MIT" |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 13 | LIC_FILES_CHKSUM = "file://docs/license.html;md5=725f991a1cc322aa7a0cd3a2016621c4" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 14 | |
| 15 | PE = "2" |
| 16 | |
Brad Bishop | 393846f | 2019-05-20 12:24:11 -0400 | [diff] [blame] | 17 | DEPENDS = "expat makedepend-native flex-native bison-native libxml2-native zlib chrpath-replacement-native python3-mako-native gettext-native" |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 18 | EXTRANATIVEPATH += "chrpath-native" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 19 | PROVIDES = " \ |
| 20 | ${@bb.utils.contains('PACKAGECONFIG', 'opengl', 'virtual/libgl', '', d)} \ |
| 21 | ${@bb.utils.contains('PACKAGECONFIG', 'gles', 'virtual/libgles1 virtual/libgles2', '', d)} \ |
| 22 | ${@bb.utils.contains('PACKAGECONFIG', 'egl', 'virtual/egl', '', d)} \ |
| 23 | ${@bb.utils.contains('PACKAGECONFIG', 'gbm', 'virtual/libgbm', '', d)} \ |
| 24 | virtual/mesa \ |
| 25 | " |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 26 | |
Brad Bishop | 393846f | 2019-05-20 12:24:11 -0400 | [diff] [blame] | 27 | inherit meson pkgconfig python3native gettext distro_features_check |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 28 | |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 29 | BBCLASSEXTEND = "native nativesdk" |
| 30 | |
| 31 | ANY_OF_DISTRO_FEATURES_class-target = "opengl vulkan" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 32 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 33 | PLATFORMS ??= "${@bb.utils.filter('PACKAGECONFIG', 'x11 wayland', d)} \ |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 34 | ${@bb.utils.contains('PACKAGECONFIG', 'gbm', 'drm', '', d)} \ |
| 35 | surfaceless" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 36 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 37 | export YOCTO_ALTERNATE_EXE_PATH = "${STAGING_LIBDIR}/llvm${MESA_LLVM_RELEASE}/llvm-config" |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 38 | export YOCTO_ALTERNATE_MULTILIB_NAME = "${base_libdir}" |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame^] | 39 | export LLVM_CONFIG = "${STAGING_BINDIR_NATIVE}/llvm-config${MESA_LLVM_RELEASE}" |
| 40 | export WANT_LLVM_RELEASE = "${MESA_LLVM_RELEASE}" |
| 41 | |
| 42 | MESA_LLVM_RELEASE ?= "${LLVMVERSION}" |
Brad Bishop | 393846f | 2019-05-20 12:24:11 -0400 | [diff] [blame] | 43 | |
| 44 | EXTRA_OEMESON = " \ |
| 45 | -Dshared-glapi=true \ |
| 46 | -Dgallium-opencl=disabled \ |
| 47 | -Dglx-read-only-text=true \ |
| 48 | -Dplatforms='${@",".join("${PLATFORMS}".split())}' \ |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 49 | " |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 50 | |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 51 | PACKAGECONFIG_class-target ??= "${@bb.utils.filter('DISTRO_FEATURES', 'wayland vulkan', d)} \ |
| 52 | ${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'opengl egl gles gbm dri gallium', '', d)} \ |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 53 | ${@bb.utils.contains('DISTRO_FEATURES', 'x11 opengl', 'x11 dri3', '', d)} \ |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 54 | ${@bb.utils.contains('DISTRO_FEATURES', 'x11 vulkan', 'dri3', '', d)} \ |
Brad Bishop | 393846f | 2019-05-20 12:24:11 -0400 | [diff] [blame] | 55 | glx-tls \ |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 56 | " |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame^] | 57 | PACKAGECONFIG_class-native ?= "gbm dri egl opengl glx-tls" |
| 58 | PACKAGECONFIG_class-nativesdk ?= "gbm dri egl opengl glx-tls" |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 59 | |
Brad Bishop | 393846f | 2019-05-20 12:24:11 -0400 | [diff] [blame] | 60 | PACKAGECONFIG_remove_libc-musl = "glx-tls" |
| 61 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 62 | # "gbm" requires "dri", "opengl" |
Brad Bishop | 393846f | 2019-05-20 12:24:11 -0400 | [diff] [blame] | 63 | PACKAGECONFIG[gbm] = "-Dgbm=true,-Dgbm=false" |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 64 | |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 65 | X11_DEPS = "xorgproto virtual/libx11 libxext libxxf86vm libxdamage libxfixes xrandr" |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 66 | # "x11" requires "opengl" |
Brad Bishop | 393846f | 2019-05-20 12:24:11 -0400 | [diff] [blame] | 67 | PACKAGECONFIG[x11] = ",-Dglx=disabled,${X11_DEPS}" |
| 68 | PACKAGECONFIG[glx-tls] = "-Dglx-tls=true, -Dglx-tls=false" |
| 69 | PACKAGECONFIG[xvmc] = "-Dgallium-xvmc=true,-Dgallium-xvmc=false,libxvmc" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 70 | PACKAGECONFIG[wayland] = ",,wayland-native wayland libdrm wayland-protocols" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 71 | |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 72 | DRIDRIVERS_class-native = "swrast" |
| 73 | DRIDRIVERS_class-nativesdk = "swrast" |
Brad Bishop | 393846f | 2019-05-20 12:24:11 -0400 | [diff] [blame] | 74 | DRIDRIVERS_append_x86_class-target = ",r100,r200,nouveau,i965,i915" |
| 75 | DRIDRIVERS_append_x86-64_class-target = ",r100,r200,nouveau,i965,i915" |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 76 | # "dri" requires "opengl" |
Brad Bishop | 15ae250 | 2019-06-18 21:44:24 -0400 | [diff] [blame] | 77 | PACKAGECONFIG[dri] = "-Ddri=true -Ddri-drivers=${DRIDRIVERS}, -Ddri=false -Ddri-drivers='', xorgproto libdrm" |
Brad Bishop | 393846f | 2019-05-20 12:24:11 -0400 | [diff] [blame] | 78 | PACKAGECONFIG[dri3] = "-Ddri3=true, -Ddri3=false, xorgproto libxshmfence" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 79 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 80 | # Vulkan drivers need dri3 enabled |
| 81 | # radeon could be enabled as well but requires gallium-llvm with llvm >= 3.9 |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 82 | VULKAN_DRIVERS = "" |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 83 | VULKAN_DRIVERS_append_x86_class-target = ",intel" |
| 84 | VULKAN_DRIVERS_append_x86-64_class-target = ",intel" |
Brad Bishop | 393846f | 2019-05-20 12:24:11 -0400 | [diff] [blame] | 85 | PACKAGECONFIG[vulkan] = "-Dvulkan-drivers=${VULKAN_DRIVERS}, -Dvulkan-drivers=''," |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 86 | |
Brad Bishop | 393846f | 2019-05-20 12:24:11 -0400 | [diff] [blame] | 87 | PACKAGECONFIG[opengl] = "-Dopengl=true, -Dopengl=false" |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 88 | |
| 89 | # "gles" requires "opengl" |
Brad Bishop | 393846f | 2019-05-20 12:24:11 -0400 | [diff] [blame] | 90 | PACKAGECONFIG[gles] = "-Dgles1=true -Dgles2=true, -Dgles1=false -Dgles2=false" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 91 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 92 | # "egl" requires "dri", "opengl" |
Brad Bishop | 393846f | 2019-05-20 12:24:11 -0400 | [diff] [blame] | 93 | PACKAGECONFIG[egl] = "-Degl=true, -Degl=false" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 94 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 95 | PACKAGECONFIG[etnaviv] = "" |
Brad Bishop | 393846f | 2019-05-20 12:24:11 -0400 | [diff] [blame] | 96 | PACKAGECONFIG[kmsro] = "" |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 97 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 98 | GALLIUMDRIVERS = "swrast" |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 99 | GALLIUMDRIVERS_append ="${@bb.utils.contains('PACKAGECONFIG', 'etnaviv', ',etnaviv', '', d)}" |
Brad Bishop | 393846f | 2019-05-20 12:24:11 -0400 | [diff] [blame] | 100 | GALLIUMDRIVERS_append ="${@bb.utils.contains('PACKAGECONFIG', 'kmsro', ',kmsro', '', d)}" |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 101 | |
| 102 | # radeonsi requires LLVM |
| 103 | GALLIUMDRIVERS_LLVM33 = "${@bb.utils.contains('PACKAGECONFIG', 'r600', ',radeonsi', '', d)}" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 104 | GALLIUMDRIVERS_LLVM33_ENABLED = "${@oe.utils.version_less_or_equal('MESA_LLVM_RELEASE', '3.2', False, len('${GALLIUMDRIVERS_LLVM33}') > 0, d)}" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 105 | GALLIUMDRIVERS_LLVM = "r300,svga,nouveau${@',${GALLIUMDRIVERS_LLVM33}' if ${GALLIUMDRIVERS_LLVM33_ENABLED} else ''}" |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 106 | |
| 107 | PACKAGECONFIG[r600] = "" |
| 108 | |
| 109 | GALLIUMDRIVERS_append = "${@bb.utils.contains('PACKAGECONFIG', 'gallium-llvm', ',${GALLIUMDRIVERS_LLVM}', '', d)}" |
| 110 | GALLIUMDRIVERS_append = "${@bb.utils.contains('PACKAGECONFIG', 'r600', ',r600', '', d)}" |
| 111 | GALLIUMDRIVERS_append = ",virgl" |
| 112 | |
Brad Bishop | 393846f | 2019-05-20 12:24:11 -0400 | [diff] [blame] | 113 | PACKAGECONFIG[gallium] = "-Dgallium-drivers=${GALLIUMDRIVERS}, -Dgallium-drivers=''" |
Brad Bishop | 393846f | 2019-05-20 12:24:11 -0400 | [diff] [blame] | 114 | PACKAGECONFIG[gallium-llvm] = "-Dllvm=true -Dshared-llvm=true, -Dllvm=false, llvm${MESA_LLVM_RELEASE} llvm-native \ |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 115 | ${@'elfutils' if ${GALLIUMDRIVERS_LLVM33_ENABLED} else ''}" |
Brad Bishop | 393846f | 2019-05-20 12:24:11 -0400 | [diff] [blame] | 116 | PACKAGECONFIG[xa] = "-Dgallium-xa=true, -Dgallium-xa=false" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 117 | |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 118 | PACKAGECONFIG[lima] = "" |
| 119 | GALLIUMDRIVERS_append ="${@bb.utils.contains('PACKAGECONFIG', 'lima', ',lima', '', d)}" |
| 120 | |
Brad Bishop | 393846f | 2019-05-20 12:24:11 -0400 | [diff] [blame] | 121 | OSMESA = "${@bb.utils.contains('PACKAGECONFIG', 'gallium', 'gallium', 'classic', d)}" |
| 122 | PACKAGECONFIG[osmesa] = "-Dosmesa=${OSMESA},-Dosmesa=none" |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 123 | |
Brad Bishop | 393846f | 2019-05-20 12:24:11 -0400 | [diff] [blame] | 124 | PACKAGECONFIG[unwind] = "-Dlibunwind=true,-Dlibunwind=false,libunwind" |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 125 | |
Brad Bishop | 393846f | 2019-05-20 12:24:11 -0400 | [diff] [blame] | 126 | # mesa tries to run cross-built gen_matypes on build machine to get struct size information |
| 127 | EXTRA_OEMESON_append = " -Dasm=false" |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 128 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 129 | # llvmpipe is slow if compiled with -fomit-frame-pointer (e.g. -O2) |
| 130 | FULL_OPTIMIZATION_append = " -fno-omit-frame-pointer" |
| 131 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 132 | CFLAGS_append_armv5 = " -DMISSING_64BIT_ATOMICS" |
| 133 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 134 | # Remove the mesa dependency on mesa-dev, as mesa is empty |
| 135 | RDEPENDS_${PN}-dev = "" |
| 136 | |
Brad Bishop | 37a0e4d | 2017-12-04 01:01:44 -0500 | [diff] [blame] | 137 | # Add dependency so that GLES3 header don't need to be added manually |
| 138 | RDEPENDS_libgles2-mesa-dev += "libgles3-mesa-dev" |
| 139 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 140 | PACKAGES =+ "libegl-mesa libegl-mesa-dev \ |
| 141 | libosmesa libosmesa-dev \ |
| 142 | libgl-mesa libgl-mesa-dev \ |
| 143 | libglapi libglapi-dev \ |
| 144 | libgbm libgbm-dev \ |
| 145 | libgles1-mesa libgles1-mesa-dev \ |
| 146 | libgles2-mesa libgles2-mesa-dev \ |
| 147 | libgles3-mesa libgles3-mesa-dev \ |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 148 | libxatracker libxatracker-dev \ |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 149 | mesa-megadriver mesa-vulkan-drivers \ |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 150 | " |
| 151 | |
| 152 | do_install_append () { |
| 153 | # Drivers never need libtool .la files |
| 154 | rm -f ${D}${libdir}/dri/*.la |
| 155 | rm -f ${D}${libdir}/egl/*.la |
| 156 | rm -f ${D}${libdir}/gallium-pipe/*.la |
| 157 | rm -f ${D}${libdir}/gbm/*.la |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 158 | |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 159 | # it was packaged in libdricore9.1.3-1 and preventing upgrades when debian.bbclass was used |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 160 | chrpath --delete ${D}${libdir}/dri/*_dri.so || true |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 161 | |
| 162 | # libwayland-egl has been moved to wayland 1.15+ |
| 163 | rm -f ${D}${libdir}/libwayland-egl* |
| 164 | rm -f ${D}${libdir}/pkgconfig/wayland-egl.pc |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 165 | } |
| 166 | |
| 167 | # For the packages that make up the OpenGL interfaces, inject variables so that |
| 168 | # they don't get Debian-renamed (which would remove the -mesa suffix), and |
| 169 | # RPROVIDEs/RCONFLICTs on the generic libgl name. |
| 170 | python __anonymous() { |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 171 | pkgconfig = (d.getVar('PACKAGECONFIG') or "").split() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 172 | for p in (("egl", "libegl", "libegl1"), |
| 173 | ("dri", "libgl", "libgl1"), |
| 174 | ("gles", "libgles1", "libglesv1-cm1"), |
| 175 | ("gles", "libgles2", "libglesv2-2"), |
| 176 | ("gles", "libgles3",)): |
| 177 | if not p[0] in pkgconfig: |
| 178 | continue |
| 179 | fullp = p[1] + "-mesa" |
| 180 | pkgs = " ".join(p[1:]) |
| 181 | d.setVar("DEBIAN_NOAUTONAME_" + fullp, "1") |
| 182 | d.appendVar("RREPLACES_" + fullp, pkgs) |
| 183 | d.appendVar("RPROVIDES_" + fullp, pkgs) |
| 184 | d.appendVar("RCONFLICTS_" + fullp, pkgs) |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 185 | |
| 186 | d.appendVar("RRECOMMENDS_" + fullp, " mesa-megadriver") |
| 187 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 188 | # For -dev, the first element is both the Debian and original name |
| 189 | fullp += "-dev" |
| 190 | pkgs = p[1] + "-dev" |
| 191 | d.setVar("DEBIAN_NOAUTONAME_" + fullp, "1") |
| 192 | d.appendVar("RREPLACES_" + fullp, pkgs) |
| 193 | d.appendVar("RPROVIDES_" + fullp, pkgs) |
| 194 | d.appendVar("RCONFLICTS_" + fullp, pkgs) |
| 195 | } |
| 196 | |
| 197 | python mesa_populate_packages() { |
| 198 | pkgs = ['mesa', 'mesa-dev', 'mesa-dbg'] |
| 199 | for pkg in pkgs: |
| 200 | d.setVar("RPROVIDES_%s" % pkg, pkg.replace("mesa", "mesa-dri", 1)) |
| 201 | d.setVar("RCONFLICTS_%s" % pkg, pkg.replace("mesa", "mesa-dri", 1)) |
| 202 | d.setVar("RREPLACES_%s" % pkg, pkg.replace("mesa", "mesa-dri", 1)) |
| 203 | |
| 204 | import re |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 205 | dri_drivers_root = oe.path.join(d.getVar('PKGD'), d.getVar('libdir'), "dri") |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 206 | if os.path.isdir(dri_drivers_root): |
| 207 | dri_pkgs = os.listdir(dri_drivers_root) |
| 208 | lib_name = d.expand("${MLPREFIX}mesa-megadriver") |
| 209 | for p in dri_pkgs: |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 210 | m = re.match(r'^(.*)_dri\.so$', p) |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 211 | if m: |
| 212 | pkg_name = " ${MLPREFIX}mesa-driver-%s" % legitimize_package_name(m.group(1)) |
| 213 | d.appendVar("RPROVIDES_%s" % lib_name, pkg_name) |
| 214 | d.appendVar("RCONFLICTS_%s" % lib_name, pkg_name) |
| 215 | d.appendVar("RREPLACES_%s" % lib_name, pkg_name) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 216 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 217 | pipe_drivers_root = os.path.join(d.getVar('libdir'), "gallium-pipe") |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 218 | do_split_packages(d, pipe_drivers_root, r'^pipe_(.*)\.so$', 'mesa-driver-pipe-%s', 'Mesa %s pipe driver', extra_depends='') |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 219 | } |
| 220 | |
| 221 | PACKAGESPLITFUNCS_prepend = "mesa_populate_packages " |
| 222 | |
| 223 | PACKAGES_DYNAMIC += "^mesa-driver-.*" |
| 224 | |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 225 | FILES_mesa-megadriver = "${libdir}/dri/* ${datadir}/drirc.d/00-mesa-defaults.conf" |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 226 | FILES_mesa-vulkan-drivers = "${libdir}/libvulkan_*.so ${datadir}/vulkan" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 227 | FILES_libegl-mesa = "${libdir}/libEGL.so.*" |
| 228 | FILES_libgbm = "${libdir}/libgbm.so.*" |
| 229 | FILES_libgles1-mesa = "${libdir}/libGLESv1*.so.*" |
| 230 | FILES_libgles2-mesa = "${libdir}/libGLESv2.so.*" |
| 231 | FILES_libgl-mesa = "${libdir}/libGL.so.*" |
| 232 | FILES_libglapi = "${libdir}/libglapi.so.*" |
| 233 | FILES_libosmesa = "${libdir}/libOSMesa.so.*" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 234 | FILES_libxatracker = "${libdir}/libxatracker.so.*" |
| 235 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 236 | FILES_${PN}-dev = "${libdir}/pkgconfig/dri.pc ${includedir}/vulkan" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 237 | FILES_libegl-mesa-dev = "${libdir}/libEGL.* ${includedir}/EGL ${includedir}/KHR ${libdir}/pkgconfig/egl.pc" |
| 238 | FILES_libgbm-dev = "${libdir}/libgbm.* ${libdir}/pkgconfig/gbm.pc ${includedir}/gbm.h" |
| 239 | FILES_libgl-mesa-dev = "${libdir}/libGL.* ${includedir}/GL ${libdir}/pkgconfig/gl.pc" |
| 240 | FILES_libglapi-dev = "${libdir}/libglapi.*" |
| 241 | FILES_libgles1-mesa-dev = "${libdir}/libGLESv1*.* ${includedir}/GLES ${libdir}/pkgconfig/glesv1*.pc" |
| 242 | FILES_libgles2-mesa-dev = "${libdir}/libGLESv2.* ${includedir}/GLES2 ${libdir}/pkgconfig/glesv2.pc" |
| 243 | FILES_libgles3-mesa-dev = "${includedir}/GLES3" |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 244 | FILES_libosmesa-dev = "${libdir}/libOSMesa.* ${includedir}/GL/osmesa.h ${libdir}/pkgconfig/osmesa.pc" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 245 | FILES_libxatracker-dev = "${libdir}/libxatracker.so ${libdir}/libxatracker.la \ |
| 246 | ${includedir}/xa_tracker.h ${includedir}/xa_composite.h ${includedir}/xa_context.h \ |
| 247 | ${libdir}/pkgconfig/xatracker.pc" |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 248 | |
| 249 | # Fix upgrade path from mesa to mesa-megadriver |
| 250 | RREPLACES_mesa-megadriver = "mesa" |
| 251 | RCONFLICTS_mesa-megadriver = "mesa" |
| 252 | RPROVIDES_mesa-megadriver = "mesa" |