summaryrefslogtreecommitdiff
path: root/~emulatorman
diff options
context:
space:
mode:
Diffstat (limited to '~emulatorman')
-rw-r--r--~emulatorman/hunspell-pt-br/.directory2
-rw-r--r--~emulatorman/hunspell-pt-br/PKGBUILD4
-rwxr-xr-x~emulatorman/mednafen-wip/PKGBUILD9
-rw-r--r--~emulatorman/mednafen-wip/build.patch31
4 files changed, 7 insertions, 39 deletions
diff --git a/~emulatorman/hunspell-pt-br/.directory b/~emulatorman/hunspell-pt-br/.directory
new file mode 100644
index 000000000..e59814917
--- /dev/null
+++ b/~emulatorman/hunspell-pt-br/.directory
@@ -0,0 +1,2 @@
+[Dolphin]
+Timestamp=2012,4,7,5,26,29
diff --git a/~emulatorman/hunspell-pt-br/PKGBUILD b/~emulatorman/hunspell-pt-br/PKGBUILD
index c7124503b..35e1dc887 100644
--- a/~emulatorman/hunspell-pt-br/PKGBUILD
+++ b/~emulatorman/hunspell-pt-br/PKGBUILD
@@ -1,12 +1,12 @@
# Maintainer: Daniel Felipe Reis Apolinario <dapolinario@gmail.com>
# Contributor: Bernardo Barros <bernardobarros@NOSPAM.gmail.com>
# Contributor: Robson R S Peixoto <robsonpeixoto@gmail.com>
-# Contributor (Parabola): André Silva <andre.paulista@adinet.com.uy>
+# Maintainer (Parabola): André Silva <andre.paulista@adinet.com.uy>
pkgname=hunspell-pt-br
pkgver=2.0.9
pkgrel=1
-pkgdesc="Portuguese (Brazil) dictionary"
+pkgdesc="Portuguese (Brazil) hunspell dictionary"
arch=(any)
url="http://www.broffice.org/verortografico/"
license=('LGPL-2.1')
diff --git a/~emulatorman/mednafen-wip/PKGBUILD b/~emulatorman/mednafen-wip/PKGBUILD
index 93893684e..a405d2ceb 100755
--- a/~emulatorman/mednafen-wip/PKGBUILD
+++ b/~emulatorman/mednafen-wip/PKGBUILD
@@ -4,7 +4,7 @@
# Contributor (Parabola): André Silva <andre.paulista@adinet.com.uy>
pkgname=mednafen-wip
-pkgver=0.9.19
+pkgver=0.9.21
pkgrel=1
pkgdesc="A command-line multi-system gaming emulator, WIP version"
url="http://mednafen.sourceforge.net/"
@@ -14,14 +14,12 @@ depends=('libcdio>=0.82' 'libsamplerate' 'libogg' 'libvorbis' 'sdl' 'sdl_net' 'l
makedepends=('pkgconfig' 'mesa')
conflicts=('mednafen')
provides=('mednafen')
-source=('http://forum.fobby.net/index.php?t=getfile&id=345&' 'build.patch')
-md5sums=('64be12196aa02828539af677b0e2a66c'
- 'aac8957fa5274f00feed6a462fa8b7ad')
+source=('http://forum.fobby.net/index.php?t=getfile&id=358&')
+sha1sums=('983c349ca991190363b713ac8abf7ae78b081a21')
build()
{
cd $srcdir/mednafen
- patch -p1 < $srcdir/build.patch
./configure --prefix=/usr
make
}
@@ -31,4 +29,3 @@ package()
cd $srcdir/mednafen
make DESTDIR=$pkgdir install
}
-
diff --git a/~emulatorman/mednafen-wip/build.patch b/~emulatorman/mednafen-wip/build.patch
deleted file mode 100644
index 7985a19ed..000000000
--- a/~emulatorman/mednafen-wip/build.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-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)
- {