Update to scid-4.7.0, tested with a game of Stockfish playing itself.

This commit is contained in:
bcallah 2019-03-31 21:31:16 +00:00
parent f8f18681d1
commit 433b50b2df
9 changed files with 147 additions and 171 deletions

View File

@ -1,10 +1,11 @@
# $OpenBSD: Makefile,v 1.2 2018/10/24 14:28:04 sthen Exp $
# $OpenBSD: Makefile,v 1.3 2019/03/31 21:31:16 bcallah Exp $
V = 4.7.0
COMMENT = chess database software
DISTNAME = scid-4.6.4
DISTNAME = scid-code-${V}
PKGNAME = scid-${V}
EXTRACT_SUFX = .zip
CATEGORIES = games x11
REVISION = 0
HOMEPAGE = http://scid.sourceforge.net/
MAINTAINER = Brian Callahan <bcallah@openbsd.org>
@ -12,7 +13,7 @@ MAINTAINER = Brian Callahan <bcallah@openbsd.org>
# GPLv3+
PERMIT_PACKAGE_CDROM = Yes
WANTLIB += ${COMPILER_LIBCXX} ${MODTCL_WANTLIB} c m z
WANTLIB += ${COMPILER_LIBCXX} ${MODTCL_WANTLIB} c m
MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=scid/}
@ -33,8 +34,9 @@ CONFIGURE_STYLE = simple
USE_GMAKE = Yes
MAKE_FLAGS = CXX="${CXX}"
TEST_DEPENDS = devel/cmake \
devel/gtest
NO_TEST = Yes
WRKDIST = ${WRKDIR}/scid
pre-configure:
@${MODTCL_TCLSH_ADJ} ${WRKSRC}/configure

View File

@ -1,2 +1,2 @@
SHA256 (scid-4.6.4.zip) = T95TUFF4bA+LE+aiogswbnuinnr3OU9eUQquT4fiI+Y=
SIZE (scid-4.6.4.zip) = 12248886
SHA256 (scid-code-4.7.0.zip) = LtJXgew8gtYPzuhSWcGf2JNP6uJUf5RkMEzbAZYPhto=
SIZE (scid-code-4.7.0.zip) = 15782104

View File

@ -1,31 +1,27 @@
$OpenBSD: patch-configure,v 1.1.1.1 2018/01/17 20:18:53 bcallah Exp $
$OpenBSD: patch-configure,v 1.2 2019/03/31 21:31:16 bcallah Exp $
Disable broken test. Of course OpenBSD has zlib installed.
Don't hardcode CXX or optimization flags.
Index: configure
--- configure.orig
+++ configure
@@ -14,11 +14,11 @@ exec tclsh "$0" ${1+"$@"}
@@ -13,15 +13,15 @@ exec tclsh "$0" ${1+"$@"}
# Default values for Makefile settings:
#
set var(BINDIR) /usr/local/bin
-set var(BINDIR) /usr/local/bin
-set var(COMPILE) g++
+set var(BINDIR) ${LOCALBASE}/bin
+set var(COMPILE) ${CXX}
set var(DEBUG) #-DASSERTIONS
set var(DEBUG) {-DNDEBUG}
set var(OBJS) {$(SCIDOBJS)}
set var(THREADS) {-std=c++11 -pthread}
-set var(OPTIMIZE) {-O3 -march=native -fno-rtti -fno-exceptions}
+set var(OPTIMIZE) {${CXXFLAGS} -fno-rtti -fno-exceptions}
set var(THREADS) {-pthread}
-set var(OPTIMIZE) {-std=c++14 -O3 -march=native -fno-rtti -fno-exceptions}
+set var(OPTIMIZE) {${CXXFLAGS} -std=c++14 -fno-rtti -fno-exceptions}
set var(PROFILE) {}
set var(SCIDFLAGS) {}
set var(SHAREDIR) /usr/local/share/scid
@@ -258,7 +258,7 @@ proc checkZlib {} {
global var
puts -nonewline " Checking if your system already has zlib installed: "
flush stdout
- if {[systemHasZlib]} {
+ if {1} {
puts "yes."
append var(SCIDFLAGS) " -DZLIB"
set var(ZLIB) {-lz}
-set var(SHAREDIR) /usr/local/share/scid
+set var(SHAREDIR) ${LOCALBASE}/share/scid
set var(TB) {-DSCID_USE_TB -DT41_INCLUDE}
set var(TCL_VERSION) $tcl_version
set var(WARNINGS) -Wall

View File

@ -1,4 +1,4 @@
$OpenBSD: patch-engines_phalanx-scid_makefile,v 1.1.1.1 2018/01/17 20:18:53 bcallah Exp $
$OpenBSD: patch-engines_phalanx-scid_makefile,v 1.2 2019/03/31 21:31:16 bcallah Exp $
Don't hardcode CC or optimization flags.
@ -11,8 +11,8 @@ Index: engines/phalanx-scid/makefile
####### choose the line that makes the binary faster on your machine
# CFLAGS = -O3 -Wall -fomit-frame-pointer -funroll-loops
-CFLAGS = -O3 -Wall -fomit-frame-pointer --std=gnu89 -D_GNU_SOURCE
+CFLAGS += -Wall -fomit-frame-pointer -std=gnu89 -D_GNU_SOURCE
-CFLAGS = -O3 -w -fomit-frame-pointer --std=gnu89 -D_GNU_SOURCE
+CFLAGS = -w -fomit-frame-pointer -std=gnu89 -D_GNU_SOURCE
# -std=c99
#-Werror removed

View File

@ -1,4 +1,4 @@
$OpenBSD: patch-engines_scidlet_scidlet_cpp,v 1.1.1.1 2018/01/17 20:18:53 bcallah Exp $
$OpenBSD: patch-engines_scidlet_scidlet_cpp,v 1.2 2019/03/31 21:31:16 bcallah Exp $
Missing sys/select.h
@ -8,8 +8,8 @@ Index: engines/scidlet/scidlet.cpp
@@ -17,6 +17,7 @@
#include "../../src/engine.h"
#include "../../src/misc.h"
+#include <sys/select.h>
#include <algorithm>
#include <stdarg.h>
#include <stdlib.h>
#include <string.h>

View File

@ -1,4 +1,4 @@
$OpenBSD: patch-engines_togaII1_2_1a_src_Makefile,v 1.1.1.1 2018/01/17 20:18:53 bcallah Exp $
$OpenBSD: patch-engines_togaII1_2_1a_src_Makefile,v 1.2 2019/03/31 21:31:16 bcallah Exp $
Don't hardcode CXX or optimization flags.
@ -12,7 +12,7 @@ Index: engines/togaII1.2.1a/src/Makefile
-CXX = g++
-CXXFLAGS = -pipe -Wall
+CXX ?= g++
+CXXFLAGS += -O2 -pipe -Wall
+CXXFLAGS += ${CXXFLAGS} -Wall
LDFLAGS = -lm
# C++

View File

@ -1,25 +0,0 @@
$OpenBSD: patch-src_egtb_tbindex_cpp,v 1.1.1.1 2018/01/17 20:18:53 bcallah Exp $
Fix formatting.
Index: src/egtb/tbindex.cpp
--- src/egtb/tbindex.cpp.orig
+++ src/egtb/tbindex.cpp
@@ -244,7 +244,7 @@ static void* PvMalloc
#endif
if (NULL == pv)
{
- printf ("*** Cannot allocate %d bytes of memory\n", cb);
+ printf ("*** Cannot allocate %zu bytes of memory\n", cb);
exit (1);
}
cbAllocated += cb;
@@ -1206,7 +1206,7 @@ static void VInitEnumerations (void)
rgcTriplePawnless[pi1][pi2][pi3]);
}
#endif
- printf ("\nAllocated %dk\n\n", (cbAllocated + 1023)/1024);
+ printf ("\nAllocated %luk\n\n", (cbAllocated + 1023)/1024);
}
}

View File

@ -1,25 +0,0 @@
$OpenBSD: patch-src_fastgame_h,v 1.1 2018/06/26 18:19:13 bcallah Exp $
Do not assume char is signed on all platforms.
Index: src/fastgame.h
--- src/fastgame.h.orig
+++ src/fastgame.h
@@ -433,7 +433,7 @@ class FastGame { (private)
static inline squareT decodeKing (squareT from, byte val) {
ASSERT (val <= 8);
- static const char sqdiff[] = { 0, -9, -8, -7, -1, 1, 7, 8, 9};
+ static const signed char sqdiff[] = { 0, -9, -8, -7, -1, 1, 7, 8, 9};
return 0x3F & (from + sqdiff[val]);
}
static inline squareT decodeQueen2byte (byte val) {
@@ -447,7 +447,7 @@ class FastGame { (private)
}
static inline squareT decodeKnight (squareT from, byte val) {
ASSERT (val <= 16);
- static const char sqdiff[] = { 0, -17, -15, -10, -6, 6, 10, 15, 17, 0, 0, 0, 0, 0, 0, 0 };
+ static const signed char sqdiff[] = { 0, -17, -15, -10, -6, 6, 10, 15, 17, 0, 0, 0, 0, 0, 0, 0 };
return 0x3F & (from + sqdiff[val]);
}
static inline squareT decodeRook (squareT from, byte val) {

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2018/01/17 20:18:53 bcallah Exp $
@comment $OpenBSD: PLIST,v 1.2 2019/03/31 21:31:16 bcallah Exp $
bin/pgnfix
bin/sc_eco
bin/sc_epgn
@ -21,8 +21,6 @@ share/scid/books/varied.bin
share/scid/engines/
share/scid/engines/phalanx-scid/
@bin share/scid/engines/phalanx-scid/phalanx-scid
share/scid/engines/togaII1.2.1a/
@bin share/scid/engines/togaII1.2.1a/togaII
share/scid/html/
share/scid/html/bitmaps/
share/scid/html/bitmaps/bb.gif
@ -142,94 +140,94 @@ share/scid/img/buttons/tb_CC_tablebase.gif
share/scid/img/buttons/tb_CC_yourmove.gif
share/scid/img/buttons/tb_Layout.gif
share/scid/img/buttons/tb_Stats.gif
share/scid/img/buttons/tb_addallvars.gif
share/scid/img/buttons/tb_addmove.gif
share/scid/img/buttons/tb_addvar.gif
share/scid/img/buttons/tb_annotate.gif
share/scid/img/buttons/tb_autoplay_off.gif
share/scid/img/buttons/tb_autoplay_on.gif
share/scid/img/buttons/tb_backward.gif
share/scid/img/buttons/tb_addallvars.png
share/scid/img/buttons/tb_addmove.png
share/scid/img/buttons/tb_addvar.png
share/scid/img/buttons/tb_annotate.png
share/scid/img/buttons/tb_annotate_on.png
share/scid/img/buttons/tb_bargraph.gif
share/scid/img/buttons/tb_bibliography.png
share/scid/img/buttons/tb_bkm.gif
share/scid/img/buttons/tb_bkm.png
share/scid/img/buttons/tb_black.gif
share/scid/img/buttons/tb_boardsearch.png
share/scid/img/buttons/tb_bsearch.gif
share/scid/img/buttons/tb_calendar.gif
share/scid/img/buttons/tb_close.gif
share/scid/img/buttons/tb_close_hover.gif
share/scid/img/buttons/tb_closedgroup.gif
share/scid/img/buttons/tb_comment_avail.gif
share/scid/img/buttons/tb_comment_unavail.gif
share/scid/img/buttons/tb_coords.gif
share/scid/img/buttons/tb_copy.gif
share/scid/img/buttons/tb_cpu.gif
share/scid/img/buttons/tb_cross.gif
share/scid/img/buttons/tb_closedb.png
share/scid/img/buttons/tb_config.png
share/scid/img/buttons/tb_coords.png
share/scid/img/buttons/tb_copy.png
share/scid/img/buttons/tb_cpu.png
share/scid/img/buttons/tb_cpu_hi.png
share/scid/img/buttons/tb_cross.png
share/scid/img/buttons/tb_crosst.gif
share/scid/img/buttons/tb_cut.gif
share/scid/img/buttons/tb_crosstab.png
share/scid/img/buttons/tb_cut.png
share/scid/img/buttons/tb_down.gif
share/scid/img/buttons/tb_down.png
share/scid/img/buttons/tb_eco.gif
share/scid/img/buttons/tb_eco.png
share/scid/img/buttons/tb_empty.gif
share/scid/img/buttons/tb_end.gif
share/scid/img/buttons/tb_eng_connecting.png
share/scid/img/buttons/tb_eng_dgt.gif
share/scid/img/buttons/tb_eng_disconnected.png
share/scid/img/buttons/tb_eng_error.png
share/scid/img/buttons/tb_eng_off.png
share/scid/img/buttons/tb_eng_ok.png
share/scid/img/buttons/tb_eng_on.png
share/scid/img/buttons/tb_eng_query.png
share/scid/img/buttons/tb_engine.gif
share/scid/img/buttons/tb_engineinfo.gif
share/scid/img/buttons/tb_finder.gif
share/scid/img/buttons/tb_finish_off.gif
share/scid/img/buttons/tb_finish_on.gif
share/scid/img/buttons/tb_engine.png
share/scid/img/buttons/tb_engineinfo.png
share/scid/img/buttons/tb_finder.png
share/scid/img/buttons/tb_finish_off.png
share/scid/img/buttons/tb_finish_on.png
share/scid/img/buttons/tb_flip.png
share/scid/img/buttons/tb_forward.gif
share/scid/img/buttons/tb_glist.gif
share/scid/img/buttons/tb_gnext.gif
share/scid/img/buttons/tb_gprev.gif
share/scid/img/buttons/tb_graph.gif
share/scid/img/buttons/tb_help.gif
share/scid/img/buttons/tb_glist.png
share/scid/img/buttons/tb_gnext.png
share/scid/img/buttons/tb_gprev.png
share/scid/img/buttons/tb_headersearch.png
share/scid/img/buttons/tb_help.png
share/scid/img/buttons/tb_help_small.png
share/scid/img/buttons/tb_hsearch.gif
share/scid/img/buttons/tb_iconSave.png
share/scid/img/buttons/tb_invar.gif
share/scid/img/buttons/tb_invar.png
share/scid/img/buttons/tb_lightbulb.gif
share/scid/img/buttons/tb_list.gif
share/scid/img/buttons/tb_lockengine.gif
share/scid/img/buttons/tb_lockengine.png
share/scid/img/buttons/tb_mainline.gif
share/scid/img/buttons/tb_maint.gif
share/scid/img/buttons/tb_maint.png
share/scid/img/buttons/tb_materialsearch.png
share/scid/img/buttons/tb_menu.gif
share/scid/img/buttons/tb_msearch.gif
share/scid/img/buttons/tb_new.gif
share/scid/img/buttons/tb_newdb.png
share/scid/img/buttons/tb_newgame.png
share/scid/img/buttons/tb_next.gif
share/scid/img/buttons/tb_open.gif
share/scid/img/buttons/tb_opengroup.gif
share/scid/img/buttons/tb_open.png
share/scid/img/buttons/tb_outvar.png
share/scid/img/buttons/tb_paste.gif
share/scid/img/buttons/tb_pause.gif
share/scid/img/buttons/tb_pgn.gif
share/scid/img/buttons/tb_paste.png
share/scid/img/buttons/tb_pgn.png
share/scid/img/buttons/tb_play.gif
share/scid/img/buttons/tb_prev.gif
share/scid/img/buttons/tb_rfilter.gif
share/scid/img/buttons/tb_save.gif
share/scid/img/buttons/tb_save.png
share/scid/img/buttons/tb_save_small.png
share/scid/img/buttons/tb_search16.png
share/scid/img/buttons/tb_search_off.png
share/scid/img/buttons/tb_search_on.png
share/scid/img/buttons/tb_start.gif
share/scid/img/buttons/tb_stm.gif
share/scid/img/buttons/tb_stop.gif
share/scid/img/buttons/tb_switcher.gif
share/scid/img/buttons/tb_tick.gif
share/scid/img/buttons/tb_tmt.gif
share/scid/img/buttons/tb_training.gif
share/scid/img/buttons/tb_tree.gif
share/scid/img/buttons/tb_switcher.png
share/scid/img/buttons/tb_tabmenu.gif
share/scid/img/buttons/tb_tick.png
share/scid/img/buttons/tb_tmt.png
share/scid/img/buttons/tb_training.png
share/scid/img/buttons/tb_tree.png
share/scid/img/buttons/tb_trial.gif
share/scid/img/buttons/tb_trial_on.gif
share/scid/img/buttons/tb_uciEngine.gif
share/scid/img/buttons/tb_up.png
share/scid/img/buttons/tb_update.gif
share/scid/img/buttons/tb_updir.gif
share/scid/img/buttons/tb_update.png
share/scid/img/buttons/tb_updir.png
share/scid/img/buttons/tb_white.gif
share/scid/img/flags/
share/scid/img/flags/copyright
@ -445,6 +443,9 @@ share/scid/img/pieces/Bauhaus/Bauhaus_70.gif
share/scid/img/pieces/Bauhaus/Bauhaus_80.gif
share/scid/img/pieces/Bauhaus/copyright
share/scid/img/pieces/Blindfold/
share/scid/img/pieces/Blindfold/Blindfold_100.gif
share/scid/img/pieces/Blindfold/Blindfold_105.gif
share/scid/img/pieces/Blindfold/Blindfold_110.gif
share/scid/img/pieces/Blindfold/Blindfold_25.gif
share/scid/img/pieces/Blindfold/Blindfold_30.gif
share/scid/img/pieces/Blindfold/Blindfold_35.gif
@ -457,6 +458,9 @@ share/scid/img/pieces/Blindfold/Blindfold_65.gif
share/scid/img/pieces/Blindfold/Blindfold_70.gif
share/scid/img/pieces/Blindfold/Blindfold_75.gif
share/scid/img/pieces/Blindfold/Blindfold_80.gif
share/scid/img/pieces/Blindfold/Blindfold_85.gif
share/scid/img/pieces/Blindfold/Blindfold_90.gif
share/scid/img/pieces/Blindfold/Blindfold_95.gif
share/scid/img/pieces/Cburnett/
share/scid/img/pieces/Cburnett/cburnett_100.png
share/scid/img/pieces/Cburnett/cburnett_105.png
@ -482,29 +486,46 @@ share/scid/img/pieces/Cburnett/cburnett_85.png
share/scid/img/pieces/Cburnett/cburnett_90.png
share/scid/img/pieces/Cburnett/cburnett_95.png
share/scid/img/pieces/Eboard/
share/scid/img/pieces/Eboard/Eboard_25.gif
share/scid/img/pieces/Eboard/Eboard_30.gif
share/scid/img/pieces/Eboard/Eboard_35.gif
share/scid/img/pieces/Eboard/Eboard_40.gif
share/scid/img/pieces/Eboard/Eboard_45.gif
share/scid/img/pieces/Eboard/Eboard_50.gif
share/scid/img/pieces/Eboard/Eboard_55.gif
share/scid/img/pieces/Eboard/Eboard_60.gif
share/scid/img/pieces/Eboard/Eboard_65.gif
share/scid/img/pieces/Eboard/Eboard_70.gif
share/scid/img/pieces/Eboard/Eboard_80.gif
share/scid/img/pieces/Eboard/Eboard_100.png
share/scid/img/pieces/Eboard/Eboard_105.png
share/scid/img/pieces/Eboard/Eboard_110.png
share/scid/img/pieces/Eboard/Eboard_120.png
share/scid/img/pieces/Eboard/Eboard_25.png
share/scid/img/pieces/Eboard/Eboard_30.png
share/scid/img/pieces/Eboard/Eboard_35.png
share/scid/img/pieces/Eboard/Eboard_40.png
share/scid/img/pieces/Eboard/Eboard_45.png
share/scid/img/pieces/Eboard/Eboard_50.png
share/scid/img/pieces/Eboard/Eboard_55.png
share/scid/img/pieces/Eboard/Eboard_60.png
share/scid/img/pieces/Eboard/Eboard_65.png
share/scid/img/pieces/Eboard/Eboard_70.png
share/scid/img/pieces/Eboard/Eboard_75.png
share/scid/img/pieces/Eboard/Eboard_80.png
share/scid/img/pieces/Eboard/Eboard_85.png
share/scid/img/pieces/Eboard/Eboard_90.png
share/scid/img/pieces/Eboard/Eboard_95.png
share/scid/img/pieces/Fantasy2/
share/scid/img/pieces/Fantasy2/Fantasy2_25.gif
share/scid/img/pieces/Fantasy2/Fantasy2_30.gif
share/scid/img/pieces/Fantasy2/Fantasy2_35.gif
share/scid/img/pieces/Fantasy2/Fantasy2_40.gif
share/scid/img/pieces/Fantasy2/Fantasy2_45.gif
share/scid/img/pieces/Fantasy2/Fantasy2_50.gif
share/scid/img/pieces/Fantasy2/Fantasy2_55.gif
share/scid/img/pieces/Fantasy2/Fantasy2_60.gif
share/scid/img/pieces/Fantasy2/Fantasy2_65.gif
share/scid/img/pieces/Fantasy2/Fantasy2_70.gif
share/scid/img/pieces/Fantasy2/Fantasy2_80.gif
share/scid/img/pieces/Fantasy2/copyright
share/scid/img/pieces/Fantasy2/fantasy2_100.png
share/scid/img/pieces/Fantasy2/fantasy2_105.png
share/scid/img/pieces/Fantasy2/fantasy2_110.png
share/scid/img/pieces/Fantasy2/fantasy2_200.png
share/scid/img/pieces/Fantasy2/fantasy2_25.png
share/scid/img/pieces/Fantasy2/fantasy2_30.png
share/scid/img/pieces/Fantasy2/fantasy2_35.png
share/scid/img/pieces/Fantasy2/fantasy2_40.png
share/scid/img/pieces/Fantasy2/fantasy2_45.png
share/scid/img/pieces/Fantasy2/fantasy2_50.png
share/scid/img/pieces/Fantasy2/fantasy2_55.png
share/scid/img/pieces/Fantasy2/fantasy2_60.png
share/scid/img/pieces/Fantasy2/fantasy2_65.png
share/scid/img/pieces/Fantasy2/fantasy2_70.png
share/scid/img/pieces/Fantasy2/fantasy2_75.png
share/scid/img/pieces/Fantasy2/fantasy2_80.png
share/scid/img/pieces/Fantasy2/fantasy2_85.png
share/scid/img/pieces/Fantasy2/fantasy2_90.png
share/scid/img/pieces/Fantasy2/fantasy2_95.png
share/scid/img/pieces/Good Companion/
share/scid/img/pieces/Good Companion/good_companion_100.png
share/scid/img/pieces/Good Companion/good_companion_105.png
@ -543,17 +564,25 @@ share/scid/img/pieces/Kingdom/Kingdom_70.gif
share/scid/img/pieces/Kingdom/Kingdom_75.gif
share/scid/img/pieces/Kingdom/Kingdom_80.gif
share/scid/img/pieces/Leipzig/
share/scid/img/pieces/Leipzig/Leipzig_25.gif
share/scid/img/pieces/Leipzig/Leipzig_30.gif
share/scid/img/pieces/Leipzig/Leipzig_35.gif
share/scid/img/pieces/Leipzig/Leipzig_40.gif
share/scid/img/pieces/Leipzig/Leipzig_45.gif
share/scid/img/pieces/Leipzig/Leipzig_50.gif
share/scid/img/pieces/Leipzig/Leipzig_55.gif
share/scid/img/pieces/Leipzig/Leipzig_60.gif
share/scid/img/pieces/Leipzig/Leipzig_65.gif
share/scid/img/pieces/Leipzig/Leipzig_70.gif
share/scid/img/pieces/Leipzig/Leipzig_80.gif
share/scid/img/pieces/Leipzig/Leibzig_100.png
share/scid/img/pieces/Leipzig/Leibzig_105.png
share/scid/img/pieces/Leipzig/Leibzig_110.png
share/scid/img/pieces/Leipzig/Leibzig_200.png
share/scid/img/pieces/Leipzig/Leibzig_25.png
share/scid/img/pieces/Leipzig/Leibzig_30.png
share/scid/img/pieces/Leipzig/Leibzig_35.png
share/scid/img/pieces/Leipzig/Leibzig_40.png
share/scid/img/pieces/Leipzig/Leibzig_45.png
share/scid/img/pieces/Leipzig/Leibzig_50.png
share/scid/img/pieces/Leipzig/Leibzig_55.png
share/scid/img/pieces/Leipzig/Leibzig_60.png
share/scid/img/pieces/Leipzig/Leibzig_65.png
share/scid/img/pieces/Leipzig/Leibzig_70.png
share/scid/img/pieces/Leipzig/Leibzig_75.png
share/scid/img/pieces/Leipzig/Leibzig_80.png
share/scid/img/pieces/Leipzig/Leibzig_85.png
share/scid/img/pieces/Leipzig/Leibzig_90.png
share/scid/img/pieces/Leipzig/Leibzig_95.png
share/scid/img/pieces/Leipzig/copyright
share/scid/img/pieces/Merida/
share/scid/img/pieces/Merida/copyright
@ -600,6 +629,7 @@ share/scid/img/pieces/ReadMe.txt
share/scid/img/scid.gif
share/scid/scid.eco
share/scid/tcl/
share/scid/tcl/appearance.tcl
share/scid/tcl/board.tcl
share/scid/tcl/contrib/
share/scid/tcl/contrib/ezsmtp/
@ -622,9 +652,7 @@ share/scid/tcl/file/finder.tcl
share/scid/tcl/file/maint.tcl
share/scid/tcl/file/recent.tcl
share/scid/tcl/file/spellchk.tcl
share/scid/tcl/game/
share/scid/tcl/game.tcl
share/scid/tcl/game/browser.tcl
share/scid/tcl/help/
share/scid/tcl/help/help.tcl
share/scid/tcl/help/tips.tcl
@ -655,8 +683,7 @@ share/scid/tcl/lang/swedish.tcl
share/scid/tcl/language.tcl
share/scid/tcl/main.tcl
share/scid/tcl/menus.tcl
share/scid/tcl/misc/
share/scid/tcl/misc/misc.tcl
share/scid/tcl/misc.tcl
share/scid/tcl/move.tcl
share/scid/tcl/options.tcl
share/scid/tcl/search/
@ -706,6 +733,7 @@ share/scid/tcl/utils/win.tcl
share/scid/tcl/windows/
share/scid/tcl/windows.tcl
share/scid/tcl/windows/book.tcl
share/scid/tcl/windows/browser.tcl
share/scid/tcl/windows/comment.tcl
share/scid/tcl/windows/crosstab.tcl
share/scid/tcl/windows/eco.tcl