diff options
author | nakai <nakai@FreeBSD.org> | 2000-04-16 11:07:42 +0800 |
---|---|---|
committer | nakai <nakai@FreeBSD.org> | 2000-04-16 11:07:42 +0800 |
commit | aec1f80093229c01d1cc89bea162fe4609ba984c (patch) | |
tree | 977ef6909397da73a7e33ee28c47d9507d570b79 /emulators | |
parent | b73a5675c2069ce4b065002df2ea4c2786582116 (diff) | |
download | freebsd-ports-gnome-aec1f80093229c01d1cc89bea162fe4609ba984c.tar.gz freebsd-ports-gnome-aec1f80093229c01d1cc89bea162fe4609ba984c.tar.zst freebsd-ports-gnome-aec1f80093229c01d1cc89bea162fe4609ba984c.zip |
- Support CFLAGS/CXXFLAGS/LOCALBASE/X11BASE properly
- Add WWW: line into pkg/DESCR
PR: ports/17462
Submitted by: KATO Tsuguru <tkato@prontomail.ne.jp>
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/snes9x/files/patch-aa | 9 | ||||
-rw-r--r-- | emulators/snes9x/pkg-descr | 2 |
2 files changed, 7 insertions, 4 deletions
diff --git a/emulators/snes9x/files/patch-aa b/emulators/snes9x/files/patch-aa index caca8ac4e03c..2fa126a69dcb 100644 --- a/emulators/snes9x/files/patch-aa +++ b/emulators/snes9x/files/patch-aa @@ -1,5 +1,5 @@ --- Makefile.orig Mon Jan 24 16:15:50 2000 -+++ Makefile Wed Mar 8 23:24:45 2000 ++++ Makefile Wed Mar 15 02:23:16 2000 @@ -50,11 +50,6 @@ UNZIPDEFINES=-DUNZIP_SUPPORT endif @@ -22,16 +22,17 @@ +CC ?= gcc NASM = nasm +-INCLUDES=-I/usr/X11R6/include -I/usr/local/include +ifdef THREAD_SOUND +CPUDEFINES += -DUSE_THREADS +CC += -pthread +CCC += -pthread +endif + - INCLUDES=-I/usr/X11R6/include -I/usr/local/include ++INCLUDES=-I${X11BASE}/include -I${LOCALBASE}/include -OPTIMISE=-O6 -mpentium -fomit-frame-pointer -fno-exceptions -+OPTIMISE= $(CXXFLAGS) -O6 -mpentium -fomit-frame-pointer -fno-exceptions ++OPTIMISE= $(CXXFLAGS) CCFLAGS = $(OPTIMISE) -DMITSHM \ -Ii386 \ @@ -52,7 +53,7 @@ # symbol error when run on a Redhat box. -LDLIBS = -L/usr/X11R6/lib frame.o -+LDLIBS = -L/usr/X11R6/lib ++LDLIBS = -L${X11BASE}/lib ifdef GLIDE ifdef NETPLAY diff --git a/emulators/snes9x/pkg-descr b/emulators/snes9x/pkg-descr index 71eef7eca23e..8cc1bb17c8ae 100644 --- a/emulators/snes9x/pkg-descr +++ b/emulators/snes9x/pkg-descr @@ -1 +1,3 @@ Super Nintendo Entertainment System(SNES) Emulator + +WWW: http://www.snes9x.com/ |