diff options
author | bad <bad@pkgsrc.org> | 1999-05-02 17:21:31 +0000 |
---|---|---|
committer | bad <bad@pkgsrc.org> | 1999-05-02 17:21:31 +0000 |
commit | 872b3cc653569d595b9c643af3ec4e3c9cb538d0 (patch) | |
tree | 3d7672287bf310da988c77ed26de0e28c4062ffe /games | |
parent | ddc0bf51a1ce84a8af55f583da149abaf752a72a (diff) | |
download | pkgsrc-872b3cc653569d595b9c643af3ec4e3c9cb538d0.tar.gz |
Update to GNUgo 2.0.
Diffstat (limited to 'games')
-rw-r--r-- | games/gnugo/Makefile | 8 | ||||
-rw-r--r-- | games/gnugo/files/md5 | 4 | ||||
-rw-r--r-- | games/gnugo/patches/patch-aa | 32 |
3 files changed, 13 insertions, 31 deletions
diff --git a/games/gnugo/Makefile b/games/gnugo/Makefile index ebd57a44ece..09a57eaf4ac 100644 --- a/games/gnugo/Makefile +++ b/games/gnugo/Makefile @@ -1,11 +1,11 @@ -# $NetBSD: Makefile,v 1.1.1.1 1999/03/11 20:17:36 bad Exp $ +# $NetBSD: Makefile,v 1.2 1999/05/02 17:21:31 bad Exp $ -DISTNAME= gnugo-beta-1.72 +DISTNAME= gnugo-2.0 CATEGORIES= games -MASTER_SITES= ftp://match.stanford.edu/pub/ +MASTER_SITES= ${MASTER_SITE_GNU:=gnugo/} MAINTAINER= bad@netbsd.org -HOMEPAGE= http://www.gnu.org/software/gnugo/beta.html +HOMEPAGE= http://www.gnu.org/software/gnugo/ do-configure: diff --git a/games/gnugo/files/md5 b/games/gnugo/files/md5 index 3dcde5e63ca..8a153ef7a58 100644 --- a/games/gnugo/files/md5 +++ b/games/gnugo/files/md5 @@ -1,3 +1,3 @@ -$NetBSD: md5,v 1.1.1.1 1999/03/11 20:17:36 bad Exp $ +$NetBSD: md5,v 1.2 1999/05/02 17:21:31 bad Exp $ -MD5 (gnugo-beta-1.72.tar.gz) = 8dde82c63c853c366c5ba300e9d50757 +MD5 (gnugo-2.0.tar.gz) = fb4f58a68b559bcc0f68fb7066ac9c38 diff --git a/games/gnugo/patches/patch-aa b/games/gnugo/patches/patch-aa index 3aa5b75eb54..c91a3cb15b8 100644 --- a/games/gnugo/patches/patch-aa +++ b/games/gnugo/patches/patch-aa @@ -1,34 +1,16 @@ -$NetBSD: patch-aa,v 1.1.1.1 1999/03/11 20:17:36 bad Exp $ +$NetBSD: patch-aa,v 1.2 1999/05/02 17:21:31 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 +--- Makefile.orig Tue Apr 20 18:12:49 1999 ++++ Makefile Sun May 2 18:30:29 1999 +@@ -65,6 +65,11 @@ --NAME = gnugo-beta -+NAME = gnugo - VERSION = 1.72 - PREVIOUS = 1.71 + ALLOBJ = $(OBJ) patterns.o gmp.o - 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) + |