Incorrect mad-prefix was causing a native lib path to be included.
authorphillim@local <phillim@local>
Sat, 16 Oct 2004 02:57:52 +0000 (02:57 +0000)
committerphillim@local <phillim@local>
Sat, 16 Oct 2004 02:57:52 +0000 (02:57 +0000)
BKrev: 41708e30HK_8IZQf7jYaZ3YoZb70nA

scummvm/scummvm_0.6.1b.oe

index e69de29..90e00ba 100644 (file)
@@ -0,0 +1,34 @@
+DESCRIPTION = "Virtual Machine for LucasArts Adventures for Qt/Embedded based palmtop environments w/ SDL."
+SECTION = "opie/games"
+PRIORITY = "optional"
+DEPENDS = "libsdl-qpe libmad tremor libogg zlib libmpeg2"
+
+SRC_URI = "${SOURCEFORGE_MIRROR}/scummvm/scummvm-${PV}.tar.bz2 \
+                       file://tremor.patch;patch=1 \
+                       file://mouse.patch;patch=1 "
+
+inherit autotools 
+
+EXTRA_OECONF = "--host=${HOST_SYS} \
+               --backend=sdl \
+               --with-sdl-prefix=${STAGING_BINDIR}/.. \
+               --disable-alsa \
+               --with-ogg-prefix=${STAGING_LIBDIR}/.. \
+               --with-vorbis-prefix=${STAGING_LIBDIR}/.. \
+               --with-mpeg2-prefix=${STAGING_LIBDIR}/.. \
+               --with-mad-prefix=${STAGING_LIBDIR}/.. "
+
+do_configure() {
+       ./configure ${EXTRA_OECONF}
+}
+
+do_compile() {
+       oe_runmake CC="${CC}" CXX="${CXX}" CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" LDFLAGS="${LDFLAGS} -lmpeg2" \
+                   DEFINES="-DUNIX -DSCUMM_NEED_ALIGNMENT -DQTOPIA -DUSE_MAD -DUSE_VORBIS -DUSE_ZLIB -DUSE_MPEG2"
+}
+
+do_install() {
+       install -d ${D}/${bindir}
+       install -m 0755 scummvm ${D}/${bindir}/scummvm
+}
+