summaryrefslogtreecommitdiffstats
path: root/games/pcsx2
diff options
context:
space:
mode:
author Hunter Sezen2017-02-06 01:55:51 +0100
committer Willy Sudiarto Raharjo2017-02-06 01:55:51 +0100
commit58eb849f96ab5285c0b4d0473deeca3fa324629b (patch)
tree3428e97c32bdacf154054157ba28331d50b39c98 /games/pcsx2
parent8bf8fa4e59ce0109b2c8de587c59292d65cf6243 (diff)
downloadslackbuilds-58eb849f96ab5285c0b4d0473deeca3fa324629b.tar.gz
games/pcsx2: Updated for version 2017.02.01_23d081ab2.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'games/pcsx2')
-rw-r--r--games/pcsx2/README18
-rw-r--r--games/pcsx2/osd_font.diff.gzbin0 -> 452 bytes
-rw-r--r--games/pcsx2/pcsx2.SlackBuild17
-rw-r--r--games/pcsx2/pcsx2.info6
-rw-r--r--games/pcsx2/project_metafalica.diff.gzbin0 -> 444 bytes
5 files changed, 26 insertions, 15 deletions
diff --git a/games/pcsx2/README b/games/pcsx2/README
index c2358fc8bf..72aa3733c5 100644
--- a/games/pcsx2/README
+++ b/games/pcsx2/README
@@ -1,13 +1,13 @@
-PCSX2 is an open source Playstation 2 emulator. Its purpose is to
-mimic the PS2 hardware, using a combination of MIPS CPU Interpreters,
-Recompilers and a Virtual Machine which manages hardware states and PS2
-system memory.
+PCSX2 is an open source Playstation 2 emulator.
+Its purpose is to mimic the PS2 hardware, using a combination
+of MIPS CPU Interpreters, Recompilers and a Virtual Machine
+which manages hardware states and PS2 system memory.
-NOTE: This is buildable only on x86 32bit platform and will require a
-PS2 bios dump to play games. For x86_64 64bit platforms multilib support
-will be needed including compat32 versions of SDL2, wxGTK3, portaudio,
-soundtouch, libnotify and xz.
+NOTE: This is buildable only on x86 32bit platform and will
+require a PS2 bios dump to play games.
+For x86_64 64bit platforms multilib support will be needed
+including compat32 versions of SDL2, wxGTK3, portaudio and
+soundtouch.
To build a legacy GSdx plugin compatible with GL3.3 use:
-
GL3="yes" ./pcsx2.SlackBuild
diff --git a/games/pcsx2/osd_font.diff.gz b/games/pcsx2/osd_font.diff.gz
new file mode 100644
index 0000000000..d74e5c7293
--- /dev/null
+++ b/games/pcsx2/osd_font.diff.gz
Binary files differ
diff --git a/games/pcsx2/pcsx2.SlackBuild b/games/pcsx2/pcsx2.SlackBuild
index 173a713453..46e7345066 100644
--- a/games/pcsx2/pcsx2.SlackBuild
+++ b/games/pcsx2/pcsx2.SlackBuild
@@ -23,7 +23,7 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=pcsx2
-VERSION=${VERSION:-2016.07.31_e329b6f}
+VERSION=${VERSION:-2017.02.01_23d081ab2}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@@ -77,7 +77,18 @@ find -L . \
# Build a GSdx legacy plugin compatible with GL3.3
GL3=${GL3:-no}
-if [ "$GL3:-yes" = "yes" ]; then GSDX="-DGSDX_LEGACY=ON"; else GSDX=""; fi
+case "$GL3" in
+ 'yes' ) GSDX='-DGSDX_LEGACY=ON' ;;
+ * ) GSDX= ;;
+esac
+
+# (CRC) Add project metafalica retranslation
+# https://github.com/PCSX2/pcsx2/issues/1762
+zcat $CWD/project_metafalica.diff.gz | patch -p1
+
+# Use a font included with Slackware
+# osd error: 'Failed to init the freetype face'
+zcat $CWD/osd_font.diff.gz | patch -p1
mkdir -p build
cd build
@@ -115,7 +126,7 @@ cat $CWD/slack-desc > $PKG/install/slack-desc
cat $CWD/doinst.sh > $PKG/install/doinst.sh
# Fix doinst.sh for x86_64
-if [ "$ARCH" = "x86_64" ]; then
+if [ "$ARCH" = 'x86_64' ]; then
if ! grep -q 32 $PKG/install/doinst.sh; then
sed -i 's|-loaders >|-loaders-32 >|' $PKG/install/doinst.sh
fi
diff --git a/games/pcsx2/pcsx2.info b/games/pcsx2/pcsx2.info
index 9a59175d71..be7845d072 100644
--- a/games/pcsx2/pcsx2.info
+++ b/games/pcsx2/pcsx2.info
@@ -1,8 +1,8 @@
PRGNAM="pcsx2"
-VERSION="2016.07.31_e329b6f"
+VERSION="2017.02.01_23d081ab2"
HOMEPAGE="http://pcsx2.net"
-DOWNLOAD="http://ks392457.kimsufi.com/orbea/stuff/slackbuilds/src/pcsx2-2016.07.31_e329b6f.tar.xz"
-MD5SUM="1618600ce9a155ebc3f762aae8ca325d"
+DOWNLOAD="http://ks392457.kimsufi.com/orbea/stuff/slackbuilds/src/pcsx2-2017.02.01_23d081ab2.tar.xz"
+MD5SUM="a8a9b27362371b2fc476ec2cf9ae1405"
DOWNLOAD_x86_64="UNSUPPORTED"
MD5SUM_x86_64=""
REQUIRES="SDL2 wxGTK3 portaudio soundtouch"
diff --git a/games/pcsx2/project_metafalica.diff.gz b/games/pcsx2/project_metafalica.diff.gz
new file mode 100644
index 0000000000..3f69d4a3db
--- /dev/null
+++ b/games/pcsx2/project_metafalica.diff.gz
Binary files differ