aboutsummaryrefslogtreecommitdiffstats
path: root/mesa
diff options
context:
space:
mode:
authorPhil Blundell <philb@gnu.org>2004-06-25 14:55:15 +0000
committerPhil Blundell <philb@gnu.org>2004-06-25 14:55:15 +0000
commitb3b5bf2c4044e58999e3b2e40c1df9615f4555ea (patch)
tree14b26986988f5b68dc3a05dd4a9fb88202aa53fb /mesa
parent135bf95d596b649f001d61d090cb3396ddf3cc76 (diff)
downloadopenembedded-b3b5bf2c4044e58999e3b2e40c1df9615f4555ea.tar.gz
add missing backslash
BKrev: 40dc3cd3j6oqVyFVqHOk7dPsW9vHTA
Diffstat (limited to 'mesa')
-rw-r--r--mesa/mesa_6.0.1.oe24
1 files changed, 24 insertions, 0 deletions
diff --git a/mesa/mesa_6.0.1.oe b/mesa/mesa_6.0.1.oe
index e69de29bb2..1bf8b92c1a 100644
--- a/mesa/mesa_6.0.1.oe
+++ b/mesa/mesa_6.0.1.oe
@@ -0,0 +1,24 @@
+SRC_URI = "${SOURCEFORGE_MIRROR}/mesa3d/MesaLib-${PV}.tar.bz2 \
+ file://Make-config.patch;patch=1 \
+ file://mklib.patch;patch=1"
+S = "${WORKDIR}/Mesa-${PV}"
+
+# gcc-3.4 blows up in gtktext with -frename-registers on arm-linux
+CXXFLAGS := "${@'${CXXFLAGS}'.replace('-frename-registers', '')}"
+
+do_compile() {
+ oe_runmake linux CC="${CC}" CXX="${CXX}" CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" LD="${LD}" LDFLAGS="${LDFLAGS}"
+}
+
+do_install() {
+ install -d ${D}${libdir}
+ cp -pd lib/* ${D}${libdir}/
+ install -d ${D}${includedir}
+ cp -r include/GL ${D}${includedir}/
+}
+
+do_stage() {
+ cp -pd lib/* ${STAGING_LIBDIR}/
+ cp -r include/GL ${STAGING_INCDIR}/
+}
+