Index: head/games/gnushogi/Makefile.common =================================================================== --- head/games/gnushogi/Makefile.common (revision 564121) +++ head/games/gnushogi/Makefile.common (nonexistent) @@ -1,11 +0,0 @@ -# -# $FreeBSD$ -# - -GNUSHOGI_PORTNAME= gnushogi -GNUSHOGI_PORTVERSION= 1.4.0 -GNUSHOGI_MASTER_SITES= GNU/${GNUSHOGI_PORTNAME} -GNUSHOGI_DISTNAME= ${GNUSHOGI_PORTNAME}-${GNUSHOGI_PORTVERSION} -USES= tar:bzip2 - -DISTINFO_FILE= ${.CURDIR}/../../games/gnushogi/distinfo Property changes on: head/games/gnushogi/Makefile.common ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/games/gnushogi/files/patch-doc_gnushogi.texi =================================================================== --- head/games/gnushogi/files/patch-doc_gnushogi.texi (revision 564121) +++ head/games/gnushogi/files/patch-doc_gnushogi.texi (revision 564122) @@ -1,13 +1,13 @@ ---- doc/gnushogi.texi.orig 2014-02-17 21:26:59.000000000 +0100 -+++ doc/gnushogi.texi 2014-02-19 20:38:54.000000000 +0100 +--- doc/gnushogi.texi.orig 2014-02-17 20:26:59 UTC ++++ doc/gnushogi.texi @@ -3,6 +3,10 @@ @c % ** Start of header. @setfilename gnushogi.info @settitle GNU Shogi manual +@dircategory +@direntry Games +* GNUShogi: (gnushogi). GNU Shogi. +@end direntry @c % ** End of header. @dircategory Games Index: head/games/gnushogi/files/patch-gnushogi_cursesdsp.c =================================================================== --- head/games/gnushogi/files/patch-gnushogi_cursesdsp.c (nonexistent) +++ head/games/gnushogi/files/patch-gnushogi_cursesdsp.c (revision 564122) @@ -0,0 +1,20 @@ +--- gnushogi/cursesdsp.c.orig 2021-02-05 15:24:17 UTC ++++ gnushogi/cursesdsp.c +@@ -61,17 +61,11 @@ + + #define FLUSH_SCANW fflush(stdout), scanw + +-int mycnt1, mycnt2; +- + #define MARGIN (5) + #define TAB (58) + + #define VIR_C(s) ((flag.reverse) ? (NO_COLS - 1 - column(s)) : column(s)) + #define VIR_R(s) ((flag.reverse) ? (NO_ROWS - 1 - row(s)) : row(s)) +- +-unsigned short MV[MAXDEPTH]; +-int MSCORE; +-char *DRAW; + + /* Forward declarations. */ + /* FIXME: change this name, puh-leeze! */ Property changes on: head/games/gnushogi/files/patch-gnushogi_cursesdsp.c ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/games/gnushogi/files/patch-gnushogi_globals.c =================================================================== --- head/games/gnushogi/files/patch-gnushogi_globals.c (nonexistent) +++ head/games/gnushogi/files/patch-gnushogi_globals.c (revision 564122) @@ -0,0 +1,13 @@ +--- gnushogi/globals.c.orig 2014-02-16 18:20:24 UTC ++++ gnushogi/globals.c +@@ -51,6 +51,10 @@ char ColorStr[2][10]; + + long znodes; + ++unsigned short MV[MAXDEPTH]; ++int MSCORE; ++int mycnt1, mycnt2; ++ + + + #ifdef BINBOOK Property changes on: head/games/gnushogi/files/patch-gnushogi_globals.c ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/games/gnushogi/files/patch-gnushogi_init.c =================================================================== --- head/games/gnushogi/files/patch-gnushogi_init.c (nonexistent) +++ head/games/gnushogi/files/patch-gnushogi_init.c (revision 564122) @@ -0,0 +1,20 @@ +--- gnushogi/init.c.orig 2014-02-17 20:26:59 UTC ++++ gnushogi/init.c +@@ -63,7 +63,7 @@ short nolist = 1; /* Don't list the game aft + * or DISPLAY_X; the default is DISPLAY_X to make life easier for xshogi. + */ + +-display_t display_type = DISPLAY_X; ++display_t display_type = DISPLAY_CURSES; + + /* .... MOVE GENERATION VARIABLES AND INITIALIZATIONS .... */ + +@@ -100,7 +100,7 @@ distance(short a, short b) + short + distance(short a, short b) + { +- return (use_distdata ++ return (use_distdata && a < NO_SQUARES && b < NO_SQUARES + ? (short)(*distdata)[(int)a][(int)b] + : (short)computed_distance(a, b)); + } Property changes on: head/games/gnushogi/files/patch-gnushogi_init.c ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/games/gnushogi/files/patch-gnushogi_rawdsp.c =================================================================== --- head/games/gnushogi/files/patch-gnushogi_rawdsp.c (nonexistent) +++ head/games/gnushogi/files/patch-gnushogi_rawdsp.c (revision 564122) @@ -0,0 +1,14 @@ +--- gnushogi/rawdsp.c.orig 2021-02-05 15:24:17 UTC ++++ gnushogi/rawdsp.c +@@ -43,11 +43,6 @@ + #include "gnushogi.h" + #include "rawdsp.h" + +-unsigned short MV[MAXDEPTH]; +-int MSCORE; +- +-int mycnt1, mycnt2; +-char *DRAW; + extern char *InPtr; + extern short pscore[]; + Property changes on: head/games/gnushogi/files/patch-gnushogi_rawdsp.c ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property