| SUMMARY = "A free implementation of the OpenGL API" |
| DESCRIPTION = "Mesa is an open-source implementation of the OpenGL specification - \ |
| a system for rendering interactive 3D graphics. \ |
| A variety of device drivers allows Mesa to be used in many different environments \ |
| ranging from software emulation to complete hardware acceleration for modern GPUs. \ |
| Mesa is used as part of the overall Direct Rendering Infrastructure and X.org \ |
| environment." |
| |
| HOMEPAGE = "http://mesa3d.org" |
| BUGTRACKER = "https://bugs.freedesktop.org" |
| SECTION = "x11" |
| LICENSE = "MIT" |
| LIC_FILES_CHKSUM = "file://docs/license.html;md5=899fbe7e42d494c7c8c159c7001693d5" |
| |
| PE = "2" |
| |
| DEPENDS = "expat makedepend-native flex-native bison-native libxml2-native udev" |
| |
| PROVIDES = "virtual/libgl virtual/libgles1 virtual/libgles2 virtual/egl virtual/mesa" |
| |
| inherit autotools pkgconfig pythonnative gettext distro_features_check |
| |
| REQUIRED_DISTRO_FEATURES = "opengl" |
| |
| EXTRA_OECONF = "--enable-shared-glapi" |
| |
| PACKAGECONFIG ??= "gbm egl gles dri ${MESA_CRYPTO} \ |
| ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11', '', d)}\ |
| ${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'wayland', '', d)}\ |
| " |
| |
| PACKAGECONFIG[gbm] = "--enable-gbm,--disable-gbm" |
| |
| X11_DEPS = "xf86driproto glproto virtual/libx11 libxext libxxf86vm libxdamage libxfixes" |
| PACKAGECONFIG[x11] = "--enable-glx-tls,--disable-glx,${X11_DEPS}" |
| PACKAGECONFIG[xvmc] = "--enable-xvmc,--disable-xvmc,libxvmc" |
| PACKAGECONFIG[wayland] = ",,wayland-native wayland" |
| |
| DRIDRIVERS = "swrast" |
| DRIDRIVERS_append_x86 = ",radeon,r200,nouveau,i965,i915" |
| DRIDRIVERS_append_x86-64 = ",radeon,r200,nouveau,i965,i915" |
| PACKAGECONFIG[dri] = "--enable-dri --with-dri-drivers=${DRIDRIVERS}, --disable-dri, dri2proto libdrm" |
| PACKAGECONFIG[dri3] = "--enable-dri3, --disable-dri3, dri3proto presentproto libxshmfence" |
| |
| PACKAGECONFIG[gles] = "--enable-gles1 --enable-gles2, --disable-gles1 --disable-gles2" |
| |
| EGL_PLATFORMS = "drm" |
| EGL_PLATFORMS .="${@bb.utils.contains('PACKAGECONFIG', 'x11', ',x11', '', d)}" |
| EGL_PLATFORMS .="${@bb.utils.contains('PACKAGECONFIG', 'wayland', ',wayland', '', d)}" |
| PACKAGECONFIG[egl] = "--enable-egl --with-egl-platforms=${EGL_PLATFORMS}, --disable-egl" |
| |
| GALLIUMDRIVERS = "swrast" |
| GALLIUMDRIVERS_LLVM33 = "${@bb.utils.contains('PACKAGECONFIG', 'r600', 'radeonsi,r600', '', d)}" |
| PACKAGECONFIG[r600] = "" |
| GALLIUMDRIVERS_LLVM33_ENABLED = "${@base_version_less_or_equal('MESA_LLVM_RELEASE', '3.2', False, len('${GALLIUMDRIVERS_LLVM33}') > 0, d)}" |
| GALLIUMDRIVERS_LLVM = "r300,svga,nouveau${@',${GALLIUMDRIVERS_LLVM33}' if ${GALLIUMDRIVERS_LLVM33_ENABLED} else ''}" |
| GALLIUMDRIVERS_append_x86 = "${@bb.utils.contains('PACKAGECONFIG', 'gallium-llvm', ',${GALLIUMDRIVERS_LLVM}', '', d)}" |
| GALLIUMDRIVERS_append_x86-64 = "${@bb.utils.contains('PACKAGECONFIG', 'gallium-llvm', ',${GALLIUMDRIVERS_LLVM}', '', d)}" |
| # keep --with-gallium-drivers separate, because when only one of gallium versions is enabled, other 2 were adding --without-gallium-drivers |
| PACKAGECONFIG[gallium] = "--with-gallium-drivers=${GALLIUMDRIVERS}, --without-gallium-drivers" |
| MESA_LLVM_RELEASE ?= "3.3" |
| PACKAGECONFIG[gallium-llvm] = "--enable-gallium-llvm --enable-llvm-shared-libs, --disable-gallium-llvm, llvm${MESA_LLVM_RELEASE} \ |
| ${@'elfutils' if ${GALLIUMDRIVERS_LLVM33_ENABLED} else ''}" |
| export WANT_LLVM_RELEASE = "${MESA_LLVM_RELEASE}" |
| PACKAGECONFIG[xa] = "--enable-xa, --disable-xa" |
| |
| # Mesa requires one of the following crypto implementation, pick one of them |
| MESA_CRYPTO ??= "openssl" |
| PACKAGECONFIG[openssl] = "--with-sha1=libcrypto,,openssl" |
| PACKAGECONFIG[nettle] = "--with-sha1=libnettle,,nettle" |
| PACKAGECONFIG[gcrypt] = "--with-sha1=libgcrypt,,libgcrypt" |
| |
| # llvmpipe is slow if compiled with -fomit-frame-pointer (e.g. -O2) |
| FULL_OPTIMIZATION_append = " -fno-omit-frame-pointer" |
| |
| # Multiple virtual/gl providers being built breaks staging |
| EXCLUDE_FROM_WORLD = "1" |
| |
| # Remove the mesa dependency on mesa-dev, as mesa is empty |
| RDEPENDS_${PN}-dev = "" |
| |
| PACKAGES =+ "libegl-mesa libegl-mesa-dev \ |
| libosmesa libosmesa-dev \ |
| libgl-mesa libgl-mesa-dev \ |
| libglapi libglapi-dev \ |
| libgbm libgbm-dev \ |
| libgles1-mesa libgles1-mesa-dev \ |
| libgles2-mesa libgles2-mesa-dev \ |
| libgles3-mesa libgles3-mesa-dev \ |
| libwayland-egl libwayland-egl-dev \ |
| libxvmcsoftpipe libxvmcsoftpipe-dev \ |
| libxatracker libxatracker-dev \ |
| mesa-megadriver \ |
| " |
| |
| do_install_append () { |
| # Drivers never need libtool .la files |
| rm -f ${D}${libdir}/dri/*.la |
| rm -f ${D}${libdir}/egl/*.la |
| rm -f ${D}${libdir}/gallium-pipe/*.la |
| rm -f ${D}${libdir}/gbm/*.la |
| |
| # it was packaged in libdricore9.1.3-1 and preventing upgrades when debian.bbclass was used |
| rm -f ${D}${sysconfdir}/drirc |
| } |
| |
| # For the packages that make up the OpenGL interfaces, inject variables so that |
| # they don't get Debian-renamed (which would remove the -mesa suffix), and |
| # RPROVIDEs/RCONFLICTs on the generic libgl name. |
| python __anonymous() { |
| pkgconfig = (d.getVar('PACKAGECONFIG', True) or "").split() |
| for p in (("egl", "libegl", "libegl1"), |
| ("dri", "libgl", "libgl1"), |
| ("gles", "libgles1", "libglesv1-cm1"), |
| ("gles", "libgles2", "libglesv2-2"), |
| ("gles", "libgles3",)): |
| if not p[0] in pkgconfig: |
| continue |
| fullp = p[1] + "-mesa" |
| pkgs = " ".join(p[1:]) |
| d.setVar("DEBIAN_NOAUTONAME_" + fullp, "1") |
| d.appendVar("RREPLACES_" + fullp, pkgs) |
| d.appendVar("RPROVIDES_" + fullp, pkgs) |
| d.appendVar("RCONFLICTS_" + fullp, pkgs) |
| |
| d.appendVar("RRECOMMENDS_" + fullp, " mesa-megadriver") |
| |
| # For -dev, the first element is both the Debian and original name |
| fullp += "-dev" |
| pkgs = p[1] + "-dev" |
| d.setVar("DEBIAN_NOAUTONAME_" + fullp, "1") |
| d.appendVar("RREPLACES_" + fullp, pkgs) |
| d.appendVar("RPROVIDES_" + fullp, pkgs) |
| d.appendVar("RCONFLICTS_" + fullp, pkgs) |
| } |
| |
| python mesa_populate_packages() { |
| pkgs = ['mesa', 'mesa-dev', 'mesa-dbg'] |
| for pkg in pkgs: |
| d.setVar("RPROVIDES_%s" % pkg, pkg.replace("mesa", "mesa-dri", 1)) |
| d.setVar("RCONFLICTS_%s" % pkg, pkg.replace("mesa", "mesa-dri", 1)) |
| d.setVar("RREPLACES_%s" % pkg, pkg.replace("mesa", "mesa-dri", 1)) |
| |
| import re |
| dri_drivers_root = oe.path.join(d.getVar('PKGD', True), d.getVar('libdir', True), "dri") |
| if os.path.isdir(dri_drivers_root): |
| dri_pkgs = os.listdir(dri_drivers_root) |
| lib_name = d.expand("${MLPREFIX}mesa-megadriver") |
| for p in dri_pkgs: |
| m = re.match('^(.*)_dri\.so$', p) |
| if m: |
| pkg_name = " ${MLPREFIX}mesa-driver-%s" % legitimize_package_name(m.group(1)) |
| d.appendVar("RPROVIDES_%s" % lib_name, pkg_name) |
| d.appendVar("RCONFLICTS_%s" % lib_name, pkg_name) |
| d.appendVar("RREPLACES_%s" % lib_name, pkg_name) |
| |
| pipe_drivers_root = os.path.join(d.getVar('libdir', True), "gallium-pipe") |
| do_split_packages(d, pipe_drivers_root, '^pipe_(.*)\.so$', 'mesa-driver-pipe-%s', 'Mesa %s pipe driver', extra_depends='') |
| } |
| |
| PACKAGESPLITFUNCS_prepend = "mesa_populate_packages " |
| |
| PACKAGES_DYNAMIC += "^mesa-driver-.*" |
| |
| FILES_${PN} += "${sysconfdir}/drirc" |
| FILES_mesa-megadriver = "${libdir}/dri/*" |
| FILES_libegl-mesa = "${libdir}/libEGL.so.*" |
| FILES_libgbm = "${libdir}/libgbm.so.*" |
| FILES_libgles1-mesa = "${libdir}/libGLESv1*.so.*" |
| FILES_libgles2-mesa = "${libdir}/libGLESv2.so.*" |
| FILES_libgl-mesa = "${libdir}/libGL.so.*" |
| FILES_libglapi = "${libdir}/libglapi.so.*" |
| FILES_libosmesa = "${libdir}/libOSMesa.so.*" |
| FILES_libwayland-egl = "${libdir}/libwayland-egl.so.*" |
| FILES_libxvmcsoftpipe = "${libdir}/libXvMCsoftpipe.so.*" |
| FILES_libxatracker = "${libdir}/libxatracker.so.*" |
| |
| FILES_${PN}-dev = "${libdir}/pkgconfig/dri.pc" |
| FILES_libegl-mesa-dev = "${libdir}/libEGL.* ${includedir}/EGL ${includedir}/KHR ${libdir}/pkgconfig/egl.pc" |
| FILES_libgbm-dev = "${libdir}/libgbm.* ${libdir}/pkgconfig/gbm.pc ${includedir}/gbm.h" |
| FILES_libgl-mesa-dev = "${libdir}/libGL.* ${includedir}/GL ${libdir}/pkgconfig/gl.pc" |
| FILES_libglapi-dev = "${libdir}/libglapi.*" |
| FILES_libgles1-mesa-dev = "${libdir}/libGLESv1*.* ${includedir}/GLES ${libdir}/pkgconfig/glesv1*.pc" |
| FILES_libgles2-mesa-dev = "${libdir}/libGLESv2.* ${includedir}/GLES2 ${libdir}/pkgconfig/glesv2.pc" |
| FILES_libgles3-mesa-dev = "${includedir}/GLES3" |
| FILES_libosmesa-dev = "${libdir}/libOSMesa.* ${includedir}/osmesa.h ${libdir}/pkgconfig/osmesa.pc" |
| FILES_libwayland-egl-dev = "${libdir}/pkgconfig/wayland-egl.pc ${libdir}/libwayland-egl.*" |
| FILES_libxvmcsoftpipe-dev = "${libdir}/libXvMCsoftpipe.so ${libdir}/libXvMCsoftpipe.la" |
| FILES_libxatracker-dev = "${libdir}/libxatracker.so ${libdir}/libxatracker.la \ |
| ${includedir}/xa_tracker.h ${includedir}/xa_composite.h ${includedir}/xa_context.h \ |
| ${libdir}/pkgconfig/xatracker.pc" |