summaryrefslogtreecommitdiff
path: root/emulators/mupen64-tr64/files/patch-Makefile
diff options
context:
space:
mode:
authorJose Alonso Cardenas Marquez <acm@FreeBSD.org>2007-10-09 07:43:55 +0000
committerJose Alonso Cardenas Marquez <acm@FreeBSD.org>2007-10-09 07:43:55 +0000
commita221de9abbcfb8d7df59a62508e5f53dbd9c4db3 (patch)
treebbdc1f6e3679669e0853ae2c8efbdfdb61a5ae2e /emulators/mupen64-tr64/files/patch-Makefile
parentAdd dependency on security/p5-Digest-SHA (diff)
- New port: emulators/mupen64-tr64
A graphics plugin for Mupen64 emulator
Notes
Notes: svn path=/head/; revision=201147
Diffstat (limited to '')
-rw-r--r--emulators/mupen64-tr64/files/patch-Makefile39
1 files changed, 39 insertions, 0 deletions
diff --git a/emulators/mupen64-tr64/files/patch-Makefile b/emulators/mupen64-tr64/files/patch-Makefile
new file mode 100644
index 000000000000..f72c828572da
--- /dev/null
+++ b/emulators/mupen64-tr64/files/patch-Makefile
@@ -0,0 +1,39 @@
+--- Makefile.orig 2005-08-26 14:11:28.000000000 -0500
++++ Makefile 2007-10-09 01:55:17.000000000 -0500
+@@ -1,26 +1,26 @@
+ ifneq ("$(shell grep GTK2 config.h)","\#define GTK2_SUPPORT 1")
+-GTK_FLAGS = `gtk-config --cflags`
+-GTK_LIBS = `gtk-config --libs`
++GTK_FLAGS = `${GTK_CONFIG} --cflags`
++GTK_LIBS = `${GTK_CONFIG} --libs`
+ else
+ GTK_FLAGS = `pkg-config gtk+-2.0 --cflags` -D_GTK2
+ GTK_LIBS = `pkg-config gtk+-2.0 --libs`
+ endif
+
+-CC = gcc
+-CFLAGS = -DUSE_GTK `sdl-config --cflags` $(GTK_FLAGS) -O3 -mcpu=athlon -ffast-math -funroll-loops -fomit-frame-pointer
+-LD = gcc
+-LDFLAGS = -lGL -lGLU -L/usr/X11R6/lib `sdl-config --libs`
++CC ?= gcc
++CFLAGS += -DUSE_GTK `${SDL_CONFIG} --cflags` $(GTK_FLAGS) -ffast-math -funroll-loops -fomit-frame-pointer
++LD = ${CXX}
++LDFLAGS = -lGL -lGLU -L${LOCALBAASE}/lib `${SDL_CONFIG} --libs`
+
+ OBJECTS = 3dmath.o autodet.o combine1.o debug.o display.o driver.o lighting.o rdp.o rdp_gl.o render.o sdlgl.o texture.o
+
+-all: tr64gl.so instruction
++all: plugins/tr64gl.so instruction
+
+-tr64gl.so: $(OBJECTS)
++plugins/tr64gl.so: $(OBJECTS)
++ mkdir -p plugins
+ $(LD) -shared -Wl,-Bsymbolic $(GTK_LIBS) $(LDFLAGS) -o $@ $(OBJECTS)
+- strip --strip-all $@
+
+ instruction:
+- $(warning please copy tr64gl.so in plugins/ folder of the emulator)
++ $(warning please copy plugins/tr64gl.so in plugins/ folder of the emulator)
+
+ .o: .c
+ $(CC) $(CFLAGS) -o $@ $<