add missing backslash
authorPhil Blundell <philb@gnu.org>
Fri, 25 Jun 2004 14:55:15 +0000 (14:55 +0000)
committerPhil Blundell <philb@gnu.org>
Fri, 25 Jun 2004 14:55:15 +0000 (14:55 +0000)
BKrev: 40dc3cd3j6oqVyFVqHOk7dPsW9vHTA

mesa/mesa_6.0.1.oe

index e69de29..1bf8b92 100644 (file)
@@ -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}/
+}
+