aboutsummaryrefslogtreecommitdiff
path: root/emulators/mednafen
diff options
context:
space:
mode:
authorJose Alonso Cardenas Marquez <acm@FreeBSD.org>2016-05-05 13:42:08 +0000
committerJose Alonso Cardenas Marquez <acm@FreeBSD.org>2016-05-05 13:42:08 +0000
commitdf0ad670969c7ae3d4d27dc679079addca8ede26 (patch)
treee6cabe1882e5a6329c941ae7e6696c198dcce277 /emulators/mednafen
parent4d4d2946343376099816151901fd04fca78bcc13 (diff)
downloadports-df0ad670969c7ae3d4d27dc679079addca8ede26.tar.gz
ports-df0ad670969c7ae3d4d27dc679079addca8ede26.zip
- Update to 0.9.38.7
- Remove obsolete patch files
Notes
Notes: svn path=/head/; revision=414645
Diffstat (limited to 'emulators/mednafen')
-rw-r--r--emulators/mednafen/Makefile3
-rw-r--r--emulators/mednafen/distinfo4
-rw-r--r--emulators/mednafen/files/patch-src-snes-src-lib-nall_property.hpp14
-rw-r--r--emulators/mednafen/files/patch-src__nes__unif.cpp11
4 files changed, 3 insertions, 29 deletions
diff --git a/emulators/mednafen/Makefile b/emulators/mednafen/Makefile
index effb587ecb3d..9f4f5be778d0 100644
--- a/emulators/mednafen/Makefile
+++ b/emulators/mednafen/Makefile
@@ -1,8 +1,7 @@
# $FreeBSD$
PORTNAME= mednafen
-PORTVERSION= 0.9.33.2
-PORTREVISION= 5
+PORTVERSION= 0.9.38.7
PORTEPOCH= 1
CATEGORIES= emulators games
MASTER_SITES= http://mednafen.fobby.net/releases/files/
diff --git a/emulators/mednafen/distinfo b/emulators/mednafen/distinfo
index fcdd4be05722..e9a69fc0064b 100644
--- a/emulators/mednafen/distinfo
+++ b/emulators/mednafen/distinfo
@@ -1,2 +1,2 @@
-SHA256 (mednafen-0.9.33.2.tar.bz2) = d3125d5b6fe84031c7c7980bea655ec609c2620067988cfd32d2b2c5e6c3ad4e
-SIZE (mednafen-0.9.33.2.tar.bz2) = 4298456
+SHA256 (mednafen-0.9.38.7.tar.bz2) = 1bb3beef883a325c35d1a1ce14959c307a4c321f2ea29d4ddb216c6dd03aded8
+SIZE (mednafen-0.9.38.7.tar.bz2) = 3882418
diff --git a/emulators/mednafen/files/patch-src-snes-src-lib-nall_property.hpp b/emulators/mednafen/files/patch-src-snes-src-lib-nall_property.hpp
deleted file mode 100644
index 1bedf615ac12..000000000000
--- a/emulators/mednafen/files/patch-src-snes-src-lib-nall_property.hpp
+++ /dev/null
@@ -1,14 +0,0 @@
---- src/snes/src/lib/nall/property.hpp 2013-08-31 16:33:30.000000000 -0500
-+++ src/snes/src/lib/nall/property.hpp 2014-04-05 18:58:31.000000000 -0500
-@@ -61,7 +61,11 @@
- operator T&() { return value; }
- const T& operator=(const T& value_) { return value = value_; }
- T value;
-+#if defined(__clang__)
-+ friend typename traits<C>::type;
-+#else
- friend class traits<C>::type;
-+#endif
- };
-
- template<typename T> struct writeonly {
diff --git a/emulators/mednafen/files/patch-src__nes__unif.cpp b/emulators/mednafen/files/patch-src__nes__unif.cpp
deleted file mode 100644
index 956e74ca8697..000000000000
--- a/emulators/mednafen/files/patch-src__nes__unif.cpp
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/nes/unif.cpp.orig 2014-10-01 15:17:53 UTC
-+++ src/nes/unif.cpp
-@@ -191,7 +191,7 @@
- MDFN_printf(_("Dumped by: %s\n"),name);
- MDFN_printf(_("Dumped with: %s\n"),method);
- {
-- char *months[12]={_("January"),_("February"),_("March"),_("April"),_("May"),_("June"),_("July"),
-+ const char *months[12]={_("January"),_("February"),_("March"),_("April"),_("May"),_("June"),_("July"),
- _("August"),_("September"),_("October"),_("November"),_("December")};
- MDFN_printf(_("Dumped on: %s %d, %d\n"),months[(m-1)%12],d,y);
- }