summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/mesa/mesa-git.inc
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-graphics/mesa/mesa-git.inc')
-rw-r--r--meta/recipes-graphics/mesa/mesa-git.inc30
1 files changed, 30 insertions, 0 deletions
diff --git a/meta/recipes-graphics/mesa/mesa-git.inc b/meta/recipes-graphics/mesa/mesa-git.inc
new file mode 100644
index 0000000000..2f27ef1a16
--- /dev/null
+++ b/meta/recipes-graphics/mesa/mesa-git.inc
@@ -0,0 +1,30 @@
1SRC_URI = "git://anongit.freedesktop.org/git/mesa/mesa;protocol=git \
2 file://cross2.patch \
3 file://matypes.h"
4# file://mesa-DRI2Swapbuffer.patch "
5S = "${WORKDIR}/git"
6
7SRCREV = "1bf94d419805538ac23a4d0b04d31ac5e4487aca"
8PV = "7.7+git${SRCPV}"
9
10PACKAGES =+ "${PN}-xprogs"
11
12FILES_${PN}-xprogs = "${bindir}/glxdemo ${bindir}/glxgears ${bindir}/glxheads ${bindir}/glxinfo"
13
14do_configure_prepend () {
15 cp ${WORKDIR}/matypes.h ${S}/src/mesa/x86
16 touch ${S}/src/mesa/x86/matypes.h
17}
18
19do_compile () {
20 oe_runmake clean
21 oe_runmake -C src/glsl CC='${BUILD_CC}' CFLAGS=""
22 mv ${S}/src/glsl/apps/compile ${S}/host_compile
23 oe_runmake clean
24 oe_runmake GLSL_CL="${S}/host_compile"
25}
26
27do_install_append () {
28 install -d ${D}/usr/bin
29 install -m 0755 ${S}/progs/xdemos/{glxdemo,glxgears,glxheads,glxinfo} ${D}/usr/bin/
30}