summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/mesa
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2011-10-13 09:57:28 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-10-14 13:18:10 +0100
commit33e00404c1c85cfe3791c77bace916d1d9fad7b5 (patch)
treed247c0f3da31cdba5936246cc7d0bb51d5705858 /meta/recipes-graphics/mesa
parent5b7f5b5264921115bfbc06c7b59279b829011110 (diff)
downloadpoky-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')
-rw-r--r--meta/recipes-graphics/mesa/mesa-7.11.inc14
-rw-r--r--meta/recipes-graphics/mesa/mesa-dri_7.11.bb17
-rw-r--r--meta/recipes-graphics/mesa/mesa-xlib_7.11.bb16
3 files changed, 16 insertions, 31 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 @@
1DEPENDS += "mesa-dri-glsl-native"
2
3SRC_URI += "file://uclibc.patch \
4 file://crossfix.patch \
5 "
6SRC_URI[md5sum] = "ff03aca82d0560009a076a87c888cf13"
7SRC_URI[sha256sum] = "f8bf37a00882840a3e3d327576bc26a79ae7f4e18fe1f7d5f17a5b1c80dd7acf"
8
9do_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}
diff --git a/meta/recipes-graphics/mesa/mesa-dri_7.11.bb b/meta/recipes-graphics/mesa/mesa-dri_7.11.bb
index 5f14346ee1..90873aab48 100644
--- a/meta/recipes-graphics/mesa/mesa-dri_7.11.bb
+++ b/meta/recipes-graphics/mesa/mesa-dri_7.11.bb
@@ -1,22 +1,14 @@
1include mesa-common.inc 1include mesa-common.inc
2include mesa-${PV}.inc
2 3
3PROTO_DEPS = "xf86driproto glproto dri2proto" 4PROTO_DEPS = "xf86driproto glproto dri2proto"
4LIB_DEPS = "libdrm virtual/libx11 libxext libxxf86vm libxdamage libxfixes expat \ 5LIB_DEPS = "libdrm virtual/libx11 libxext libxxf86vm libxdamage libxfixes expat \
5 libxml2-native" 6 libxml2-native"
6 7
7DEPENDS = "${PROTO_DEPS} ${LIB_DEPS} makedepend-native python-native" 8DEPENDS = "${PROTO_DEPS} ${LIB_DEPS} makedepend-native python-native"
8DEPENDS += "mesa-dri-glsl-native"
9 9
10PR = "${INC_PR}.0" 10PR = "${INC_PR}.0"
11 11
12SRC_URI = "ftp://ftp.freedesktop.org/pub/mesa/${PV}/MesaLib-${PV}.tar.bz2 \
13 file://crossfix.patch \
14 file://uclibc.patch \
15 "
16
17SRC_URI[md5sum] = "ff03aca82d0560009a076a87c888cf13"
18SRC_URI[sha256sum] = "f8bf37a00882840a3e3d327576bc26a79ae7f4e18fe1f7d5f17a5b1c80dd7acf"
19
20# most of our targets do not have DRI so will use mesa-xlib 12# most of our targets do not have DRI so will use mesa-xlib
21DEFAULT_PREFERENCE = "-1" 13DEFAULT_PREFERENCE = "-1"
22 14
@@ -37,10 +29,3 @@ COMPATIBLE_HOST = '(i.86.*-linux|x86_64.*-linux)'
37PACKAGES_DYNAMIC = "mesa-dri-driver-*" 29PACKAGES_DYNAMIC = "mesa-dri-driver-*"
38 30
39FILES_${PN}-dbg += "${libdir}/dri/.debug/*" 31FILES_${PN}-dbg += "${libdir}/dri/.debug/*"
40
41do_configure_prepend() {
42 #check for python not python2, because python-native does not stage python2 binary/link
43 sed -i 's/AC_CHECK_PROGS(\[PYTHON2\], \[python2 python\])/AC_CHECK_PROGS(\[PYTHON2\], \[python python\])/g' ${S}/configure.ac
44 # We need builtin_compiler built for buildhost arch instead of target (is provided by mesa-dri-glsl-native)"
45 sed -i "s#\./builtin_compiler#${STAGING_BINDIR_NATIVE}/glsl/builtin_compiler#g" ${S}/src/glsl/Makefile
46}
diff --git a/meta/recipes-graphics/mesa/mesa-xlib_7.11.bb b/meta/recipes-graphics/mesa/mesa-xlib_7.11.bb
index 1e0d8211a4..44719a081e 100644
--- a/meta/recipes-graphics/mesa/mesa-xlib_7.11.bb
+++ b/meta/recipes-graphics/mesa/mesa-xlib_7.11.bb
@@ -1,11 +1,5 @@
1include mesa-common.inc 1include mesa-common.inc
2 2include mesa-${PV}.inc
3SRC_URI = "ftp://ftp.freedesktop.org/pub/mesa/${PV}/MesaLib-${PV}.tar.bz2 \
4 file://uclibc.patch \
5 "
6
7SRC_URI[md5sum] = "ff03aca82d0560009a076a87c888cf13"
8SRC_URI[sha256sum] = "f8bf37a00882840a3e3d327576bc26a79ae7f4e18fe1f7d5f17a5b1c80dd7acf"
9 3
10PROTO_DEPS = "xf86driproto glproto" 4PROTO_DEPS = "xf86driproto glproto"
11LIB_DEPS = "virtual/libx11 libxext libxxf86vm libxdamage libxfixes libxml2-native" 5LIB_DEPS = "virtual/libx11 libxext libxxf86vm libxdamage libxfixes libxml2-native"
@@ -15,11 +9,3 @@ DEPENDS = "${PROTO_DEPS} ${LIB_DEPS} makedepend-native"
15PR = "${INC_PR}.0" 9PR = "${INC_PR}.0"
16 10
17EXTRA_OECONF += "--with-driver=xlib --without-gallium-drivers" 11EXTRA_OECONF += "--with-driver=xlib --without-gallium-drivers"
18
19do_configure_prepend() {
20 #check for python not python2, because python-native does not stage python2 binary/link
21 sed -i 's/AC_CHECK_PROGS(\[PYTHON2\], \[python2 python\])/AC_CHECK_PROGS(\[PYTHON2\], \[python python\])/g' ${S}/configure.ac
22 # We need builtin_compiler built for buildhost arch instead of target (is provided by mesa-dri-glsl-native)"
23 sed -i "s#\./builtin_compiler#${STAGING_BINDIR_NATIVE}/glsl/builtin_compiler#g" ${S}/src/glsl/Makefile
24}
25