summaryrefslogtreecommitdiff
path: root/games/gnugo/patches/patch-aa
diff options
context:
space:
mode:
Diffstat (limited to 'games/gnugo/patches/patch-aa')
-rw-r--r--games/gnugo/patches/patch-aa34
1 files changed, 34 insertions, 0 deletions
diff --git a/games/gnugo/patches/patch-aa b/games/gnugo/patches/patch-aa
new file mode 100644
index 00000000000..3aa5b75eb54
--- /dev/null
+++ b/games/gnugo/patches/patch-aa
@@ -0,0 +1,34 @@
+$NetBSD: patch-aa,v 1.1.1.1 1999/03/11 20:17:36 bad Exp $
+
+--- Makefile.orig Wed Mar 10 07:36:07 1999
++++ Makefile Thu Mar 11 21:10:59 1999
+@@ -1,14 +1,14 @@
+ # configuration info
+
+-NAME = gnugo-beta
++NAME = gnugo
+ VERSION = 1.72
+ PREVIOUS = 1.71
+
+ CFLAGS = -g -O2 $(COLOR) $(GCCWARNINGS) -DVERSION=\"$(VERSION)\"
+
+ # uncomment if you want to have color board display with curses
+-COLOR=-DCURSES
+-COLORLIB=-lncurses
++#COLOR=-DCURSES
++#COLORLIB=-lncurses
+
+ # or this to use hardcoded ansi escape sequences (dtterm, linux console)
+ #COLOR=-DANSI_COLOR
+@@ -50,6 +50,11 @@
+ OBJ = $(SRC:.c=.o)
+
+ ALLOBJ = $(OBJ) patterns.o helpers.o gmp.o
++
++all : $(NAME)
++
++install : $(NAME)
++ ${BSD_INSTALL_PROGRAM} $(NAME) ${PREFIX}/bin
+
+ $(NAME) : $(ALLOBJ)
+ $(CC) $(CFLAGS) $(ALLOBJ) -o $(NAME) $(COLORLIB)