aboutsummaryrefslogtreecommitdiff
path: root/emulators
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2009-08-14 19:49:54 +0000
committerMartin Wilke <miwi@FreeBSD.org>2009-08-14 19:49:54 +0000
commit978926326cd670cb4d61ddd9209cef0fa3bc34ce (patch)
tree1aa84283955673dfbb277fe3240d4c6a558600a7 /emulators
parentf16cbc16183dffff9308406422cb24410f96245e (diff)
downloadports-978926326cd670cb4d61ddd9209cef0fa3bc34ce.tar.gz
ports-978926326cd670cb4d61ddd9209cef0fa3bc34ce.zip
- Update to 0.133u2
PR: 137771 Submitted by: Emmanuel Vadot <elbarto@arcadebsd.org> (maintainer)
Notes
Notes: svn path=/head/; revision=239546
Diffstat (limited to 'emulators')
-rw-r--r--emulators/mame-devel/Makefile4
-rw-r--r--emulators/mame-devel/distinfo6
-rw-r--r--emulators/mame-devel/files/mame.ini2
-rw-r--r--emulators/mame-devel/files/patch-makefile19
-rw-r--r--emulators/mame-devel/pkg-plist2
-rw-r--r--emulators/sdlmame-devel/Makefile4
-rw-r--r--emulators/sdlmame-devel/distinfo6
-rw-r--r--emulators/sdlmame-devel/files/mame.ini2
-rw-r--r--emulators/sdlmame-devel/files/patch-makefile19
-rw-r--r--emulators/sdlmame-devel/pkg-plist2
10 files changed, 34 insertions, 32 deletions
diff --git a/emulators/mame-devel/Makefile b/emulators/mame-devel/Makefile
index 4c78776aef68..87df17752d40 100644
--- a/emulators/mame-devel/Makefile
+++ b/emulators/mame-devel/Makefile
@@ -6,9 +6,9 @@
#
PORTNAME= sdlmame-devel
-PORTVERSION= 0.131u3
+PORTVERSION= 0.133u2
CATEGORIES= emulators
-MASTER_SITES= ftp://ftp.arcadebsd.org/pub/FreeBSD/ports/distfiles/ \
+MASTER_SITES= ftp://ftp.arcadebsd.org/pub/ArcadeBSD/ports/distfiles/ \
http://rbelmont.mameworld.info/
DISTNAME= sdlmame${PORTVERSION:S/.//}
diff --git a/emulators/mame-devel/distinfo b/emulators/mame-devel/distinfo
index 46d2227e9f89..1fc5321dbda7 100644
--- a/emulators/mame-devel/distinfo
+++ b/emulators/mame-devel/distinfo
@@ -1,3 +1,3 @@
-MD5 (sdlmame0131u3.zip) = f0863df888b9a638e19597fade9b08d7
-SHA256 (sdlmame0131u3.zip) = e167c31ec0a067146304fc438bc288bbf5db8ae398a14aee7b3a625750229610
-SIZE (sdlmame0131u3.zip) = 17883428
+MD5 (sdlmame0133u2.zip) = 1d35b9ca41115be0614669f23d7b7aed
+SHA256 (sdlmame0133u2.zip) = c4a6562c975e3011ccd563d3f13c92491be132d52f7923ee438efcebc2138fd9
+SIZE (sdlmame0133u2.zip) = 18084780
diff --git a/emulators/mame-devel/files/mame.ini b/emulators/mame-devel/files/mame.ini
index 24275eefbb2f..7a195dd04adf 100644
--- a/emulators/mame-devel/files/mame.ini
+++ b/emulators/mame-devel/files/mame.ini
@@ -15,6 +15,7 @@ ctrlrpath $HOME/.mame-devel/ctrlr
inipath $HOME/.mame-devel;.;ini
fontpath /usr/local/share/sdlmame-devel/
cheatpath $HOME/.mame-devel/cheat
+crosshairpath $HOME/.mame-devel/crosshair
#
# CORE OUTPUT DIRECTORY OPTIONS
@@ -41,6 +42,7 @@ wavwrite
snapname %g/%i
snapsize auto
snapview internal
+burnin 0
#
# CORE PERFORMANCE OPTIONS
diff --git a/emulators/mame-devel/files/patch-makefile b/emulators/mame-devel/files/patch-makefile
index 740a57366e57..096591cadf0c 100644
--- a/emulators/mame-devel/files/patch-makefile
+++ b/emulators/mame-devel/files/patch-makefile
@@ -1,5 +1,5 @@
---- makefile.orig 2009-03-19 14:14:18.000000000 +0100
-+++ makefile 2009-03-25 05:24:41.000000000 +0100
+--- makefile.orig 2009-08-14 00:29:05.000000000 +0200
++++ makefile 2009-08-14 00:31:28.000000000 +0200
@@ -59,7 +59,7 @@
ifeq ($(OSD),windows)
TARGETOS = win32
@@ -38,25 +38,24 @@
# add an EXE suffix to get the final emulator name
EMULATOR = $(FULLNAME)$(EXE)
-@@ -337,7 +337,7 @@
- # and make all errors into warnings
+@@ -338,7 +338,7 @@
ifneq ($(OPTIMIZE),0)
ifneq ($(TARGETOS),os2)
+ ifndef IA64
-CCOMFLAGS += -Werror -fno-strict-aliasing $(ARCHOPTS)
+CCOMFLAGS += -fno-strict-aliasing $(ARCHOPTS)
else
- CCOMFLAGS += -fno-strict-aliasing $(ARCHOPTS)
endif
-@@ -379,7 +379,7 @@
+ else
+@@ -382,6 +382,7 @@
-I$(SRC)/lib/util \
-I$(SRC)/osd \
-I$(SRC)/osd/$(OSD) \
--
-+ -I$(LOCALBASE)/include
++ -I$(LOCALBASE)/include \
+
- #-------------------------------------------------
-@@ -392,7 +392,7 @@
+@@ -395,7 +396,7 @@
ifneq ($(TARGETOS),macosx)
ifneq ($(TARGETOS),os2)
ifneq ($(TARGETOS),solaris)
diff --git a/emulators/mame-devel/pkg-plist b/emulators/mame-devel/pkg-plist
index bb6f3229f960..3f494af36213 100644
--- a/emulators/mame-devel/pkg-plist
+++ b/emulators/mame-devel/pkg-plist
@@ -10,7 +10,7 @@ libexec/sdlmame-devel/testkeys
%%PORTDOCS%%%%DOCSDIR%%/docs/windows.txt
%%PORTDOCS%%%%DOCSDIR%%/docs/config.txt
%%PORTDOCS%%%%DOCSDIR%%/whatsnew.txt
-%%PORTDOCS%%%%DOCSDIR%%/whatsnew_0131u3.txt
+%%PORTDOCS%%%%DOCSDIR%%/whatsnew_0133u2.txt
%%DATADIR%%/ui.bdf
%%DATADIR%%/keymaps/km-be.txt
%%DATADIR%%/keymaps/km-ch.txt
diff --git a/emulators/sdlmame-devel/Makefile b/emulators/sdlmame-devel/Makefile
index 4c78776aef68..87df17752d40 100644
--- a/emulators/sdlmame-devel/Makefile
+++ b/emulators/sdlmame-devel/Makefile
@@ -6,9 +6,9 @@
#
PORTNAME= sdlmame-devel
-PORTVERSION= 0.131u3
+PORTVERSION= 0.133u2
CATEGORIES= emulators
-MASTER_SITES= ftp://ftp.arcadebsd.org/pub/FreeBSD/ports/distfiles/ \
+MASTER_SITES= ftp://ftp.arcadebsd.org/pub/ArcadeBSD/ports/distfiles/ \
http://rbelmont.mameworld.info/
DISTNAME= sdlmame${PORTVERSION:S/.//}
diff --git a/emulators/sdlmame-devel/distinfo b/emulators/sdlmame-devel/distinfo
index 46d2227e9f89..1fc5321dbda7 100644
--- a/emulators/sdlmame-devel/distinfo
+++ b/emulators/sdlmame-devel/distinfo
@@ -1,3 +1,3 @@
-MD5 (sdlmame0131u3.zip) = f0863df888b9a638e19597fade9b08d7
-SHA256 (sdlmame0131u3.zip) = e167c31ec0a067146304fc438bc288bbf5db8ae398a14aee7b3a625750229610
-SIZE (sdlmame0131u3.zip) = 17883428
+MD5 (sdlmame0133u2.zip) = 1d35b9ca41115be0614669f23d7b7aed
+SHA256 (sdlmame0133u2.zip) = c4a6562c975e3011ccd563d3f13c92491be132d52f7923ee438efcebc2138fd9
+SIZE (sdlmame0133u2.zip) = 18084780
diff --git a/emulators/sdlmame-devel/files/mame.ini b/emulators/sdlmame-devel/files/mame.ini
index 24275eefbb2f..7a195dd04adf 100644
--- a/emulators/sdlmame-devel/files/mame.ini
+++ b/emulators/sdlmame-devel/files/mame.ini
@@ -15,6 +15,7 @@ ctrlrpath $HOME/.mame-devel/ctrlr
inipath $HOME/.mame-devel;.;ini
fontpath /usr/local/share/sdlmame-devel/
cheatpath $HOME/.mame-devel/cheat
+crosshairpath $HOME/.mame-devel/crosshair
#
# CORE OUTPUT DIRECTORY OPTIONS
@@ -41,6 +42,7 @@ wavwrite
snapname %g/%i
snapsize auto
snapview internal
+burnin 0
#
# CORE PERFORMANCE OPTIONS
diff --git a/emulators/sdlmame-devel/files/patch-makefile b/emulators/sdlmame-devel/files/patch-makefile
index 740a57366e57..096591cadf0c 100644
--- a/emulators/sdlmame-devel/files/patch-makefile
+++ b/emulators/sdlmame-devel/files/patch-makefile
@@ -1,5 +1,5 @@
---- makefile.orig 2009-03-19 14:14:18.000000000 +0100
-+++ makefile 2009-03-25 05:24:41.000000000 +0100
+--- makefile.orig 2009-08-14 00:29:05.000000000 +0200
++++ makefile 2009-08-14 00:31:28.000000000 +0200
@@ -59,7 +59,7 @@
ifeq ($(OSD),windows)
TARGETOS = win32
@@ -38,25 +38,24 @@
# add an EXE suffix to get the final emulator name
EMULATOR = $(FULLNAME)$(EXE)
-@@ -337,7 +337,7 @@
- # and make all errors into warnings
+@@ -338,7 +338,7 @@
ifneq ($(OPTIMIZE),0)
ifneq ($(TARGETOS),os2)
+ ifndef IA64
-CCOMFLAGS += -Werror -fno-strict-aliasing $(ARCHOPTS)
+CCOMFLAGS += -fno-strict-aliasing $(ARCHOPTS)
else
- CCOMFLAGS += -fno-strict-aliasing $(ARCHOPTS)
endif
-@@ -379,7 +379,7 @@
+ else
+@@ -382,6 +382,7 @@
-I$(SRC)/lib/util \
-I$(SRC)/osd \
-I$(SRC)/osd/$(OSD) \
--
-+ -I$(LOCALBASE)/include
++ -I$(LOCALBASE)/include \
+
- #-------------------------------------------------
-@@ -392,7 +392,7 @@
+@@ -395,7 +396,7 @@
ifneq ($(TARGETOS),macosx)
ifneq ($(TARGETOS),os2)
ifneq ($(TARGETOS),solaris)
diff --git a/emulators/sdlmame-devel/pkg-plist b/emulators/sdlmame-devel/pkg-plist
index bb6f3229f960..3f494af36213 100644
--- a/emulators/sdlmame-devel/pkg-plist
+++ b/emulators/sdlmame-devel/pkg-plist
@@ -10,7 +10,7 @@ libexec/sdlmame-devel/testkeys
%%PORTDOCS%%%%DOCSDIR%%/docs/windows.txt
%%PORTDOCS%%%%DOCSDIR%%/docs/config.txt
%%PORTDOCS%%%%DOCSDIR%%/whatsnew.txt
-%%PORTDOCS%%%%DOCSDIR%%/whatsnew_0131u3.txt
+%%PORTDOCS%%%%DOCSDIR%%/whatsnew_0133u2.txt
%%DATADIR%%/ui.bdf
%%DATADIR%%/keymaps/km-be.txt
%%DATADIR%%/keymaps/km-ch.txt