From 8d43140cc04970e413226e12ed46e84947ac8065 Mon Sep 17 00:00:00 2001 From: Frederic Bompart Date: Fri, 2 Dec 2005 09:12:35 +0000 Subject: snes9x-sdl: new version that doesn't depend on qte and libstdc++, qte version still available --- packages/snes9x/snes9x-sdl-qpe-1.39/.mtn2git_empty | 0 packages/snes9x/snes9x-sdl-qpe-1.39/compile.patch | 205 --------------- packages/snes9x/snes9x-sdl-qpe_1.39.bb | 6 +- packages/snes9x/snes9x-sdl/.mtn2git_empty | 0 packages/snes9x/snes9x-sdl/compile.patch | 275 +++++++++++++++++++++ packages/snes9x/snes9x-sdl_1.39.bb | 23 ++ 6 files changed, 302 insertions(+), 207 deletions(-) delete mode 100644 packages/snes9x/snes9x-sdl-qpe-1.39/.mtn2git_empty delete mode 100644 packages/snes9x/snes9x-sdl-qpe-1.39/compile.patch create mode 100644 packages/snes9x/snes9x-sdl/.mtn2git_empty create mode 100644 packages/snes9x/snes9x-sdl/compile.patch create mode 100644 packages/snes9x/snes9x-sdl_1.39.bb (limited to 'packages/snes9x') diff --git a/packages/snes9x/snes9x-sdl-qpe-1.39/.mtn2git_empty b/packages/snes9x/snes9x-sdl-qpe-1.39/.mtn2git_empty deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/packages/snes9x/snes9x-sdl-qpe-1.39/compile.patch b/packages/snes9x/snes9x-sdl-qpe-1.39/compile.patch deleted file mode 100644 index 57ff0c409a..0000000000 --- a/packages/snes9x/snes9x-sdl-qpe-1.39/compile.patch +++ /dev/null @@ -1,205 +0,0 @@ - -# -# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher -# - ---- snes9x-sdl-1.39/unix/svga.cpp~compile 2003-10-28 10:08:18.000000000 +0100 -+++ snes9x-sdl-1.39/unix/svga.cpp 2004-01-19 21:29:07.000000000 +0100 -@@ -48,7 +48,7 @@ - #include - #include - --#include "sdl.h" -+#include - - #include "snes9x.h" - #include "memmap.h" ---- snes9x-sdl-1.39/unix/unix.cpp~compile 2003-10-28 22:09:02.000000000 +0100 -+++ snes9x-sdl-1.39/unix/unix.cpp 2004-01-19 21:29:07.000000000 +0100 -@@ -50,7 +50,7 @@ - #include - #include - #include --#include -+#include - #include "keydef.h" - - #undef USE_THREADS ---- /dev/null 1970-01-01 01:00:00.000000000 +0100 -+++ snes9x-sdl-1.39/unzip/unzipP.h 2004-01-19 21:29:07.000000000 +0100 -@@ -0,0 +1,124 @@ -+#ifndef _UNZIPP_H_ -+#define _UNZIPP_H_ -+ -+#include "unzip.h" -+ -+#ifndef local -+#define local static -+#endif -+/* compile with -Dlocal if your debugger can't find static symbols */ -+ -+ -+ -+#if !defined(unix) && !defined(CASESENSITIVITYDEFAULT_YES) && \ -+ !defined(CASESENSITIVITYDEFAULT_NO) -+#define CASESENSITIVITYDEFAULT_NO -+#endif -+ -+ -+#ifndef UNZ_BUFSIZE -+#define UNZ_BUFSIZE (16384) -+#endif -+ -+#ifndef UNZ_MAXFILENAMEINZIP -+#define UNZ_MAXFILENAMEINZIP (256) -+#endif -+ -+#ifndef ALLOC -+#define ALLOC(size) (malloc(size)) -+#endif -+#ifndef TRYFREE -+#define TRYFREE(p) {if (p) free(p);} -+#endif -+ -+#define SIZECENTRALDIRITEM (0x2e) -+#define SIZEZIPLOCALHEADER (0x1e) -+ -+ -+/* I've found an old Unix (a SunOS 4.1.3_U1) without all SEEK_* defined.... */ -+ -+#ifndef SEEK_CUR -+#define SEEK_CUR 1 -+#endif -+ -+#ifndef SEEK_END -+#define SEEK_END 2 -+#endif -+ -+#ifndef SEEK_SET -+#define SEEK_SET 0 -+#endif -+ -+/* unz_file_info_interntal contain internal info about a file in zipfile */ -+typedef struct unz_file_info_internal_s -+{ -+ uLong offset_curfile; /* relative offset of local header 4 -+ * bytes */ -+} unz_file_info_internal; -+ -+ -+/* -+ * file_in_zip_read_info_s contain internal information about a file in -+ * zipfile, when reading and decompress it -+ */ -+typedef struct -+{ -+ char *read_buffer;/* internal buffer for compressed data */ -+ z_stream stream; /* zLib stream structure for inflate */ -+ -+ uLong pos_in_zipfile; /* position in byte on the zipfile, -+ * for fseek */ -+ uLong stream_initialised; /* flag set if stream structure is -+ * initialised */ -+ -+ uLong offset_local_extrafield; /* offset of the local extra -+ * field */ -+ uInt size_local_extrafield; /* size of the local extra -+ * field */ -+ uLong pos_local_extrafield; /* position in the local -+ * extra field in read */ -+ -+ uLong crc32; /* crc32 of all data uncompressed */ -+ uLong crc32_wait; /* crc32 we must obtain after decompress all */ -+ uLong rest_read_compressed; /* number of byte to be -+ * decompressed */ -+ uLong rest_read_uncompressed; /* number of byte to be -+ * obtained after decomp */ -+ FILE *file; /* io structore of the zipfile */ -+ uLong compression_method; /* compression method (0==store) */ -+ uLong byte_before_the_zipfile; /* byte before the zipfile, -+ * (>0 for sfx) */ -+} file_in_zip_read_info_s; -+ -+ -+/* -+ * unz_s contain internal information about the zipfile -+ */ -+typedef struct -+{ -+ FILE *file; /* io structore of the zipfile */ -+ unz_global_info gi; /* public global information */ -+ uLong byte_before_the_zipfile; /* byte before the zipfile, -+ * (>0 for sfx) */ -+ uLong num_file; /* number of the current file in the zipfile */ -+ uLong pos_in_central_dir; /* pos of the current file in the -+ * central dir */ -+ uLong current_file_ok; /* flag about the usability of the -+ * current file */ -+ uLong central_pos;/* position of the beginning of the central -+ * dir */ -+ -+ uLong size_central_dir; /* size of the central directory */ -+ uLong offset_central_dir; /* offset of start of central -+ * directory with respect to the -+ * starting disk number */ -+ -+ unz_file_info cur_file_info; /* public info about the current file -+ * in zip */ -+ unz_file_info_internal cur_file_info_internal; /* private info about it */ -+ file_in_zip_read_info_s *pfile_in_zip_read; /* structure about the -+ * current file if we are -+ * decompressing it */ -+} unz_s; -+ -+#endif ---- snes9x-sdl-1.39/Makefile~compile 2003-10-28 16:49:50.000000000 +0100 -+++ snes9x-sdl-1.39/Makefile 2004-01-19 21:31:53.000000000 +0100 -@@ -53,12 +53,12 @@ - - ifdef THREAD_SOUND - CPUDEFINES += -DUSE_THREADS --EXTRALIBS += -lpthread -L/usr/local/lib -lcygipc -+EXTRALIBS += -lpthread -lcygipc - endif - - ifdef GLIDE - GLIDEOBJS = unix/glide.o --GLIDEDEFINES = -DUSE_GLIDE -I/usr/include/glide -+GLIDEDEFINES = -DUSE_GLIDE - GLIDELIBS = -lglide2x - GLIDEDEPENDS=use_glide - GLIDENO_DEPENDS=no_glide -@@ -82,14 +82,12 @@ - CC = gcc - NASM = nasm - --INCLUDES=-I/usr/local/include -+INCLUDES= - - OPTIMISE= -D_ZAURUS -Os -ffast-math -fstrict-aliasing -fomit-frame-pointer -mcpu=strongarm1100 -mtune=strongarm1100 - CCFLAGS = $(OPTIMISE) \ ---I/opt/Qtopia/include/SDL \ - -I. \ - -Iunzip \ ---Isdl \ - -D__linux \ - -DZLIB \ - -DVAR_CYCLES \ -@@ -114,7 +112,7 @@ - - .SUFFIXES: .o .cpp .c .cc .h .m .i .S .asm .obj - --LDLIBS = -L/opt/Qtopia/sharp/lib -+LDLIBS= - - ifdef GLIDE - all: offsets gsnes9x -@@ -146,7 +144,7 @@ - $(RM) $(OPENGLNO_DEPENDS) - - snes9x: $(OBJECTS) -- $(CCC) $(INCLUDES) -o $@ $(OBJECTS) $(EXTRALIBS) -L/opt/QtPalmtop/lib/ -lSDL -lSDLmain $(LDLIBS) -lqpe -lqte -lpthread -+ $(CCC) $(INCLUDES) -o $@ $(OBJECTS) $(EXTRALIBS) $(LDLIBS) -lqpe -lqte -lpthread - - gsnes9x: $(OBJECTS) unix/x11.o unix/glide.o - $(CCC) $(INCLUDES) -o $@ $(OBJECTS) unix/x11.o unix/glide.o $(LDLIBS) $(GLIDELIBS) -lXext -lX11 -lXxf86dga -lXxf86vm $(EXTRALIBS) -lz -lm diff --git a/packages/snes9x/snes9x-sdl-qpe_1.39.bb b/packages/snes9x/snes9x-sdl-qpe_1.39.bb index b95357284f..6d9fadf062 100644 --- a/packages/snes9x/snes9x-sdl-qpe_1.39.bb +++ b/packages/snes9x/snes9x-sdl-qpe_1.39.bb @@ -2,18 +2,20 @@ DESCRIPTION = "Super Nintendo Emulator based on SDL, QtE Palmtop Environments Ed SECTION = "opie/games" PRIORITY = "optional" DEPENDS = "libsdl-qpe" -PR = "r1" +PR = "r2" LICENSE = "snes9x" SRC_URI = "http://www.vanille.de/mirror/snes9x-sdl-${PV}.tar.bz2 \ file://compile.patch;patch=1" S = "${WORKDIR}/snes9x-sdl-${PV}" +FILESPATH = "${FILE_DIRNAME}/${PN}-${PV}:${FILE_DIRNAME}/snes9x-sdl-${PV}:${FILE_DIRNAME}/snes9x-sdl:${FILE_DIRNAME}/files:${FILE_DIRNAME}" + FILES_${PN} = "${palmtopdir}/bin/snes9x" do_compile() { oe_runmake CC="${CC}" CCC="${CXX}" \ INCLUDES="-I${STAGING_INCDIR} `sdl-config --cflags`" \ - LDLIBS="`sdl-config --libs` -Wl,-rpath-link,${STAGING_LIBDIR}" + LDLIBS="`sdl-config --libs` -Wl,-rpath-link,${STAGING_LIBDIR} -lqpe -lqte" } do_install() { diff --git a/packages/snes9x/snes9x-sdl/.mtn2git_empty b/packages/snes9x/snes9x-sdl/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 diff --git a/packages/snes9x/snes9x-sdl/compile.patch b/packages/snes9x/snes9x-sdl/compile.patch new file mode 100644 index 0000000000..b41a30f30e --- /dev/null +++ b/packages/snes9x/snes9x-sdl/compile.patch @@ -0,0 +1,275 @@ + +# +# Patch managed by http://www.holgerschurig.de/patcher.html +# + +--- snes9x-sdl-1.39/unix/svga.cpp~compile ++++ snes9x-sdl-1.39/unix/svga.cpp +@@ -48,7 +48,7 @@ + #include + #include + +-#include "sdl.h" ++#include + + #include "snes9x.h" + #include "memmap.h" +--- snes9x-sdl-1.39/unix/unix.cpp~compile ++++ snes9x-sdl-1.39/unix/unix.cpp +@@ -50,7 +50,7 @@ + #include + #include + #include +-#include ++#include + #include "keydef.h" + + #undef USE_THREADS +@@ -189,8 +189,7 @@ + } + + /*#include "cheats.h"*/ +-extern "C" +-int SDL_main (int argc, char **argv) ++int main (int argc, char **argv) + { + if (argc < 2) + S9xUsage (); +--- /dev/null ++++ snes9x-sdl-1.39/unzip/unzipP.h +@@ -0,0 +1,124 @@ ++#ifndef _UNZIPP_H_ ++#define _UNZIPP_H_ ++ ++#include "unzip.h" ++ ++#ifndef local ++#define local static ++#endif ++/* compile with -Dlocal if your debugger can't find static symbols */ ++ ++ ++ ++#if !defined(unix) && !defined(CASESENSITIVITYDEFAULT_YES) && \ ++ !defined(CASESENSITIVITYDEFAULT_NO) ++#define CASESENSITIVITYDEFAULT_NO ++#endif ++ ++ ++#ifndef UNZ_BUFSIZE ++#define UNZ_BUFSIZE (16384) ++#endif ++ ++#ifndef UNZ_MAXFILENAMEINZIP ++#define UNZ_MAXFILENAMEINZIP (256) ++#endif ++ ++#ifndef ALLOC ++#define ALLOC(size) (malloc(size)) ++#endif ++#ifndef TRYFREE ++#define TRYFREE(p) {if (p) free(p);} ++#endif ++ ++#define SIZECENTRALDIRITEM (0x2e) ++#define SIZEZIPLOCALHEADER (0x1e) ++ ++ ++/* I've found an old Unix (a SunOS 4.1.3_U1) without all SEEK_* defined.... */ ++ ++#ifndef SEEK_CUR ++#define SEEK_CUR 1 ++#endif ++ ++#ifndef SEEK_END ++#define SEEK_END 2 ++#endif ++ ++#ifndef SEEK_SET ++#define SEEK_SET 0 ++#endif ++ ++/* unz_file_info_interntal contain internal info about a file in zipfile */ ++typedef struct unz_file_info_internal_s ++{ ++ uLong offset_curfile; /* relative offset of local header 4 ++ * bytes */ ++} unz_file_info_internal; ++ ++ ++/* ++ * file_in_zip_read_info_s contain internal information about a file in ++ * zipfile, when reading and decompress it ++ */ ++typedef struct ++{ ++ char *read_buffer;/* internal buffer for compressed data */ ++ z_stream stream; /* zLib stream structure for inflate */ ++ ++ uLong pos_in_zipfile; /* position in byte on the zipfile, ++ * for fseek */ ++ uLong stream_initialised; /* flag set if stream structure is ++ * initialised */ ++ ++ uLong offset_local_extrafield; /* offset of the local extra ++ * field */ ++ uInt size_local_extrafield; /* size of the local extra ++ * field */ ++ uLong pos_local_extrafield; /* position in the local ++ * extra field in read */ ++ ++ uLong crc32; /* crc32 of all data uncompressed */ ++ uLong crc32_wait; /* crc32 we must obtain after decompress all */ ++ uLong rest_read_compressed; /* number of byte to be ++ * decompressed */ ++ uLong rest_read_uncompressed; /* number of byte to be ++ * obtained after decomp */ ++ FILE *file; /* io structore of the zipfile */ ++ uLong compression_method; /* compression method (0==store) */ ++ uLong byte_before_the_zipfile; /* byte before the zipfile, ++ * (>0 for sfx) */ ++} file_in_zip_read_info_s; ++ ++ ++/* ++ * unz_s contain internal information about the zipfile ++ */ ++typedef struct ++{ ++ FILE *file; /* io structore of the zipfile */ ++ unz_global_info gi; /* public global information */ ++ uLong byte_before_the_zipfile; /* byte before the zipfile, ++ * (>0 for sfx) */ ++ uLong num_file; /* number of the current file in the zipfile */ ++ uLong pos_in_central_dir; /* pos of the current file in the ++ * central dir */ ++ uLong current_file_ok; /* flag about the usability of the ++ * current file */ ++ uLong central_pos;/* position of the beginning of the central ++ * dir */ ++ ++ uLong size_central_dir; /* size of the central directory */ ++ uLong offset_central_dir; /* offset of start of central ++ * directory with respect to the ++ * starting disk number */ ++ ++ unz_file_info cur_file_info; /* public info about the current file ++ * in zip */ ++ unz_file_info_internal cur_file_info_internal; /* private info about it */ ++ file_in_zip_read_info_s *pfile_in_zip_read; /* structure about the ++ * current file if we are ++ * decompressing it */ ++} unz_s; ++ ++#endif +--- snes9x-sdl-1.39/Makefile~compile ++++ snes9x-sdl-1.39/Makefile +@@ -53,12 +53,12 @@ + + ifdef THREAD_SOUND + CPUDEFINES += -DUSE_THREADS +-EXTRALIBS += -lpthread -L/usr/local/lib -lcygipc ++EXTRALIBS += -lpthread -lcygipc + endif + + ifdef GLIDE + GLIDEOBJS = unix/glide.o +-GLIDEDEFINES = -DUSE_GLIDE -I/usr/include/glide ++GLIDEDEFINES = -DUSE_GLIDE + GLIDELIBS = -lglide2x + GLIDEDEPENDS=use_glide + GLIDENO_DEPENDS=no_glide +@@ -82,14 +82,12 @@ + CC = gcc + NASM = nasm + +-INCLUDES=-I/usr/local/include ++INCLUDES= + +-OPTIMISE= -D_ZAURUS -Os -ffast-math -fstrict-aliasing -fomit-frame-pointer -mcpu=strongarm1100 -mtune=strongarm1100 ++OPTIMISE= -D_ZAURUS -Os -ffast-math -fstrict-aliasing -fomit-frame-pointer + CCFLAGS = $(OPTIMISE) \ +--I/opt/Qtopia/include/SDL \ + -I. \ + -Iunzip \ +--Isdl \ + -D__linux \ + -DZLIB \ + -DVAR_CYCLES \ +@@ -114,7 +112,7 @@ + + .SUFFIXES: .o .cpp .c .cc .h .m .i .S .asm .obj + +-LDLIBS = -L/opt/Qtopia/sharp/lib ++LDLIBS= + + ifdef GLIDE + all: offsets gsnes9x +@@ -146,7 +144,7 @@ + $(RM) $(OPENGLNO_DEPENDS) + + snes9x: $(OBJECTS) +- $(CCC) $(INCLUDES) -o $@ $(OBJECTS) $(EXTRALIBS) -L/opt/QtPalmtop/lib/ -lSDL -lSDLmain $(LDLIBS) -lqpe -lqte -lpthread ++ $(CC) $(INCLUDES) -o $@ $(OBJECTS) $(EXTRALIBS) $(LDLIBS) -lz -lpthread + + gsnes9x: $(OBJECTS) unix/x11.o unix/glide.o + $(CCC) $(INCLUDES) -o $@ $(OBJECTS) unix/x11.o unix/glide.o $(LDLIBS) $(GLIDELIBS) -lXext -lX11 -lXxf86dga -lXxf86vm $(EXTRALIBS) -lz -lm +--- snes9x-sdl-1.39/snapshot.cpp~compile ++++ snes9x-sdl-1.39/snapshot.cpp +@@ -671,7 +671,7 @@ + fields [i].type); + } + +- uint8 *block = new uint8 [len]; ++ uint8 *block = (uint8*) malloc(len); + uint8 *ptr = block; + uint16 word; + uint32 dword; +@@ -739,7 +739,7 @@ + } + + FreezeBlock (stream, name, block, len); +- delete block; ++ free(block); + } + + void FreezeBlock (STREAM stream, char *name, uint8 *block, int size) +@@ -767,7 +767,7 @@ + fields [i].type); + } + +- uint8 *block = new uint8 [len]; ++ uint8 *block = (uint8*) malloc(len); + uint8 *ptr = block; + uint16 word; + uint32 dword; +@@ -776,7 +776,7 @@ + + if ((result = UnfreezeBlock (stream, name, block, len)) != SUCCESS) + { +- delete block; ++ free(block); + return (result); + } + +@@ -841,7 +841,7 @@ + } + } + +- delete block; ++ free(block); + return (result); + } + +@@ -865,9 +865,9 @@ + + if (rem) + { +- char *junk = new char [rem]; ++ char *junk = (char*) malloc(rem); + READ_STREAM (junk, rem, stream); +- delete junk; ++ free(junk); + } + + return (SUCCESS); diff --git a/packages/snes9x/snes9x-sdl_1.39.bb b/packages/snes9x/snes9x-sdl_1.39.bb new file mode 100644 index 0000000000..9c37b12f00 --- /dev/null +++ b/packages/snes9x/snes9x-sdl_1.39.bb @@ -0,0 +1,23 @@ +DESCRIPTION = "Super Nintendo Emulator based on SDL" +SECTION = "games" +PRIORITY = "optional" +DEPENDS = "virtual/libsdl zlib" +PR = "r2" +LICENSE = "snes9x" +SRC_URI = "http://www.vanille.de/mirror/snes9x-sdl-${PV}.tar.bz2 \ + file://compile.patch;patch=1" +S = "${WORKDIR}/snes9x-sdl-${PV}" + +FILES_${PN} = "${bindir}/snes9x" + +do_compile() { + oe_runmake CC="${CC}" CCC="${CXX} -fno-rtti -fno-exceptions" \ + INCLUDES="-I${STAGING_INCDIR} `sdl-config --cflags`" \ + LDLIBS="`sdl-config --libs`" +} + +do_install() { + install -d ${D}${bindir} + install -m 0755 snes9x ${D}${bindir}/snes9x +} + -- cgit v1.2.3