diff options
author | Damien Lespiau <damien.lespiau@intel.com> | 2012-07-24 14:25:57 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-08-19 10:45:56 +0100 |
commit | eb768ce0b9825649737fa64bfabce4ff8fc9da75 (patch) | |
tree | fa921c3e03ae6c339735bc61073dcafa1862edf9 | |
parent | c800fd8b7b11a947f21177ddcd30358d5caa0114 (diff) | |
download | poky-eb768ce0b9825649737fa64bfabce4ff8fc9da75.tar.gz |
mesa: Add a mesa-dri-glsl-native_git recipe
If you have both a fixed version of mesa and a git version of mesa, you
also need the mesa-dri-glsl-native recipe for each versions. The code
generation that happens natively has to be done with the tool extracted
from the version you are compiling.
(From OE-Core rev: 63667a138616c551cedbd10d4ed87172fcf9dfff)
Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-graphics/mesa/mesa-dri-glsl-native.inc | 7 | ||||
-rw-r--r-- | meta/recipes-graphics/mesa/mesa-dri-glsl-native_8.0.4.bb | 9 | ||||
-rw-r--r-- | meta/recipes-graphics/mesa/mesa-dri-glsl-native_git.bb | 23 |
3 files changed, 32 insertions, 7 deletions
diff --git a/meta/recipes-graphics/mesa/mesa-dri-glsl-native.inc b/meta/recipes-graphics/mesa/mesa-dri-glsl-native.inc new file mode 100644 index 0000000000..c8b80e88fd --- /dev/null +++ b/meta/recipes-graphics/mesa/mesa-dri-glsl-native.inc | |||
@@ -0,0 +1,7 @@ | |||
1 | DESCRIPTION = "gl shader language specific build from mesa-dri" | ||
2 | HOMEPAGE = "http://mesa3d.org" | ||
3 | BUGTRACKER = "https://bugs.freedesktop.org" | ||
4 | SECTION = "x11" | ||
5 | LICENSE = "GPLv3+" | ||
6 | |||
7 | DEPENDS = "makedepend-native" | ||
diff --git a/meta/recipes-graphics/mesa/mesa-dri-glsl-native_8.0.4.bb b/meta/recipes-graphics/mesa/mesa-dri-glsl-native_8.0.4.bb index a81fb6d035..d551598b1a 100644 --- a/meta/recipes-graphics/mesa/mesa-dri-glsl-native_8.0.4.bb +++ b/meta/recipes-graphics/mesa/mesa-dri-glsl-native_8.0.4.bb | |||
@@ -1,11 +1,6 @@ | |||
1 | DESCRIPTION = "gl shader language specific build from mesa-dri" | 1 | require mesa-dri-glsl-native.inc |
2 | HOMEPAGE = "http://mesa3d.org" | ||
3 | BUGTRACKER = "https://bugs.freedesktop.org" | ||
4 | SECTION = "x11" | ||
5 | LICENSE = "GPLv3+" | ||
6 | LIC_FILES_CHKSUM = "file://glsl_parser.cpp;beginline=3;endline=33;md5=d078f1cddc2fc355719c090482254bd9" | ||
7 | 2 | ||
8 | DEPENDS = "makedepend-native" | 3 | LIC_FILES_CHKSUM = "file://glsl_parser.cpp;beginline=3;endline=33;md5=d078f1cddc2fc355719c090482254bd9" |
9 | 4 | ||
10 | SRC_URI = "ftp://ftp.freedesktop.org/pub/mesa/${PV}/MesaLib-${PV}.tar.bz2" | 5 | SRC_URI = "ftp://ftp.freedesktop.org/pub/mesa/${PV}/MesaLib-${PV}.tar.bz2" |
11 | SRC_URI[md5sum] = "d546f988adfdf986cff45b1efa2d8a46" | 6 | SRC_URI[md5sum] = "d546f988adfdf986cff45b1efa2d8a46" |
diff --git a/meta/recipes-graphics/mesa/mesa-dri-glsl-native_git.bb b/meta/recipes-graphics/mesa/mesa-dri-glsl-native_git.bb new file mode 100644 index 0000000000..4611f8032b --- /dev/null +++ b/meta/recipes-graphics/mesa/mesa-dri-glsl-native_git.bb | |||
@@ -0,0 +1,23 @@ | |||
1 | require mesa-dri-glsl-native.inc | ||
2 | |||
3 | LIC_FILES_CHKSUM = "file://../../docs/license.html;md5=03ccdc4c379c4289aecfb8892c546f67" | ||
4 | |||
5 | SRCREV = "c1f4867c89adb1a6b19d66ec8ad146115909f0a7" | ||
6 | PV = "8.0.4+git${SRCPV}" | ||
7 | DEFAULT_PREFERENCE = "-1" | ||
8 | |||
9 | SRC_URI = "git://anongit.freedesktop.org/git/mesa/mesa;protocol=git" | ||
10 | S = "${WORKDIR}/git/src/glsl" | ||
11 | |||
12 | inherit native | ||
13 | |||
14 | # use default config for native build | ||
15 | do_configure_prepend() { | ||
16 | ln -sf ${S}/../../configs/default ${S}/../../configs/current | ||
17 | } | ||
18 | |||
19 | do_install() { | ||
20 | install -d ${D}/${bindir}/glsl | ||
21 | install -m 755 ${S}/builtin_compiler ${D}/${bindir}/glsl/builtin_compiler | ||
22 | install -m 755 ${S}/glsl_compiler ${D}/${bindir}/glsl/glsl_compiler | ||
23 | } | ||