diff options
author | mph <mph@FreeBSD.org> | 1998-04-24 02:08:54 +0000 |
---|---|---|
committer | mph <mph@FreeBSD.org> | 1998-04-24 02:08:54 +0000 |
commit | c9e3affb09873b32768c785ba407609eaddcafe8 (patch) | |
tree | 12105483e4bac3579ef3f20afdff6ac053533871 /games/xothello/files | |
parent | 1ad47ff8ba7a9b23350a79a4f1faec3b0c095e53 (diff) | |
download | FreeBSD-ports-c9e3affb09873b32768c785ba407609eaddcafe8.zip FreeBSD-ports-c9e3affb09873b32768c785ba407609eaddcafe8.tar.gz |
Import of xothello, an Othello/Reversi game.
PR: 6186
Submitted by: Andrey Zakhvatov <andy@icc.surw.chel.su>
Diffstat (limited to 'games/xothello/files')
-rw-r--r-- | games/xothello/files/patch-aa | 32 | ||||
-rw-r--r-- | games/xothello/files/patch-ab | 11 |
2 files changed, 43 insertions, 0 deletions
diff --git a/games/xothello/files/patch-aa b/games/xothello/files/patch-aa new file mode 100644 index 0000000..5f94567 --- /dev/null +++ b/games/xothello/files/patch-aa @@ -0,0 +1,32 @@ +--- Makefile.orig Sat Feb 15 13:00:15 1997 ++++ Makefile Thu Apr 23 22:03:27 1998 +@@ -8,14 +8,14 @@ + # Flags that might be overriden by top makefile + #================================================================= + +-CC = gcc +-CCFLAG = -O2 -Wall -fno-strength-reduce +-LDFLAG = -O ++#CC = gcc ++#CCFLAG = -O2 -Wall -fno-strength-reduce ++#LDFLAG = -O + SYSLIB = -lX11 -lm +-XINCLUDE= -I/usr/X11R6/include +-XLIB = -L/usr/X11R6/lib ++XINCLUDE= -I$(X11BASE)/include ++XLIB = -L$(X11BASE)/lib + +-INSTDIR = /usr/local ++INSTDIR = $(PREFIX) + BINDIR = $(INSTDIR)/bin + INSTALL = install + +@@ -25,7 +25,7 @@ + + CFLAGS = $(CCFLAG) $(XINCLUDE) + LDFLAGS = $(LDFLAG) +-LIBS = -lforms $(SYSLIB) $(XLIB) ++LIBS = -lxforms $(SYSLIB) $(XLIB) + + #================================================================= + diff --git a/games/xothello/files/patch-ab b/games/xothello/files/patch-ab new file mode 100644 index 0000000..8102426 --- /dev/null +++ b/games/xothello/files/patch-ab @@ -0,0 +1,11 @@ +--- xothello.c Sat Feb 15 18:01:04 1997 ++++ /home/andy/tmp/wrk/xothello.c Tue Mar 31 22:17:37 1998 +@@ -618,7 +618,7 @@ + void + Usage(void) + { +- USEPRT("Usage: othello [options]\n\n"); ++ USEPRT("Usage: xothello [options]\n\n"); + USEPRT("Options:\n"); + USEPRT(" -level <levelnr> [default=3, min=1, max=9]\n"); + USEPRT(" -changexo\n"); |