From tkato432@yahoo.com  Fri Jan 25 21:01:48 2013
Return-Path: <tkato432@yahoo.com>
Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115])
	by hub.freebsd.org (Postfix) with ESMTP id 3A116C46
	for <FreeBSD-gnats-submit@FreeBSD.org>; Fri, 25 Jan 2013 21:01:48 +0000 (UTC)
	(envelope-from tkato432@yahoo.com)
Received: from msa101lp.auone-net.jp (msa101lp.auone-net.jp [222.3.140.164])
	by mx1.freebsd.org (Postfix) with ESMTP id D60F892A
	for <FreeBSD-gnats-submit@FreeBSD.org>; Fri, 25 Jan 2013 21:01:47 +0000 (UTC)
Received: from localhost.localdomain (ZT034163.ppp.dion.ne.jp [59.128.34.163])
	by msa101lp.auone-net.jp (au one net msa) with ESMTP id 2784A34034
	for <FreeBSD-gnats-submit@FreeBSD.org>; Sat, 26 Jan 2013 06:01:34 +0900 (JST)
Message-Id: <20130126054900.f64ccd33e8927d92d7c901b2@yahoo.com>
Date: Sat, 26 Jan 2013 05:49:00 +0900
From: KATO Tsuguru <tkato432@yahoo.com>
To: FreeBSD-gnats-submit@FreeBSD.org
Subject: games/xataxx: Update MASTER_SITES

>Number:         175592
>Category:       ports
>Synopsis:       games/xataxx: Update MASTER_SITES
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    miwi
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Fri Jan 25 21:10:07 UTC 2013
>Closed-Date:    Mon Feb 04 14:27:15 UTC 2013
>Last-Modified:  Mon Feb  4 14:30:03 UTC 2013
>Originator:     KATO Tsuguru
>Release:        FreeBSD 7.4-RELEASE-p11 i386
>Organization:
>Environment:
>Description:
- Update MASTER_SITES
- Fix build with clang
- Add MAKE_JOBS_SAFE
- Reformat pkg-descr

New file:
files/patch-bits.c
files/patch-board.c
files/patch-demo.c
files/patch-display.c
files/patch-main.c
files/patch-nubot.c
files/patch-parse.c
files/patch-zot.c

Remove file:
files/pach-ab

>How-To-Repeat:
>Fix:

diff -urN /usr/ports/games/xataxx/Makefile games/xataxx/Makefile
--- /usr/ports/games/xataxx/Makefile	2012-11-08 07:17:51.000000000 +0900
+++ games/xataxx/Makefile	2013-01-26 03:19:17.000000000 +0900
@@ -1,30 +1,33 @@
-# New ports collection makefile for:	xataxx
-# Date created:				4 July 1998
-# Whom:					Andrey Zakhvatov
-#
+# Created by: Andrey Zakhvatov
 # $FreeBSD: head/games/xataxx/Makefile 300896 2012-07-14 13:54:48Z beat $
-#
 
 PORTNAME=	xataxx
 PORTVERSION=	1.0
 PORTREVISION=	2
 CATEGORIES=	games
-MASTER_SITES=	ftp://ftp.x.org/R5contrib/
+MASTER_SITES=	XCONTRIB/../R5contrib
 DISTNAME=	${PORTNAME}
 EXTRACT_SUFX=	.tar.Z
 
 MAINTAINER=	ports@FreeBSD.org
 COMMENT=	Strategy game of position and movement for X Window System
 
-USE_IMAKE=	yes
+OPTIONS_DEFINE=	DOCS
+
 USE_XORG=	x11 xext
+USE_IMAKE=	yes
+MAKE_JOBS_SAFE=	yes
+
 MAN6=		xataxx.6
 
+.include <bsd.port.options.mk>
+
 post-install:
-.if !defined(NOPORTDOCS)
-	@${MKDIR} ${PREFIX}/share/doc/xataxx
-	${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/xataxx
-	${INSTALL_DATA} ${WRKSRC}/TODO ${PREFIX}/share/doc/xataxx
+.if ${PORT_OPTIONS:MDOCS}
+	@${MKDIR} ${DOCSDIR}
+.for i in README TODO
+	(cd ${WRKSRC} && ${INSTALL_DATA} ${i} ${DOCSDIR})
+.endfor
 .endif
 
 .include <bsd.port.mk>
diff -urN /usr/ports/games/xataxx/files/patch-ab games/xataxx/files/patch-ab
--- /usr/ports/games/xataxx/files/patch-ab	2012-11-08 07:17:51.000000000 +0900
+++ games/xataxx/files/patch-ab	1970-01-01 09:00:00.000000000 +0900
@@ -1,11 +0,0 @@
---- main.c	Sun May  5 06:53:44 1991
-+++ /home/andy/tmp/wrk/main.c	Sat Jul  4 21:31:38 1998
-@@ -160,7 +160,7 @@
- int x;
- {     
-   int z1, z2, z3, z4, z=0;
--  char nn[6];
-+  static char nn[6];
- 
-   z1 = (int) (x)/1000;
-   z2 = (int) (x)/100-(10*z1);
diff -urN /usr/ports/games/xataxx/files/patch-bits.c games/xataxx/files/patch-bits.c
--- /usr/ports/games/xataxx/files/patch-bits.c	1970-01-01 09:00:00.000000000 +0900
+++ games/xataxx/files/patch-bits.c	2013-01-11 01:17:25.000000000 +0900
@@ -0,0 +1,22 @@
+--- bits.c.orig
++++ bits.c
+@@ -1,7 +1,10 @@
+ #include <stdio.h>
++#include <stdlib.h>
+ #include <ctype.h>
+ #include <X11/Xlib.h>
++#include <X11/Xutil.h>
+ #include <math.h>
++#include <sys/types.h>
+ #include <sys/socket.h>
+ #include <sys/time.h>
+ #include "struct.h"
+@@ -16,7 +19,7 @@
+ #define NFDSHIFT 5				/* Shift based on above */
+ #ifndef howmany
+ #define	howmany(x, y)	(((x)+((y)-1))/(y))
+-#endif howmany
++#endif
+ 
+ #define	NBBY	8		/* number of bits in a byte */
+ 
diff -urN /usr/ports/games/xataxx/files/patch-board.c games/xataxx/files/patch-board.c
--- /usr/ports/games/xataxx/files/patch-board.c	1970-01-01 09:00:00.000000000 +0900
+++ games/xataxx/files/patch-board.c	2013-01-11 00:49:37.000000000 +0900
@@ -0,0 +1,16 @@
+--- board.c.orig
++++ board.c
+@@ -1,3 +1,4 @@
++#include <stdlib.h>
+ #include <X11/Xlib.h>
+ #include "struct.h"
+ 
+@@ -461,7 +462,7 @@
+       }
+     }
+   if (best_count==-1)
+-    return;
++    return(0);
+   move_piece(best.ox,best.oy,best.nx,best.ny,player);
+ }
+ 
diff -urN /usr/ports/games/xataxx/files/patch-demo.c games/xataxx/files/patch-demo.c
--- /usr/ports/games/xataxx/files/patch-demo.c	1970-01-01 09:00:00.000000000 +0900
+++ games/xataxx/files/patch-demo.c	2013-01-11 01:09:26.000000000 +0900
@@ -0,0 +1,8 @@
+--- demo.c.orig
++++ demo.c
+@@ -1,4 +1,5 @@
+ #include <stdio.h>
++#include <stdlib.h>
+ #include <X11/Xlib.h>
+ #include "struct.h"
+ 
diff -urN /usr/ports/games/xataxx/files/patch-display.c games/xataxx/files/patch-display.c
--- /usr/ports/games/xataxx/files/patch-display.c	1970-01-01 09:00:00.000000000 +0900
+++ games/xataxx/files/patch-display.c	2013-01-11 01:21:25.000000000 +0900
@@ -0,0 +1,27 @@
+--- display.c.orig
++++ display.c
+@@ -1,4 +1,6 @@
+ #include <stdio.h>
++#include <stdlib.h>
++#include <string.h>
+ #include <X11/Xlib.h>
+ #include <X11/Xutil.h>
+ #include <math.h>
+@@ -145,7 +147,7 @@
+   int occ,x,y;
+ 
+   if (currdpy != dpy && !botmode)
+-    return;
++    return(0);
+   wipemap(currdpy, currbamp, currgc, currscr, currwin);
+   for (y=0;y!=ysize;y++)
+     for (x=0;x!=xsize;x++)
+@@ -386,7 +388,7 @@
+       XFlush(currdpy);
+     }
+     XNextEvent(dpy,&event);
+-    return;
++    return(0);
+   }
+ }
+ 
diff -urN /usr/ports/games/xataxx/files/patch-main.c games/xataxx/files/patch-main.c
--- /usr/ports/games/xataxx/files/patch-main.c	1970-01-01 09:00:00.000000000 +0900
+++ games/xataxx/files/patch-main.c	2013-01-11 01:27:23.000000000 +0900
@@ -0,0 +1,19 @@
+--- main.c.orig
++++ main.c
+@@ -1,4 +1,7 @@
+ #include <stdio.h>
++#include <stdlib.h>
++#include <string.h>
++#include <unistd.h>
+ #include <X11/Xlib.h>
+ #include <math.h>
+ #include "struct.h"
+@@ -160,7 +163,7 @@
+ int x;
+ {     
+   int z1, z2, z3, z4, z=0;
+-  char nn[6];
++  static char nn[6];
+ 
+   z1 = (int) (x)/1000;
+   z2 = (int) (x)/100-(10*z1);
diff -urN /usr/ports/games/xataxx/files/patch-nubot.c games/xataxx/files/patch-nubot.c
--- /usr/ports/games/xataxx/files/patch-nubot.c	1970-01-01 09:00:00.000000000 +0900
+++ games/xataxx/files/patch-nubot.c	2013-01-11 01:24:43.000000000 +0900
@@ -0,0 +1,27 @@
+--- nubot.c.orig
++++ nubot.c
+@@ -1,4 +1,6 @@
+ #include <stdio.h>
++#include <stdlib.h>
++#include <strings.h>
+ #include <X11/Xlib.h>
+ #include "struct.h"
+ 
+@@ -172,7 +174,7 @@
+ 
+     list_moves(player, board, movel);
+ 
+-    if (movel[0].ox==(-1)) return; /* there are no legal moves */
++    if (movel[0].ox==(-1)) return(0); /* there are no legal moves */
+ 
+     if (botlevel==0) {
+ 	for (ix=0; movel[ix].ox!=(-1); ix++);
+@@ -180,7 +182,7 @@
+ 	best = &(movel[ix]);
+ 	
+ 	move_piece(best->ox,best->oy,best->nx,best->ny,player);
+-	return;
++	return(0);
+     };
+     
+     for (ix=0; movel[ix].ox!=(-1); ix++) {
diff -urN /usr/ports/games/xataxx/files/patch-parse.c games/xataxx/files/patch-parse.c
--- /usr/ports/games/xataxx/files/patch-parse.c	1970-01-01 09:00:00.000000000 +0900
+++ games/xataxx/files/patch-parse.c	2013-01-11 01:14:41.000000000 +0900
@@ -0,0 +1,9 @@
+--- parse.c.orig
++++ parse.c
+@@ -1,4 +1,6 @@
+ #include <stdio.h>
++#include <stdlib.h>
++#include <string.h>
+ #include <strings.h>
+ #include "struct.h"
+ 
diff -urN /usr/ports/games/xataxx/files/patch-zot.c games/xataxx/files/patch-zot.c
--- /usr/ports/games/xataxx/files/patch-zot.c	1970-01-01 09:00:00.000000000 +0900
+++ games/xataxx/files/patch-zot.c	2013-01-11 00:50:23.000000000 +0900
@@ -0,0 +1,11 @@
+--- zot.c.orig
++++ zot.c
+@@ -23,7 +23,7 @@
+ 	GC bgc;
+ 
+ 	if (!wflump)
+-		return;
++		return(0);
+ 	zot(dx, dy, cmaps, cdpy, cscr, cgc, cwin, cmap);
+ }
+ 
diff -urN /usr/ports/games/xataxx/pkg-descr games/xataxx/pkg-descr
--- /usr/ports/games/xataxx/pkg-descr	2012-11-08 07:17:51.000000000 +0900
+++ games/xataxx/pkg-descr	2013-01-11 00:51:33.000000000 +0900
@@ -1,4 +1,3 @@
-XAtaxx is a strategy game based on Ataxx, a popular arcade
-video  game.   It is a game of position and movement.  The
-object is to have the most pieces of  your  color  on  the
-board at the end of the game.
+XAtaxx is a strategy game based on Ataxx, a popular arcade video game.
+It is a game of position and movement. The object is to have the most
+pieces of your color on the board at the end of the game.
>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->araujo 
Responsible-Changed-By: edwin 
Responsible-Changed-When: Fri Jan 25 21:12:42 UTC 2013 
Responsible-Changed-Why:  
araujo@ wants this submitter's PRs (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=175592 
Responsible-Changed-From-To: araujo->miwi 
Responsible-Changed-By: miwi 
Responsible-Changed-When: Mon Feb 4 14:27:07 UTC 2013 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=175592 
State-Changed-From-To: open->closed 
State-Changed-By: miwi 
State-Changed-When: Mon Feb 4 14:27:15 UTC 2013 
State-Changed-Why:  
Committed. Thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=175592 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/175592: commit references a PR
Date: Mon,  4 Feb 2013 14:27:01 +0000 (UTC)

 Author: miwi
 Date: Mon Feb  4 14:26:51 2013
 New Revision: 311619
 URL: http://svnweb.freebsd.org/changeset/ports/311619
 
 Log:
   - Update MASTER_SITES
   - Fix build with clang
   - Add MAKE_JOBS_SAFE
   - Reformat pkg-descr
   
   PR:		175592
   Submitted by:	Ports Fury
 
 Added:
   head/games/xataxx/files/patch-bits.c   (contents, props changed)
   head/games/xataxx/files/patch-board.c   (contents, props changed)
   head/games/xataxx/files/patch-demo.c   (contents, props changed)
   head/games/xataxx/files/patch-display.c   (contents, props changed)
   head/games/xataxx/files/patch-main.c   (contents, props changed)
   head/games/xataxx/files/patch-nubot.c   (contents, props changed)
   head/games/xataxx/files/patch-parse.c   (contents, props changed)
   head/games/xataxx/files/patch-zot.c   (contents, props changed)
 Deleted:
   head/games/xataxx/files/patch-ab
 Modified:
   head/games/xataxx/Makefile   (contents, props changed)
   head/games/xataxx/pkg-descr   (contents, props changed)
 
 Modified: head/games/xataxx/Makefile
 ==============================================================================
 --- head/games/xataxx/Makefile	Mon Feb  4 14:25:07 2013	(r311618)
 +++ head/games/xataxx/Makefile	Mon Feb  4 14:26:51 2013	(r311619)
 @@ -1,30 +1,33 @@
 -# New ports collection makefile for:	xataxx
 -# Date created:				4 July 1998
 -# Whom:					Andrey Zakhvatov
 -#
 +# Created by: Andrey Zakhvatov
  # $FreeBSD$
 -#
  
  PORTNAME=	xataxx
  PORTVERSION=	1.0
  PORTREVISION=	2
  CATEGORIES=	games
 -MASTER_SITES=	ftp://ftp.x.org/R5contrib/
 +MASTER_SITES=	XCONTRIB/../R5contrib
  DISTNAME=	${PORTNAME}
  EXTRACT_SUFX=	.tar.Z
  
  MAINTAINER=	ports@FreeBSD.org
  COMMENT=	Strategy game of position and movement for X Window System
  
 -USE_IMAKE=	yes
 +OPTIONS_DEFINE=	DOCS
 +
  USE_XORG=	x11 xext
 +USE_IMAKE=	yes
 +MAKE_JOBS_SAFE=	yes
 +
  MAN6=		xataxx.6
  
 +.include <bsd.port.options.mk>
 +
  post-install:
 -.if !defined(NOPORTDOCS)
 -	@${MKDIR} ${PREFIX}/share/doc/xataxx
 -	${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/xataxx
 -	${INSTALL_DATA} ${WRKSRC}/TODO ${PREFIX}/share/doc/xataxx
 +.if ${PORT_OPTIONS:MDOCS}
 +	@${MKDIR} ${DOCSDIR}
 +.for i in README TODO
 +	(cd ${WRKSRC} && ${INSTALL_DATA} ${i} ${DOCSDIR})
 +.endfor
  .endif
  
  .include <bsd.port.mk>
 
 Added: head/games/xataxx/files/patch-bits.c
 ==============================================================================
 --- /dev/null	00:00:00 1970	(empty, because file is newly added)
 +++ head/games/xataxx/files/patch-bits.c	Mon Feb  4 14:26:51 2013	(r311619)
 @@ -0,0 +1,22 @@
 +--- bits.c.orig
 ++++ bits.c
 +@@ -1,7 +1,10 @@
 + #include <stdio.h>
 ++#include <stdlib.h>
 + #include <ctype.h>
 + #include <X11/Xlib.h>
 ++#include <X11/Xutil.h>
 + #include <math.h>
 ++#include <sys/types.h>
 + #include <sys/socket.h>
 + #include <sys/time.h>
 + #include "struct.h"
 +@@ -16,7 +19,7 @@
 + #define NFDSHIFT 5				/* Shift based on above */
 + #ifndef howmany
 + #define	howmany(x, y)	(((x)+((y)-1))/(y))
 +-#endif howmany
 ++#endif
 + 
 + #define	NBBY	8		/* number of bits in a byte */
 + 
 
 Added: head/games/xataxx/files/patch-board.c
 ==============================================================================
 --- /dev/null	00:00:00 1970	(empty, because file is newly added)
 +++ head/games/xataxx/files/patch-board.c	Mon Feb  4 14:26:51 2013	(r311619)
 @@ -0,0 +1,16 @@
 +--- board.c.orig
 ++++ board.c
 +@@ -1,3 +1,4 @@
 ++#include <stdlib.h>
 + #include <X11/Xlib.h>
 + #include "struct.h"
 + 
 +@@ -461,7 +462,7 @@
 +       }
 +     }
 +   if (best_count==-1)
 +-    return;
 ++    return(0);
 +   move_piece(best.ox,best.oy,best.nx,best.ny,player);
 + }
 + 
 
 Added: head/games/xataxx/files/patch-demo.c
 ==============================================================================
 --- /dev/null	00:00:00 1970	(empty, because file is newly added)
 +++ head/games/xataxx/files/patch-demo.c	Mon Feb  4 14:26:51 2013	(r311619)
 @@ -0,0 +1,8 @@
 +--- demo.c.orig
 ++++ demo.c
 +@@ -1,4 +1,5 @@
 + #include <stdio.h>
 ++#include <stdlib.h>
 + #include <X11/Xlib.h>
 + #include "struct.h"
 + 
 
 Added: head/games/xataxx/files/patch-display.c
 ==============================================================================
 --- /dev/null	00:00:00 1970	(empty, because file is newly added)
 +++ head/games/xataxx/files/patch-display.c	Mon Feb  4 14:26:51 2013	(r311619)
 @@ -0,0 +1,27 @@
 +--- display.c.orig
 ++++ display.c
 +@@ -1,4 +1,6 @@
 + #include <stdio.h>
 ++#include <stdlib.h>
 ++#include <string.h>
 + #include <X11/Xlib.h>
 + #include <X11/Xutil.h>
 + #include <math.h>
 +@@ -145,7 +147,7 @@
 +   int occ,x,y;
 + 
 +   if (currdpy != dpy && !botmode)
 +-    return;
 ++    return(0);
 +   wipemap(currdpy, currbamp, currgc, currscr, currwin);
 +   for (y=0;y!=ysize;y++)
 +     for (x=0;x!=xsize;x++)
 +@@ -386,7 +388,7 @@
 +       XFlush(currdpy);
 +     }
 +     XNextEvent(dpy,&event);
 +-    return;
 ++    return(0);
 +   }
 + }
 + 
 
 Added: head/games/xataxx/files/patch-main.c
 ==============================================================================
 --- /dev/null	00:00:00 1970	(empty, because file is newly added)
 +++ head/games/xataxx/files/patch-main.c	Mon Feb  4 14:26:51 2013	(r311619)
 @@ -0,0 +1,19 @@
 +--- main.c.orig
 ++++ main.c
 +@@ -1,4 +1,7 @@
 + #include <stdio.h>
 ++#include <stdlib.h>
 ++#include <string.h>
 ++#include <unistd.h>
 + #include <X11/Xlib.h>
 + #include <math.h>
 + #include "struct.h"
 +@@ -160,7 +163,7 @@
 + int x;
 + {     
 +   int z1, z2, z3, z4, z=0;
 +-  char nn[6];
 ++  static char nn[6];
 + 
 +   z1 = (int) (x)/1000;
 +   z2 = (int) (x)/100-(10*z1);
 
 Added: head/games/xataxx/files/patch-nubot.c
 ==============================================================================
 --- /dev/null	00:00:00 1970	(empty, because file is newly added)
 +++ head/games/xataxx/files/patch-nubot.c	Mon Feb  4 14:26:51 2013	(r311619)
 @@ -0,0 +1,27 @@
 +--- nubot.c.orig
 ++++ nubot.c
 +@@ -1,4 +1,6 @@
 + #include <stdio.h>
 ++#include <stdlib.h>
 ++#include <strings.h>
 + #include <X11/Xlib.h>
 + #include "struct.h"
 + 
 +@@ -172,7 +174,7 @@
 + 
 +     list_moves(player, board, movel);
 + 
 +-    if (movel[0].ox==(-1)) return; /* there are no legal moves */
 ++    if (movel[0].ox==(-1)) return(0); /* there are no legal moves */
 + 
 +     if (botlevel==0) {
 + 	for (ix=0; movel[ix].ox!=(-1); ix++);
 +@@ -180,7 +182,7 @@
 + 	best = &(movel[ix]);
 + 	
 + 	move_piece(best->ox,best->oy,best->nx,best->ny,player);
 +-	return;
 ++	return(0);
 +     };
 +     
 +     for (ix=0; movel[ix].ox!=(-1); ix++) {
 
 Added: head/games/xataxx/files/patch-parse.c
 ==============================================================================
 --- /dev/null	00:00:00 1970	(empty, because file is newly added)
 +++ head/games/xataxx/files/patch-parse.c	Mon Feb  4 14:26:51 2013	(r311619)
 @@ -0,0 +1,9 @@
 +--- parse.c.orig
 ++++ parse.c
 +@@ -1,4 +1,6 @@
 + #include <stdio.h>
 ++#include <stdlib.h>
 ++#include <string.h>
 + #include <strings.h>
 + #include "struct.h"
 + 
 
 Added: head/games/xataxx/files/patch-zot.c
 ==============================================================================
 --- /dev/null	00:00:00 1970	(empty, because file is newly added)
 +++ head/games/xataxx/files/patch-zot.c	Mon Feb  4 14:26:51 2013	(r311619)
 @@ -0,0 +1,11 @@
 +--- zot.c.orig
 ++++ zot.c
 +@@ -23,7 +23,7 @@
 + 	GC bgc;
 + 
 + 	if (!wflump)
 +-		return;
 ++		return(0);
 + 	zot(dx, dy, cmaps, cdpy, cscr, cgc, cwin, cmap);
 + }
 + 
 
 Modified: head/games/xataxx/pkg-descr
 ==============================================================================
 --- head/games/xataxx/pkg-descr	Mon Feb  4 14:25:07 2013	(r311618)
 +++ head/games/xataxx/pkg-descr	Mon Feb  4 14:26:51 2013	(r311619)
 @@ -1,4 +1,3 @@
 -XAtaxx is a strategy game based on Ataxx, a popular arcade
 -video  game.   It is a game of position and movement.  The
 -object is to have the most pieces of  your  color  on  the
 -board at the end of the game.
 +XAtaxx is a strategy game based on Ataxx, a popular arcade video game.
 +It is a game of position and movement. The object is to have the most
 +pieces of your color on the board at the end of the game.
 _______________________________________________
 svn-ports-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-ports-all
 To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
 
>Unformatted:
