[xboard] 03/05: Forward-port and refresh patches.

Clint Adams clint at moszumanska.debian.org
Thu Oct 6 20:21:53 UTC 2016


This is an automated email from the git hooks/post-receive script.

clint pushed a commit to branch master
in repository xboard.

commit 13de645542acce29f9a8edf840b09335328195ad
Author: Clint Adams <clint at debian.org>
Date:   Thu Oct 6 15:45:10 2016 -0400

    Forward-port and refresh patches.
---
 debian/patches/01_note_about_missing_fonts.patch   |  16 +-
 debian/patches/02_gettext.patch                    |   8 +-
 ...all_x-terminal-emulator_instead_of_xterm.dpatch |  59 +++--
 debian/patches/11_fix_manpages_warnings.dpatch     | 254 ++++++++++-----------
 4 files changed, 168 insertions(+), 169 deletions(-)

diff --git a/debian/patches/01_note_about_missing_fonts.patch b/debian/patches/01_note_about_missing_fonts.patch
index d87bcfd..5714112 100644
--- a/debian/patches/01_note_about_missing_fonts.patch
+++ b/debian/patches/01_note_about_missing_fonts.patch
@@ -3,11 +3,9 @@ Author: Vincent Legout <vincent at legout.info>
 Bug-Debian: http://bugs.debian.org/504077
 Bug-Debian: http://bugs.debian.org/562726
 
-Index: xboard/gtk/xboard.c
-===================================================================
---- xboard.orig/gtk/xboard.c
-+++ xboard/gtk/xboard.c
-@@ -1438,6 +1438,8 @@ FindFont (char *pattern, int targetPxlSi
+--- a/gtk/xboard.c
++++ b/gtk/xboard.c
+@@ -1458,6 +1458,8 @@
      if (nfonts < 1) {
  	fprintf(stderr, _("%s: no fonts match pattern %s\n"),
  		programName, pattern);
@@ -16,11 +14,9 @@ Index: xboard/gtk/xboard.c
  	exit(2);
      }
  
-Index: xboard/xaw/xboard.c
-===================================================================
---- xboard.orig/xaw/xboard.c
-+++ xboard/xaw/xboard.c
-@@ -1512,6 +1512,8 @@ FindFont (char *pattern, int targetPxlSi
+--- a/xaw/xboard.c
++++ b/xaw/xboard.c
+@@ -1514,6 +1514,8 @@
      if (nfonts < 1) {
  	fprintf(stderr, _("%s: no fonts match pattern %s\n"),
  		programName, pattern);
diff --git a/debian/patches/02_gettext.patch b/debian/patches/02_gettext.patch
index 0631596..3a50962 100644
--- a/debian/patches/02_gettext.patch
+++ b/debian/patches/02_gettext.patch
@@ -1,11 +1,9 @@
 Description: Do not require gettext 0.17. Fix FTBFS with gettext 0.18.
 Author: Vincent Legout <vincent at legout.info>
 
-Index: xboard/configure.ac
-===================================================================
---- xboard.orig/configure.ac	2014-02-11 14:45:29.957938054 +0100
-+++ xboard/configure.ac	2014-02-11 14:45:29.957938054 +0100
-@@ -75,7 +75,6 @@
+--- a/configure.ac
++++ b/configure.ac
+@@ -79,7 +79,6 @@
  AC_PROG_INSTALL
  
  dnl| add gettext support
diff --git a/debian/patches/07_call_x-terminal-emulator_instead_of_xterm.dpatch b/debian/patches/07_call_x-terminal-emulator_instead_of_xterm.dpatch
index d0c18c2..5f91c65 100644
--- a/debian/patches/07_call_x-terminal-emulator_instead_of_xterm.dpatch
+++ b/debian/patches/07_call_x-terminal-emulator_instead_of_xterm.dpatch
@@ -2,11 +2,9 @@ Description: Call x-terminal-emulator instead of xterm
 Author: Florian Ernst <florian at debian.org>
 
 @DPATCH@
-Index: xboard/xaw/xboard.c
-===================================================================
---- xboard.orig/xaw/xboard.c
-+++ xboard/xaw/xboard.c
-@@ -2112,7 +2112,7 @@ ManInner (Widget w, XEvent *event, Strin
+--- a/xaw/xboard.c
++++ b/xaw/xboard.c
+@@ -2118,7 +2118,7 @@
        name = prms[0];
      else
        name = "xboard";
@@ -15,12 +13,28 @@ Index: xboard/xaw/xboard.c
      system(buf);
  }
  
-Index: xboard/gtk/xboard.c
-===================================================================
---- xboard.orig/gtk/xboard.c
-+++ xboard/gtk/xboard.c
-@@ -1968,7 +1968,7 @@ ManProc ()
-     snprintf(buf, MSG_SIZ, "%s ./man.command", appData.sysOpen);
+@@ -2132,7 +2132,7 @@
+ InfoProc ()
+ {
+     char buf[MSG_SIZ];
+-    snprintf(buf, sizeof(buf), "xterm -e info --directory %s --directory . -f %s &",
++    snprintf(buf, sizeof(buf), "x-terminal-emulator -e info --directory %s --directory . -f %s &",
+              INFODIR, INFOFILE);
+     system(buf);
+ }
+@@ -2183,7 +2183,7 @@
+       XSetErrorHandler(oldHandler);
+     }
+     if (oldICSInteractionTitle == NULL) {
+-      oldICSInteractionTitle = "xterm";
++      oldICSInteractionTitle = "x-terminal-emulator";
+     }
+   }
+   printf("\033]0;%s\007", message);
+--- a/gtk/xboard.c
++++ b/gtk/xboard.c
+@@ -2033,7 +2033,7 @@
+     snprintf(buf, MSG_SIZ, "osascript -e 'tell application \"Terminal\"' -e 'activate' -e 'do script \"man %s/../man/man6/xboard.6\"' -e 'end tell'", dataDir);
      system(buf);
  #else
 -    system("xterm -e man xboard &");
@@ -28,16 +42,21 @@ Index: xboard/gtk/xboard.c
  #endif
  }
  
-Index: xboard/menus.c
-===================================================================
---- xboard.orig/menus.c
-+++ xboard/menus.c
-@@ -316,7 +316,7 @@ InfoProc ()
+@@ -2044,7 +2044,7 @@
  #ifdef OSXAPP
-     snprintf(buf, MSG_SIZ, "%s ./info.command", appData.sysOpen);
+     snprintf(buf, MSG_SIZ, "osascript -e 'tell application \"Terminal\"' -e 'activate' -e 'do script \"info -d %s/../info -f xboard.info\"' -e 'end tell'", dataDir);
  #else
--    snprintf(buf, sizeof(buf), "xterm -e info --directory %s --directory . -f %s &",
-+    snprintf(buf, sizeof(buf), "x-terminal-emulator -e info --directory %s --directory . -f %s &",
- 	    INFODIR, INFOFILE);
+-        snprintf(buf, sizeof(buf), "xterm -e info --directory %s --directory . -f %s &",
++        snprintf(buf, sizeof(buf), "x-terminal-emulator -e info --directory %s --directory . -f %s &",
+                  INFODIR, INFOFILE);
  #endif
      system(buf);
+@@ -2098,7 +2098,7 @@
+       XSetErrorHandler(oldHandler);
+     }
+     if (oldICSInteractionTitle == NULL) {
+-      oldICSInteractionTitle = "xterm";
++      oldICSInteractionTitle = "x-terminal-emulator";
+     }
+   }
+   printf("\033]0;%s\007", message);
diff --git a/debian/patches/11_fix_manpages_warnings.dpatch b/debian/patches/11_fix_manpages_warnings.dpatch
index 7f2fcf1..d79497f 100644
--- a/debian/patches/11_fix_manpages_warnings.dpatch
+++ b/debian/patches/11_fix_manpages_warnings.dpatch
@@ -2,29 +2,27 @@ Description: Fix manpages warnings
 Author: Alexander L. Belikoff <alexander at belikoff.net>
 
 @DPATCH@
-Index: xboard/xboard.man
-===================================================================
---- xboard.orig/xboard.man
-+++ xboard/xboard.man
-@@ -161,7 +161,7 @@ You can also press the `Pick Fixed' butt
- a random number for you.
- The thus selected opening position will then persistently be chosen on any following
- New Game command until you use this menu to select another. 
--Selecting position number -1 (or pushing the `Randomize' button)
-+Selecting position number \-1 (or pushing the `Randomize' button)
- will produce a newly randomized position on any new game.
- Using this menu item in variants that normally do not shuffle their opening position
- does cause these variants to become shuffle variants until you use the
-@@ -185,7 +185,7 @@ command-line option when you start up XB
+--- a/xboard.man
++++ b/xboard.man
+@@ -193,7 +193,7 @@
+ .PD
+ The `Start-position number' selects a particular start position
+ from all allowed shufflings, which will then be used for every new game.
+-Setting this to -1 (which can be done by pressing the `randomize' button)
++Setting this to \-1 (which can be done by pressing the `randomize' button)
+ will cause a fresh random position to be picked for every new game.
+ Pressing the `pick fixed' button causes `Start-position number'
+ to be set to a random value, to be used for all subsequent games. 
+@@ -210,7 +210,7 @@
  You can overrule the default board format of the selected variant,
  (e.g. to play suicide chess on a 6 x 6 board),
  in this dialog, but normally you would not do that, 
--and leave them at '-1', which means 'default'.
-+and leave them at '\-1', which means 'default'.
+-and leave them at '-1', which means 'default' for the chosen variant.
++and leave them at '\-1', which means 'default' for the chosen variant.
  .TP
  .B Load Game
  Plays a game from a record file. The `Ctrl-O' key is a keyboard equivalent.
-@@ -215,7 +215,7 @@ so you can step through it.
+@@ -240,7 +240,7 @@
  You can later revert to the previous line with the `Revert' command.
  This way you can walk quite complex varation trees with XBoard.
  The nonstandard PGN tag [Variant "varname"] functions similarly to
@@ -33,7 +31,7 @@ Index: xboard/xboard.man
  variants to be loaded.  
  Note that it must appear before any FEN tag for XBoard to recognize
  variant FENs appropriately.
-@@ -430,7 +430,7 @@ you change the weights; they are just th
+@@ -477,7 +477,7 @@
  If you are examining an ICS game and Pause mode is off,
  Revert issues the ICS command `revert'.
  In local mode, when you were editing or analyzing a game, 
@@ -42,7 +40,25 @@ Index: xboard/xboard.man
  you can start a new variation by holding the Shift key down while
  entering a move not at the end of the game.
  Variations can also become the currently displayed line by
-@@ -690,7 +690,7 @@ the analysis will continue with the next
+@@ -635,7 +635,7 @@
+ A button 3 click will toggle the display mode between plain and differential
+ (showing the difference in score between successive half moves).
+ Using the mouse wheel over the window will change the scale of the
+-low-score region (from -1 to +1).
++low-score region (from \-1 to +1).
+ .TP
+ .B Show Game List
+ Shows or hides the list of games generated by the last `Load Game'
+@@ -821,7 +821,7 @@
+ Setting it to 0 suppresses these lines, which in general looks better,
+ but hides the square-border highlights,
+ so that you would have to rely on other forms of highlighting.
+-Setting the value to -1 makes XBoard choose a width by itself,
++Setting the value to \-1 makes XBoard choose a width by itself,
+ depending on the square size.
+ .TP
+ .B Use Board Textures
+@@ -972,7 +972,7 @@
  until the end of the file is reached (or you switch to another mode).
  
  The time the engine spends on analyzing each move can be controlled
@@ -51,7 +67,7 @@ Index: xboard/xboard.man
  which can also be set from the `Load Game Options' menu dialog.
  Note: Some chess engines do not support Analysis mode.
  .TP
-@@ -718,7 +718,7 @@ This is the normal mode when XBoard
+@@ -1000,7 +1000,7 @@
  is connected to a chess server.  If you have moved into
  Edit Game or Edit Position mode, you can select this option to get out.
  
@@ -60,16 +76,16 @@ Index: xboard/xboard.man
  option, and use the terminal you started it from to type commands and
  receive text responses from the chess server.  See
  \fIChess Servers\fR below for more information.
-@@ -1129,7 +1129,7 @@ when `Animate Moving' is swiched on.
+@@ -1607,7 +1607,7 @@
  .TP
  .B Zoom factor in Evaluation Graph
- Sets the valueof the `evalZoom' option,
+ Sets the value of the `evalZoom' option,
 -indicating the factor by which the score interval (-1,1) should be
 +indicating the factor by which the score interval (\-1,1) should be
  blown up on the vertical axis of the Evaluation Graph.
  .PP
- Pops up a sub-menu where you can set the time-control parameters interactively.
-@@ -1385,7 +1385,7 @@ where one (or a few) so-called ‘gauntl
+ .SS Time Control
+@@ -1985,7 +1985,7 @@
  In the latter case, you specify the number of gauntlet engines. 
  E.g. if you specified 10 engines, and tourney type = 2, 
  the first 2 engines each play the remaining 8. 
@@ -78,7 +94,7 @@ Index: xboard/xboard.man
  pairing engine must be specified through the `pairingEngine' option.
  Each Swiss round will be considered a tourney cycle in that case.
  Default:0
-@@ -1429,11 +1429,11 @@ File where the tournament games are save
+@@ -2037,11 +2037,11 @@
  These items optionally specify the file with move sequences or board positions the tourney 
  games should start from.
  The corresponding numbers specify the number of the game or position in the file.
@@ -93,7 +109,7 @@ Index: xboard/xboard.man
  specifying a game file, but playing from the GUI book instead.
  In this case the first (odd) games will randomly select from the book,
  but the second (even) games will select the same moves from the book as the previous game.
-@@ -1444,7 +1444,7 @@ Default: No game or position file will b
+@@ -2052,7 +2052,7 @@
  Setting this option reverses the default situation for use of the GUI opening book
  in tournaments from what it normally is, namely not using it.
  So unless the engine is installed with an option to explicitly specify it should
@@ -102,16 +118,25 @@ Index: xboard/xboard.man
  it will be made to use the GUI book.
  .TP
  .B Replace Engine
-@@ -1510,7 +1510,7 @@ For the latter you have to place the mat
- in the four lowest ranks of the board,
- and optional additional material in the four highest ranks of the board.
- You can request the optional material to be balanced.
+@@ -2107,7 +2107,7 @@
+ This option sets the number of seconds between moves
+ when a newly loaded game is auto-playing.
+ A decimal fraction on the number is understood.
+-Setting it to -1 disables auto-play, staying in the start position
++Setting it to \-1 disables auto-play, staying in the start position
+ of the game after the loading completes.
+ Setting it to 0 will instantly move to the final position of the game.
+ The `Auto-Play speed' is also used to determine the
+@@ -2177,7 +2177,7 @@
+ i.e. equal for white and black.
+ .TP
+ .B narrow
 -The `narrow' button is similar in fuction to the `find position' button,
 +The `narrow' button is similar in function to the `find position' button,
  but only searches in the already selected games,
  rather than the complete game file,
  and can thus be used to refine a search based on multiple criteria.
-@@ -1594,8 +1594,8 @@ Rename your ~/.xboardrc settings file (t
+@@ -2302,8 +2302,8 @@
  a new file ~/.xboardrc, which only contains the options
  
  .nf
@@ -122,7 +147,7 @@ Index: xboard/xboard.man
  .fi
  
  This will cause your settings to be saved on ~/.yboardrc in the future,
-@@ -1677,7 +1677,7 @@ it as a shortcut key. Other such functio
+@@ -2386,7 +2386,7 @@
  are:
  
  .nf
@@ -131,7 +156,7 @@ Index: xboard/xboard.man
      LoadNextGame, LoadPrevGame, ReloadGame, ReloadPosition.
  .fi
  
-@@ -1693,9 +1693,9 @@ state of items that can be changed with
+@@ -2402,9 +2402,9 @@
  Most of the options have both a long name and a short name. To turn a
  boolean option on or off from the command line, either give its long
  name followed by the value true or false
@@ -144,7 +169,7 @@ Index: xboard/xboard.man
  numbers as values, you can use the long or short option names
  interchangeably.
  
-@@ -1715,9 +1715,9 @@ new `timeControl' period is added to bot
+@@ -2424,9 +2424,9 @@
  If this option is specified, `movesPerSession' is ignored.
  Instead, after each player's move, `timeIncrement' seconds are
  added to his clock.  
@@ -156,7 +181,7 @@ Index: xboard/xboard.man
  .TP
  .B -clock/-xclock or -clockMode true/false
  Determines whether or not to display the chess clocks. If clockMode is
-@@ -1756,7 +1756,7 @@ by the engine is used to decrement the X
+@@ -2470,7 +2470,7 @@
  report in CPU time it uses, rather than wall-clock time, in this mode. This option 
  can provide fairer conditions for engine-engine matches on heavily loaded machines, 
  or with very fast games (where the wall clock is too inaccurate). 
@@ -165,7 +190,7 @@ Index: xboard/xboard.man
  Not many engines might support this yet!
  .TP
  .B -firstTimeOdds factor
-@@ -1815,7 +1815,7 @@ Setting `matchMode' to true is equivalen
+@@ -2529,7 +2529,7 @@
  .B -sameColorGames n
  Automatically runs an n-game match between two chess engines,
  without alternating colors.
@@ -174,7 +199,7 @@ Index: xboard/xboard.man
  over which it takes precedence if both are specified. (See there.)
  Default: 0 (do not run a match).
  .TP
-@@ -1867,7 +1867,7 @@ in the same working directory as XBoard
+@@ -2601,7 +2601,7 @@
  itself.  (See the CHESSDIR environment variable.)
  This option is effective only when the chess engine is being run
  on the local host; it does not work if the engine is run remotely
@@ -183,7 +208,7 @@ Index: xboard/xboard.man
  .TP
  .B -initString string or -firstInitString
  .PD 0
-@@ -2027,7 +2027,7 @@ by the value of that option at the time
+@@ -2766,7 +2766,7 @@
  For starting the second engine, any leading "f" or "first" in
  the option name will first be replaced by "s" or "second",
  before finding its value.
@@ -192,21 +217,21 @@ Index: xboard/xboard.man
  .TP
  .B -uxiAdapter string
  Similar to `adapterCommand', but used for engines accompanied
-@@ -2129,11 +2129,11 @@ Default: "".
- This option lets you customize the drop-down list of chess engine names 
- that appears in the `Load Engine' and `Match Options' dialog. 
+@@ -2869,11 +2869,11 @@
+ This option lets you customize the listbox with chess-engine names 
+ that appears in the `Load Engine' and `Tournament Options' dialog. 
  It consists of a list of strings, one per line. 
 -When an engine is loaded, the corresponding line is prefixed with "-fcp ",
 +When an engine is loaded, the corresponding line is prefixed with "\-fcp ",
  and processed like it appeared on the command line.
  That means that apart from the engine command,
- it can contain any list of XBoard options you want to use with this engine.
+ it can contain any number of XBoard options you want to use with this engine.
 -(Commonly used options here are -fd, -firstXBook, -fUCI, -variant.)
-+(Commonly used options here are \-fd, \-firstXBook, \-fUCI, \-variant.)
++(Commonly used options here are -fd, -firstXBook, -fUCI, \-variant.)
  
  The value of this option is gradually built as you load new engines
  through the `Load Engine' menu dialog, with `Add to list' ticked. 
-@@ -2165,7 +2165,7 @@ and through some special-purpose options
+@@ -2906,7 +2906,7 @@
  .B -tt number or -tourneyType number
  Specifies the type of tourney: 0 = round-robin, 
  N>0 = (multi-)gauntlet with N gauntlet engines, 
@@ -215,7 +240,7 @@ Index: xboard/xboard.man
  Volatile option, but stored in tourney file.
  .TP
  .B -cy number or -tourneyCycles number
-@@ -2258,7 +2258,7 @@ You would set it to "timestamp" for ICC
+@@ -2999,7 +2999,7 @@
  "timeseal" for FICS (freechess.org), after
  obtaining the correct version of timestamp or timeseal for your
  computer.  See "help timestamp" on ICC and "help timeseal" on FICS.
@@ -224,7 +249,7 @@ Index: xboard/xboard.man
  .TP
  .B -telnet/-xtelnet or -useTelnet true/false
  This option is poorly named; it should be called useHelper.
-@@ -2303,8 +2303,8 @@ XBoard.
+@@ -3044,8 +3044,8 @@
  Use a script something like this:
  
  .nf
@@ -235,7 +260,7 @@ Index: xboard/xboard.man
  .fi
  
  Here replace `/dev/tty00' with the name of the device that your
-@@ -2318,16 +2318,16 @@ If you are using linux, try starting wit
+@@ -3059,16 +3059,16 @@
  Change it as necessary for your installation.
  
  .nf
@@ -256,7 +281,7 @@ Index: xboard/xboard.man
  .fi
  
  After you start XBoard in this way, type whatever commands are
-@@ -2349,7 +2349,7 @@ directory if CHESSDIR is not set, or in
+@@ -3090,7 +3090,7 @@
  .TP
  .B -msLoginDelay delay
  If you experience trouble logging on to an ICS when using the
@@ -265,7 +290,7 @@ Index: xboard/xboard.man
  of the logon script may help. This option adds `delay'
  milliseconds of delay between characters. Good values to try
  are 100 and 250.
-@@ -2408,7 +2408,7 @@ to logon twice.
+@@ -3149,7 +3149,7 @@
  Default: false.
  .TP
  .B -dualBoard true/false
@@ -274,7 +299,7 @@ Index: xboard/xboard.man
  the board of the background game side by side with that of your own game,
  so you can have it in view permanently.
  Any board or holdings info coming in will be displayed on the secondary
-@@ -2612,10 +2612,10 @@ The menu is also suppressed if `matchMod
+@@ -3358,10 +3358,10 @@
  is a pipe; in these cases the first game in the file is loaded immediately.
  Use the `pxboard' shell script provided with XBoard if you
  want to pipe in files containing multiple games and still see the menu.
@@ -287,7 +312,7 @@ Index: xboard/xboard.man
  causes the index to be incremented every two games, so that each game
  in the file is used twice (with reversed colors).
  The `rewindIndex' option causes the index to be reset to the
-@@ -2629,8 +2629,8 @@ default: 0 (no rewind).
+@@ -3375,8 +3375,8 @@
  .TP
  .B -td or -timeDelay seconds
  Time delay between moves during `Load Game' or `Analyze File'. 
@@ -298,7 +323,7 @@ Index: xboard/xboard.man
  XBoard not to step through game files automatically. Default: 1 second.
  .TP
  .B -sgf or -saveGameFile file
-@@ -2655,10 +2655,10 @@ specified position file at startup. The
+@@ -3401,10 +3401,10 @@
  standard input. If the `loadPositionIndex' option is set to N,
  the Nth position found in the file is loaded; otherwise the
  first position is loaded.
@@ -311,55 +336,25 @@ Index: xboard/xboard.man
  causes the index to be incremented every two games, so that each position
  in the file is used twice (with the engines playing opposite colors).
  The `rewindIndex' option causes the index to be reset to the
-@@ -2707,23 +2707,23 @@ Default: "eprd"
- .TP
- .B @filename
- .PD
--When XBoard encounters an option -settingsFile (or -ini for short),
-+When XBoard encounters an option \-settingsFile (or \-ini for short),
- or @filename, it tries to read the mentioned file,
- and substitutes the contents of it (presumaby more command-line options)
- in place of the option.
--In the case of -ini or -settingsFile, the name of a successfully read
-+In the case of \-ini or \-settingsFile, the name of a successfully read
- settings file is also remembered as the file to use for saving settings
- (automatically on exit, or on user command).
- An option of the form @filename does not affect saving.
--The option -saveSettingsFile does specify a name of the file to use
-+The option \-saveSettingsFile does specify a name of the file to use
+@@ -3476,7 +3476,7 @@
  for saving, without reading any options from it, and is thus also effective
  when the file did not exist yet.
  So the settings will be saved to the file specified in the last
 --saveSettingsFile or succesfull -settingsFile / -ini command,
-+\-saveSettingsFile or succesfull \-settingsFile / \-ini command,
++-saveSettingsFile or succesful -settingsFile / \-ini command,
  if any, and in /etc/xboard/xboard.conf otherwise.
--Usualy the latter is only accessible for the system administrator, though, 
-+Usually the latter is only accessible for the system administrator, though,
- and will be used to contain system-wide default setings, amongst which
--a -saveSettingsFile and -settingsFile options to specify a settings file
-+a \-saveSettingsFile and \-settingsFile options to specify a settings file
- accessible to the individual user, such as ~/.xboardrc in the user's
- home directory.
- .TP
-@@ -2798,7 +2798,7 @@ operating system's plugin directory for
- and XBoard protocol at startup.
- When it finds an engine that was installed after it last saved
- its settings, a line to launch that engine (as per specs in
--the plugin file) is appended to the -firstChessProgramNames
-+the plugin file) is appended to the \-firstChessProgramNames
- list of installed engines.
- In the future it will be possible to use the list to limit
- this automatic adding of engines to a certain types of variants.
-@@ -2813,7 +2813,7 @@ Default: false.
+ Usualy the latter is only accessible for the system administrator, though, 
+ and will be used to contain system-wide default settings, amongst which
+@@ -3553,7 +3553,7 @@
  .TP
  .B -movesound/-xmovesound or -ringBellAfterMoves true/false
  Sets the Move Sound menu option.  See \fIOptions Menu\fR.  Default: false.
 -For compatibility with old XBoard versions, -bell/-xbell are also 
-+For compatibility with old XBoard versions, \-bell/\-xbell are also
++For compatibility with old XBoard versions, \-bell/\-xbell are also 
  accepted as abbreviations for this option.
  .TP
- .B -exit/-xexit or -popupExitMessage true/false
-@@ -2873,7 +2873,7 @@ When n >= 0, this forces the width of th
+ .B -analysisBell N
+@@ -3618,7 +3618,7 @@
  to n pixels for any board size. Mostly used to suppress the grid
  entirely by setting n = 0, e.g. in xiangqi or just getting a prettier
  picture. When n < 0 this the size-dependent width of the grid lines
@@ -368,7 +363,7 @@ Index: xboard/xboard.man
  .TP
  .B -coords/-xcoords or -showCoords true/false
  Sets the Show Coords menu option.  See \fIOptions Menu\fR.  Default: false.
-@@ -2910,7 +2910,7 @@ still get the functions of these buttons
+@@ -3655,7 +3655,7 @@
  shortcuts.  Default: true.
  .TP
  .B -evalZoom factor
@@ -377,7 +372,7 @@ Index: xboard/xboard.man
  the Evaluation Graph by the given factor.
  Default: 1
  .TP
-@@ -3035,7 +3035,7 @@ Default: Sans Bold %d.
+@@ -3790,7 +3790,7 @@
  In the font selection algorithm, a nonscalable font will be preferred
  over a scalable font if the nonscalable font's size differs
  by `tol' pixels
@@ -386,7 +381,7 @@ Index: xboard/xboard.man
  a scalable font to always be used if available; a value of 0 will
  use a nonscalable font only if it is exactly the right size; 
  a large value (say 1000) will force a nonscalable font to always be
-@@ -3082,25 +3082,25 @@ Colors to use for the pieces, squares, a
+@@ -3849,25 +3849,25 @@
  Defaults:
  
  .nf
@@ -426,7 +421,7 @@ Index: xboard/xboard.man
  .fi
  
  The PieceColor options only work properly if the image files
-@@ -3131,13 +3131,13 @@ and if they should be used rather than u
+@@ -3898,7 +3898,7 @@
  The algorithm for cutting squares out of a given bitmap is such that
  the picture is perfectly reproduced when a bitmap the size of
  the complete board is given.
@@ -435,23 +430,25 @@ Index: xboard/xboard.man
  it is assumed to contain a bitmap of a complete board of N files
  and M ranks, and XBoard will scale it to exactly match the
  current square size.
- If N=M=0 it scales the entire bitmap to the size of the board,
- irrespective of the number of files and ranks of the latter.
--Without any -NxM suffix textures are only blown up by an integer
-+Without any \-NxM suffix textures are only blown up by an integer
- factor when they are smaller than the square size, or,
- when the name starts with "xq", too small to cover the
- complete Xiangqi board.
-@@ -3230,7 +3230,7 @@ If the given value is non-zero, XBoard a
+@@ -3997,7 +3997,7 @@
  if both engines agree for a duration of 6 consecutive ply that the score 
  is below the given score threshold for that engine. Make sure the score 
  is interpreted properly by XBoard, 
 -using `-firstScoreAbs' and `-secondScoreAbs' if needed. 
-+using `\-firstScoreAbs' and `\-secondScoreAbs' if needed.
++using `\-firstScoreAbs' and `\-secondScoreAbs' if needed. 
  Default: 0 (no adjudication)
  .TP
  .B -adjudicateDrawMoves n
-@@ -3293,13 +3293,13 @@ as stored in the settings file to be app
+@@ -4071,7 +4071,7 @@
+ and XBoard protocol at startup.
+ When it finds an engine that was installed after it last saved
+ its settings, a line to launch that engine (as per specs in
+-the plugin file) is appended to the -firstChessProgramNames
++the plugin file) is appended to the \-firstChessProgramNames
+ list of installed engines.
+ In the future it will be possible to use the autoInstall list to limit
+ this automatic adding of engines based on the chess variant they play.
+@@ -4127,13 +4127,13 @@
  The `view' option will be used by desktop associations with
  game or position file types, so that `viewerOptions' can be
  used to configure the exact mode XBoard will start in when it
@@ -467,7 +464,7 @@ Index: xboard/xboard.man
  .TP
  .B -tourneyOptions string
  When XBoard is invoked with a single argument that is a file
-@@ -3310,7 +3310,7 @@ as stored in the settings file to the co
+@@ -4144,7 +4144,7 @@
  Thus the value of `tourneyOptions' can be
  used to configure XBoard to automatically start running a
  tournament when it should act on such a file.
@@ -476,16 +473,7 @@ Index: xboard/xboard.man
  .TP
  .B -mode or -initialMode modename
  If this option is given, XBoard selects the given modename
-@@ -3364,7 +3364,7 @@ needed in ICS mode.  Recognized variant
- 
- NOT ALL BOARDSIZES PROVIDE A COMPLETE SET OF BUILT-IN BITMAPS FOR ALL
- UN-ORTHODOX PIECES, though. Only in `boardSize' middling and bulky
--all 22 piece types are provided, while -boardSize petite has most
-+all 22 piece types are provided, while \-boardSize petite has most
- of them. Archbishop, Chancellor and Amazon are supported in every
- size from petite to bulky. Kings or Amazons are substituted for
- missing bitmaps. You can still play variants needing un-orthodox
-@@ -3384,29 +3384,29 @@ rule when mate detection is switched on.
+@@ -4225,29 +4225,29 @@
  .TP
  .B -boardHeight N
  Allows you to set a non-standard number of board ranks in any variant. 
@@ -523,7 +511,7 @@ Index: xboard/xboard.man
  .TP
  .B -pieceToCharTable string
  The characters that are used to represent the piece types XBoard knows in FEN 
-@@ -3493,7 +3493,7 @@ The pause after quit is used to schedule
+@@ -4343,7 +4343,7 @@
  number of specified seconds plus one.
  This signal is a different one as the terminiation signal described in the protocol specs
  which engines can suppress or ignore, and which is sent directly after the "quit" command.
@@ -532,7 +520,7 @@ Index: xboard/xboard.man
  Default: 0
  .TP
  .B -searchMode n
-@@ -3522,11 +3522,11 @@ client program like XBoard to connect to
+@@ -4372,11 +4372,11 @@
  thousands of registered users on the different ICS hosts, and it is
  not unusual to meet 200 on both chessclub.com and freechess.org.
  
@@ -546,7 +534,7 @@ Index: xboard/xboard.man
  instead, or substitute a different host name to connect to your
  favorite ICS.
  For a full description of command-line options that control 
-@@ -3646,7 +3646,7 @@ Let's say the firewall is called `firewa
+@@ -4496,7 +4496,7 @@
  command-line options as follows:
  
  .nf
@@ -555,7 +543,7 @@ Index: xboard/xboard.man
  .fi
  
  Then when you run XBoard in ICS mode, you will be prompted
-@@ -3676,7 +3676,7 @@ Let's say the firewall is called `rsh.ex
+@@ -4526,7 +4526,7 @@
  command-line options as follows:
  
  .nf
@@ -564,7 +552,7 @@ Index: xboard/xboard.man
  .fi
  
  Then when you run XBoard in ICS mode, it will connect to
-@@ -3691,7 +3691,7 @@ First, we'll consider the easy case, in
+@@ -4541,7 +4541,7 @@
  In this case set command line options as follows:
  
  .nf
@@ -573,7 +561,7 @@ Index: xboard/xboard.man
  .fi
  
  Then when you run XBoard in ICS mode, it will issue the
-@@ -3701,14 +3701,14 @@ Next, suppose that `ptelnet chessclub.co
+@@ -4551,14 +4551,14 @@
  that is, your `ptelnet' program doesn't let you connect to
  alternative ports. As noted above, your chess server may allow you to
  connect on port 23 instead.  In that case, just add the option
@@ -590,7 +578,7 @@ Index: xboard/xboard.man
  .fi
  
  Then when you run XBoard in ICS mode, it will issue the
-@@ -3754,7 +3754,7 @@ If you are connecting to the ICS by runn
+@@ -4604,7 +4604,7 @@
  provider or firewall host, you may find that each line you type is
  echoed back an extra time after you hit <Enter>. If your Internet
  provider is a Unix system, you can probably turn its echo off by
@@ -599,7 +587,7 @@ Index: xboard/xboard.man
  <^E><Enter> (Ctrl+E followed by the Enter key) to the telnet
  program after you have logged into ICS.  It is a good idea to do this
  if you can, because the extra echo can occasionally confuse XBoard's
-@@ -3804,10 +3804,10 @@ be useful to report or discuss bugs in t
+@@ -4654,10 +4654,10 @@
  WinBoard development section.
  
  Please use the `script' program to start a typescript, run 
@@ -612,7 +600,7 @@ Index: xboard/xboard.man
  
  If you improve XBoard, please send a message about your changes,
  and we will get in touch with you about merging them in
-@@ -3889,7 +3889,7 @@ See \fICopying\fR.
+@@ -4739,7 +4739,7 @@
  .PD
  Provides or inhibits verbose output from `cmail' and XBoard,
  useful for debugging. The
@@ -621,7 +609,7 @@ Index: xboard/xboard.man
  form also inhibits the cmail introduction message.
  .TP
  .B -mail
-@@ -3991,7 +3991,7 @@ to set this variable if none of the abov
+@@ -4841,7 +4841,7 @@
  .TP
  .B -logFile <file>
  A file in which to dump verbose debugging messages that are invoked with
@@ -630,7 +618,7 @@ Index: xboard/xboard.man
  option.
  .TP
  .B -event <event>
-@@ -4009,9 +4009,9 @@ The PGN Mode tag (default `EM', Electron
+@@ -4859,9 +4859,9 @@
  .B Other options
  Any option flags not listed above are passed through to XBoard.
  Invoking XBoard through CMail changes the default values of two XBoard
@@ -642,7 +630,7 @@ Index: xboard/xboard.man
  XBoard immediately goes to the end of the game as played so far,
  rather than stepping through the moves one by one.  You can still set
  these options to whatever values you prefer by supplying them on
-@@ -4079,7 +4079,7 @@ It's possible that a strange conjunction
+@@ -4929,7 +4929,7 @@
  mean that `cmail' has trouble reactivating an existing
  XBoard. If this should happen, simply trying it again should work.
  If not, remove the file that stores the XBoard's PID
@@ -651,7 +639,7 @@ Index: xboard/xboard.man
  `cmail' to start a new XBoard.
  
  Versions of `cmail' after 2.16 no longer understand the old file format
-@@ -4119,7 +4119,7 @@ HoiChess is a not-so-very-strong Chess e
+@@ -4969,7 +4969,7 @@
  able to play Chinese Chess. It can be obtained from the standard Linux repositories
  through:
  
@@ -660,7 +648,7 @@ Index: xboard/xboard.man
  
  .SS Crafty
  Crafty is a chess engine written by Bob Hyatt.
-@@ -4135,7 +4135,7 @@ will work well with the latest version o
+@@ -4985,7 +4985,7 @@
  Crafty can be obtained from its author's FTP site:
  ftp://ftp.cis.uab.edu/hyatt/.
  
@@ -669,11 +657,9 @@ Index: xboard/xboard.man
  <crafty's directory> is the directory in which you installed Crafty
  and placed its book and other support files.
  
-Index: xboard/Makefile.am
-===================================================================
---- xboard.orig/Makefile.am
-+++ xboard/Makefile.am
-@@ -74,7 +74,7 @@ AM_CPPFLAGS=-DINFODIR='"$(infodir)"' @X_
+--- a/Makefile.am
++++ b/Makefile.am
+@@ -74,7 +74,7 @@
  
  ACLOCAL_AMFLAGS = -I m4
  

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/xboard.git



More information about the Pkg-games-commits mailing list