summaryrefslogtreecommitdiff
path: root/~emulatorman/mednafen-wip
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <andre@pc-01.localdomain>2012-02-21 11:37:08 -0200
committerAndré Fabian Silva Delgado <andre@pc-01.localdomain>2012-02-21 11:37:08 -0200
commit26eabccf168f954a2b7e9146889a13a20bdfcfcb (patch)
treef4719f5367f4c14368f3ade46c1434bfccbb8317 /~emulatorman/mednafen-wip
parent3b95a9111e71dd0187c90550b586c1dc7a3ff7fd (diff)
~emulatorman/hunspell-pt-br
Diffstat (limited to '~emulatorman/mednafen-wip')
-rwxr-xr-x~emulatorman/mednafen-wip/PKGBUILD34
-rw-r--r--~emulatorman/mednafen-wip/build.patch31
2 files changed, 65 insertions, 0 deletions
diff --git a/~emulatorman/mednafen-wip/PKGBUILD b/~emulatorman/mednafen-wip/PKGBUILD
new file mode 100755
index 000000000..93893684e
--- /dev/null
+++ b/~emulatorman/mednafen-wip/PKGBUILD
@@ -0,0 +1,34 @@
+# Maintainer: Hans-Kristian Arntzen <maister@archlinux.us>
+# Contributor: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve>
+# Contributor: kagan <juanynie@mi.madritel.es>
+# Contributor (Parabola): André Silva <andre.paulista@adinet.com.uy>
+
+pkgname=mednafen-wip
+pkgver=0.9.19
+pkgrel=1
+pkgdesc="A command-line multi-system gaming emulator, WIP version"
+url="http://mednafen.sourceforge.net/"
+license=(GPL)
+arch=('i686' 'x86_64')
+depends=('libcdio>=0.82' 'libsamplerate' 'libogg' 'libvorbis' 'sdl' 'sdl_net' 'libsndfile' 'zlib')
+makedepends=('pkgconfig' 'mesa')
+conflicts=('mednafen')
+provides=('mednafen')
+source=('http://forum.fobby.net/index.php?t=getfile&id=345&' 'build.patch')
+md5sums=('64be12196aa02828539af677b0e2a66c'
+ 'aac8957fa5274f00feed6a462fa8b7ad')
+
+build()
+{
+ cd $srcdir/mednafen
+ patch -p1 < $srcdir/build.patch
+ ./configure --prefix=/usr
+ make
+}
+
+package()
+{
+ cd $srcdir/mednafen
+ make DESTDIR=$pkgdir install
+}
+
diff --git a/~emulatorman/mednafen-wip/build.patch b/~emulatorman/mednafen-wip/build.patch
new file mode 100644
index 000000000..7985a19ed
--- /dev/null
+++ b/~emulatorman/mednafen-wip/build.patch
@@ -0,0 +1,31 @@
+diff --git a/src/file.cpp b/src/file.cpp
+index 57f4e13..ec1181c 100644
+--- a/src/file.cpp
++++ b/src/file.cpp
+@@ -293,7 +293,7 @@ bool MDFNFILE::MakeMemWrapAndClose(void *tz, int type)
+ goto doret;
+ }
+
+- while((howmany = gzread(tz, f_data + cur_size, cur_alloced - cur_size)) > 0)
++ while((howmany = gzread((gzFile)tz, f_data + cur_size, cur_alloced - cur_size)) > 0)
+ {
+ cur_size += howmany;
+ cur_alloced <<= 1;
+@@ -320,7 +320,7 @@ bool MDFNFILE::MakeMemWrapAndClose(void *tz, int type)
+ {
+ int gzerrnum = 0;
+ const char *gzerrstring;
+- if((gzerrstring = gzerror(tz, &gzerrnum)) && gzerrnum != Z_OK && gzerrnum != Z_STREAM_END)
++ if((gzerrstring = gzerror((gzFile)tz, &gzerrnum)) && gzerrnum != Z_OK && gzerrnum != Z_STREAM_END)
+ {
+ if(gzerrnum != Z_ERRNO)
+ {
+@@ -365,7 +365,7 @@ bool MDFNFILE::MakeMemWrapAndClose(void *tz, int type)
+ }
+ else if(type == MDFN_FILETYPE_GZIP)
+ {
+- gzclose(tz);
++ gzclose((gzFile)tz);
+ }
+ else if(type == MDFN_FILETYPE_ZIP)
+ {