From: Michael Lauer Date: Thu, 22 Jan 2004 20:02:04 +0000 (+0000) Subject: scummvm_0.5.1.oe: X-Git-Tag: Release-2010-05/1~20254 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4224b8ba5af269064f7b28abccf351f4f29cab64;p=openembedded.git scummvm_0.5.1.oe: add -DQTOPIA to disable their overriding SDL_main (grrrrr!!! took me days to find out) BKrev: 40102c3cR4ZeLy8UJACQcmX2qAnAOw --- diff --git a/scummvm/scummvm_0.5.1.oe b/scummvm/scummvm_0.5.1.oe index e69de29bb2..7545aa504f 100644 --- a/scummvm/scummvm_0.5.1.oe +++ b/scummvm/scummvm_0.5.1.oe @@ -0,0 +1,21 @@ +DESCRIPTION="Virtual Machine for LucasArts Adventures" +SECTION="base" +PRIORITY="optional" +RDEPENDS="libc6 libsdl-qpe libmad" +DEPENDS=virtual/libc libsdl-qpe libmad + +SRC_URI = ${SOURCEFORGE_MIRROR}/${PN}/${P}.tgz + +inherit autotools libtool + +EXTRA_OECONF = --backend=sdl + +do_compile() { + oe_runmake CC="${CC}" CXX="${CXX}" CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" LDFLAGS="${LDFLAGS}" DEFINES="-DUNIX -DQTOPIA" +} + +do_install() { + install -d ${D}/${bindir} + install -m 0755 scummvm ${D}/${bindir}/scummvm +} +