diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2011-10-13 09:57:28 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-10-14 13:18:10 +0100 |
commit | 33e00404c1c85cfe3791c77bace916d1d9fad7b5 (patch) | |
tree | d247c0f3da31cdba5936246cc7d0bb51d5705858 /meta/recipes-graphics/mesa/mesa-7.11.inc | |
parent | 5b7f5b5264921115bfbc06c7b59279b829011110 (diff) | |
download | poky-33e00404c1c85cfe3791c77bace916d1d9fad7b5.tar.gz |
mesa-7.11: move shared DEPENDS, SRC_URI, checksums and do_configure_prepend to shared .inc file
(From OE-Core rev: 6f48f557c0234faf02bc3da2807c450e47afb594)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/mesa/mesa-7.11.inc')
-rw-r--r-- | meta/recipes-graphics/mesa/mesa-7.11.inc | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/meta/recipes-graphics/mesa/mesa-7.11.inc b/meta/recipes-graphics/mesa/mesa-7.11.inc new file mode 100644 index 0000000000..746b764ced --- /dev/null +++ b/meta/recipes-graphics/mesa/mesa-7.11.inc | |||
@@ -0,0 +1,14 @@ | |||
1 | DEPENDS += "mesa-dri-glsl-native" | ||
2 | |||
3 | SRC_URI += "file://uclibc.patch \ | ||
4 | file://crossfix.patch \ | ||
5 | " | ||
6 | SRC_URI[md5sum] = "ff03aca82d0560009a076a87c888cf13" | ||
7 | SRC_URI[sha256sum] = "f8bf37a00882840a3e3d327576bc26a79ae7f4e18fe1f7d5f17a5b1c80dd7acf" | ||
8 | |||
9 | do_configure_prepend() { | ||
10 | #check for python not python2, because python-native does not stage python2 binary/link | ||
11 | sed -i 's/AC_CHECK_PROGS(\[PYTHON2\], \[python2 python\])/AC_CHECK_PROGS(\[PYTHON2\], \[python python\])/g' ${S}/configure.ac | ||
12 | # We need builtin_compiler built for buildhost arch instead of target (is provided by mesa-dri-glsl-native)" | ||
13 | sed -i "s#\./builtin_compiler#${STAGING_BINDIR_NATIVE}/glsl/builtin_compiler#g" ${S}/src/glsl/Makefile | ||
14 | } | ||