diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 2008-02-24 03:11:57 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 2008-02-24 03:11:57 +0000 |
commit | fa4a943c17e47bf910596a414fd7287983350b9b (patch) | |
tree | dc76cec18a505befc330e612e0a56bf1caa5ca49 /emulators/mess/files | |
parent | - Fix manpage pointing to correct PREFIX for binary and conf (diff) |
This commit was manufactured by cvs2svn to create tag 'RELEASE_7_0_0'.release/7.0.0
Diffstat (limited to 'emulators/mess/files')
-rw-r--r-- | emulators/mess/files/patch-makefile.sdl | 84 | ||||
-rw-r--r-- | emulators/mess/files/patch-src__mess__mess.mak | 11 | ||||
-rw-r--r-- | emulators/mess/files/pkg-message.in | 13 | ||||
-rw-r--r-- | emulators/mess/files/sdlmess.in | 16 |
4 files changed, 0 insertions, 124 deletions
diff --git a/emulators/mess/files/patch-makefile.sdl b/emulators/mess/files/patch-makefile.sdl deleted file mode 100644 index d892918261fd..000000000000 --- a/emulators/mess/files/patch-makefile.sdl +++ /dev/null @@ -1,84 +0,0 @@ ---- makefile.sdl.orig Fri Aug 31 10:41:30 2007 -+++ makefile.sdl Fri Aug 31 11:22:15 2007 -@@ -66,11 +66,13 @@ - # uncomment next line to include the debugger - # DEBUG = 1 - -+ifeq ($(ARCH),i386) - # uncomment next line to use DRC MIPS3 engine - X86_MIPS3_DRC = 1 - - # uncomment next line to use DRC PowerPC engine - X86_PPC_DRC = 1 -+endif - - # uncomment next line to use DRC Voodoo rasterizers - # X86_VOODOO_DRC = 1 -@@ -96,7 +98,9 @@ - # CELL = 1 - - # uncomment next line if you are building for a 64-bit target --# PTR64 = 1 -+ifeq ($(ARCH),amd64) -+PTR64 = 1 -+endif - - # uncomment next line to build expat as part of MAME build - BUILD_EXPAT = 1 -@@ -160,8 +164,8 @@ - - # compiler, linker and utilities - AR = @ar --CC = @gcc --LD = @gcc -+CC := @$(CC) -+LD = @$(CC) - HHC = @-hhc - MD = -mkdir$(EXE) - RM = @rm -f -@@ -258,8 +262,8 @@ - endif - - # fullname is prefix+name+suffix --FULLNAME = $(PREFIX)$(NAME)$(SUFFIX) --FULLGUINAME = $(PREFIX)$(NAME)gui$(SUFFIX) -+FULLNAME = $(NAME) -+FULLGUINAME = $(NAME)gui - - # add an EXE suffix to get the final emulator name - EMULATORCLI = $(FULLNAME)$(EXE) -@@ -325,7 +329,7 @@ - #------------------------------------------------- - - # we compile to C89 standard with GNU extensions --CFLAGS = -std=gnu89 -+CFLAGS += -std=gnu89 - - # add -g if we need symbols - ifdef SYMBOLS -@@ -356,7 +360,7 @@ - # and make all errors into warnings - # but not on 64-bit or debug builds - ifneq ($(OPTIMIZE),0) --CFLAGS += $(ARCH) -fno-strict-aliasing -+CFLAGS += -fno-strict-aliasing - - # only -Werror if not PTR64 and not DEBUG - ifndef PTR64 -@@ -397,6 +401,7 @@ - -I$(SRC)/lib/util \ - -I$(SRC)/osd \ - -I$(SRC)/osd/$(OSD) \ -+ -I$(LOCALBASE)/include - - ifdef MESS - CFLAGS += \ -@@ -412,7 +417,7 @@ - - # LDFLAGS are used generally; LDFLAGSEMULATOR are additional - # flags only used when linking the core emulator --LDFLAGS = -+LDFLAGS += -L$(LOCALBASE)/lib - LDFLAGSEMULATOR = - - # strip symbols and other metadata in non-symbols builds diff --git a/emulators/mess/files/patch-src__mess__mess.mak b/emulators/mess/files/patch-src__mess__mess.mak deleted file mode 100644 index 14ece8917c77..000000000000 --- a/emulators/mess/files/patch-src__mess__mess.mak +++ /dev/null @@ -1,11 +0,0 @@ ---- ./src/mess/mess.mak.orig Tue Oct 16 11:24:59 2007 -+++ ./src/mess/mess.mak Thu Nov 29 15:25:32 2007 -@@ -13,7 +13,7 @@ - EMUSRC = $(SRC)/emu - EMUOBJ = $(OBJ)/emu - --EMU_AUDIO = $(ENUOBJ)/audio -+EMU_AUDIO = $(EMUOBJ)/audio - EMU_MACHINE = $(EMUOBJ)/machine - EMU_VIDEO = $(EMUOBJ)/video - MAME_AUDIO = $(MAMEOBJ)/audio diff --git a/emulators/mess/files/pkg-message.in b/emulators/mess/files/pkg-message.in deleted file mode 100644 index 07020956f626..000000000000 --- a/emulators/mess/files/pkg-message.in +++ /dev/null @@ -1,13 +0,0 @@ -============================================================================== - -SDLMESS has been installed. - -The MESS tools are installed in "%%PREFIX%%/libexec/sdlmess" -to avoid conflicting with other MESS ports. - -A wrapper script "sdlmess" has been installed. It creates a "~/.sdlmess" -directory mirroring the directory tree under "%%DATADIR%%" -when you run it for the first time, and starts the program from there. So -place all MESS files (e.g. ROMs, cheats, etc.) in "~/.sdlmess". - -============================================================================== diff --git a/emulators/mess/files/sdlmess.in b/emulators/mess/files/sdlmess.in deleted file mode 100644 index f0d97316d6f3..000000000000 --- a/emulators/mess/files/sdlmess.in +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/sh -# -# The executable needs to be run from its data directory, and needs to store -# configuration in it. We therefore mirror the data directory hierarchy in -# ~/.sdlmess, and create symlinks to the data files. -# - -if [ ! -d ~/.sdlmess ] -then - cd %%DATADIR%% || exit 1 - find * -type d -exec mkdir -p ~/.sdlmess/{} \; - find * -type f -exec ln -s %%DATADIR%%/{} ~/.sdlmess/{} \; 2>/dev/null -fi - -cd ~/.sdlmess || exit 1 -exec %%PREFIX%%/libexec/sdlmess/mess "$@" |