summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2011-11-17 20:53:55 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2011-11-17 20:53:55 +0000
commit1877ebc60f2f6959e93aa7ed12f34b31a007a6fb (patch)
tree85709a2c332b4a2cd10b853c98cf1e35063773df /games-emulation/pcsx/files
parentgames-arcade/cervi is gone (diff)
downloadhistorical-1877ebc60f2f6959e93aa7ed12f34b31a007a6fb.tar.gz
historical-1877ebc60f2f6959e93aa7ed12f34b31a007a6fb.tar.bz2
historical-1877ebc60f2f6959e93aa7ed12f34b31a007a6fb.zip
gtk+:1 is gone
Diffstat (limited to 'games-emulation/pcsx/files')
-rw-r--r--games-emulation/pcsx/files/1.5-gentoo.patch11
-rw-r--r--games-emulation/pcsx/files/pcsx56
-rw-r--r--games-emulation/pcsx/files/pcsx-1.5-gcc41.patch22
3 files changed, 0 insertions, 89 deletions
diff --git a/games-emulation/pcsx/files/1.5-gentoo.patch b/games-emulation/pcsx/files/1.5-gentoo.patch
deleted file mode 100644
index e490758f64af..000000000000
--- a/games-emulation/pcsx/files/1.5-gentoo.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- Linux/LnxMain.c.orig 2003-08-14 00:55:01.529872992 -0400
-+++ Linux/LnxMain.c 2003-08-14 00:54:56.000000000 -0400
-@@ -48,7 +48,7 @@
- bindtextdomain(PACKAGE, "./Langs");
- textdomain(PACKAGE);
- #endif
-- strcpy(cfgfile, "Pcsx.cfg");
-+ sprintf(cfgfile, "%s/.pcsx/config", getenv("HOME"));
-
- for (i=1; i<argc; i++) {
- if (!strcmp(argv[i], "-runcd")) runcd = 1;
diff --git a/games-emulation/pcsx/files/pcsx b/games-emulation/pcsx/files/pcsx
deleted file mode 100644
index f046b6e45e1d..000000000000
--- a/games-emulation/pcsx/files/pcsx
+++ /dev/null
@@ -1,56 +0,0 @@
-#!/bin/bash
-
-source /etc/init.d/functions.sh || exit 1
-
-if [[ ! -f ~/.pcsx/config ]]; then
- einfo You are running PCSX for the first time.
- einfo Setting up your PCSX environment... Please wait...
-
- mkdir -p ~/.pcsx
- cd ~/.pcsx
- mkdir memcards bios cfg plugins
-
- ln -s GAMES_BINDIR/pcsx.bin pcsx
- ln -s GAMES_LIBDIR/psemu/plugins/* plugins/
- ln -s GAMES_DATADIR/pcsx .pixmaps
-
- cd bios
- if [[ -f GAMES_LIBDIR/psemu/bios/scph1001.bin ]]; then
- ln -s GAMES_LIBDIR/psemu/bios/scph1001.bin .
- biosname=scph1001.bin
- else
- biosname=HLE
- fi
- cd ..
-
- cat >~/.pcsx/config <<EOF
-Bios = $biosname
-Gpu = $(basename $(ls plugins/libgpu* | cut -f1 -d\ ) )
-Spu = $(basename $(ls plugins/libspu* | cut -f1 -d\ ) )
-Cdr = $(basename $(ls plugins/libcdr* | cut -f1 -d\ ) )
-Pad1 = $(basename $(ls plugins/libpadXwin-* | cut -f1 -d\ ) )
-Pad2 = $(basename $(ls plugins/libpadXwin-* | cut -f1 -d\ ) )
-Mcd1 = ${HOME}/.pcsx/memcards/Mcd001.mcr
-Mcd2 = ${HOME}/.pcsx/memcards/Mcd002.mcr
-PluginsDir = ${HOME}/.pcsx/plugins/
-BiosDir = ${HOME}/.pcsx/bios/
-Xa = 0
-Sio = 0
-Mdec = 0
-PsxAuto = 1
-PsxType = 0
-Cdda = 0
-Cpu = 0
-PsxOut = 0
-SpuIrq = 0
-CdTiming = 0
-EOF
- unset biosname
-fi
-
-cd ~/.pcsx/
-
-ln -s GAMES_LIBDIR/psemu/cfg/* cfg/ &>/dev/null
-ln -s GAMES_LIBDIR/psemu/plugins/* plugins/ &>/dev/null
-
-exec ./pcsx "$@"
diff --git a/games-emulation/pcsx/files/pcsx-1.5-gcc41.patch b/games-emulation/pcsx/files/pcsx-1.5-gcc41.patch
deleted file mode 100644
index eff40e90f98d..000000000000
--- a/games-emulation/pcsx/files/pcsx-1.5-gcc41.patch
+++ /dev/null
@@ -1,22 +0,0 @@
---- PsxBios.c.old 2006-05-02 21:22:52.000000000 +0200
-+++ PsxBios.c 2006-05-02 21:41:56.000000000 +0200
-@@ -2253,7 +2253,7 @@
- if (ptr) psxRu32ref(base) = SWAPu32((u32)ptr - (u32)psxM); \
- else psxRu32ref(base) = 0; \
- } else { \
-- if (psxRu32(base)) (u8*)ptr = (u8*)(psxM + psxRu32(base)); \
-+ if (psxRu32(base)) *(u8**)&ptr = (u8*)(psxM + psxRu32(base)); \
- else ptr = NULL; \
- } \
- base+=4;
---- R3000A.h.old 2006-05-02 21:44:36.000000000 +0200
-+++ R3000A.h 2006-05-02 21:45:07.000000000 +0200
-@@ -135,7 +135,7 @@
-
- psxRegisters psxRegs;
-
--#define _i32(x) (long)x
-+#define _i32(x) *(long *)&x
- #define _u32(x) x
-
- #define _i16(x) (short)x