From: phillim@local Date: Sat, 16 Oct 2004 02:57:52 +0000 (+0000) Subject: Incorrect mad-prefix was causing a native lib path to be included. X-Git-Tag: Release-2010-05/1~16601 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3589199f5f6051179240c235383e4dc785e4148f;p=openembedded.git Incorrect mad-prefix was causing a native lib path to be included. BKrev: 41708e30HK_8IZQf7jYaZ3YoZb70nA --- diff --git a/scummvm/scummvm_0.6.1b.oe b/scummvm/scummvm_0.6.1b.oe index e69de29bb2..90e00baedf 100644 --- a/scummvm/scummvm_0.6.1b.oe +++ b/scummvm/scummvm_0.6.1b.oe @@ -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 +} +