diff options
author | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
---|---|---|
committer | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
commit | 709c4d66e0b107ca606941b988bad717c0b45d9b (patch) | |
tree | 37ee08b1eb308f3b2b6426d5793545c38396b838 /packages/scummvm | |
parent | fa6cd5a3b993f16c27de4ff82b42684516d433ba (diff) |
rename packages/ to recipes/ per earlier agreement
See links below for more details:
http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326
http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816
Signed-off-by: Denys Dmytriyenko <denis@denix.org>
Acked-by: Mike Westerhof <mwester@dls.net>
Acked-by: Philip Balister <philip@balister.org>
Acked-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Marcin Juszkiewicz <hrw@openembedded.org>
Acked-by: Koen Kooi <koen@openembedded.org>
Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Diffstat (limited to 'packages/scummvm')
24 files changed, 0 insertions, 489 deletions
diff --git a/packages/scummvm/files/gcc-4.x.x-accept.patch b/packages/scummvm/files/gcc-4.x.x-accept.patch deleted file mode 100644 index f69eb0f229..0000000000 --- a/packages/scummvm/files/gcc-4.x.x-accept.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- scummvm-0.6.1b/configure_orig 2006-07-01 16:42:17.000000000 +0000 -+++ scummvm-0.6.1b/configure 2006-07-01 16:48:04.000000000 +0000 -@@ -362,7 +362,7 @@ - fi - - case $cxx_version in -- 2.95.[2-9]|2.95.[2-9][-.]*|3.[0-9]|3.[0-9].[0-9]) -+ 2.95.[2-9]|2.95.[2-9][-.]*|3.[0-9]|3.[0-9].[0-9]|4.[0-9].[0-9]) - _cxx_major=`echo $cxx_version | cut -d '.' -f 1` - _cxx_minor=`echo $cxx_version | cut -d '.' -f 2` - cxx_version="$cxx_version, ok" diff --git a/packages/scummvm/files/makefile-nostrip.patch b/packages/scummvm/files/makefile-nostrip.patch deleted file mode 100644 index 7f9c8b49d2..0000000000 --- a/packages/scummvm/files/makefile-nostrip.patch +++ /dev/null @@ -1,13 +0,0 @@ -Index: scummvm-0.9.1/Makefile -=================================================================== ---- scummvm-0.9.1.orig/Makefile 2007-08-18 13:02:07.000000000 +0200 -+++ scummvm-0.9.1/Makefile 2007-08-18 13:02:24.000000000 +0200 -@@ -45,7 +45,7 @@ - - install: all - $(INSTALL) -d "$(DESTDIR)$(BINDIR)" -- $(INSTALL) -c -s -m 755 "$(srcdir)/scummvm$(EXEEXT)" "$(DESTDIR)$(BINDIR)/scummvm$(EXEEXT)" -+ $(INSTALL) -c -m 755 "$(srcdir)/scummvm$(EXEEXT)" "$(DESTDIR)$(BINDIR)/scummvm$(EXEEXT)" - $(INSTALL) -d "$(DESTDIR)$(MANDIR)/man6/" - $(INSTALL) -c -m 644 "$(srcdir)/dists/scummvm.6" "$(DESTDIR)$(MANDIR)/man6/scummvm.6" - $(INSTALL) -d "$(DESTDIR)$(PREFIX)/share/pixmaps/" diff --git a/packages/scummvm/files/mouse.patch b/packages/scummvm/files/mouse.patch deleted file mode 100644 index 1697ac811d..0000000000 --- a/packages/scummvm/files/mouse.patch +++ /dev/null @@ -1,36 +0,0 @@ ---- ./backends/sdl/sdl-common.cpp~mouse.patch 2004-03-05 07:23:04.000000000 +1030 -+++ ./backends/sdl/sdl-common.cpp 2004-05-16 07:53:24.000000000 +0930 -@@ -866,6 +866,9 @@ - return true; - - case SDL_MOUSEBUTTONDOWN: -+#ifdef QTOPIA -+ event->event_code = EVENT_LBUTTONDOWN; -+#else - if (ev.button.button == SDL_BUTTON_LEFT) - event->event_code = EVENT_LBUTTONDOWN; - else if (ev.button.button == SDL_BUTTON_RIGHT) -@@ -878,18 +881,23 @@ - #endif - else - break; -+#endif - - fillMouseEvent(*event, ev.button.x, ev.button.y); - - return true; - - case SDL_MOUSEBUTTONUP: -+#ifdef QTOPIA -+ event->event_code = EVENT_LBUTTONUP; -+#else - if (ev.button.button == SDL_BUTTON_LEFT) - event->event_code = EVENT_LBUTTONUP; - else if (ev.button.button == SDL_BUTTON_RIGHT) - event->event_code = EVENT_RBUTTONUP; - else - break; -+#endif - fillMouseEvent(*event, ev.button.x, ev.button.y); - - return true; diff --git a/packages/scummvm/files/no-strip.patch b/packages/scummvm/files/no-strip.patch deleted file mode 100644 index 4df1283263..0000000000 --- a/packages/scummvm/files/no-strip.patch +++ /dev/null @@ -1,22 +0,0 @@ -Index: scummvm-0.12.0/ports.mk -=================================================================== ---- scummvm-0.12.0.orig/ports.mk -+++ scummvm-0.12.0/ports.mk -@@ -10,7 +10,7 @@ - # - install: all - $(INSTALL) -d "$(DESTDIR)$(BINDIR)" -- $(INSTALL) -c -s -m 755 "$(srcdir)/scummvm$(EXEEXT)" "$(DESTDIR)$(BINDIR)/scummvm$(EXEEXT)" -+ $(INSTALL) -c -m 755 "$(srcdir)/scummvm$(EXEEXT)" "$(DESTDIR)$(BINDIR)/scummvm$(EXEEXT)" - $(INSTALL) -d "$(DESTDIR)$(MANDIR)/man6/" - $(INSTALL) -c -m 644 "$(srcdir)/dists/scummvm.6" "$(DESTDIR)$(MANDIR)/man6/scummvm.6" - $(INSTALL) -d "$(DESTDIR)$(PREFIX)/share/pixmaps/" -@@ -21,7 +21,7 @@ install: all - $(INSTALL) -c -m 644 $(DIST_FILES_THEMES) $(DIST_FILES_ENGINEDATA) "$(DESTDIR)$(DATADIR)/scummvm/" - ifdef DYNAMIC_MODULES - $(INSTALL) -d "$(DESTDIR)$(LIBDIR)/scummvm/" -- $(INSTALL) -c -s -m 644 $(DIST_FILES_PLUGINS) "$(DESTDIR)$(LIBDIR)/scummvm/" -+ $(INSTALL) -c -m 644 $(DIST_FILES_PLUGINS) "$(DESTDIR)$(LIBDIR)/scummvm/" - endif - - uninstall: diff --git a/packages/scummvm/files/om-gta01/openmoko-scummvm b/packages/scummvm/files/om-gta01/openmoko-scummvm deleted file mode 100755 index e8c5cb3984..0000000000 --- a/packages/scummvm/files/om-gta01/openmoko-scummvm +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/sh - -# Save current AUX Key mapping -SAVE_KEY="$(xmodmap -pke | grep 'keycode 8')" - -# Map AUX Key to F5 -xmodmap -e "keycode 8 = F5" - -# Turn LCD feft -xrandr -o left - -# Start the scummvm in fullscreen mode -scummvm --fullscreen --themepath=/usr/share/scummvm/ - -# Turn LCD normal -xrandr -o normal - -# Restore the AUX Key mapping -xmodmap -e "$SAVE_KEY" diff --git a/packages/scummvm/files/openmoko/openmoko-scummvm b/packages/scummvm/files/openmoko/openmoko-scummvm deleted file mode 100644 index 58eb2bbded..0000000000 --- a/packages/scummvm/files/openmoko/openmoko-scummvm +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/sh - -# Save current AUX Key mapping -SAVE_KEY="$(xmodmap -pke | grep 'keycode 177')" - -# Map AUX Key to F5 -xmodmap -e "keycode 177 = F5" - -# Turn LCD feft -xrandr -o left - -# Start the scummvm in fullscreen mode -scummvm --fullscreen --themepath=/usr/share/scummvm/ - -# Turn LCD normal -xrandr -o normal - -# Restore the AUX Key mapping -xmodmap -e "$SAVE_KEY" diff --git a/packages/scummvm/files/openmoko/scummvm.desktop b/packages/scummvm/files/openmoko/scummvm.desktop deleted file mode 100644 index 96c025050e..0000000000 --- a/packages/scummvm/files/openmoko/scummvm.desktop +++ /dev/null @@ -1,12 +0,0 @@ -[Desktop Entry] -Encoding=UTF-8 -Name=ScummVM -Name[pl]=ScummVM -Comment=Interpreter for several adventure games -Comment[pl]=Interpreter graficznych gier przygodowych -Exec=openmoko-scummvm -Icon=scummvm.xpm -Terminal=false -Type=Application -Categories=Application;Game;AdventureGame; -StartupNotify=false diff --git a/packages/scummvm/files/scummvm-targetcheck.patch b/packages/scummvm/files/scummvm-targetcheck.patch deleted file mode 100644 index 6f245294b4..0000000000 --- a/packages/scummvm/files/scummvm-targetcheck.patch +++ /dev/null @@ -1,17 +0,0 @@ -upstream: http://sourceforge.net/tracker/index.php?func=detail&aid=1959138&group_id=37116&atid=418820 -status: accepted in revision 31912 (less than an hour for turnaround, fantastic!) -origin: adapted from http://bugs.openembedded.net/show_bug.cgi?id=3522 -comment: the strict check for targets needs to be relaxed to compile for some of OE targets - -diff -uNr scummvm-0.9.1.vanilla/configure scummvm-0.9.1/configure ---- scummvm-0.9.1.vanilla/configure 2007-12-23 00:08:23.000000000 +0100 -+++ scummvm-0.9.1/configure 2007-12-23 00:08:35.000000000 +0100 -@@ -763,7 +763,7 @@ - type_2_byte='short' - type_4_byte='int' - ;; -- arm-linux|arm-*-linux-gnueabi) -+ arm-linux|arm*-linux-gnueabi|arm-*-linux|*-angstrom-linux) - echo "Cross-compiling to $_host, forcing endianness, alignment and type sizes" - DEFINES="$DEFINES -DUNIX" - #not true for all ARM systems, but the interesting ones are all LE. Most (if not all) BE arm devices don't have a screen diff --git a/packages/scummvm/files/scummvm.desktop b/packages/scummvm/files/scummvm.desktop deleted file mode 100644 index 5a0f88b355..0000000000 --- a/packages/scummvm/files/scummvm.desktop +++ /dev/null @@ -1,12 +0,0 @@ -[Desktop Entry] -Encoding=UTF-8 -Name=ScummVM -Name[pl]=ScummVM -Comment=Interpreter for several adventure games -Comment[pl]=Interpreter graficznych gier przygodowych -Exec=scummvm -Icon=scummvm.xpm -Terminal=false -Type=Application -Categories=Application;Game;AdventureGame; -StartupNotify=false diff --git a/packages/scummvm/files/sh3-arch-0.9.0+.patch b/packages/scummvm/files/sh3-arch-0.9.0+.patch deleted file mode 100644 index 3cd0505654..0000000000 --- a/packages/scummvm/files/sh3-arch-0.9.0+.patch +++ /dev/null @@ -1,18 +0,0 @@ ---- scummvm-0.9.0/configure_orig 2006-07-01 18:16:04.000000000 +0000 -+++ scummvm-0.9.0/configure 2006-07-01 18:19:09.000000000 +0000 -@@ -762,6 +762,15 @@ - type_2_byte='short' - type_4_byte='int' - ;; -+ sh3-linux) -+ echo "Cross-compiling to $_host, forcing endianness, aligment and type sizes" -+ DEFINES="$DEFINES -DUNIX" -+ _def_endianness='#define SCUMM_LITTLE_ENDIAN' -+ _def_align='#define SCUMM_NEED_ALIGMENT' -+ type_1_byte='char' -+ type_2_byte='short' -+ type_4_byte='int' -+ ;; - ppc-amigaos) - echo "Cross-compiling to $_host, forcing endianness, alignment and type sizes" - _def_endianness='#define SCUMM_BIG_ENDIAN' diff --git a/packages/scummvm/files/sh3-linux-new-arch.patch b/packages/scummvm/files/sh3-linux-new-arch.patch deleted file mode 100644 index b59d727458..0000000000 --- a/packages/scummvm/files/sh3-linux-new-arch.patch +++ /dev/null @@ -1,18 +0,0 @@ ---- scummvm-0.6.1b/configure_orig 2006-07-01 17:15:30.000000000 +0000 -+++ scummvm-0.6.1b/configure 2006-07-01 17:19:41.000000000 +0000 -@@ -462,6 +462,15 @@ - type_2_byte='short' - type_4_byte='int' - ;; -+ sh3-linux) -+ echo "Crosscompiling to $_host, forcing endianess, aligment and type sizes" -+ DEFINES="$DEFINES -DUNIX" -+ _def_endianess='#define SCUMM_LITTLE_ENDIAN' -+ _def_align='#define SCUMM_NEED_ALiGMENT' -+ type_1_byte='char' -+ type_2_byte='short' -+ type_4_byte='int' -+ ;; - *) - echo "Cross-compiling to unknown target, please add your target to configure." - exit 1 diff --git a/packages/scummvm/files/tail-obselete-fix.patch b/packages/scummvm/files/tail-obselete-fix.patch deleted file mode 100644 index 1737133e25..0000000000 --- a/packages/scummvm/files/tail-obselete-fix.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- scummvm-0.6.1b/configure_orig 2006-07-01 16:42:17.000000000 +0000 -+++ scummvm-0.6.1b/configure 2006-07-01 16:43:12.000000000 +0000 -@@ -355,7 +355,7 @@ - - echocheck "compiler version" - --cxx_name=`( $cc -v ) 2>&1 | tail -1 | cut -d ' ' -f 1` -+cxx_name=`( $cc -v ) 2>&1 | tail -n 1 | cut -d ' ' -f 1` - cxx_version=`( $CXX -dumpversion ) 2>&1` - if test "$?" -gt 0; then - cxx_version="not found" diff --git a/packages/scummvm/files/tremor.patch b/packages/scummvm/files/tremor.patch deleted file mode 100644 index 3acf302ec8..0000000000 --- a/packages/scummvm/files/tremor.patch +++ /dev/null @@ -1,32 +0,0 @@ ---- ./sound/vorbis.cpp.old 2004-05-16 04:23:59.000000000 +0930 -+++ ./sound/vorbis.cpp 2004-05-16 04:24:23.000000000 +0930 -@@ -29,7 +29,7 @@ - #include "sound/audiostream.h" - #include "sound/audiocd.h" - --#include <vorbis/vorbisfile.h> -+#include <tremor/ivorbisfile.h> - - - AudioStream *makeVorbisStream(OggVorbis_File *file, int duration); ---- ./configure.old 2004-05-16 04:46:47.000000000 +0930 -+++ ./configure 2004-05-16 04:50:42.000000000 +0930 -@@ -560,15 +560,15 @@ - if test "$_vorbis" = auto ; then - _vorbis=no - cat > $TMPC << EOF --#include <vorbis/codec.h> -+#include <tremor/ivorbiscodec.h> - int main(void) { vorbis_packet_blocksize(0,0); return 0; } - EOF - cc_check $LDFLAGS $CXXFLAGS $OGG_CFLAGS $OGG_LIBS $VORBIS_CFLAGS $VORBIS_LIBS \ -- -lvorbis -logg -lm && _vorbis=yes -+ -lvorbisidec -logg -lm && _vorbis=yes - fi - if test "$_vorbis" = yes ; then - _def_vorbis='#define USE_VORBIS' -- LIBS="$LIBS $OGG_LIBS $VORBIS_LIBS -lvorbisfile -lvorbis -logg" -+ LIBS="$LIBS $OGG_LIBS $VORBIS_LIBS -lvorbisidec -logg" - INCLUDES="$INCLUDES $OGG_CFLAGS $VORBIS_CFLAGS" - else - _def_vorbis='#undef USE_VORBIS' diff --git a/packages/scummvm/opie-scummvm_1.0.1.bb b/packages/scummvm/opie-scummvm_1.0.1.bb deleted file mode 100644 index 45116eb333..0000000000 --- a/packages/scummvm/opie-scummvm_1.0.1.bb +++ /dev/null @@ -1,18 +0,0 @@ -DESCRIPTION = "opie-scummvm" -SECTION = "opie/games" -PRIORITY = "optional" -LICENSE = "GPL" -APPNAME = "opie-scummvm" -APPTYPE = "binary" -APPDESKTOP = "${S}" - -RDEPENDS = "scummvm-qpe" -SRC_URI = "http://sickpeople.wmc-allstars.com/law/files/scummvm/opie-scummvm-${PV}-r0_arm.tar.bz2" - -inherit opie - -do_install() { - install -d ${D}${palmtopdir}/pics/${APPNAME} - install -m 0755 ${WORKDIR}/${APPNAME}-1.0.1/scummvm.png ${D}${palmtopdir}/pics/ -} - diff --git a/packages/scummvm/scummvm-0.6.0/mouse.patch b/packages/scummvm/scummvm-0.6.0/mouse.patch deleted file mode 100644 index 1697ac811d..0000000000 --- a/packages/scummvm/scummvm-0.6.0/mouse.patch +++ /dev/null @@ -1,36 +0,0 @@ ---- ./backends/sdl/sdl-common.cpp~mouse.patch 2004-03-05 07:23:04.000000000 +1030 -+++ ./backends/sdl/sdl-common.cpp 2004-05-16 07:53:24.000000000 +0930 -@@ -866,6 +866,9 @@ - return true; - - case SDL_MOUSEBUTTONDOWN: -+#ifdef QTOPIA -+ event->event_code = EVENT_LBUTTONDOWN; -+#else - if (ev.button.button == SDL_BUTTON_LEFT) - event->event_code = EVENT_LBUTTONDOWN; - else if (ev.button.button == SDL_BUTTON_RIGHT) -@@ -878,18 +881,23 @@ - #endif - else - break; -+#endif - - fillMouseEvent(*event, ev.button.x, ev.button.y); - - return true; - - case SDL_MOUSEBUTTONUP: -+#ifdef QTOPIA -+ event->event_code = EVENT_LBUTTONUP; -+#else - if (ev.button.button == SDL_BUTTON_LEFT) - event->event_code = EVENT_LBUTTONUP; - else if (ev.button.button == SDL_BUTTON_RIGHT) - event->event_code = EVENT_RBUTTONUP; - else - break; -+#endif - fillMouseEvent(*event, ev.button.x, ev.button.y); - - return true; diff --git a/packages/scummvm/scummvm-0.6.0/sword1.patch b/packages/scummvm/scummvm-0.6.0/sword1.patch deleted file mode 100644 index 0c934ef20f..0000000000 --- a/packages/scummvm/scummvm-0.6.0/sword1.patch +++ /dev/null @@ -1,16 +0,0 @@ ---- ./sword1/sword1.cpp.old 2004-05-16 03:17:26.000000000 +0930 -+++ ./sword1/sword1.cpp 2004-05-16 03:12:42.000000000 +0930 -@@ -1061,8 +1061,11 @@ - _systemVars.runningFromCd = true; - _systemVars.currentCD = 2; - test.close(); -- } else -- error("Unable to find files.\nPlease read the instructions again"); -+ } else { -+ _systemVars.runningFromCd = false; -+ _systemVars.playSpeech = false; -+// error("Unable to find files.\nPlease read the instructions again"); -+ } - } - } - diff --git a/packages/scummvm/scummvm-0.6.0/tremor.patch b/packages/scummvm/scummvm-0.6.0/tremor.patch deleted file mode 100644 index 3acf302ec8..0000000000 --- a/packages/scummvm/scummvm-0.6.0/tremor.patch +++ /dev/null @@ -1,32 +0,0 @@ ---- ./sound/vorbis.cpp.old 2004-05-16 04:23:59.000000000 +0930 -+++ ./sound/vorbis.cpp 2004-05-16 04:24:23.000000000 +0930 -@@ -29,7 +29,7 @@ - #include "sound/audiostream.h" - #include "sound/audiocd.h" - --#include <vorbis/vorbisfile.h> -+#include <tremor/ivorbisfile.h> - - - AudioStream *makeVorbisStream(OggVorbis_File *file, int duration); ---- ./configure.old 2004-05-16 04:46:47.000000000 +0930 -+++ ./configure 2004-05-16 04:50:42.000000000 +0930 -@@ -560,15 +560,15 @@ - if test "$_vorbis" = auto ; then - _vorbis=no - cat > $TMPC << EOF --#include <vorbis/codec.h> -+#include <tremor/ivorbiscodec.h> - int main(void) { vorbis_packet_blocksize(0,0); return 0; } - EOF - cc_check $LDFLAGS $CXXFLAGS $OGG_CFLAGS $OGG_LIBS $VORBIS_CFLAGS $VORBIS_LIBS \ -- -lvorbis -logg -lm && _vorbis=yes -+ -lvorbisidec -logg -lm && _vorbis=yes - fi - if test "$_vorbis" = yes ; then - _def_vorbis='#define USE_VORBIS' -- LIBS="$LIBS $OGG_LIBS $VORBIS_LIBS -lvorbisfile -lvorbis -logg" -+ LIBS="$LIBS $OGG_LIBS $VORBIS_LIBS -lvorbisidec -logg" - INCLUDES="$INCLUDES $OGG_CFLAGS $VORBIS_CFLAGS" - else - _def_vorbis='#undef USE_VORBIS' diff --git a/packages/scummvm/scummvm-qpe_0.6.1b.bb b/packages/scummvm/scummvm-qpe_0.6.1b.bb deleted file mode 100644 index 7618e09d9d..0000000000 --- a/packages/scummvm/scummvm-qpe_0.6.1b.bb +++ /dev/null @@ -1,5 +0,0 @@ -require scummvm.inc - -DEPENDS = "libsdl-qpe tremor libogg zlib ${@base_conditional('ENTERPRISE_DISTRO', '1', '', 'libmad mpeg2dec', d)}" - -S = "${WORKDIR}/scummvm-${PV}/" diff --git a/packages/scummvm/scummvm.inc b/packages/scummvm/scummvm.inc deleted file mode 100644 index 6be99ca26e..0000000000 --- a/packages/scummvm/scummvm.inc +++ /dev/null @@ -1,27 +0,0 @@ -DESCRIPTION = "Virtual Machine for several classic graphical point-and-click adventure games" -HOMEPAGE = "http://www.scummvm.org" -SECTION = "games" -PRIORITY = "optional" -LICENSE = "GPL" -PR = "r6" - -SRC_URI = "${SOURCEFORGE_MIRROR}/scummvm/scummvm-${PV}.tar.bz2" - -inherit autotools - -EXTRA_OECONF = "--host=${HOST_SYS} \ - --backend=sdl \ - --with-sdl-prefix=${STAGING_BINDIR_CROSS} \ - --disable-alsa \ - --prefix=${prefix} \ - --with-ogg-prefix=${STAGING_LIBDIR}/.. \ - --with-vorbis-prefix=${STAGING_LIBDIR}/.. \ - ${@base_conditional('ENTERPRISE_DISTRO', '1', '--disable-mpeg2', '--with-mpeg2-prefix=${STAGING_LIBDIR}/..', d)} \ - ${@base_conditional('ENTERPRISE_DISTRO', '1', '--disable-mad', '--with-mad-prefix=${STAGING_LIBDIR}/..', d)} \ - " - -EXTRA_OEMAKE = "MANDIR=${mandir}" - -do_configure() { - ./configure ${EXTRA_OECONF} -} diff --git a/packages/scummvm/scummvm_0.12.0.bb b/packages/scummvm/scummvm_0.12.0.bb deleted file mode 100644 index 630db67f21..0000000000 --- a/packages/scummvm/scummvm_0.12.0.bb +++ /dev/null @@ -1,33 +0,0 @@ -require scummvm.inc - -CCACHE = "" - -DEPENDS = "virtual/libsdl libvorbis libogg zlib \ - ${@base_conditional('ENTERPRISE_DISTRO', '1', '', 'libmad mpeg2dec', d)}" - -SRC_URI += " file://scummvm.desktop \ - file://no-strip.patch;patch=1" - -SRC_URI_append_openmoko = " file://openmoko-scummvm " - - -SRC_URI_OVERRIDES_PACKAGE_ARCH = "1" - -EXTRA_OECONF += " \ - --disable-scumm-7-8 \ - --disable-he \ - " - -do_install_append() { - if [ -f ${WORKDIR}/openmoko-scummvm ]; then - install -d ${D}${bindir} - install -m 0755 ${WORKDIR}/openmoko-scummvm ${D}${bindir}/openmoko-scummvm - fi - if [ -f ${WORKDIR}/scummvm.desktop ]; then - install -d ${D}${datadir}/applications - install -m 0644 ${WORKDIR}/scummvm.desktop ${D}${datadir}/applications - fi - install -d ${D}${datadir}/scummvm - install -m 0644 gui/themes/modern.ini ${D}${datadir}/scummvm/ - install -m 0644 gui/themes/modern.zip ${D}${datadir}/scummvm/ -} diff --git a/packages/scummvm/scummvm_0.6.0.bb b/packages/scummvm/scummvm_0.6.0.bb deleted file mode 100644 index 6ff76e6eb2..0000000000 --- a/packages/scummvm/scummvm_0.6.0.bb +++ /dev/null @@ -1,34 +0,0 @@ -DESCRIPTION = "Virtual Machine for LucasArts Adventures for Qt/Embedded based palmtop environments w/ SDL." -SECTION = "opie/games" -PRIORITY = "optional" -DEPENDS = "libsdl-qpe tremor libogg zlib \ - ${@base_conditional('ENTERPRISE_DISTRO', '1', '', 'libmad mpeg2dec', d)}" -LICENSE = "GPL" - -SRC_URI = "${SOURCEFORGE_MIRROR}/scummvm/scummvm-${PV}.tar.bz2 \ - file://sword1.patch;patch=1 \ - file://tremor.patch;patch=1 \ - file://mouse.patch;patch=1 " -PR="r1" - -inherit autotools - -export SDL_CONFIG = "${STAGING_BINDIR_CROSS}/sdl-config" - -EXTRA_OECONF = "--host=${HOST_SYS} \ - --backend=sdl \ - --disable-alsa \ - --with-ogg-prefix=${STAGING_LIBDIR}/.. \ - --with-vorbis-prefix=${STAGING_LIBDIR}/.. \ - ${@base_conditional('ENTERPRISE_DISTRO', '1', '--disable-mpeg2', '--with-mpeg2-prefix=${STAGING_LIBDIR}/..', d)} \ - ${@base_conditional('ENTERPRISE_DISTRO', '1', '--disable-mad', '--with-mad-prefix=${STAGING_BINDIR_CROSS}/..', d)} \ - " -do_configure() { - ./configure ${EXTRA_OECONF} -} - -do_install() { - install -d ${D}${bindir} - install -m 0755 scummvm ${D}${bindir}/scummvm -} - diff --git a/packages/scummvm/scummvm_0.6.1b.bb b/packages/scummvm/scummvm_0.6.1b.bb deleted file mode 100644 index 7c85caff8e..0000000000 --- a/packages/scummvm/scummvm_0.6.1b.bb +++ /dev/null @@ -1,9 +0,0 @@ -require scummvm.inc -DEPENDS = "virtual/libsdl tremor libogg zlib \ - ${@base_conditional('ENTERPRISE_DISTRO', '1', '', 'libmad mpeg2dec', d)}" -SRC_URI += " file://mouse.patch;patch=1 \ - file://gcc-4.x.x-accept.patch;patch=1 \ - file://sh3-linux-new-arch.patch;patch=1 \ - file://tail-obselete-fix.patch;patch=1 \ - file://tremor.patch;patch=1" - diff --git a/packages/scummvm/scummvm_0.9.0.bb b/packages/scummvm/scummvm_0.9.0.bb deleted file mode 100644 index f521e13fd1..0000000000 --- a/packages/scummvm/scummvm_0.9.0.bb +++ /dev/null @@ -1,9 +0,0 @@ -require scummvm.inc -DEPENDS = "virtual/libsdl libvorbis libogg zlib \ - ${@base_conditional('ENTERPRISE_DISTRO', '1', '', 'libmad mpeg2dec', d)}" -SRC_URI += "file://sh3-arch-0.9.0+.patch;patch=1" - -EXTRA_OECONF += "--enable-lure \ - --enable-agi \ - --enable-cine \ - " diff --git a/packages/scummvm/scummvm_0.9.1.bb b/packages/scummvm/scummvm_0.9.1.bb deleted file mode 100644 index b64ac1d93b..0000000000 --- a/packages/scummvm/scummvm_0.9.1.bb +++ /dev/null @@ -1,30 +0,0 @@ -require scummvm.inc - -DEPENDS = "virtual/libsdl libvorbis libogg zlib \ - ${@base_conditional('ENTERPRISE_DISTRO', '1', '', 'libmad mpeg2dec', d)}" - -SRC_URI += "file://makefile-nostrip.patch;patch=1 \ - file://scummvm-targetcheck.patch;patch=1" -SRC_URI_append_openmoko = " file://openmoko-scummvm \ - file://scummvm.desktop" - -SRC_URI_OVERRIDES_PACKAGE_ARCH = "1" - -EXTRA_OECONF += "--enable-lure \ - --enable-agi \ - --enable-cine \ - " - -do_install_append() { - if [ -f ${WORKDIR}/openmoko-scummvm ]; then - install -d ${D}${bindir} - install -m 0755 ${WORKDIR}/openmoko-scummvm ${D}${bindir}/openmoko-scummvm - fi - if [ -f ${WORKDIR}/scummvm.desktop ]; then - install -d ${D}${datadir}/applications - install -m 0644 ${WORKDIR}/scummvm.desktop ${D}${datadir}/applications - fi - install -d ${D}${datadir}/scummvm - install -m 0644 gui/themes/modern.ini ${D}${datadir}/scummvm/ - install -m 0644 gui/themes/modern.zip ${D}${datadir}/scummvm/ -} |