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 | |
| 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')
| -rw-r--r-- | meta/recipes-graphics/mesa/mesa-7.11.inc | 14 | ||||
| -rw-r--r-- | meta/recipes-graphics/mesa/mesa-dri_7.11.bb | 17 | ||||
| -rw-r--r-- | meta/recipes-graphics/mesa/mesa-xlib_7.11.bb | 16 |
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 @@ | |||
| 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 | } | ||
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 @@ | |||
| 1 | include mesa-common.inc | 1 | include mesa-common.inc |
| 2 | include mesa-${PV}.inc | ||
| 2 | 3 | ||
| 3 | PROTO_DEPS = "xf86driproto glproto dri2proto" | 4 | PROTO_DEPS = "xf86driproto glproto dri2proto" |
| 4 | LIB_DEPS = "libdrm virtual/libx11 libxext libxxf86vm libxdamage libxfixes expat \ | 5 | LIB_DEPS = "libdrm virtual/libx11 libxext libxxf86vm libxdamage libxfixes expat \ |
| 5 | libxml2-native" | 6 | libxml2-native" |
| 6 | 7 | ||
| 7 | DEPENDS = "${PROTO_DEPS} ${LIB_DEPS} makedepend-native python-native" | 8 | DEPENDS = "${PROTO_DEPS} ${LIB_DEPS} makedepend-native python-native" |
| 8 | DEPENDS += "mesa-dri-glsl-native" | ||
| 9 | 9 | ||
| 10 | PR = "${INC_PR}.0" | 10 | PR = "${INC_PR}.0" |
| 11 | 11 | ||
| 12 | SRC_URI = "ftp://ftp.freedesktop.org/pub/mesa/${PV}/MesaLib-${PV}.tar.bz2 \ | ||
| 13 | file://crossfix.patch \ | ||
| 14 | file://uclibc.patch \ | ||
| 15 | " | ||
| 16 | |||
| 17 | SRC_URI[md5sum] = "ff03aca82d0560009a076a87c888cf13" | ||
| 18 | SRC_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 |
| 21 | DEFAULT_PREFERENCE = "-1" | 13 | DEFAULT_PREFERENCE = "-1" |
| 22 | 14 | ||
| @@ -37,10 +29,3 @@ COMPATIBLE_HOST = '(i.86.*-linux|x86_64.*-linux)' | |||
| 37 | PACKAGES_DYNAMIC = "mesa-dri-driver-*" | 29 | PACKAGES_DYNAMIC = "mesa-dri-driver-*" |
| 38 | 30 | ||
| 39 | FILES_${PN}-dbg += "${libdir}/dri/.debug/*" | 31 | FILES_${PN}-dbg += "${libdir}/dri/.debug/*" |
| 40 | |||
| 41 | do_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 @@ | |||
| 1 | include mesa-common.inc | 1 | include mesa-common.inc |
| 2 | 2 | include mesa-${PV}.inc | |
| 3 | SRC_URI = "ftp://ftp.freedesktop.org/pub/mesa/${PV}/MesaLib-${PV}.tar.bz2 \ | ||
| 4 | file://uclibc.patch \ | ||
| 5 | " | ||
| 6 | |||
| 7 | SRC_URI[md5sum] = "ff03aca82d0560009a076a87c888cf13" | ||
| 8 | SRC_URI[sha256sum] = "f8bf37a00882840a3e3d327576bc26a79ae7f4e18fe1f7d5f17a5b1c80dd7acf" | ||
| 9 | 3 | ||
| 10 | PROTO_DEPS = "xf86driproto glproto" | 4 | PROTO_DEPS = "xf86driproto glproto" |
| 11 | LIB_DEPS = "virtual/libx11 libxext libxxf86vm libxdamage libxfixes libxml2-native" | 5 | LIB_DEPS = "virtual/libx11 libxext libxxf86vm libxdamage libxfixes libxml2-native" |
| @@ -15,11 +9,3 @@ DEPENDS = "${PROTO_DEPS} ${LIB_DEPS} makedepend-native" | |||
| 15 | PR = "${INC_PR}.0" | 9 | PR = "${INC_PR}.0" |
| 16 | 10 | ||
| 17 | EXTRA_OECONF += "--with-driver=xlib --without-gallium-drivers" | 11 | EXTRA_OECONF += "--with-driver=xlib --without-gallium-drivers" |
| 18 | |||
| 19 | do_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 | |||
