diff options
author | Laurentiu Palcu <laurentiu.palcu@intel.com> | 2013-03-19 18:23:56 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-22 17:07:16 +0000 |
commit | e66deb015674f2a95845b6f6722c460dc3ce0a1a (patch) | |
tree | 16a3ea83eb060f41bdf3717e303ca3f8138d392c /meta/recipes-graphics/mesa/mesa.inc | |
parent | c2f60b6ee7cb70dea2f229de69cce2773de3e59d (diff) | |
download | poky-e66deb015674f2a95845b6f6722c460dc3ce0a1a.tar.gz |
mesa: rename mesa-dri recipe to just mesa
Rename mesa-dri recipes to just mesa. Also, replace all references to
mesa-dri in all recipes/configs.
The reason for this renaming (quote from bugzilla):
"mesa-dri is a artefact of mesa-xlib existing, which doesn't anymore.
mesa-dri should be renamed to mesa."
[YOCTO #3385]
(From OE-Core rev: c8bbb9983bcc7cfc5332e89c3e8148505b4ca83f)
Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/mesa/mesa.inc')
-rw-r--r-- | meta/recipes-graphics/mesa/mesa.inc | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/meta/recipes-graphics/mesa/mesa.inc b/meta/recipes-graphics/mesa/mesa.inc new file mode 100644 index 0000000000..a692bb7a04 --- /dev/null +++ b/meta/recipes-graphics/mesa/mesa.inc | |||
@@ -0,0 +1,33 @@ | |||
1 | DEPENDS += "libdrm expat udev" | ||
2 | X11_DEPS += "dri2proto" | ||
3 | |||
4 | DRIDRIVERS = "swrast" | ||
5 | DRIDRIVERS_append_x86 = ",radeon,r200,nouveau,i965,i915" | ||
6 | DRIDRIVERS_append_x86-64 = ",radeon,r200,nouveau,i965,i915" | ||
7 | |||
8 | EXTRA_OECONF += "--disable-gallium --without-gallium-drivers" | ||
9 | EXTRA_OECONF += "--enable-dri --with-dri-drivers=${DRIDRIVERS}" | ||
10 | EXTRA_OECONF += "--enable-gbm" | ||
11 | |||
12 | PACKAGECONFIG[gles] = "--enable-gles1 --enable-gles2, --disable-gles1 --disable-gles2" | ||
13 | |||
14 | EGL_PLATFORMS = "drm" | ||
15 | EGL_PLATFORMS .="${@base_contains('DISTRO_FEATURES', 'x11', ',x11', '', d)}" | ||
16 | EGL_PLATFORMS .="${@base_contains('DISTRO_FEATURES', 'wayland', ',wayland', '', d)}" | ||
17 | PACKAGECONFIG[egl] = "--enable-egl --with-egl-platforms=${EGL_PLATFORMS}, --disable-egl" | ||
18 | |||
19 | python populate_packages_prepend() { | ||
20 | dri_drivers_root = os.path.join(d.getVar('libdir', True), "dri") | ||
21 | |||
22 | pkgs = ['mesa', 'mesa-dev', 'mesa-dbg'] | ||
23 | pkgs += do_split_packages(d, dri_drivers_root, '^(.*)_dri\.so$', 'mesa-driver-%s', 'Mesa %s DRI driver', extra_depends='') | ||
24 | for pkg in pkgs: | ||
25 | d.setVar("RPROVIDES_%s" % pkg, pkg.replace("mesa-", "mesa-dri-")) | ||
26 | d.setVar("RCONFLICTS_%s" % pkg, pkg.replace("mesa-", "mesa-dri-")) | ||
27 | d.setVar("RREPLACES_%s" % pkg, pkg.replace("mesa-", "mesa-dri-")) | ||
28 | } | ||
29 | |||
30 | PACKAGES_DYNAMIC += "^mesa-driver-.*" | ||
31 | |||
32 | FILES_${PN}-dbg += "${libdir}/dri/.debug/*" | ||
33 | |||