diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2010-03-30 13:06:21 +0200 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2010-03-30 16:50:54 +0200 |
commit | 4000c3d0d60f3eb2d4ae9825bfb43ca7ee9cb6e4 (patch) | |
tree | 063bb688dc25ee9aadc75b46ade488999484d891 | |
parent | 24d871934522caf8f7296c7e8c6cae85e9541a8e (diff) |
mesa-dri-glsl-native: move to 7.8 release
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | recipes/mesa/mesa-dri-glsl-native.bb | 22 | ||||
-rw-r--r-- | recipes/mesa/mesa-dri-glsl-native_7.8.bb | 20 |
2 files changed, 20 insertions, 22 deletions
diff --git a/recipes/mesa/mesa-dri-glsl-native.bb b/recipes/mesa/mesa-dri-glsl-native.bb deleted file mode 100644 index 511cdcf2f8..0000000000 --- a/recipes/mesa/mesa-dri-glsl-native.bb +++ /dev/null @@ -1,22 +0,0 @@ -inherit native - -PV = "7.7.999" -PR = "0" -PR_append = "+gitr${SRCREV}" - -DEPENDS = "makedepend-native" - -SRCREV = "f88b43e8d09bf359e7d5770b133cb433b25f9848" - -SRC_URI = "git://anongit.freedesktop.org/git/mesa/mesa;protocol=git" - -S = "${WORKDIR}/git/src/glsl/" - -do_configure_prepend() { - ln -s ${S}/../../configs/default ${S}/../../configs/current -} - -do_stage() { - install -d ${bindir} - install -m 755 ${S}/apps/compile ${bindir}/glsl-compile -} diff --git a/recipes/mesa/mesa-dri-glsl-native_7.8.bb b/recipes/mesa/mesa-dri-glsl-native_7.8.bb new file mode 100644 index 0000000000..eef573317a --- /dev/null +++ b/recipes/mesa/mesa-dri-glsl-native_7.8.bb @@ -0,0 +1,20 @@ +inherit native + +PR = "0" + +DEPENDS = "makedepend-native" + +SRC_URI = "ftp://ftp.freedesktop.org/pub/mesa/${PV}/MesaLib-${PV}.tar.bz2;name=archive" +SRC_URI[archive.md5sum] = "85cb891eecb89aae4fdd3499cccd934b" +SRC_URI[archive.sha256sum] = "8c85db5844303b806b18fc6bd40a9dccb02d90b54878a94f910674673ba0aa35" + +S = "${WORKDIR}/Mesa-7.8/src/glsl/" + +do_configure_prepend() { + ln -s ${S}/../../configs/default ${S}/../../configs/current +} + +do_stage() { + install -d ${bindir} + install -m 755 ${S}/apps/compile ${bindir}/glsl-compile +} |