diff -Nru tagua-1.0~alpha2/CHANGELOG tagua-1.0~alpha2-16-g618c6a0/CHANGELOG --- tagua-1.0~alpha2/CHANGELOG 2008-04-03 19:56:52.000000000 +0000 +++ tagua-1.0~alpha2-16-g618c6a0/CHANGELOG 2017-09-30 20:37:27.000000000 +0000 @@ -1,3 +1,10 @@ +Version 1.0 alpha 3 - "Rylai" +============================= +XX-May-2008 + +* Ported to kdelibs 4.1 and g++ 4.3 +* Fixed glitches Shogi themes. + Version 1.0 alpha 2 - "Raigor" ============================== 01-Mar-2008 diff -Nru tagua-1.0~alpha2/cmake/CMakeFindDependencyMacro.cmake tagua-1.0~alpha2-16-g618c6a0/cmake/CMakeFindDependencyMacro.cmake --- tagua-1.0~alpha2/cmake/CMakeFindDependencyMacro.cmake 1970-01-01 00:00:00.000000000 +0000 +++ tagua-1.0~alpha2-16-g618c6a0/cmake/CMakeFindDependencyMacro.cmake 2017-09-30 20:37:27.000000000 +0000 @@ -0,0 +1,85 @@ +#.rst: +# CMakeFindDependencyMacro +# ------------------------- +# +# :: +# +# find_dependency( [ [EXACT]]) +# +# +# ``find_dependency()`` wraps a :command:`find_package` call for a package +# dependency. It is designed to be used in a Config.cmake file, and it +# forwards the correct parameters for EXACT, QUIET and REQUIRED which were +# passed to the original :command:`find_package` call. It also sets an +# informative diagnostic message if the dependency could not be found. +# + +#============================================================================= +# Copyright 2013 Stephen Kelly +# +# Distributed under the OSI-approved BSD License (the "License"); +# see accompanying file Copyright.txt for details. +# +# This software is distributed WITHOUT ANY WARRANTY; without even the +# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +# See the License for more information. +#============================================================================= +# (To distribute this file outside of CMake, substitute the full +# License text for the above reference.) + +macro(find_dependency dep) + if (NOT ${dep}_FOUND) + set(cmake_fd_version) + if (${ARGC} GREATER 1) + if ("${ARGV1}" STREQUAL "") + message(FATAL_ERROR "Invalid arguments to find_dependency. VERSION is empty") + endif() + if ("${ARGV1}" STREQUAL EXACT) + message(FATAL_ERROR "Invalid arguments to find_dependency. EXACT may only be specified if a VERSION is specified") + endif() + set(cmake_fd_version ${ARGV1}) + endif() + set(cmake_fd_exact_arg) + if(${ARGC} GREATER 2) + if (NOT "${ARGV2}" STREQUAL EXACT) + message(FATAL_ERROR "Invalid arguments to find_dependency") + endif() + set(cmake_fd_exact_arg EXACT) + endif() + if(${ARGC} GREATER 3) + message(FATAL_ERROR "Invalid arguments to find_dependency") + endif() + set(cmake_fd_quiet_arg) + if(${CMAKE_FIND_PACKAGE_NAME}_FIND_QUIETLY) + set(cmake_fd_quiet_arg QUIET) + endif() + set(cmake_fd_required_arg) + if(${CMAKE_FIND_PACKAGE_NAME}_FIND_REQUIRED) + set(cmake_fd_required_arg REQUIRED) + endif() + + get_property(cmake_fd_alreadyTransitive GLOBAL PROPERTY + _CMAKE_${dep}_TRANSITIVE_DEPENDENCY + ) + + find_package(${dep} ${cmake_fd_version} + ${cmake_fd_exact_arg} + ${cmake_fd_quiet_arg} + ${cmake_fd_required_arg} + ) + + if(NOT DEFINED cmake_fd_alreadyTransitive OR cmake_fd_alreadyTransitive) + set_property(GLOBAL PROPERTY _CMAKE_${dep}_TRANSITIVE_DEPENDENCY TRUE) + endif() + + if (NOT ${dep}_FOUND) + set(${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE "${CMAKE_FIND_PACKAGE_NAME} could not be found because dependency ${dep} could not be found.") + set(${CMAKE_FIND_PACKAGE_NAME}_FOUND False) + return() + endif() + set(cmake_fd_version) + set(cmake_fd_required_arg) + set(cmake_fd_quiet_arg) + set(cmake_fd_exact_arg) + endif() +endmacro() diff -Nru tagua-1.0~alpha2/CMakeLists.txt tagua-1.0~alpha2-16-g618c6a0/CMakeLists.txt --- tagua-1.0~alpha2/CMakeLists.txt 2017-11-04 14:54:52.000000000 +0000 +++ tagua-1.0~alpha2-16-g618c6a0/CMakeLists.txt 2017-09-30 20:37:27.000000000 +0000 @@ -1,8 +1,15 @@ -PROJECT(tagua) -CMAKE_MINIMUM_REQUIRED(VERSION 2.4.0) -set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake) +project(tagua) +cmake_minimum_required(VERSION 2.8.12) + +find_package(ECM REQUIRED NO_MODULE) +set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR}) include(Tagua) +include(CMakeFindDependencyMacro) + +include(KDEInstallDirs) +include(KDECompilerSettings NO_POLICY_SCOPE) +include(KDECMakeSettings) if (NOT CMAKE_BUILD_TYPE) set(DEBUG_BUILD 0) @@ -37,12 +44,20 @@ ADD_SUBDIRECTORY(lua) ENDIF(SYSTEM_LUA) -ADD_DEFINITIONS(-fexceptions) -find_package(KDE4 REQUIRED) -include(KDE4Defaults) +# FIXME: this def is buggy in 4:16.08.3-1 +set(KDEGAMES_INCLUDE_DIR "/usr/include/KF5/KF5KDEGames") + +ADD_DEFINITIONS(-fexceptions -fPIC) +find_package(Qt5 REQUIRED + Core + Widgets + Svg +) +find_package(KF5 REQUIRED COMPONENTS + KDEGames + KDELibs4Support +) -# blitz -FIND_PACKAGE(Blitz REQUIRED) set(CMAKE_CXX_FLAGS_DEBUGFULL "${CMAKE_C_FLAGS_DEBUGFULL} -DTAGUA_DEBUG") add_definitions(-DQT_NO_KEYWORDS ${QT_DEFINITIONS} ${KDE4_DEFINITIONS}) diff -Nru tagua-1.0~alpha2/data/themes/figurines/AsciiShogiTTF/theme.lua tagua-1.0~alpha2-16-g618c6a0/data/themes/figurines/AsciiShogiTTF/theme.lua --- tagua-1.0~alpha2/data/themes/figurines/AsciiShogiTTF/theme.lua 2008-04-03 19:56:52.000000000 +0000 +++ tagua-1.0~alpha2-16-g618c6a0/data/themes/figurines/AsciiShogiTTF/theme.lua 2017-09-30 20:37:27.000000000 +0000 @@ -2,7 +2,7 @@ import("shogi_themelib.lua") function Fig(char) - return Glyph("../ShogiTTF/mikachan.ttf", char, 2) + return Glyph("../ShogiTTF/arphic-ukai.ttf", char, 2) end function Plain(str) Binary files /tmp/tmp5bksRb/H2nxilH7wv/tagua-1.0~alpha2/data/themes/figurines/ShogiTTF/arphic-ukai.ttf and /tmp/tmp5bksRb/lGo_TVPN6g/tagua-1.0~alpha2-16-g618c6a0/data/themes/figurines/ShogiTTF/arphic-ukai.ttf differ Binary files /tmp/tmp5bksRb/H2nxilH7wv/tagua-1.0~alpha2/data/themes/figurines/ShogiTTF/mikachan.ttf and /tmp/tmp5bksRb/lGo_TVPN6g/tagua-1.0~alpha2-16-g618c6a0/data/themes/figurines/ShogiTTF/mikachan.ttf differ diff -Nru tagua-1.0~alpha2/data/themes/figurines/ShogiTTF/theme.lua tagua-1.0~alpha2-16-g618c6a0/data/themes/figurines/ShogiTTF/theme.lua --- tagua-1.0~alpha2/data/themes/figurines/ShogiTTF/theme.lua 2008-04-03 19:56:52.000000000 +0000 +++ tagua-1.0~alpha2-16-g618c6a0/data/themes/figurines/ShogiTTF/theme.lua 2017-09-30 20:37:27.000000000 +0000 @@ -2,7 +2,7 @@ import("shogi_themelib.lua") function Fig(char) - return Glyph("mikachan.ttf", char, 2) + return Glyph("arphic-ukai.ttf", char, 2) end theme.num_9 = Fig("0x4e5d") diff -Nru tagua-1.0~alpha2/data/themes/pieces/ShogiTTF/theme.lua tagua-1.0~alpha2-16-g618c6a0/data/themes/pieces/ShogiTTF/theme.lua --- tagua-1.0~alpha2/data/themes/pieces/ShogiTTF/theme.lua 2008-04-03 19:56:52.000000000 +0000 +++ tagua-1.0~alpha2-16-g618c6a0/data/themes/pieces/ShogiTTF/theme.lua 2017-09-30 20:37:27.000000000 +0000 @@ -15,7 +15,7 @@ -- ComboOpt("font", "Symbol set", fontnames) -- }), BoolOpt("use_custom", "Custom font", false, OptList { - UrlOpt("file", "SVG glyph directory", "../../figurines/ShogiTTF/mikachan.ttf") + UrlOpt("file", "TrueType Font (TTF) file", "../../figurines/ShogiTTF/arphic-ukai.ttf") }), -- BoolOpt("use_system", "System font", false, OptList { -- FontOpt("font", "System font", Font("Arial", true, true)) @@ -64,7 +64,7 @@ false, false, 0.9, shogimoves_gold) theme.black_silver = shogi_piece(shogichars["silver general"][2], shogichars["silver general"][1], false, false, 0.9, shogimoves_silver) -theme.black_p_silver = shogi_piece(shogichars["narikei"][2], shogichars["narikei"][1], +theme.black_p_silver = shogi_piece(shogichars["narigin"][2], shogichars["narigin"][1], false, true, 0.9, shogimoves_gold) theme.black_knight = shogi_piece(shogichars["knight"][2], shogichars["knight"][1], false, false, 0.86, shogimoves_knight) @@ -93,7 +93,7 @@ true, false, 0.9, shogimoves_gold) theme.white_silver = shogi_piece(shogichars["silver general"][2], shogichars["silver general"][1], true, false, 0.9, shogimoves_silver) -theme.white_p_silver = shogi_piece(shogichars["narikei"][2], shogichars["narikei"][1], +theme.white_p_silver = shogi_piece(shogichars["narigin"][2], shogichars["narigin"][1], true, true, 0.9, shogimoves_gold) theme.white_knight = shogi_piece(shogichars["knight"][2], shogichars["knight"][1], true, false, 0.86, shogimoves_knight) diff -Nru tagua-1.0~alpha2/data/themes/pieces/ToriShogiTTF/theme.lua tagua-1.0~alpha2-16-g618c6a0/data/themes/pieces/ToriShogiTTF/theme.lua --- tagua-1.0~alpha2/data/themes/pieces/ToriShogiTTF/theme.lua 2008-04-03 19:56:52.000000000 +0000 +++ tagua-1.0~alpha2-16-g618c6a0/data/themes/pieces/ToriShogiTTF/theme.lua 2017-09-30 20:37:27.000000000 +0000 @@ -9,13 +9,12 @@ theme.options = OptList { BoolOpt("moves_overlay", "Moves overlay", true), - BoolOpt("single_kanji", "Single kanji on tiles", false), SelectOpt("symbols", "Symbol set", BoolOptList { -- BoolOpt("use_predefined", "Predefined", true, OptList { -- ComboOpt("font", "Symbol set", fontnames) -- }), BoolOpt("use_custom", "Custom font", false, OptList { - UrlOpt("file", "SVG glyph directory", "../../figurines/ShogiTTF/mikachan.ttf") + UrlOpt("file", "TrueType Font (TTF) file", "../../figurines/ShogiTTF/arphic-ukai.ttf") }), -- BoolOpt("use_system", "System font", false, OptList { -- FontOpt("font", "System font", Font("Arial", true, true)) diff -Nru tagua-1.0~alpha2/debian/changelog tagua-1.0~alpha2-16-g618c6a0/debian/changelog --- tagua-1.0~alpha2/debian/changelog 2017-11-04 14:54:52.000000000 +0000 +++ tagua-1.0~alpha2-16-g618c6a0/debian/changelog 2017-09-30 20:53:36.000000000 +0000 @@ -1,3 +1,12 @@ +tagua (1.0~alpha2-16-g618c6a0-1) unstable; urgency=medium + + * Port to Qt5/KF5 (Closes: #875201) + * Switch packaging to format 3.0 (quilt). + * Take source from good old repo.or.cz git repository, update + copyright file. + + -- Yann Dirson Sat, 30 Sep 2017 22:53:36 +0200 + tagua (1.0~alpha2-15) unstable; urgency=medium * Don't refresh .pot and .po file on each build to make the build diff -Nru tagua-1.0~alpha2/debian/control tagua-1.0~alpha2-16-g618c6a0/debian/control --- tagua-1.0~alpha2/debian/control 2017-11-04 14:54:52.000000000 +0000 +++ tagua-1.0~alpha2-16-g618c6a0/debian/control 2017-09-30 20:53:36.000000000 +0000 @@ -2,7 +2,7 @@ Section: games Priority: optional Maintainer: Yann Dirson -Build-Depends: debhelper (>= 9), libkdegames-dev (>= 4:4.10.0), kdelibs5-dev (>= 4:4.0.72), cmake, libboost-dev, libqimageblitz-dev, liblua5.1-0-dev, kdesdk-scripts, pkg-config, libcppunit-dev +Build-Depends: debhelper (>= 9), libkf5kdegames-dev, libkf5kdelibs4support-dev, libqt5svg5-dev, cmake, extra-cmake-modules, libboost-dev, liblua5.1-0-dev, kdesdk-scripts, pkg-config, libcppunit-dev Standards-Version: 3.8.4 Package: tagua diff -Nru tagua-1.0~alpha2/debian/copyright tagua-1.0~alpha2-16-g618c6a0/debian/copyright --- tagua-1.0~alpha2/debian/copyright 2008-04-03 19:56:52.000000000 +0000 +++ tagua-1.0~alpha2-16-g618c6a0/debian/copyright 2017-09-30 20:51:35.000000000 +0000 @@ -1,19 +1,19 @@ This package was debianized by Yann Dirson on Sat, 08 Dec 2007 15:48:02 +0100. -It was downloaded from http://www.tagua-project.org/ +It was downloaded from http://repo.or.cz/tagua.git/shortlog/refs/heads/stable Upstream Authors: Paolo Capriotti Maurizio Monge - Yann Dirson + Yann Dirson Copyright: Copyright (C) 2006-2008 Paolo Capriotti Copyright (C) 2006-2007 Maurizio Monge - Copyright (C) 2007-2008 Yann Dirson + Copyright (C) 2007-2017 Yann Dirson License: diff -Nru tagua-1.0~alpha2/debian/.gitignore tagua-1.0~alpha2-16-g618c6a0/debian/.gitignore --- tagua-1.0~alpha2/debian/.gitignore 2008-04-03 19:56:52.000000000 +0000 +++ tagua-1.0~alpha2-16-g618c6a0/debian/.gitignore 1970-01-01 00:00:00.000000000 +0000 @@ -1,5 +0,0 @@ -files -*.debhelper -*.substvars -tagua -tagua-data diff -Nru tagua-1.0~alpha2/debian/NEWS.Debian tagua-1.0~alpha2-16-g618c6a0/debian/NEWS.Debian --- tagua-1.0~alpha2/debian/NEWS.Debian 1970-01-01 00:00:00.000000000 +0000 +++ tagua-1.0~alpha2-16-g618c6a0/debian/NEWS.Debian 2017-09-30 20:53:36.000000000 +0000 @@ -0,0 +1,8 @@ +tagua (1.0~alpha2-16-g618c6a0-1) unstable; urgency=medium + + This version is built with Qt5 and KDE KF5 libraries. The configuration + files previously in ~/.kde/share/config/tagua* are now located in + ~/.config/. Users must move or copy them manually to the new location + if they want to keep their previous settings (including engine definitions). + + -- Yann Dirson Sun, 01 Oct 2017 01:33:59 +0200 diff -Nru tagua-1.0~alpha2/debian/README.Debian tagua-1.0~alpha2-16-g618c6a0/debian/README.Debian --- tagua-1.0~alpha2/debian/README.Debian 2017-11-04 14:54:52.000000000 +0000 +++ tagua-1.0~alpha2-16-g618c6a0/debian/README.Debian 2017-09-30 20:53:36.000000000 +0000 @@ -2,7 +2,7 @@ ---------------- IA engines currently have to be manually configured in your -~/.kde/share/config/taguarc.xml. Here is a sample block. +~/.config/taguarc.xml. Here is a sample block. @@ -22,4 +22,4 @@ - -- Yann Dirson , Thu, 7 Jul 2016 00:04:10 +0200 + -- Yann Dirson , Sun, 1 Oct 2017 01:32:14 +0200 diff -Nru tagua-1.0~alpha2/debian/README.source tagua-1.0~alpha2-16-g618c6a0/debian/README.source --- tagua-1.0~alpha2/debian/README.source 1970-01-01 00:00:00.000000000 +0000 +++ tagua-1.0~alpha2-16-g618c6a0/debian/README.source 2017-09-30 20:53:36.000000000 +0000 @@ -0,0 +1,6 @@ +upstream tarball was generated from the git repo using: + +(V=origin/stable; REV=$(git describe --tags $V | sed -e 's/^v//' -e 's/-alpha/~alpha/'); + git archive --prefix=tagua-$REV/ --format=tar $V | xz -9 > ../tagua_$REV.orig.tar.xz) + + -- Yann Dirson , Sat, 30 Sep 2017 23:21:19 +0200 diff -Nru tagua-1.0~alpha2/debian/rules tagua-1.0~alpha2-16-g618c6a0/debian/rules --- tagua-1.0~alpha2/debian/rules 2017-11-04 14:54:52.000000000 +0000 +++ tagua-1.0~alpha2-16-g618c6a0/debian/rules 2017-09-30 20:53:36.000000000 +0000 @@ -3,6 +3,8 @@ export DH_VERBOSE=1 +QT5HOSTBIN := $(shell pkg-config --print-errors --variable=host_bins Qt5Core) + %: dh $@ @@ -11,7 +13,7 @@ -DSYSTEM_LUA=yes \ -DCMAKE_SKIP_RPATH:BOOL=YES \ -DCMAKE_INSTALL_PREFIX:PATH=/usr \ - -DQT_QMAKE_EXECUTABLE:FILEPATH=/usr/bin/qmake-qt4 + -DQT_QMAKE_EXECUTABLE:FILEPATH=$(QT5HOSTBIN)/qmake override_dh_auto_install: dh_auto_install diff -Nru tagua-1.0~alpha2/debian/source/format tagua-1.0~alpha2-16-g618c6a0/debian/source/format --- tagua-1.0~alpha2/debian/source/format 2017-11-04 14:54:52.000000000 +0000 +++ tagua-1.0~alpha2-16-g618c6a0/debian/source/format 2017-09-30 20:53:36.000000000 +0000 @@ -1 +1 @@ -1.0 +3.0 (quilt) diff -Nru tagua-1.0~alpha2/debian/tagua-data.files tagua-1.0~alpha2-16-g618c6a0/debian/tagua-data.files --- tagua-1.0~alpha2/debian/tagua-data.files 2008-04-03 19:56:52.000000000 +0000 +++ tagua-1.0~alpha2-16-g618c6a0/debian/tagua-data.files 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -usr/share/kde4 -usr/share/locale diff -Nru tagua-1.0~alpha2/debian/tagua-data.install tagua-1.0~alpha2-16-g618c6a0/debian/tagua-data.install --- tagua-1.0~alpha2/debian/tagua-data.install 2017-11-04 14:54:52.000000000 +0000 +++ tagua-1.0~alpha2-16-g618c6a0/debian/tagua-data.install 2017-09-30 20:53:36.000000000 +0000 @@ -1,2 +1,3 @@ -usr/share/kde4 +usr/share/kxmlgui5 usr/share/locale +usr/share/tagua diff -Nru tagua-1.0~alpha2/debian/tagua.files tagua-1.0~alpha2-16-g618c6a0/debian/tagua.files --- tagua-1.0~alpha2/debian/tagua.files 2008-04-03 19:56:52.000000000 +0000 +++ tagua-1.0~alpha2-16-g618c6a0/debian/tagua.files 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -usr/games -usr/share/applications diff -Nru tagua-1.0~alpha2/debian/watch tagua-1.0~alpha2-16-g618c6a0/debian/watch --- tagua-1.0~alpha2/debian/watch 2008-04-03 19:56:52.000000000 +0000 +++ tagua-1.0~alpha2-16-g618c6a0/debian/watch 1970-01-01 00:00:00.000000000 +0000 @@ -1,5 +0,0 @@ -version=3 - -# -opts="uversionmangle=s/-(alpha|beta)/~$1/" \ - http://www.tagua-project.org/wiki/Download .*/tagua-(.*)\.tar\.gz diff -Nru tagua-1.0~alpha2/INSTALL tagua-1.0~alpha2-16-g618c6a0/INSTALL --- tagua-1.0~alpha2/INSTALL 2008-04-03 19:56:52.000000000 +0000 +++ tagua-1.0~alpha2-16-g618c6a0/INSTALL 2017-09-30 20:37:27.000000000 +0000 @@ -1,7 +1,10 @@ What you need ================== - * A KDE4 development environment with kdelibs and libkdegames (>= KDE 3.92) + * Qt5::Core, Qt5::Widgets, Qt5::Svg + * cmake 2.8.12 or later + * extra-cmake-modules + * KF5::KDELibs4Support, KF5::KDEGames * boost 1.34 (headers will suffice) Further you will need GNU make, a working C++ compiler (e.g. gcc 3.4.x or later) @@ -35,4 +38,3 @@ If you want tagua to be linked to system lua instead that the internall one, add -DSYSTEM_LUA=1 to the command line, and optionally add -DLUA_PKG=xyz to specify the pkg-config lua package. - diff -Nru tagua-1.0~alpha2/src/CMakeLists.txt tagua-1.0~alpha2-16-g618c6a0/src/CMakeLists.txt --- tagua-1.0~alpha2/src/CMakeLists.txt 2017-11-04 14:54:52.000000000 +0000 +++ tagua-1.0~alpha2-16-g618c6a0/src/CMakeLists.txt 2017-09-30 20:37:27.000000000 +0000 @@ -120,7 +120,7 @@ set_source_files_properties(icsconnection.cpp PROPERTIES COMPILE_FLAGS -Wno-extra) -kde4_add_ui_files(tagua_SRC +ki18n_wrap_ui(tagua_SRC ui/pref_highlight.ui ui/newgamedialog.ui ui/pref_engines.ui @@ -134,12 +134,21 @@ ) include_directories( - ${KDE4_INCLUDES} + ${Qt5Core_INCLUDE_DIRS} + ${Qt5Widgets_INCLUDE_DIRS} + ${Qt5Svg_INCLUDE_DIRS} + ${KDELibs4Support_INCLUDE_DIRS} + + #${KDEGAMES_INCLUDE_DIRS} + /usr/include/KF5/KF5KDEGames /usr/include/KF5/KF5KDEGames/KDE + ${LUA_INCLUDE_DIRS} ${Boost_INCLUDE_DIRS} - ${BLITZ_INCLUDES} + #${BLITZ_INCLUDES} ${CMAKE_CURRENT_BINARY_DIR} - /usr/include/libkdegamesprivate/ + + #${KDEGAMES_INCLUDE_DIR}/libkdegamesprivate + /usr/include/KF5/KF5KDEGames/libkdegamesprivate ) add_definitions( @@ -170,11 +179,11 @@ if(DEBUG_BUILD) set(TAGUA_TARGET taguaprivate) - kde4_add_library(taguaprivate SHARED ${tagua_SRC}) - kde4_add_executable(tagua main.cpp) + add_library(taguaprivate SHARED ${tagua_SRC}) + add_executable(tagua main.cpp) else(DEBUG_BUILD) set(TAGUA_TARGET tagua) - kde4_add_executable(tagua main.cpp ${tagua_SRC}) + add_executable(tagua main.cpp ${tagua_SRC}) endif(DEBUG_BUILD) @@ -185,12 +194,13 @@ ) target_link_libraries(${TAGUA_TARGET} ${LUA_LDFLAGS} - ${KDE4_KDEUI_LIBS} ${KDE4_KIO_LIBS} - ${BLITZ_LIBRARIES} + #${BLITZ_LIBRARIES} dl - kdegames - kdegamesprivate + KF5KDEGames + KF5KDEGamesPrivate + KF5KDELibs4Support + Qt5Svg ) if(DEBUG_BUILD) @@ -201,4 +211,4 @@ INSTALL(TARGETS tagua DESTINATION ${CMAKE_INSTALL_PREFIX}/bin) install(FILES tagua.desktop DESTINATION ${XDG_APPS_INSTALL_DIR}) -install(FILES taguaui.rc DESTINATION ${DATA_INSTALL_DIR}/tagua) +install(FILES taguaui.rc DESTINATION ${KXMLGUI_INSTALL_DIR}/tagua) diff -Nru tagua-1.0~alpha2/src/export.h tagua-1.0~alpha2-16-g618c6a0/src/export.h --- tagua-1.0~alpha2/src/export.h 2008-04-03 19:56:52.000000000 +0000 +++ tagua-1.0~alpha2-16-g618c6a0/src/export.h 2017-09-30 20:37:27.000000000 +0000 @@ -14,11 +14,7 @@ #include #ifdef TAGUA_DEBUG - #ifdef MAKE_TAGUAPRIVATE_LIB - #define TAGUA_EXPORT KDE_EXPORT - #else - #define TAGUA_EXPORT KDE_IMPORT - #endif // MAKE_TAGUAPRIVATE_LIB + #define TAGUA_EXPORT __attribute__ ((visibility("default"))) #else // TAGUA_DEBUG #define TAGUA_EXPORT #endif // TAGUA_DEBUG diff -Nru tagua-1.0~alpha2/src/hlvariant/tagua_wrapped.h tagua-1.0~alpha2-16-g618c6a0/src/hlvariant/tagua_wrapped.h --- tagua-1.0~alpha2/src/hlvariant/tagua_wrapped.h 2017-11-04 14:54:52.000000000 +0000 +++ tagua-1.0~alpha2-16-g618c6a0/src/hlvariant/tagua_wrapped.h 2017-09-30 20:37:27.000000000 +0000 @@ -23,10 +23,11 @@ #define __FUNC__ __FUNCTION__ #endif -#define MISMATCH(x,y) do { kDebug() << " --> Error in "<<__FUNC__<<", MISMATCH!" \ +#define MISMATCH(x,y) do { kDebug() << " --> Error in "<<__FUNC__<<", MISMATCH!" \ << " got type " << prettyTypeName(typeid(x).name()) \ << " instead of " << prettyTypeName(typeid(y).name()) \ - << " this is " << prettyTypeName(typeid(*this).name()); } while (0) + << " this is " << prettyTypeName(typeid(*this).name()); \ + } while(0) #define DEFINE_VARIANT_FACTORY() \ VariantFactory* createFactory() { \ diff -Nru tagua-1.0~alpha2/src/imageeffects.cpp tagua-1.0~alpha2-16-g618c6a0/src/imageeffects.cpp --- tagua-1.0~alpha2/src/imageeffects.cpp 2008-04-03 19:56:52.000000000 +0000 +++ tagua-1.0~alpha2-16-g618c6a0/src/imageeffects.cpp 2017-09-30 20:37:27.000000000 +0000 @@ -13,7 +13,7 @@ #include #include -#include +//#include #include "imageeffects.h" template @@ -151,20 +151,26 @@ void expBlur(QImage& img, int radius) { -//KCPUInfo:: returns false on x86_64, and x86_64 always have sse/mmx -#ifdef HAVE_X86_SSE2 - #ifndef __x86_64__ - if(BlitzCPUInfo::haveExtension( BlitzCPUInfo::SSE2 ) ) - #endif //__x86_64__ - return expblur_sse(img, radius); -#endif //HAVE_X86_SSE2 - -#ifdef HAVE_X86_MMX - #ifndef __x86_64__ - if(BlitzCPUInfo::haveExtension( BlitzCPUInfo::MMX ) ) - #endif //__x86_64__ - return expblur_mmx(img, radius); -#endif //HAVE_X86_MMX +#ifdef __x86_64__ + return expblur_sse(img, radius); +#endif + +// FIXME: we need another way to tell what is supported! + +// //KCPUInfo:: returns false on x86_64, and x86_64 always have sse/mmx +// #ifdef HAVE_X86_SSE2 +// #ifndef __x86_64__ +// if(BlitzCPUInfo::haveExtension( BlitzCPUInfo::SSE2 ) ) +// #endif //__x86_64__ +// return expblur_sse(img, radius); +// #endif //HAVE_X86_SSE2 +// +// #ifdef HAVE_X86_MMX +// #ifndef __x86_64__ +// if(BlitzCPUInfo::haveExtension( BlitzCPUInfo::MMX ) ) +// #endif //__x86_64__ +// return expblur_mmx(img, radius); +// #endif //HAVE_X86_MMX return expblur<15,7>(img, radius); } diff -Nru tagua-1.0~alpha2/src/luaapi/luahl.cpp tagua-1.0~alpha2-16-g618c6a0/src/luaapi/luahl.cpp --- tagua-1.0~alpha2/src/luaapi/luahl.cpp 2008-04-03 19:56:52.000000000 +0000 +++ tagua-1.0~alpha2-16-g618c6a0/src/luaapi/luahl.cpp 2017-09-30 20:37:27.000000000 +0000 @@ -317,7 +317,7 @@ // ref lua_newtable(m_state); - const int n = pattern.numCaptures(); + const int n = pattern.captureCount(); for (int i = 1; i <= n; i++) { int pos = pattern.pos(i); lua_pushnumber(m_state, i); diff -Nru tagua-1.0~alpha2/src/main.cpp tagua-1.0~alpha2-16-g618c6a0/src/main.cpp --- tagua-1.0~alpha2/src/main.cpp 2008-04-03 19:56:52.000000000 +0000 +++ tagua-1.0~alpha2-16-g618c6a0/src/main.cpp 2017-09-30 20:37:27.000000000 +0000 @@ -8,14 +8,13 @@ (at your option) any later version. */ -#include -#include -#include +#include +#include +#include #include -#include +#include #include #include -#include #include "mainwindow.h" #include "crash.h" @@ -32,8 +31,8 @@ } int main(int argc, char **argv) { - KAboutData about( "tagua", 0, ki18n("Tagua"), - version, ki18n(description), KAboutData::License_GPL, + K4AboutData about( "tagua", 0, ki18n("Tagua"), + version, ki18n(description), K4AboutData::License_GPL, ki18n("(C) 2006 Paolo Capriotti, Maurizio Monge") ); about.addAuthor(ki18n("Paolo Capriotti"), KLocalizedString(), "p.capriotti@gmail.com"); about.addAuthor(ki18n("Maurizio Monge"), KLocalizedString(), "p.capriotti@gmail.com"); diff -Nru tagua-1.0~alpha2/src/movelist.cpp tagua-1.0~alpha2-16-g618c6a0/src/movelist.cpp --- tagua-1.0~alpha2/src/movelist.cpp 2017-11-04 14:54:52.000000000 +0000 +++ tagua-1.0~alpha2-16-g618c6a0/src/movelist.cpp 2017-09-30 20:37:27.000000000 +0000 @@ -22,6 +22,7 @@ #include #include #include +#include #include "movelist_widget.h" #include "movelist_table.h" diff -Nru tagua-1.0~alpha2/src/pref_engines.cpp tagua-1.0~alpha2-16-g618c6a0/src/pref_engines.cpp --- tagua-1.0~alpha2/src/pref_engines.cpp 2008-04-03 19:56:52.000000000 +0000 +++ tagua-1.0~alpha2-16-g618c6a0/src/pref_engines.cpp 2017-09-30 20:37:27.000000000 +0000 @@ -16,6 +16,7 @@ #include #include #include +#include #include "foreach.h" #include "mastersettings.h" diff -Nru tagua-1.0~alpha2/src/pref_theme.cpp tagua-1.0~alpha2-16-g618c6a0/src/pref_theme.cpp --- tagua-1.0~alpha2/src/pref_theme.cpp 2008-04-03 19:56:52.000000000 +0000 +++ tagua-1.0~alpha2-16-g618c6a0/src/pref_theme.cpp 2017-09-30 20:37:27.000000000 +0000 @@ -14,6 +14,8 @@ #include #include #include +#include +#include #include "foreach.h" #include "mastersettings.h" diff -Nru tagua-1.0~alpha2/src/qconnect.cpp tagua-1.0~alpha2-16-g618c6a0/src/qconnect.cpp --- tagua-1.0~alpha2/src/qconnect.cpp 2008-04-03 19:56:52.000000000 +0000 +++ tagua-1.0~alpha2-16-g618c6a0/src/qconnect.cpp 2017-09-30 20:37:27.000000000 +0000 @@ -14,6 +14,7 @@ #include #include +#include #include #include "qconnect.h" diff -Nru tagua-1.0~alpha2/strip_font.rb tagua-1.0~alpha2-16-g618c6a0/strip_font.rb --- tagua-1.0~alpha2/strip_font.rb 2008-04-03 19:56:52.000000000 +0000 +++ tagua-1.0~alpha2-16-g618c6a0/strip_font.rb 2017-09-30 20:37:27.000000000 +0000 @@ -1,5 +1,11 @@ #!/usr/bin/ruby +# +# Run as: +# ./strip_font.rb -n 'ArphicUkaiSubsetForTagua' -i /usr/share/fonts/truetype/arphic/ukai.ttf \ +# -o data/themes/figurines/ShogiTTF/arphic-ukai.ttf $(find data/ -ipath '*shogi*.lua') +# + require 'optparse' require 'set' @@ -25,21 +31,25 @@ File.open(file) do |f| content = f.read content.scan(/(["'])0x([0-9a-fA-F]{4})\1/).each do |match| - print(match.inspect+"\n") + #print(match.inspect+"\n") selection.add "SelectMore(0u"+match[1]+");" end end end a = %{ - Open("#{input_file}"); +Open("#{input_file}"); #{selection.to_a.join("\n")} - SelectInvert(); - DetachAndRemoveGlyphs(); - SetFontNames("#{font_name}", "#{font_name}", "#{font_name}"); - SetUniqueID(0); - Generate("#{output_file}"); +SelectInvert(); +DetachAndRemoveGlyphs(); +SetFontNames("#{font_name}", "#{font_name}", "#{font_name}"); +SetUniqueID(0); +Generate("#{output_file}"); } -system("echo -en #{a.inspect} | fontforge -c") +# FIXME: find a better way to workaround this command which does not work any more +#system("echo -en #{a.inspect} | fontforge -c") +system("echo -en #{a.inspect} >ff-script.pe") +system("fontforge -script ff-script.pe") +script("rm ff-script.pe") diff -Nru tagua-1.0~alpha2/tagua.pot tagua-1.0~alpha2-16-g618c6a0/tagua.pot --- tagua-1.0~alpha2/tagua.pot 2017-11-04 14:54:52.000000000 +0000 +++ tagua-1.0~alpha2-16-g618c6a0/tagua.pot 2017-09-30 20:37:27.000000000 +0000 @@ -8,11 +8,10 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: http://trac.tagua-project.org\n" -"POT-Creation-Date: 2016-07-07 00:26+0200\n" +"POT-Creation-Date: 2008-02-26 23:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" @@ -77,83 +76,79 @@ msgid "Initial variant" msgstr "" -#: mainwindow.cpp:77 +#: mainwindow.cpp:79 msgid "Move list" msgstr "" -#: mainwindow.cpp:87 +#: mainwindow.cpp:89 msgid "FICS Connection" msgstr "" -#: mainwindow.cpp:90 +#: mainwindow.cpp:92 msgid "Console" msgstr "" -#: mainwindow.cpp:131 +#: mainwindow.cpp:129 msgid "E&ngines" msgstr "" -#: mainwindow.cpp:145 +#: mainwindow.cpp:143 msgid "Play as &white" msgstr "" -#: mainwindow.cpp:151 +#: mainwindow.cpp:149 msgid "Play as &black" msgstr "" -#: mainwindow.cpp:158 +#: mainwindow.cpp:156 msgid "&Analyze" msgstr "" -#: mainwindow.cpp:177 +#: mainwindow.cpp:175 msgid "&Back" msgstr "" -#: mainwindow.cpp:178 +#: mainwindow.cpp:176 msgid "&Forward" msgstr "" -#: mainwindow.cpp:179 +#: mainwindow.cpp:177 msgid "Be&gin" msgstr "" -#: mainwindow.cpp:180 +#: mainwindow.cpp:178 msgid "&End" msgstr "" -#: mainwindow.cpp:181 +#: mainwindow.cpp:179 msgid "&Connect" msgstr "" -#: mainwindow.cpp:183 +#: mainwindow.cpp:181 msgid "&Disconnect" msgstr "" -#. i18n("Copy PGN"), this, SLOT(pgnCopy())); -#. installRegularAction("pgnPaste", KIcon("edit-paste"), i18n("Paste PGN"), this, SLOT(pgnPaste())); -#: mainwindow.cpp:190 +#: mainwindow.cpp:188 msgid "&Edit position" msgstr "" -#: mainwindow.cpp:191 +#: mainwindow.cpp:189 msgid "&Clear board" msgstr "" -#: mainwindow.cpp:192 +#: mainwindow.cpp:190 msgid "&Set starting position" msgstr "" -#. i18n("&Copy position"), &ui(), SLOT(copyPosition())); -#. installRegularAction("pastePosition", KIcon(), i18n("&Paste position"), &ui(), SLOT(pastePosition())); -#: mainwindow.cpp:196 +#: mainwindow.cpp:194 msgid "&Flip view" msgstr "" -#: mainwindow.cpp:198 +#: mainwindow.cpp:196 msgid "Toggle &console" msgstr "" -#: mainwindow.cpp:199 +#: mainwindow.cpp:197 msgid "Toggle &move list" msgstr "" @@ -234,20 +229,20 @@ msgid "&Name:" msgstr "" -#. i18n: file: ui/pref_engines.ui:136 -#. i18n: ectx: property (text), widget (QLabel, label_2) +#. i18n: tag string +#. i18n: file ./ui/pref_engines.ui line 136 #: pref_engines.cpp:47 extractedrc.cpp:131 msgid "&Type:" msgstr "" -#. i18n: file: ui/pref_engines.ui:147 -#. i18n: ectx: property (text), item, widget (QComboBox, m_type) +#. i18n: tag string +#. i18n: file ./ui/pref_engines.ui line 147 #: pref_engines.cpp:52 extractedrc.cpp:134 msgid "XBoard" msgstr "" -#. i18n: file: ui/pref_engines.ui:152 -#. i18n: ectx: property (text), item, widget (QComboBox, m_type) +#. i18n: tag string +#. i18n: file ./ui/pref_engines.ui line 152 #: pref_engines.cpp:53 extractedrc.cpp:137 msgid "UCI" msgstr "" @@ -264,8 +259,8 @@ msgid "GNU Shogi" msgstr "" -#. i18n: file: ui/pref_engines.ui:113 -#. i18n: ectx: property (text), widget (QLabel, label) +#. i18n: tag string +#. i18n: file ./ui/pref_engines.ui line 113 #: pref_engines.cpp:61 extractedrc.cpp:128 msgid "&Path:" msgstr "" @@ -310,490 +305,490 @@ msgid "Close the current tab" msgstr "" -#. i18n: file: taguaui.rc:15 -#. i18n: ectx: Menu (edit) +#. i18n: tag Text +#. i18n: file ./taguaui.rc line 15 #: extractedrc.cpp:3 msgid "&Edit" msgstr "" -#. i18n: file: taguaui.rc:24 -#. i18n: ectx: Menu (gameMenu) +#. i18n: tag text +#. i18n: file ./taguaui.rc line 24 #: extractedrc.cpp:6 msgid "&Game" msgstr "" -#. i18n: file: taguaui.rc:33 -#. i18n: ectx: Menu (viewMenu) +#. i18n: tag text +#. i18n: file ./taguaui.rc line 33 #: extractedrc.cpp:9 msgid "&View" msgstr "" -#. i18n: file: taguaui.rc:47 -#. i18n: ectx: ToolBar (gameToolbar) +#. i18n: tag text +#. i18n: file ./taguaui.rc line 47 #: extractedrc.cpp:12 msgid "Game Toolbar" msgstr "" -#. i18n: file: ui/gametags.ui:13 -#. i18n: ectx: property (windowTitle), widget (QWidget, Form) -#. i18n: file: ui/pref_board.ui:13 -#. i18n: ectx: property (windowTitle), widget (QWidget, PrefBoard) -#. i18n: file: ui/pref_movelist.ui:13 -#. i18n: ectx: property (windowTitle), widget (QWidget, PrefMoveList) +#. i18n: tag string +#. i18n: file ./ui/gametags.ui line 13 +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 13 +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 13 #: extractedrc.cpp:15 extractedrc.cpp:63 extractedrc.cpp:182 msgid "Form" msgstr "" -#. i18n: file: ui/gametags.ui:25 -#. i18n: ectx: property (text), widget (QLabel, label_12) +#. i18n: tag string +#. i18n: file ./ui/gametags.ui line 25 #: extractedrc.cpp:18 msgid "Round:" msgstr "" -#. i18n: file: ui/gametags.ui:35 -#. i18n: ectx: property (text), widget (QLabel, label_7) +#. i18n: tag string +#. i18n: file ./ui/gametags.ui line 35 #: extractedrc.cpp:21 msgid "Time:" msgstr "" -#. i18n: file: ui/gametags.ui:54 -#. i18n: ectx: property (text), widget (QLabel, label_11) +#. i18n: tag string +#. i18n: file ./ui/gametags.ui line 54 #: extractedrc.cpp:24 msgid "Result:" msgstr "" -#. i18n: file: ui/gametags.ui:61 -#. i18n: ectx: property (text), widget (QLabel, label_9) +#. i18n: tag string +#. i18n: file ./ui/gametags.ui line 61 #: extractedrc.cpp:27 msgid "Increment:" msgstr "" -#. i18n: file: ui/gametags.ui:71 -#. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: tag string +#. i18n: file ./ui/gametags.ui line 71 #: extractedrc.cpp:30 msgid "Site:" msgstr "" -#. i18n: file: ui/gametags.ui:78 -#. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: tag string +#. i18n: file ./ui/gametags.ui line 78 #: extractedrc.cpp:33 msgid "Black rating:" msgstr "" -#. i18n: file: ui/gametags.ui:85 -#. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: tag string +#. i18n: file ./ui/gametags.ui line 85 #: extractedrc.cpp:36 msgid "Event:" msgstr "" -#. i18n: file: ui/gametags.ui:92 -#. i18n: ectx: property (text), widget (QLabel, label_2) +#. i18n: tag string +#. i18n: file ./ui/gametags.ui line 92 #: extractedrc.cpp:39 msgid "Black:" msgstr "" -#. i18n: file: ui/gametags.ui:99 -#. i18n: ectx: property (text), widget (QLabel, label) +#. i18n: tag string +#. i18n: file ./ui/gametags.ui line 99 #: extractedrc.cpp:42 msgid "White:" msgstr "" -#. i18n: file: ui/gametags.ui:121 -#. i18n: ectx: property (text), widget (QLabel, label_4) +#. i18n: tag string +#. i18n: file ./ui/gametags.ui line 121 #: extractedrc.cpp:45 msgid "Date:" msgstr "" -#. i18n: file: ui/gametags.ui:131 -#. i18n: ectx: property (text), widget (QLabel, label_5) +#. i18n: tag string +#. i18n: file ./ui/gametags.ui line 131 #: extractedrc.cpp:48 msgid "White rating:" msgstr "" -#. i18n: file: ui/gametags.ui:138 -#. i18n: ectx: property (text), widget (QLabel, label_10) +#. i18n: tag string +#. i18n: file ./ui/gametags.ui line 138 #: extractedrc.cpp:51 msgid "ECO:" msgstr "" -#. i18n: file: ui/newgamedialog.ui:13 -#. i18n: ectx: property (windowTitle), widget (QDialog, NewGameDialog) +#. i18n: tag string +#. i18n: file ./ui/newgamedialog.ui line 13 #: extractedrc.cpp:54 msgid "New game" msgstr "" -#. i18n: file: ui/newgamedialog.ui:39 -#. i18n: ectx: property (text), widget (QLabel, textLabel_1) -#. i18n: file: ui/pref_theme.ui:48 -#. i18n: ectx: property (text), widget (QLabel, label_1) +#. i18n: tag string +#. i18n: file ./ui/newgamedialog.ui line 39 +#. i18n: tag string +#. i18n: file ./ui/pref_theme.ui line 48 #: extractedrc.cpp:57 extractedrc.cpp:232 msgid "&Variant:" msgstr "" -#. i18n: file: ui/newgamedialog.ui:74 -#. i18n: ectx: property (text), widget (QCheckBox, m_new_tab) +#. i18n: tag string +#. i18n: file ./ui/newgamedialog.ui line 74 #: extractedrc.cpp:60 msgid "Create in new &tab" msgstr "" -#. i18n: file: ui/pref_board.ui:36 -#. i18n: ectx: property (title), widget (QGroupBox, groupAnimations) -#. i18n: file: ui/pref_movelist.ui:36 -#. i18n: ectx: property (title), widget (QGroupBox, groupAnimations) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 36 +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 36 #: extractedrc.cpp:66 extractedrc.cpp:185 msgid "&Animations" msgstr "" -#. i18n: file: ui/pref_board.ui:51 -#. i18n: ectx: property (text), widget (QCheckBox, checkTransformations) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 51 #: extractedrc.cpp:69 msgid "&Transformations" msgstr "" -#. i18n: file: ui/pref_board.ui:58 -#. i18n: ectx: property (text), widget (QCheckBox, checkExplosions) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 58 #: extractedrc.cpp:72 msgid "&Explosions" msgstr "" -#. i18n: file: ui/pref_board.ui:65 -#. i18n: ectx: property (text), widget (QCheckBox, checkMovements) -#. i18n: file: ui/pref_movelist.ui:158 -#. i18n: ectx: property (text), widget (QCheckBox, checkMovements) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 65 +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 158 #: extractedrc.cpp:75 extractedrc.cpp:205 msgid "&Movements" msgstr "" -#. i18n: file: ui/pref_board.ui:72 -#. i18n: ectx: property (text), widget (QCheckBox, checkFading) -#. i18n: file: ui/pref_movelist.ui:165 -#. i18n: ectx: property (text), widget (QCheckBox, checkFading) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 72 +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 165 #: extractedrc.cpp:78 extractedrc.cpp:208 msgid "&Fading" msgstr "" -#. i18n: file: ui/pref_board.ui:88 -#. i18n: ectx: property (text), widget (QLabel, label_6) -#. i18n: file: ui/pref_movelist.ui:60 -#. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 88 +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 60 #: extractedrc.cpp:81 extractedrc.cpp:188 msgid "" "Rough\n" "(little CPU usage)" msgstr "" -#. i18n: file: ui/pref_board.ui:115 -#. i18n: ectx: property (text), widget (QLabel, label_7) -#. i18n: file: ui/pref_movelist.ui:87 -#. i18n: ectx: property (text), widget (QLabel, label_7) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 115 +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 87 #: extractedrc.cpp:85 extractedrc.cpp:192 msgid "" "Smooth\n" "(high CPU usage)" msgstr "" -#. i18n: file: ui/pref_board.ui:130 -#. i18n: ectx: property (text), widget (QLabel, label_8) -#. i18n: file: ui/pref_movelist.ui:179 -#. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 130 +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 179 #: extractedrc.cpp:89 extractedrc.cpp:214 msgid "Animation s&moothness:" msgstr "" -#. i18n: file: ui/pref_board.ui:151 -#. i18n: ectx: property (text), widget (QLabel, label_2) -#. i18n: file: ui/pref_movelist.ui:123 -#. i18n: ectx: property (text), widget (QLabel, label) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 151 +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 123 #: extractedrc.cpp:92 extractedrc.cpp:199 msgid "Slow" msgstr "" -#. i18n: file: ui/pref_board.ui:177 -#. i18n: ectx: property (text), widget (QLabel, label_4) -#. i18n: file: ui/pref_movelist.ui:146 -#. i18n: ectx: property (text), widget (QLabel, label_2) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 177 +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 146 #: extractedrc.cpp:95 extractedrc.cpp:202 msgid "Fast" msgstr "" -#. i18n: file: ui/pref_board.ui:189 -#. i18n: ectx: property (text), widget (QLabel, label_3) -#. i18n: file: ui/pref_movelist.ui:102 -#. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 189 +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 102 #: extractedrc.cpp:98 extractedrc.cpp:196 msgid "Animation s&peed:" msgstr "" -#. i18n: file: ui/pref_board.ui:231 -#. i18n: ectx: property (text), widget (QLabel, label_9) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 231 #: extractedrc.cpp:101 msgid "&Max sequence length:" msgstr "" -#. i18n: file: ui/pref_board.ui:253 -#. i18n: ectx: property (text), widget (QCheckBox, checkSequence) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 253 #: extractedrc.cpp:104 msgid "Animate move &sequences" msgstr "" -#. i18n: file: ui/pref_board.ui:277 -#. i18n: ectx: property (title), widget (QGroupBox, groupBorder) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 277 #: extractedrc.cpp:107 msgid "&Border" msgstr "" -#. i18n: file: ui/pref_board.ui:292 -#. i18n: ectx: property (text), widget (QLabel, label) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 292 #: extractedrc.cpp:110 msgid "&Color" msgstr "" -#. i18n: file: ui/pref_board.ui:302 -#. i18n: ectx: property (text), widget (QLabel, label_5) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 302 #: extractedrc.cpp:113 msgid "&Text Color" msgstr "" -#. i18n: file: ui/pref_board.ui:320 -#. i18n: ectx: property (text), widget (QCheckBox, checkBorderFont) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 320 #: extractedrc.cpp:116 msgid "Custom &font:" msgstr "" -#. i18n: file: ui/pref_engines.ui:13 -#. i18n: ectx: property (windowTitle), widget (QWidget, PrefEngines) +#. i18n: tag string +#. i18n: file ./ui/pref_engines.ui line 13 #: extractedrc.cpp:119 msgid "Engines" msgstr "" -#. i18n: file: ui/pref_engines.ui:25 -#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) +#. i18n: tag string +#. i18n: file ./ui/pref_engines.ui line 25 #: extractedrc.cpp:122 msgid "Engine list" msgstr "" -#. i18n: file: ui/pref_engines.ui:93 -#. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: tag string +#. i18n: file ./ui/pref_engines.ui line 93 #: extractedrc.cpp:125 msgid "Engine properties" msgstr "" -#. i18n: file: ui/pref_engines.ui:157 -#. i18n: ectx: property (text), item, widget (QComboBox, m_type) +#. i18n: tag string +#. i18n: file ./ui/pref_engines.ui line 157 #: extractedrc.cpp:140 msgid "Tagua (text)" msgstr "" -#. i18n: file: ui/pref_engines.ui:162 -#. i18n: ectx: property (text), item, widget (QComboBox, m_type) +#. i18n: tag string +#. i18n: file ./ui/pref_engines.ui line 162 #: extractedrc.cpp:143 msgid "Tagua (D-BUS)" msgstr "" -#. i18n: file: ui/pref_engines.ui:180 -#. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: tag string +#. i18n: file ./ui/pref_engines.ui line 180 #: extractedrc.cpp:146 msgid "&Work dir:" msgstr "" -#. i18n: file: ui/pref_highlight.ui:13 -#. i18n: ectx: property (windowTitle), widget (QDialog, PrefHighlight) +#. i18n: tag string +#. i18n: file ./ui/pref_highlight.ui line 13 #: extractedrc.cpp:149 msgid "Dialog" msgstr "" -#. i18n: file: ui/pref_highlight.ui:47 -#. i18n: ectx: property (text), widget (QLabel, label) +#. i18n: tag string +#. i18n: file ./ui/pref_highlight.ui line 47 #: extractedrc.cpp:152 msgid "Pattern" msgstr "" -#. i18n: file: ui/pref_highlight.ui:75 -#. i18n: ectx: property (text), widget (QCheckBox, m_bold) +#. i18n: tag string +#. i18n: file ./ui/pref_highlight.ui line 75 #: extractedrc.cpp:155 msgid "Bold" msgstr "" -#. i18n: file: ui/pref_highlight.ui:82 -#. i18n: ectx: property (text), widget (QCheckBox, m_italic) +#. i18n: tag string +#. i18n: file ./ui/pref_highlight.ui line 82 #: extractedrc.cpp:158 msgid "Italic" msgstr "" -#. i18n: file: ui/pref_highlight.ui:148 -#. i18n: ectx: property (text), widget (QLabel, label2) +#. i18n: tag string +#. i18n: file ./ui/pref_highlight.ui line 148 #: extractedrc.cpp:161 msgid "Use this box to test your regular expression" msgstr "" -#. i18n: file: ui/pref_highlight.ui:186 -#. i18n: ectx: property (text), widget (QPushButton, m_add) +#. i18n: tag string +#. i18n: file ./ui/pref_highlight.ui line 186 #: extractedrc.cpp:164 msgid "Add" msgstr "" -#. i18n: file: ui/pref_highlight.ui:193 -#. i18n: ectx: property (text), widget (QPushButton, m_delete) +#. i18n: tag string +#. i18n: file ./ui/pref_highlight.ui line 193 #: extractedrc.cpp:167 msgid "Remove" msgstr "" -#. i18n: file: ui/pref_highlight.ui:223 -#. i18n: ectx: property (text), widget (QPushButton, m_up) +#. i18n: tag string +#. i18n: file ./ui/pref_highlight.ui line 223 #: extractedrc.cpp:170 msgid "Up" msgstr "" -#. i18n: file: ui/pref_highlight.ui:230 -#. i18n: ectx: property (text), widget (QPushButton, m_down) +#. i18n: tag string +#. i18n: file ./ui/pref_highlight.ui line 230 #: extractedrc.cpp:173 msgid "Down" msgstr "" -#. i18n: file: ui/pref_highlight.ui:266 -#. i18n: ectx: property (text), widget (QPushButton, m_ok) +#. i18n: tag string +#. i18n: file ./ui/pref_highlight.ui line 266 #: extractedrc.cpp:176 msgid "OK" msgstr "" -#. i18n: file: ui/pref_highlight.ui:273 -#. i18n: ectx: property (text), widget (QPushButton, m_cancel) +#. i18n: tag string +#. i18n: file ./ui/pref_highlight.ui line 273 #: extractedrc.cpp:179 msgid "Cancel" msgstr "" -#. i18n: file: ui/pref_movelist.ui:172 -#. i18n: ectx: property (text), widget (QCheckBox, checkHighlighting) +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 172 #: extractedrc.cpp:211 msgid "&Smooth highlighting" msgstr "" -#. i18n: file: ui/pref_movelist.ui:203 -#. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 203 #: extractedrc.cpp:217 msgid "&Colors and fonts" msgstr "" -#. i18n: file: ui/pref_movelist.ui:215 -#. i18n: ectx: property (text), widget (QLabel, label_5) +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 215 #: extractedrc.cpp:220 msgid "C&omments color:" msgstr "" -#. i18n: file: ui/pref_movelist.ui:233 -#. i18n: ectx: property (text), widget (QCheckBox, checkCommentsFont) +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 233 #: extractedrc.cpp:223 msgid "Cus&tom comments font:" msgstr "" -#. i18n: file: ui/pref_movelist.ui:243 -#. i18n: ectx: property (text), widget (QCheckBox, checkMovesFont) +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 243 #: extractedrc.cpp:226 msgid "C&ustom moves font:" msgstr "" -#. i18n: file: ui/pref_movelist.ui:253 -#. i18n: ectx: property (text), widget (QLabel, label_4) +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 253 #: extractedrc.cpp:229 msgid "S&elected move color:" msgstr "" -#. i18n: file: ui/pref_theme_page.ui:31 -#. i18n: ectx: property (text), widget (QToolButton, m_resetButton) -#. i18n: file: ui/quickconnect.ui:149 -#. i18n: ectx: property (text), widget (QToolButton, buttonTimesealPath) +#. i18n: tag string +#. i18n: file ./ui/pref_theme_page.ui line 31 +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 149 #: extractedrc.cpp:235 extractedrc.cpp:271 msgid "..." msgstr "" -#. i18n: file: ui/preferences.ui:13 -#. i18n: ectx: property (windowTitle), widget (QDialog, Preferences) +#. i18n: tag string +#. i18n: file ./ui/preferences.ui line 13 #: extractedrc.cpp:238 msgid "Change Tagua Settings" msgstr "" -#. i18n: file: ui/quickconnect.ui:13 -#. i18n: ectx: property (windowTitle), widget (QDialog, QuickConnect) +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 13 #: extractedrc.cpp:241 msgid "Quick Connect" msgstr "" -#. i18n: file: ui/quickconnect.ui:28 -#. i18n: ectx: property (title), widget (QGroupBox, groupBox_1) +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 28 #: extractedrc.cpp:244 msgid "&Login" msgstr "" -#. i18n: file: ui/quickconnect.ui:47 -#. i18n: ectx: property (text), widget (QLabel, textLabel_2) +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 47 #: extractedrc.cpp:247 msgid "&Password:" msgstr "" -#. i18n: file: ui/quickconnect.ui:60 -#. i18n: ectx: property (text), widget (QLabel, textLabel_1) +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 60 #: extractedrc.cpp:250 msgid "&Username:" msgstr "" -#. i18n: file: ui/quickconnect.ui:70 -#. i18n: ectx: property (text), widget (QCheckBox, chkStore) +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 70 #: extractedrc.cpp:253 msgid "&Store password on this computer" msgstr "" -#. i18n: file: ui/quickconnect.ui:73 -#. i18n: ectx: property (shortcut), widget (QCheckBox, chkStore) -#. i18n: file: ui/quickconnect.ui:182 -#. i18n: ectx: property (shortcut), widget (QCheckBox, chkTimesealCmd) +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 73 +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 182 #: extractedrc.cpp:256 extractedrc.cpp:280 msgid "Alt+S" msgstr "" -#. i18n: file: ui/quickconnect.ui:83 -#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 83 #: extractedrc.cpp:259 msgid "Ser&ver:" msgstr "" -#. i18n: file: ui/quickconnect.ui:98 -#. i18n: ectx: property (text), widget (QLabel, textLabel_4) +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 98 #: extractedrc.cpp:262 msgid "ICS p&ort:" msgstr "" -#. i18n: file: ui/quickconnect.ui:115 -#. i18n: ectx: property (text), widget (QLabel, textLabel_3) +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 115 #: extractedrc.cpp:265 msgid "ICS &host:" msgstr "" -#. i18n: file: ui/quickconnect.ui:131 -#. i18n: ectx: property (title), widget (QGroupBox, groupTimeseal) +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 131 #: extractedrc.cpp:268 msgid "&Timeseal" msgstr "" -#. i18n: file: ui/quickconnect.ui:159 -#. i18n: ectx: property (text), widget (QLabel, textLabel_5) +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 159 #: extractedrc.cpp:274 msgid "&File Path:" msgstr "" -#. i18n: file: ui/quickconnect.ui:179 -#. i18n: ectx: property (text), widget (QCheckBox, chkTimesealCmd) +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 179 #: extractedrc.cpp:277 msgid "Use &custom command line arguments" msgstr "" -#. i18n: file: ui/quickconnect.ui:232 -#. i18n: ectx: property (text), widget (QPushButton, buttonOk) +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 232 #: extractedrc.cpp:283 msgid "&OK" msgstr "" -#. i18n: file: ui/quickconnect.ui:248 -#. i18n: ectx: property (text), widget (QPushButton, buttonCancel) +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 248 #: extractedrc.cpp:286 msgid "&Cancel" msgstr "" diff -Nru tagua-1.0~alpha2/tests/settings/CMakeLists.txt tagua-1.0~alpha2-16-g618c6a0/tests/settings/CMakeLists.txt --- tagua-1.0~alpha2/tests/settings/CMakeLists.txt 2017-11-04 14:54:52.000000000 +0000 +++ tagua-1.0~alpha2-16-g618c6a0/tests/settings/CMakeLists.txt 2017-09-30 20:37:27.000000000 +0000 @@ -15,7 +15,7 @@ ${CMAKE_CURRENT_SOURCE_DIR}/${main_dir} ) -kde4_add_executable(settings_test ${settings_SRC}) +add_executable(settings_test ${settings_SRC}) target_link_libraries(settings_test ${KDE4_KDEUI_LIBS} ${CPPUNIT_LIBRARIES} ${QT_QTXML_LIBRARIES}) add_test(settings settings_test) diff -Nru tagua-1.0~alpha2/translations/cs.po tagua-1.0~alpha2-16-g618c6a0/translations/cs.po --- tagua-1.0~alpha2/translations/cs.po 2017-11-04 14:54:52.000000000 +0000 +++ tagua-1.0~alpha2-16-g618c6a0/translations/cs.po 2017-09-30 20:37:27.000000000 +0000 @@ -9,11 +9,10 @@ msgstr "" "Project-Id-Version: cs\n" "Report-Msgid-Bugs-To: http://trac.tagua-project.org\n" -"POT-Creation-Date: 2016-07-07 00:26+0200\n" +"POT-Creation-Date: 2008-02-26 23:43+0000\n" "PO-Revision-Date: 2007-11-29 18:54+0100\n" "Last-Translator: Karel Volný \n" "Language-Team: čeština \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -80,83 +79,79 @@ msgid "Initial variant" msgstr "původní varianta" -#: mainwindow.cpp:77 +#: mainwindow.cpp:79 msgid "Move list" msgstr "Seznam tahů" -#: mainwindow.cpp:87 +#: mainwindow.cpp:89 msgid "FICS Connection" msgstr "Připojení k FICS" -#: mainwindow.cpp:90 +#: mainwindow.cpp:92 msgid "Console" msgstr "Konsole" -#: mainwindow.cpp:131 +#: mainwindow.cpp:129 msgid "E&ngines" msgstr "&Programy" -#: mainwindow.cpp:145 +#: mainwindow.cpp:143 msgid "Play as &white" msgstr "Hrát za &bílého" -#: mainwindow.cpp:151 +#: mainwindow.cpp:149 msgid "Play as &black" msgstr "Hrát za &černého" -#: mainwindow.cpp:158 +#: mainwindow.cpp:156 msgid "&Analyze" msgstr "&Analyzovat" -#: mainwindow.cpp:177 +#: mainwindow.cpp:175 msgid "&Back" msgstr "&Zpět" -#: mainwindow.cpp:178 +#: mainwindow.cpp:176 msgid "&Forward" msgstr "&Vpřed" -#: mainwindow.cpp:179 +#: mainwindow.cpp:177 msgid "Be&gin" msgstr "Z&ačátek" -#: mainwindow.cpp:180 +#: mainwindow.cpp:178 msgid "&End" msgstr "&Konec" -#: mainwindow.cpp:181 +#: mainwindow.cpp:179 msgid "&Connect" msgstr "&Připojit" -#: mainwindow.cpp:183 +#: mainwindow.cpp:181 msgid "&Disconnect" msgstr "&Odpojit" -#. i18n("Copy PGN"), this, SLOT(pgnCopy())); -#. installRegularAction("pgnPaste", KIcon("edit-paste"), i18n("Paste PGN"), this, SLOT(pgnPaste())); -#: mainwindow.cpp:190 +#: mainwindow.cpp:188 msgid "&Edit position" msgstr "&Upravit posici" -#: mainwindow.cpp:191 +#: mainwindow.cpp:189 msgid "&Clear board" msgstr "&Vyčistit desku" -#: mainwindow.cpp:192 +#: mainwindow.cpp:190 msgid "&Set starting position" msgstr "&Nastavit počáteční posici" -#. i18n("&Copy position"), &ui(), SLOT(copyPosition())); -#. installRegularAction("pastePosition", KIcon(), i18n("&Paste position"), &ui(), SLOT(pastePosition())); -#: mainwindow.cpp:196 +#: mainwindow.cpp:194 msgid "&Flip view" msgstr "&Otočit desku" -#: mainwindow.cpp:198 +#: mainwindow.cpp:196 msgid "Toggle &console" msgstr "Přepnout &konsoli" -#: mainwindow.cpp:199 +#: mainwindow.cpp:197 msgid "Toggle &move list" msgstr "Přepnout &seznam tahů" @@ -238,20 +233,20 @@ msgid "&Name:" msgstr "&Jméno:" -#. i18n: file: ui/pref_engines.ui:136 -#. i18n: ectx: property (text), widget (QLabel, label_2) +#. i18n: tag string +#. i18n: file ./ui/pref_engines.ui line 136 #: pref_engines.cpp:47 extractedrc.cpp:131 msgid "&Type:" msgstr "&Typ:" -#. i18n: file: ui/pref_engines.ui:147 -#. i18n: ectx: property (text), item, widget (QComboBox, m_type) +#. i18n: tag string +#. i18n: file ./ui/pref_engines.ui line 147 #: pref_engines.cpp:52 extractedrc.cpp:134 msgid "XBoard" msgstr "XBoard" -#. i18n: file: ui/pref_engines.ui:152 -#. i18n: ectx: property (text), item, widget (QComboBox, m_type) +#. i18n: tag string +#. i18n: file ./ui/pref_engines.ui line 152 #: pref_engines.cpp:53 extractedrc.cpp:137 msgid "UCI" msgstr "UCI" @@ -268,8 +263,8 @@ msgid "GNU Shogi" msgstr "GNU Shogi" -#. i18n: file: ui/pref_engines.ui:113 -#. i18n: ectx: property (text), widget (QLabel, label) +#. i18n: tag string +#. i18n: file ./ui/pref_engines.ui line 113 #: pref_engines.cpp:61 extractedrc.cpp:128 msgid "&Path:" msgstr "&Cesta:" @@ -316,493 +311,493 @@ msgid "Close the current tab" msgstr "Zavřít současnou kartu" -#. i18n: file: taguaui.rc:15 -#. i18n: ectx: Menu (edit) +#. i18n: tag Text +#. i18n: file ./taguaui.rc line 15 #: extractedrc.cpp:3 #, fuzzy msgid "&Edit" msgstr "Ú&pravy" -#. i18n: file: taguaui.rc:24 -#. i18n: ectx: Menu (gameMenu) +#. i18n: tag text +#. i18n: file ./taguaui.rc line 24 #: extractedrc.cpp:6 msgid "&Game" msgstr "&Hra" -#. i18n: file: taguaui.rc:33 -#. i18n: ectx: Menu (viewMenu) +#. i18n: tag text +#. i18n: file ./taguaui.rc line 33 #: extractedrc.cpp:9 msgid "&View" msgstr "Po&hled" -#. i18n: file: taguaui.rc:47 -#. i18n: ectx: ToolBar (gameToolbar) +#. i18n: tag text +#. i18n: file ./taguaui.rc line 47 #: extractedrc.cpp:12 msgid "Game Toolbar" msgstr "Nástrojová lišta hry" -#. i18n: file: ui/gametags.ui:13 -#. i18n: ectx: property (windowTitle), widget (QWidget, Form) -#. i18n: file: ui/pref_board.ui:13 -#. i18n: ectx: property (windowTitle), widget (QWidget, PrefBoard) -#. i18n: file: ui/pref_movelist.ui:13 -#. i18n: ectx: property (windowTitle), widget (QWidget, PrefMoveList) +#. i18n: tag string +#. i18n: file ./ui/gametags.ui line 13 +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 13 +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 13 #: extractedrc.cpp:15 extractedrc.cpp:63 extractedrc.cpp:182 msgid "Form" msgstr "Formát" -#. i18n: file: ui/gametags.ui:25 -#. i18n: ectx: property (text), widget (QLabel, label_12) +#. i18n: tag string +#. i18n: file ./ui/gametags.ui line 25 #: extractedrc.cpp:18 msgid "Round:" msgstr "Kolo:" -#. i18n: file: ui/gametags.ui:35 -#. i18n: ectx: property (text), widget (QLabel, label_7) +#. i18n: tag string +#. i18n: file ./ui/gametags.ui line 35 #: extractedrc.cpp:21 msgid "Time:" msgstr "Čas:" -#. i18n: file: ui/gametags.ui:54 -#. i18n: ectx: property (text), widget (QLabel, label_11) +#. i18n: tag string +#. i18n: file ./ui/gametags.ui line 54 #: extractedrc.cpp:24 msgid "Result:" msgstr "Výsledek:" -#. i18n: file: ui/gametags.ui:61 -#. i18n: ectx: property (text), widget (QLabel, label_9) +#. i18n: tag string +#. i18n: file ./ui/gametags.ui line 61 #: extractedrc.cpp:27 msgid "Increment:" msgstr "Přírůstek:" -#. i18n: file: ui/gametags.ui:71 -#. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: tag string +#. i18n: file ./ui/gametags.ui line 71 #: extractedrc.cpp:30 msgid "Site:" msgstr "Místo:" -#. i18n: file: ui/gametags.ui:78 -#. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: tag string +#. i18n: file ./ui/gametags.ui line 78 #: extractedrc.cpp:33 msgid "Black rating:" msgstr "Hodnocení černého:" -#. i18n: file: ui/gametags.ui:85 -#. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: tag string +#. i18n: file ./ui/gametags.ui line 85 #: extractedrc.cpp:36 msgid "Event:" msgstr "Událost:" -#. i18n: file: ui/gametags.ui:92 -#. i18n: ectx: property (text), widget (QLabel, label_2) +#. i18n: tag string +#. i18n: file ./ui/gametags.ui line 92 #: extractedrc.cpp:39 msgid "Black:" msgstr "Černý:" -#. i18n: file: ui/gametags.ui:99 -#. i18n: ectx: property (text), widget (QLabel, label) +#. i18n: tag string +#. i18n: file ./ui/gametags.ui line 99 #: extractedrc.cpp:42 msgid "White:" msgstr "Bílý:" -#. i18n: file: ui/gametags.ui:121 -#. i18n: ectx: property (text), widget (QLabel, label_4) +#. i18n: tag string +#. i18n: file ./ui/gametags.ui line 121 #: extractedrc.cpp:45 msgid "Date:" msgstr "Datum:" -#. i18n: file: ui/gametags.ui:131 -#. i18n: ectx: property (text), widget (QLabel, label_5) +#. i18n: tag string +#. i18n: file ./ui/gametags.ui line 131 #: extractedrc.cpp:48 msgid "White rating:" msgstr "Hodnocení bílého:" -#. i18n: file: ui/gametags.ui:138 -#. i18n: ectx: property (text), widget (QLabel, label_10) +#. i18n: tag string +#. i18n: file ./ui/gametags.ui line 138 #: extractedrc.cpp:51 msgid "ECO:" msgstr "ECO:" -#. i18n: file: ui/newgamedialog.ui:13 -#. i18n: ectx: property (windowTitle), widget (QDialog, NewGameDialog) +#. i18n: tag string +#. i18n: file ./ui/newgamedialog.ui line 13 #: extractedrc.cpp:54 msgid "New game" msgstr "Nová hra" -#. i18n: file: ui/newgamedialog.ui:39 -#. i18n: ectx: property (text), widget (QLabel, textLabel_1) -#. i18n: file: ui/pref_theme.ui:48 -#. i18n: ectx: property (text), widget (QLabel, label_1) +#. i18n: tag string +#. i18n: file ./ui/newgamedialog.ui line 39 +#. i18n: tag string +#. i18n: file ./ui/pref_theme.ui line 48 #: extractedrc.cpp:57 extractedrc.cpp:232 msgid "&Variant:" msgstr "&Hra:" -#. i18n: file: ui/newgamedialog.ui:74 -#. i18n: ectx: property (text), widget (QCheckBox, m_new_tab) +#. i18n: tag string +#. i18n: file ./ui/newgamedialog.ui line 74 #: extractedrc.cpp:60 msgid "Create in new &tab" msgstr "Vytvořit v nové &kartě" -#. i18n: file: ui/pref_board.ui:36 -#. i18n: ectx: property (title), widget (QGroupBox, groupAnimations) -#. i18n: file: ui/pref_movelist.ui:36 -#. i18n: ectx: property (title), widget (QGroupBox, groupAnimations) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 36 +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 36 #: extractedrc.cpp:66 extractedrc.cpp:185 msgid "&Animations" msgstr "&Animace" -#. i18n: file: ui/pref_board.ui:51 -#. i18n: ectx: property (text), widget (QCheckBox, checkTransformations) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 51 #: extractedrc.cpp:69 msgid "&Transformations" msgstr "&Transformace" -#. i18n: file: ui/pref_board.ui:58 -#. i18n: ectx: property (text), widget (QCheckBox, checkExplosions) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 58 #: extractedrc.cpp:72 msgid "&Explosions" msgstr "&Explose" -#. i18n: file: ui/pref_board.ui:65 -#. i18n: ectx: property (text), widget (QCheckBox, checkMovements) -#. i18n: file: ui/pref_movelist.ui:158 -#. i18n: ectx: property (text), widget (QCheckBox, checkMovements) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 65 +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 158 #: extractedrc.cpp:75 extractedrc.cpp:205 msgid "&Movements" msgstr "Ta&hy" -#. i18n: file: ui/pref_board.ui:72 -#. i18n: ectx: property (text), widget (QCheckBox, checkFading) -#. i18n: file: ui/pref_movelist.ui:165 -#. i18n: ectx: property (text), widget (QCheckBox, checkFading) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 72 +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 165 #: extractedrc.cpp:78 extractedrc.cpp:208 #, fuzzy msgid "&Fading" msgstr "&Mizení" -#. i18n: file: ui/pref_board.ui:88 -#. i18n: ectx: property (text), widget (QLabel, label_6) -#. i18n: file: ui/pref_movelist.ui:60 -#. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 88 +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 60 #: extractedrc.cpp:81 extractedrc.cpp:188 msgid "" "Rough\n" "(little CPU usage)" msgstr "Hrubé
(malé využití CPU)" -#. i18n: file: ui/pref_board.ui:115 -#. i18n: ectx: property (text), widget (QLabel, label_7) -#. i18n: file: ui/pref_movelist.ui:87 -#. i18n: ectx: property (text), widget (QLabel, label_7) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 115 +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 87 #: extractedrc.cpp:85 extractedrc.cpp:192 msgid "" "Smooth\n" "(high CPU usage)" msgstr "Jemné
(velké využití CPU)" -#. i18n: file: ui/pref_board.ui:130 -#. i18n: ectx: property (text), widget (QLabel, label_8) -#. i18n: file: ui/pref_movelist.ui:179 -#. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 130 +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 179 #: extractedrc.cpp:89 extractedrc.cpp:214 msgid "Animation s&moothness:" msgstr "&Plynulost animací:" -#. i18n: file: ui/pref_board.ui:151 -#. i18n: ectx: property (text), widget (QLabel, label_2) -#. i18n: file: ui/pref_movelist.ui:123 -#. i18n: ectx: property (text), widget (QLabel, label) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 151 +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 123 #: extractedrc.cpp:92 extractedrc.cpp:199 msgid "Slow" msgstr "Pomalu" -#. i18n: file: ui/pref_board.ui:177 -#. i18n: ectx: property (text), widget (QLabel, label_4) -#. i18n: file: ui/pref_movelist.ui:146 -#. i18n: ectx: property (text), widget (QLabel, label_2) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 177 +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 146 #: extractedrc.cpp:95 extractedrc.cpp:202 msgid "Fast" msgstr "Rychle" -#. i18n: file: ui/pref_board.ui:189 -#. i18n: ectx: property (text), widget (QLabel, label_3) -#. i18n: file: ui/pref_movelist.ui:102 -#. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 189 +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 102 #: extractedrc.cpp:98 extractedrc.cpp:196 msgid "Animation s&peed:" msgstr "&Rychlost animací:" -#. i18n: file: ui/pref_board.ui:231 -#. i18n: ectx: property (text), widget (QLabel, label_9) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 231 #: extractedrc.cpp:101 msgid "&Max sequence length:" msgstr "&Maximální délka posloupnosti:" -#. i18n: file: ui/pref_board.ui:253 -#. i18n: ectx: property (text), widget (QCheckBox, checkSequence) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 253 #: extractedrc.cpp:104 msgid "Animate move &sequences" msgstr "Animovat po&sloupnosti tahů:" -#. i18n: file: ui/pref_board.ui:277 -#. i18n: ectx: property (title), widget (QGroupBox, groupBorder) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 277 #: extractedrc.cpp:107 msgid "&Border" msgstr "&Okraj" -#. i18n: file: ui/pref_board.ui:292 -#. i18n: ectx: property (text), widget (QLabel, label) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 292 #: extractedrc.cpp:110 msgid "&Color" msgstr "&Barva" -#. i18n: file: ui/pref_board.ui:302 -#. i18n: ectx: property (text), widget (QLabel, label_5) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 302 #: extractedrc.cpp:113 msgid "&Text Color" msgstr "Barva &textu" -#. i18n: file: ui/pref_board.ui:320 -#. i18n: ectx: property (text), widget (QCheckBox, checkBorderFont) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 320 #: extractedrc.cpp:116 msgid "Custom &font:" msgstr "Uživatelské &písmo:" -#. i18n: file: ui/pref_engines.ui:13 -#. i18n: ectx: property (windowTitle), widget (QWidget, PrefEngines) +#. i18n: tag string +#. i18n: file ./ui/pref_engines.ui line 13 #: extractedrc.cpp:119 msgid "Engines" msgstr "Programy" -#. i18n: file: ui/pref_engines.ui:25 -#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) +#. i18n: tag string +#. i18n: file ./ui/pref_engines.ui line 25 #: extractedrc.cpp:122 msgid "Engine list" msgstr "Seznam programů" -#. i18n: file: ui/pref_engines.ui:93 -#. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: tag string +#. i18n: file ./ui/pref_engines.ui line 93 #: extractedrc.cpp:125 msgid "Engine properties" msgstr "Vlastnosti programu" -#. i18n: file: ui/pref_engines.ui:157 -#. i18n: ectx: property (text), item, widget (QComboBox, m_type) +#. i18n: tag string +#. i18n: file ./ui/pref_engines.ui line 157 #: extractedrc.cpp:140 msgid "Tagua (text)" msgstr "Tagua (textové)" -#. i18n: file: ui/pref_engines.ui:162 -#. i18n: ectx: property (text), item, widget (QComboBox, m_type) +#. i18n: tag string +#. i18n: file ./ui/pref_engines.ui line 162 #: extractedrc.cpp:143 msgid "Tagua (D-BUS)" msgstr "Tagua (DBUS)" -#. i18n: file: ui/pref_engines.ui:180 -#. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: tag string +#. i18n: file ./ui/pref_engines.ui line 180 #: extractedrc.cpp:146 msgid "&Work dir:" msgstr "Pracovní &adresář:" -#. i18n: file: ui/pref_highlight.ui:13 -#. i18n: ectx: property (windowTitle), widget (QDialog, PrefHighlight) +#. i18n: tag string +#. i18n: file ./ui/pref_highlight.ui line 13 #: extractedrc.cpp:149 msgid "Dialog" msgstr "Dialog" -#. i18n: file: ui/pref_highlight.ui:47 -#. i18n: ectx: property (text), widget (QLabel, label) +#. i18n: tag string +#. i18n: file ./ui/pref_highlight.ui line 47 #: extractedrc.cpp:152 msgid "Pattern" msgstr "Vzorek" -#. i18n: file: ui/pref_highlight.ui:75 -#. i18n: ectx: property (text), widget (QCheckBox, m_bold) +#. i18n: tag string +#. i18n: file ./ui/pref_highlight.ui line 75 #: extractedrc.cpp:155 msgid "Bold" msgstr "Tučné" -#. i18n: file: ui/pref_highlight.ui:82 -#. i18n: ectx: property (text), widget (QCheckBox, m_italic) +#. i18n: tag string +#. i18n: file ./ui/pref_highlight.ui line 82 #: extractedrc.cpp:158 msgid "Italic" msgstr "Kursiva" -#. i18n: file: ui/pref_highlight.ui:148 -#. i18n: ectx: property (text), widget (QLabel, label2) +#. i18n: tag string +#. i18n: file ./ui/pref_highlight.ui line 148 #: extractedrc.cpp:161 msgid "Use this box to test your regular expression" msgstr "Pro vyzkoušení regulárního výrazu použijte toto pole" -#. i18n: file: ui/pref_highlight.ui:186 -#. i18n: ectx: property (text), widget (QPushButton, m_add) +#. i18n: tag string +#. i18n: file ./ui/pref_highlight.ui line 186 #: extractedrc.cpp:164 msgid "Add" msgstr "Přidat" -#. i18n: file: ui/pref_highlight.ui:193 -#. i18n: ectx: property (text), widget (QPushButton, m_delete) +#. i18n: tag string +#. i18n: file ./ui/pref_highlight.ui line 193 #: extractedrc.cpp:167 msgid "Remove" msgstr "Odstranit" -#. i18n: file: ui/pref_highlight.ui:223 -#. i18n: ectx: property (text), widget (QPushButton, m_up) +#. i18n: tag string +#. i18n: file ./ui/pref_highlight.ui line 223 #: extractedrc.cpp:170 msgid "Up" msgstr "Nahoru" -#. i18n: file: ui/pref_highlight.ui:230 -#. i18n: ectx: property (text), widget (QPushButton, m_down) +#. i18n: tag string +#. i18n: file ./ui/pref_highlight.ui line 230 #: extractedrc.cpp:173 msgid "Down" msgstr "Dolů" -#. i18n: file: ui/pref_highlight.ui:266 -#. i18n: ectx: property (text), widget (QPushButton, m_ok) +#. i18n: tag string +#. i18n: file ./ui/pref_highlight.ui line 266 #: extractedrc.cpp:176 msgid "OK" msgstr "OK" -#. i18n: file: ui/pref_highlight.ui:273 -#. i18n: ectx: property (text), widget (QPushButton, m_cancel) +#. i18n: tag string +#. i18n: file ./ui/pref_highlight.ui line 273 #: extractedrc.cpp:179 msgid "Cancel" msgstr "Zrušit" -#. i18n: file: ui/pref_movelist.ui:172 -#. i18n: ectx: property (text), widget (QCheckBox, checkHighlighting) +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 172 #: extractedrc.cpp:211 msgid "&Smooth highlighting" msgstr "&Jemné zvýrazňování" -#. i18n: file: ui/pref_movelist.ui:203 -#. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 203 #: extractedrc.cpp:217 msgid "&Colors and fonts" msgstr "&Barvy a písma" -#. i18n: file: ui/pref_movelist.ui:215 -#. i18n: ectx: property (text), widget (QLabel, label_5) +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 215 #: extractedrc.cpp:220 msgid "C&omments color:" msgstr "Barva &poznámek:" -#. i18n: file: ui/pref_movelist.ui:233 -#. i18n: ectx: property (text), widget (QCheckBox, checkCommentsFont) +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 233 #: extractedrc.cpp:223 msgid "Cus&tom comments font:" msgstr "Uživatelské písmo pro po&známky:" -#. i18n: file: ui/pref_movelist.ui:243 -#. i18n: ectx: property (text), widget (QCheckBox, checkMovesFont) +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 243 #: extractedrc.cpp:226 msgid "C&ustom moves font:" msgstr "Uživatelské písmo pro &tahy:" -#. i18n: file: ui/pref_movelist.ui:253 -#. i18n: ectx: property (text), widget (QLabel, label_4) +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 253 #: extractedrc.cpp:229 msgid "S&elected move color:" msgstr "Barva &vybraného tahu:" -#. i18n: file: ui/pref_theme_page.ui:31 -#. i18n: ectx: property (text), widget (QToolButton, m_resetButton) -#. i18n: file: ui/quickconnect.ui:149 -#. i18n: ectx: property (text), widget (QToolButton, buttonTimesealPath) +#. i18n: tag string +#. i18n: file ./ui/pref_theme_page.ui line 31 +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 149 #: extractedrc.cpp:235 extractedrc.cpp:271 #, fuzzy msgid "..." msgstr "…" -#. i18n: file: ui/preferences.ui:13 -#. i18n: ectx: property (windowTitle), widget (QDialog, Preferences) +#. i18n: tag string +#. i18n: file ./ui/preferences.ui line 13 #: extractedrc.cpp:238 msgid "Change Tagua Settings" msgstr "Změnit nastavení Tagua" -#. i18n: file: ui/quickconnect.ui:13 -#. i18n: ectx: property (windowTitle), widget (QDialog, QuickConnect) +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 13 #: extractedrc.cpp:241 msgid "Quick Connect" msgstr "Rychlé připojení" -#. i18n: file: ui/quickconnect.ui:28 -#. i18n: ectx: property (title), widget (QGroupBox, groupBox_1) +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 28 #: extractedrc.cpp:244 msgid "&Login" msgstr "&Přihlášení" -#. i18n: file: ui/quickconnect.ui:47 -#. i18n: ectx: property (text), widget (QLabel, textLabel_2) +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 47 #: extractedrc.cpp:247 msgid "&Password:" msgstr "&Heslo:" -#. i18n: file: ui/quickconnect.ui:60 -#. i18n: ectx: property (text), widget (QLabel, textLabel_1) +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 60 #: extractedrc.cpp:250 msgid "&Username:" msgstr "&Uživatelské jméno:" -#. i18n: file: ui/quickconnect.ui:70 -#. i18n: ectx: property (text), widget (QCheckBox, chkStore) +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 70 #: extractedrc.cpp:253 msgid "&Store password on this computer" msgstr "Uložit he&slo na tomto počítači" -#. i18n: file: ui/quickconnect.ui:73 -#. i18n: ectx: property (shortcut), widget (QCheckBox, chkStore) -#. i18n: file: ui/quickconnect.ui:182 -#. i18n: ectx: property (shortcut), widget (QCheckBox, chkTimesealCmd) +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 73 +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 182 #: extractedrc.cpp:256 extractedrc.cpp:280 msgid "Alt+S" msgstr "Alt+S" -#. i18n: file: ui/quickconnect.ui:83 -#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 83 #: extractedrc.cpp:259 msgid "Ser&ver:" msgstr "Ser&ver:" -#. i18n: file: ui/quickconnect.ui:98 -#. i18n: ectx: property (text), widget (QLabel, textLabel_4) +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 98 #: extractedrc.cpp:262 msgid "ICS p&ort:" msgstr "&Port pro ICS:" -#. i18n: file: ui/quickconnect.ui:115 -#. i18n: ectx: property (text), widget (QLabel, textLabel_3) +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 115 #: extractedrc.cpp:265 msgid "ICS &host:" msgstr "&Hostitel ICS:" -#. i18n: file: ui/quickconnect.ui:131 -#. i18n: ectx: property (title), widget (QGroupBox, groupTimeseal) +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 131 #: extractedrc.cpp:268 msgid "&Timeseal" msgstr "&Timeseal" -#. i18n: file: ui/quickconnect.ui:159 -#. i18n: ectx: property (text), widget (QLabel, textLabel_5) +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 159 #: extractedrc.cpp:274 msgid "&File Path:" msgstr "&Cesta k souboru:" -#. i18n: file: ui/quickconnect.ui:179 -#. i18n: ectx: property (text), widget (QCheckBox, chkTimesealCmd) +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 179 #: extractedrc.cpp:277 msgid "Use &custom command line arguments" msgstr "Použít &uživatelské parametry na příkazové řádce" -#. i18n: file: ui/quickconnect.ui:232 -#. i18n: ectx: property (text), widget (QPushButton, buttonOk) +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 232 #: extractedrc.cpp:283 msgid "&OK" msgstr "&OK" -#. i18n: file: ui/quickconnect.ui:248 -#. i18n: ectx: property (text), widget (QPushButton, buttonCancel) +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 248 #: extractedrc.cpp:286 msgid "&Cancel" msgstr "&Zrušit" diff -Nru tagua-1.0~alpha2/translations/fr.po tagua-1.0~alpha2-16-g618c6a0/translations/fr.po --- tagua-1.0~alpha2/translations/fr.po 2017-11-04 14:54:52.000000000 +0000 +++ tagua-1.0~alpha2-16-g618c6a0/translations/fr.po 2017-09-30 20:37:27.000000000 +0000 @@ -7,11 +7,10 @@ msgstr "" "Project-Id-Version: tagua 1.0-alpha\n" "Report-Msgid-Bugs-To: http://trac.tagua-project.org\n" -"POT-Creation-Date: 2016-07-07 00:26+0200\n" +"POT-Creation-Date: 2008-02-26 23:43+0000\n" "PO-Revision-Date: 2008-02-27 01:06+0100\n" "Last-Translator: Yann Dirson \n" "Language-Team: French \n" -"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8bit\n" @@ -76,83 +75,79 @@ msgid "Initial variant" msgstr "Variante de dpart" -#: mainwindow.cpp:77 +#: mainwindow.cpp:79 msgid "Move list" msgstr "Liste des coups" -#: mainwindow.cpp:87 +#: mainwindow.cpp:89 msgid "FICS Connection" msgstr "Connection FICS" -#: mainwindow.cpp:90 +#: mainwindow.cpp:92 msgid "Console" msgstr "Console" -#: mainwindow.cpp:131 +#: mainwindow.cpp:129 msgid "E&ngines" msgstr "IA" -#: mainwindow.cpp:145 +#: mainwindow.cpp:143 msgid "Play as &white" msgstr "Jouer les &blancs" -#: mainwindow.cpp:151 +#: mainwindow.cpp:149 msgid "Play as &black" msgstr "Jouer les &noirs" -#: mainwindow.cpp:158 +#: mainwindow.cpp:156 msgid "&Analyze" msgstr "Analyser" -#: mainwindow.cpp:177 +#: mainwindow.cpp:175 msgid "&Back" msgstr "Prcdent" -#: mainwindow.cpp:178 +#: mainwindow.cpp:176 msgid "&Forward" msgstr "Suivant" -#: mainwindow.cpp:179 +#: mainwindow.cpp:177 msgid "Be&gin" msgstr "Dbut" -#: mainwindow.cpp:180 +#: mainwindow.cpp:178 msgid "&End" msgstr "Fin" -#: mainwindow.cpp:181 +#: mainwindow.cpp:179 msgid "&Connect" msgstr "Connexion" -#: mainwindow.cpp:183 +#: mainwindow.cpp:181 msgid "&Disconnect" msgstr "Dconnexion" -#. i18n("Copy PGN"), this, SLOT(pgnCopy())); -#. installRegularAction("pgnPaste", KIcon("edit-paste"), i18n("Paste PGN"), this, SLOT(pgnPaste())); -#: mainwindow.cpp:190 +#: mainwindow.cpp:188 msgid "&Edit position" msgstr "Modifier la position des pices" -#: mainwindow.cpp:191 +#: mainwindow.cpp:189 msgid "&Clear board" msgstr "Vider le plateau" -#: mainwindow.cpp:192 +#: mainwindow.cpp:190 msgid "&Set starting position" msgstr "Etablir la position de dpart" -#. i18n("&Copy position"), &ui(), SLOT(copyPosition())); -#. installRegularAction("pastePosition", KIcon(), i18n("&Paste position"), &ui(), SLOT(pastePosition())); -#: mainwindow.cpp:196 +#: mainwindow.cpp:194 msgid "&Flip view" msgstr "Changer l'orientation du plateau" -#: mainwindow.cpp:198 +#: mainwindow.cpp:196 msgid "Toggle &console" msgstr "Affichage de la console" -#: mainwindow.cpp:199 +#: mainwindow.cpp:197 msgid "Toggle &move list" msgstr "Affichage de la liste des coups" @@ -234,20 +229,20 @@ msgid "&Name:" msgstr "Nom :" -#. i18n: file: ui/pref_engines.ui:136 -#. i18n: ectx: property (text), widget (QLabel, label_2) +#. i18n: tag string +#. i18n: file ./ui/pref_engines.ui line 136 #: pref_engines.cpp:47 extractedrc.cpp:131 msgid "&Type:" msgstr "&Type :" -#. i18n: file: ui/pref_engines.ui:147 -#. i18n: ectx: property (text), item, widget (QComboBox, m_type) +#. i18n: tag string +#. i18n: file ./ui/pref_engines.ui line 147 #: pref_engines.cpp:52 extractedrc.cpp:134 msgid "XBoard" msgstr "XBoard" -#. i18n: file: ui/pref_engines.ui:152 -#. i18n: ectx: property (text), item, widget (QComboBox, m_type) +#. i18n: tag string +#. i18n: file ./ui/pref_engines.ui line 152 #: pref_engines.cpp:53 extractedrc.cpp:137 msgid "UCI" msgstr "UCI" @@ -264,8 +259,8 @@ msgid "GNU Shogi" msgstr "GNU Shogi" -#. i18n: file: ui/pref_engines.ui:113 -#. i18n: ectx: property (text), widget (QLabel, label) +#. i18n: tag string +#. i18n: file ./ui/pref_engines.ui line 113 #: pref_engines.cpp:61 extractedrc.cpp:128 msgid "&Path:" msgstr "Chemin d'accs" @@ -310,494 +305,494 @@ msgid "Close the current tab" msgstr "Fermer l'onglet actuel" -#. i18n: file: taguaui.rc:15 -#. i18n: ectx: Menu (edit) +#. i18n: tag Text +#. i18n: file ./taguaui.rc line 15 #: extractedrc.cpp:3 msgid "&Edit" msgstr "&Edition" -#. i18n: file: taguaui.rc:24 -#. i18n: ectx: Menu (gameMenu) +#. i18n: tag text +#. i18n: file ./taguaui.rc line 24 #: extractedrc.cpp:6 msgid "&Game" msgstr "&Jeu" -#. i18n: file: taguaui.rc:33 -#. i18n: ectx: Menu (viewMenu) +#. i18n: tag text +#. i18n: file ./taguaui.rc line 33 #: extractedrc.cpp:9 msgid "&View" msgstr "&Affichage" -#. i18n: file: taguaui.rc:47 -#. i18n: ectx: ToolBar (gameToolbar) +#. i18n: tag text +#. i18n: file ./taguaui.rc line 47 #: extractedrc.cpp:12 msgid "Game Toolbar" msgstr "Barre d'outils \"Jeu\"" -#. i18n: file: ui/gametags.ui:13 -#. i18n: ectx: property (windowTitle), widget (QWidget, Form) -#. i18n: file: ui/pref_board.ui:13 -#. i18n: ectx: property (windowTitle), widget (QWidget, PrefBoard) -#. i18n: file: ui/pref_movelist.ui:13 -#. i18n: ectx: property (windowTitle), widget (QWidget, PrefMoveList) +#. i18n: tag string +#. i18n: file ./ui/gametags.ui line 13 +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 13 +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 13 #: extractedrc.cpp:15 extractedrc.cpp:63 extractedrc.cpp:182 msgid "Form" msgstr "" -#. i18n: file: ui/gametags.ui:25 -#. i18n: ectx: property (text), widget (QLabel, label_12) +#. i18n: tag string +#. i18n: file ./ui/gametags.ui line 25 #: extractedrc.cpp:18 msgid "Round:" msgstr "" -#. i18n: file: ui/gametags.ui:35 -#. i18n: ectx: property (text), widget (QLabel, label_7) +#. i18n: tag string +#. i18n: file ./ui/gametags.ui line 35 #: extractedrc.cpp:21 msgid "Time:" msgstr "" -#. i18n: file: ui/gametags.ui:54 -#. i18n: ectx: property (text), widget (QLabel, label_11) +#. i18n: tag string +#. i18n: file ./ui/gametags.ui line 54 #: extractedrc.cpp:24 msgid "Result:" msgstr "" -#. i18n: file: ui/gametags.ui:61 -#. i18n: ectx: property (text), widget (QLabel, label_9) +#. i18n: tag string +#. i18n: file ./ui/gametags.ui line 61 #: extractedrc.cpp:27 msgid "Increment:" msgstr "" -#. i18n: file: ui/gametags.ui:71 -#. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: tag string +#. i18n: file ./ui/gametags.ui line 71 #: extractedrc.cpp:30 #, fuzzy msgid "Site:" msgstr "Blanc :" -#. i18n: file: ui/gametags.ui:78 -#. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: tag string +#. i18n: file ./ui/gametags.ui line 78 #: extractedrc.cpp:33 #, fuzzy msgid "Black rating:" msgstr "Noir :" -#. i18n: file: ui/gametags.ui:85 -#. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: tag string +#. i18n: file ./ui/gametags.ui line 85 #: extractedrc.cpp:36 msgid "Event:" msgstr "" -#. i18n: file: ui/gametags.ui:92 -#. i18n: ectx: property (text), widget (QLabel, label_2) +#. i18n: tag string +#. i18n: file ./ui/gametags.ui line 92 #: extractedrc.cpp:39 msgid "Black:" msgstr "Noir :" -#. i18n: file: ui/gametags.ui:99 -#. i18n: ectx: property (text), widget (QLabel, label) +#. i18n: tag string +#. i18n: file ./ui/gametags.ui line 99 #: extractedrc.cpp:42 msgid "White:" msgstr "Blanc :" -#. i18n: file: ui/gametags.ui:121 -#. i18n: ectx: property (text), widget (QLabel, label_4) +#. i18n: tag string +#. i18n: file ./ui/gametags.ui line 121 #: extractedrc.cpp:45 msgid "Date:" msgstr "Date :" -#. i18n: file: ui/gametags.ui:131 -#. i18n: ectx: property (text), widget (QLabel, label_5) +#. i18n: tag string +#. i18n: file ./ui/gametags.ui line 131 #: extractedrc.cpp:48 #, fuzzy msgid "White rating:" msgstr "Blanc :" -#. i18n: file: ui/gametags.ui:138 -#. i18n: ectx: property (text), widget (QLabel, label_10) +#. i18n: tag string +#. i18n: file ./ui/gametags.ui line 138 #: extractedrc.cpp:51 msgid "ECO:" msgstr "" -#. i18n: file: ui/newgamedialog.ui:13 -#. i18n: ectx: property (windowTitle), widget (QDialog, NewGameDialog) +#. i18n: tag string +#. i18n: file ./ui/newgamedialog.ui line 13 #: extractedrc.cpp:54 msgid "New game" msgstr "Nouveau jeu" -#. i18n: file: ui/newgamedialog.ui:39 -#. i18n: ectx: property (text), widget (QLabel, textLabel_1) -#. i18n: file: ui/pref_theme.ui:48 -#. i18n: ectx: property (text), widget (QLabel, label_1) +#. i18n: tag string +#. i18n: file ./ui/newgamedialog.ui line 39 +#. i18n: tag string +#. i18n: file ./ui/pref_theme.ui line 48 #: extractedrc.cpp:57 extractedrc.cpp:232 msgid "&Variant:" msgstr "&Variante :" -#. i18n: file: ui/newgamedialog.ui:74 -#. i18n: ectx: property (text), widget (QCheckBox, m_new_tab) +#. i18n: tag string +#. i18n: file ./ui/newgamedialog.ui line 74 #: extractedrc.cpp:60 msgid "Create in new &tab" msgstr "Crer dans un nouvel onglet" -#. i18n: file: ui/pref_board.ui:36 -#. i18n: ectx: property (title), widget (QGroupBox, groupAnimations) -#. i18n: file: ui/pref_movelist.ui:36 -#. i18n: ectx: property (title), widget (QGroupBox, groupAnimations) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 36 +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 36 #: extractedrc.cpp:66 extractedrc.cpp:185 msgid "&Animations" msgstr "&Animations" -#. i18n: file: ui/pref_board.ui:51 -#. i18n: ectx: property (text), widget (QCheckBox, checkTransformations) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 51 #: extractedrc.cpp:69 msgid "&Transformations" msgstr "&Transformations" -#. i18n: file: ui/pref_board.ui:58 -#. i18n: ectx: property (text), widget (QCheckBox, checkExplosions) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 58 #: extractedrc.cpp:72 msgid "&Explosions" msgstr "&Explosions" -#. i18n: file: ui/pref_board.ui:65 -#. i18n: ectx: property (text), widget (QCheckBox, checkMovements) -#. i18n: file: ui/pref_movelist.ui:158 -#. i18n: ectx: property (text), widget (QCheckBox, checkMovements) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 65 +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 158 #: extractedrc.cpp:75 extractedrc.cpp:205 msgid "&Movements" msgstr "&Coups" -#. i18n: file: ui/pref_board.ui:72 -#. i18n: ectx: property (text), widget (QCheckBox, checkFading) -#. i18n: file: ui/pref_movelist.ui:165 -#. i18n: ectx: property (text), widget (QCheckBox, checkFading) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 72 +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 165 #: extractedrc.cpp:78 extractedrc.cpp:208 msgid "&Fading" msgstr "" -#. i18n: file: ui/pref_board.ui:88 -#. i18n: ectx: property (text), widget (QLabel, label_6) -#. i18n: file: ui/pref_movelist.ui:60 -#. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 88 +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 60 #: extractedrc.cpp:81 extractedrc.cpp:188 msgid "" "Rough\n" "(little CPU usage)" msgstr "" -#. i18n: file: ui/pref_board.ui:115 -#. i18n: ectx: property (text), widget (QLabel, label_7) -#. i18n: file: ui/pref_movelist.ui:87 -#. i18n: ectx: property (text), widget (QLabel, label_7) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 115 +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 87 #: extractedrc.cpp:85 extractedrc.cpp:192 msgid "" "Smooth\n" "(high CPU usage)" msgstr "" -#. i18n: file: ui/pref_board.ui:130 -#. i18n: ectx: property (text), widget (QLabel, label_8) -#. i18n: file: ui/pref_movelist.ui:179 -#. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 130 +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 179 #: extractedrc.cpp:89 extractedrc.cpp:214 #, fuzzy msgid "Animation s&moothness:" msgstr "Vitesse d'animation" -#. i18n: file: ui/pref_board.ui:151 -#. i18n: ectx: property (text), widget (QLabel, label_2) -#. i18n: file: ui/pref_movelist.ui:123 -#. i18n: ectx: property (text), widget (QLabel, label) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 151 +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 123 #: extractedrc.cpp:92 extractedrc.cpp:199 msgid "Slow" msgstr "Lent" -#. i18n: file: ui/pref_board.ui:177 -#. i18n: ectx: property (text), widget (QLabel, label_4) -#. i18n: file: ui/pref_movelist.ui:146 -#. i18n: ectx: property (text), widget (QLabel, label_2) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 177 +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 146 #: extractedrc.cpp:95 extractedrc.cpp:202 msgid "Fast" msgstr "Rapide" -#. i18n: file: ui/pref_board.ui:189 -#. i18n: ectx: property (text), widget (QLabel, label_3) -#. i18n: file: ui/pref_movelist.ui:102 -#. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 189 +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 102 #: extractedrc.cpp:98 extractedrc.cpp:196 msgid "Animation s&peed:" msgstr "Vitesse d'animation" -#. i18n: file: ui/pref_board.ui:231 -#. i18n: ectx: property (text), widget (QLabel, label_9) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 231 #: extractedrc.cpp:101 msgid "&Max sequence length:" msgstr "Longueur maximale de squence" -#. i18n: file: ui/pref_board.ui:253 -#. i18n: ectx: property (text), widget (QCheckBox, checkSequence) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 253 #: extractedrc.cpp:104 msgid "Animate move &sequences" msgstr "Animer les squences de coups" -#. i18n: file: ui/pref_board.ui:277 -#. i18n: ectx: property (title), widget (QGroupBox, groupBorder) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 277 #: extractedrc.cpp:107 msgid "&Border" msgstr "&Bord" -#. i18n: file: ui/pref_board.ui:292 -#. i18n: ectx: property (text), widget (QLabel, label) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 292 #: extractedrc.cpp:110 msgid "&Color" msgstr "&Couleur" -#. i18n: file: ui/pref_board.ui:302 -#. i18n: ectx: property (text), widget (QLabel, label_5) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 302 #: extractedrc.cpp:113 msgid "&Text Color" msgstr "Couleur du &texte" -#. i18n: file: ui/pref_board.ui:320 -#. i18n: ectx: property (text), widget (QCheckBox, checkBorderFont) +#. i18n: tag string +#. i18n: file ./ui/pref_board.ui line 320 #: extractedrc.cpp:116 msgid "Custom &font:" msgstr "Police personnalise :" -#. i18n: file: ui/pref_engines.ui:13 -#. i18n: ectx: property (windowTitle), widget (QWidget, PrefEngines) +#. i18n: tag string +#. i18n: file ./ui/pref_engines.ui line 13 #: extractedrc.cpp:119 msgid "Engines" msgstr "IA" -#. i18n: file: ui/pref_engines.ui:25 -#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) +#. i18n: tag string +#. i18n: file ./ui/pref_engines.ui line 25 #: extractedrc.cpp:122 msgid "Engine list" msgstr "Liste des IA" -#. i18n: file: ui/pref_engines.ui:93 -#. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: tag string +#. i18n: file ./ui/pref_engines.ui line 93 #: extractedrc.cpp:125 msgid "Engine properties" msgstr "Proprits des IA" -#. i18n: file: ui/pref_engines.ui:157 -#. i18n: ectx: property (text), item, widget (QComboBox, m_type) +#. i18n: tag string +#. i18n: file ./ui/pref_engines.ui line 157 #: extractedrc.cpp:140 msgid "Tagua (text)" msgstr "Tagua (textuel)" -#. i18n: file: ui/pref_engines.ui:162 -#. i18n: ectx: property (text), item, widget (QComboBox, m_type) +#. i18n: tag string +#. i18n: file ./ui/pref_engines.ui line 162 #: extractedrc.cpp:143 msgid "Tagua (D-BUS)" msgstr "Tagua (D-BUS)" -#. i18n: file: ui/pref_engines.ui:180 -#. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: tag string +#. i18n: file ./ui/pref_engines.ui line 180 #: extractedrc.cpp:146 msgid "&Work dir:" msgstr "Rpertoire de travail :" -#. i18n: file: ui/pref_highlight.ui:13 -#. i18n: ectx: property (windowTitle), widget (QDialog, PrefHighlight) +#. i18n: tag string +#. i18n: file ./ui/pref_highlight.ui line 13 #: extractedrc.cpp:149 msgid "Dialog" msgstr "" -#. i18n: file: ui/pref_highlight.ui:47 -#. i18n: ectx: property (text), widget (QLabel, label) +#. i18n: tag string +#. i18n: file ./ui/pref_highlight.ui line 47 #: extractedrc.cpp:152 msgid "Pattern" msgstr "" -#. i18n: file: ui/pref_highlight.ui:75 -#. i18n: ectx: property (text), widget (QCheckBox, m_bold) +#. i18n: tag string +#. i18n: file ./ui/pref_highlight.ui line 75 #: extractedrc.cpp:155 msgid "Bold" msgstr "" -#. i18n: file: ui/pref_highlight.ui:82 -#. i18n: ectx: property (text), widget (QCheckBox, m_italic) +#. i18n: tag string +#. i18n: file ./ui/pref_highlight.ui line 82 #: extractedrc.cpp:158 msgid "Italic" msgstr "" -#. i18n: file: ui/pref_highlight.ui:148 -#. i18n: ectx: property (text), widget (QLabel, label2) +#. i18n: tag string +#. i18n: file ./ui/pref_highlight.ui line 148 #: extractedrc.cpp:161 msgid "Use this box to test your regular expression" msgstr "" -#. i18n: file: ui/pref_highlight.ui:186 -#. i18n: ectx: property (text), widget (QPushButton, m_add) +#. i18n: tag string +#. i18n: file ./ui/pref_highlight.ui line 186 #: extractedrc.cpp:164 msgid "Add" msgstr "" -#. i18n: file: ui/pref_highlight.ui:193 -#. i18n: ectx: property (text), widget (QPushButton, m_delete) +#. i18n: tag string +#. i18n: file ./ui/pref_highlight.ui line 193 #: extractedrc.cpp:167 msgid "Remove" msgstr "" -#. i18n: file: ui/pref_highlight.ui:223 -#. i18n: ectx: property (text), widget (QPushButton, m_up) +#. i18n: tag string +#. i18n: file ./ui/pref_highlight.ui line 223 #: extractedrc.cpp:170 msgid "Up" msgstr "" -#. i18n: file: ui/pref_highlight.ui:230 -#. i18n: ectx: property (text), widget (QPushButton, m_down) +#. i18n: tag string +#. i18n: file ./ui/pref_highlight.ui line 230 #: extractedrc.cpp:173 msgid "Down" msgstr "" -#. i18n: file: ui/pref_highlight.ui:266 -#. i18n: ectx: property (text), widget (QPushButton, m_ok) +#. i18n: tag string +#. i18n: file ./ui/pref_highlight.ui line 266 #: extractedrc.cpp:176 msgid "OK" msgstr "OK" -#. i18n: file: ui/pref_highlight.ui:273 -#. i18n: ectx: property (text), widget (QPushButton, m_cancel) +#. i18n: tag string +#. i18n: file ./ui/pref_highlight.ui line 273 #: extractedrc.cpp:179 msgid "Cancel" msgstr "Annuler" -#. i18n: file: ui/pref_movelist.ui:172 -#. i18n: ectx: property (text), widget (QCheckBox, checkHighlighting) +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 172 #: extractedrc.cpp:211 msgid "&Smooth highlighting" msgstr "" -#. i18n: file: ui/pref_movelist.ui:203 -#. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 203 #: extractedrc.cpp:217 msgid "&Colors and fonts" msgstr "&Couleurs et polices" -#. i18n: file: ui/pref_movelist.ui:215 -#. i18n: ectx: property (text), widget (QLabel, label_5) +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 215 #: extractedrc.cpp:220 msgid "C&omments color:" msgstr "Couleur des c&ommentaires :" -#. i18n: file: ui/pref_movelist.ui:233 -#. i18n: ectx: property (text), widget (QCheckBox, checkCommentsFont) +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 233 #: extractedrc.cpp:223 msgid "Cus&tom comments font:" msgstr "Choix de police des commentaires :" -#. i18n: file: ui/pref_movelist.ui:243 -#. i18n: ectx: property (text), widget (QCheckBox, checkMovesFont) +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 243 #: extractedrc.cpp:226 msgid "C&ustom moves font:" msgstr "Choix de police des coups :" -#. i18n: file: ui/pref_movelist.ui:253 -#. i18n: ectx: property (text), widget (QLabel, label_4) +#. i18n: tag string +#. i18n: file ./ui/pref_movelist.ui line 253 #: extractedrc.cpp:229 msgid "S&elected move color:" msgstr "Couleur du coup slectionn" -#. i18n: file: ui/pref_theme_page.ui:31 -#. i18n: ectx: property (text), widget (QToolButton, m_resetButton) -#. i18n: file: ui/quickconnect.ui:149 -#. i18n: ectx: property (text), widget (QToolButton, buttonTimesealPath) +#. i18n: tag string +#. i18n: file ./ui/pref_theme_page.ui line 31 +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 149 #: extractedrc.cpp:235 extractedrc.cpp:271 msgid "..." msgstr "..." -#. i18n: file: ui/preferences.ui:13 -#. i18n: ectx: property (windowTitle), widget (QDialog, Preferences) +#. i18n: tag string +#. i18n: file ./ui/preferences.ui line 13 #: extractedrc.cpp:238 msgid "Change Tagua Settings" msgstr "Modifier les paramtres de Tagua" -#. i18n: file: ui/quickconnect.ui:13 -#. i18n: ectx: property (windowTitle), widget (QDialog, QuickConnect) +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 13 #: extractedrc.cpp:241 msgid "Quick Connect" msgstr "Connexion rapide" -#. i18n: file: ui/quickconnect.ui:28 -#. i18n: ectx: property (title), widget (QGroupBox, groupBox_1) +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 28 #: extractedrc.cpp:244 msgid "&Login" msgstr "Connexion" -#. i18n: file: ui/quickconnect.ui:47 -#. i18n: ectx: property (text), widget (QLabel, textLabel_2) +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 47 #: extractedrc.cpp:247 msgid "&Password:" msgstr "Mot de passe :" -#. i18n: file: ui/quickconnect.ui:60 -#. i18n: ectx: property (text), widget (QLabel, textLabel_1) +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 60 #: extractedrc.cpp:250 msgid "&Username:" msgstr "Nom d'utilisateur :" -#. i18n: file: ui/quickconnect.ui:70 -#. i18n: ectx: property (text), widget (QCheckBox, chkStore) +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 70 #: extractedrc.cpp:253 msgid "&Store password on this computer" msgstr "Mmoriser le mot de passe sur cet ordinateur" -#. i18n: file: ui/quickconnect.ui:73 -#. i18n: ectx: property (shortcut), widget (QCheckBox, chkStore) -#. i18n: file: ui/quickconnect.ui:182 -#. i18n: ectx: property (shortcut), widget (QCheckBox, chkTimesealCmd) +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 73 +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 182 #: extractedrc.cpp:256 extractedrc.cpp:280 msgid "Alt+S" msgstr "" -#. i18n: file: ui/quickconnect.ui:83 -#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 83 #: extractedrc.cpp:259 msgid "Ser&ver:" msgstr "Ser&veur" -#. i18n: file: ui/quickconnect.ui:98 -#. i18n: ectx: property (text), widget (QLabel, textLabel_4) +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 98 #: extractedrc.cpp:262 msgid "ICS p&ort:" msgstr "P&ort ICS :" -#. i18n: file: ui/quickconnect.ui:115 -#. i18n: ectx: property (text), widget (QLabel, textLabel_3) +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 115 #: extractedrc.cpp:265 msgid "ICS &host:" msgstr "Machine ICS :" -#. i18n: file: ui/quickconnect.ui:131 -#. i18n: ectx: property (title), widget (QGroupBox, groupTimeseal) +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 131 #: extractedrc.cpp:268 msgid "&Timeseal" msgstr "&Timeseal" -#. i18n: file: ui/quickconnect.ui:159 -#. i18n: ectx: property (text), widget (QLabel, textLabel_5) +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 159 #: extractedrc.cpp:274 msgid "&File Path:" msgstr "Chemin d'accs au fichier :" -#. i18n: file: ui/quickconnect.ui:179 -#. i18n: ectx: property (text), widget (QCheckBox, chkTimesealCmd) +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 179 #: extractedrc.cpp:277 msgid "Use &custom command line arguments" msgstr "Passer des arguments personnaliss en ligne de commande" -#. i18n: file: ui/quickconnect.ui:232 -#. i18n: ectx: property (text), widget (QPushButton, buttonOk) +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 232 #: extractedrc.cpp:283 msgid "&OK" msgstr "&OK" -#. i18n: file: ui/quickconnect.ui:248 -#. i18n: ectx: property (text), widget (QPushButton, buttonCancel) +#. i18n: tag string +#. i18n: file ./ui/quickconnect.ui line 248 #: extractedrc.cpp:286 msgid "&Cancel" msgstr "&Annuler" diff -Nru tagua-1.0~alpha2/typescript tagua-1.0~alpha2-16-g618c6a0/typescript --- tagua-1.0~alpha2/typescript 2017-11-04 14:54:52.000000000 +0000 +++ tagua-1.0~alpha2-16-g618c6a0/typescript 1970-01-01 00:00:00.000000000 +0000 @@ -1,817 +0,0 @@ -Script started on Sat Jul 16 21:42:29 2016 -dh binary - debian/rules override_dh_auto_build -make[1]: Entering directory '/work/yann/deb/tagua/tagua' -dh_auto_build - cd obj-x86_64-linux-gnu - make -j1 -make[2]: Entering directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -/usr/bin/cmake -H/work/yann/deb/tagua/tagua -B/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu --check-build-system CMakeFiles/Makefile.cmake 0 --- Boost version: 1.58.0 --- Found Qt-Version 4.8.7 (using /usr/bin/qmake-qt4) --- Found X11: /usr/lib/x86_64-linux-gnu/libX11.so --- Found KDE 4.12 include dir: /usr/include --- Found KDE 4.12 library dir: /usr/lib --- Found the KDE4 kconfig_compiler preprocessor: /usr/bin/kconfig_compiler --- Found automoc4: /usr/bin/automoc4 -CMake Warning (dev) at /usr/lib/automoc4/Automoc4Config.cmake:179 (get_directory_property): - Policy CMP0059 is not set: Do no treat DEFINITIONS as a built-in directory - property. Run "cmake --help-policy CMP0059" for policy details. Use the - cmake_policy command to set the policy and suppress this warning. -Call Stack (most recent call first): - /usr/lib/automoc4/Automoc4Config.cmake:243 (_add_automoc4_target) - /usr/share/kde4/apps/cmake/modules/KDE4Macros.cmake:1043 (_automoc4_kde4_pre_target_handling) - src/CMakeLists.txt:177 (kde4_add_executable) -This warning is for project developers. Use -Wno-dev to suppress it. - -Found translation: /work/yann/deb/tagua/tagua/translations/cs.po -Found translation: /work/yann/deb/tagua/tagua/translations/fr.po --- Found cppunit: /usr/lib/x86_64-linux-gnu/libcppunit.so -CMake Warning (dev) at /usr/lib/automoc4/Automoc4Config.cmake:179 (get_directory_property): - Policy CMP0059 is not set: Do no treat DEFINITIONS as a built-in directory - property. Run "cmake --help-policy CMP0059" for policy details. Use the - cmake_policy command to set the policy and suppress this warning. -Call Stack (most recent call first): - /usr/lib/automoc4/Automoc4Config.cmake:243 (_add_automoc4_target) - /usr/share/kde4/apps/cmake/modules/KDE4Macros.cmake:1043 (_automoc4_kde4_pre_target_handling) - tests/settings/CMakeLists.txt:18 (kde4_add_executable) -This warning is for project developers. Use -Wno-dev to suppress it. - --- Configuring done -CMake Warning (dev) at /usr/share/kde4/apps/cmake/modules/KDE4Macros.cmake:1050 (add_executable): - Policy CMP0003 should be set before this line. Add code such as - - if(COMMAND cmake_policy) - cmake_policy(SET CMP0003 NEW) - endif(COMMAND cmake_policy) - - as early as possible but after the most recent call to - cmake_minimum_required or cmake_policy(VERSION). This warning appears - because target "tagua" links to some libraries for which the linker must - search: - - -llua5.1, dl, kdegames, kdegamesprivate - - and other libraries with known full path: - - /usr/lib/libkio.so.5.14.21 - /usr/lib/x86_64-linux-gnu/libQtNetwork.so - - CMake is adding directories in the second list to the linker search path in - case they are needed to find libraries from the first list (for backwards - compatibility with CMake 2.4). Set policy CMP0003 to OLD or NEW to enable - or disable this behavior explicitly. Run "cmake --help-policy CMP0003" for - more information. -Call Stack (most recent call first): - src/CMakeLists.txt:177 (kde4_add_executable) -This warning is for project developers. Use -Wno-dev to suppress it. - --- Generating done --- Build files have been written to: /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu -/usr/bin/cmake -E cmake_progress_start /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/CMakeFiles /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[3]: Entering directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -make -f src/CMakeFiles/tagua_automoc.dir/build.make src/CMakeFiles/tagua_automoc.dir/depend -make[4]: Entering directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -cd /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /work/yann/deb/tagua/tagua /work/yann/deb/tagua/tagua/src /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/src /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/src/CMakeFiles/tagua_automoc.dir/DependInfo.cmake --color= -make[4]: Leaving directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -make -f src/CMakeFiles/tagua_automoc.dir/build.make src/CMakeFiles/tagua_automoc.dir/build -make[4]: Entering directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -cd /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/src && /usr/bin/automoc4 /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/src/tagua_automoc.cpp /work/yann/deb/tagua/tagua/src /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/src /usr/lib/x86_64-linux-gnu/qt4/bin/moc /usr/bin/cmake -make[4]: Leaving directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -[ 0%] Built target tagua_automoc -make -f src/CMakeFiles/tagua.dir/build.make src/CMakeFiles/tagua.dir/depend -make[4]: Entering directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -cd /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /work/yann/deb/tagua/tagua /work/yann/deb/tagua/tagua/src /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/src /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/src/CMakeFiles/tagua.dir/DependInfo.cmake --color= -Scanning dependencies of target tagua -make[4]: Leaving directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -make -f src/CMakeFiles/tagua.dir/build.make src/CMakeFiles/tagua.dir/build -make[4]: Entering directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -[ 1%] Building CXX object src/CMakeFiles/tagua.dir/hlvariant/chess/variant.o -cd /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/src && /usr/bin/c++ -DKDE4_CMAKE_TOPLEVEL_DIR_LENGTH=20 -DKDE_DEPRECATED_WARNINGS -DQT_NO_CAST_TO_ASCII -DQT_NO_KEYWORDS -DQT_NO_STL -DUSE_UNSTABLE_LIBKDEGAMESPRIVATE_API -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_REENTRANT -D_XOPEN_SOURCE=500 -I/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/src -I/work/yann/deb/tagua/tagua/src -I/usr/include/KDE -I/usr/include/qt4/phonon -I/usr/include/qt4/QtXmlPatterns -I/usr/include/qt4/QtXml -I/usr/include/qt4/QtWebKit -I/usr/include/qt4/QtUiTools -I/usr/include/qt4/QtTest -I/usr/include/qt4/QtSvg -I/usr/include/qt4/QtSql -I/usr/include/qt4/QtScriptTools -I/usr/include/qt4/QtScript -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4/QtNetwork -I/usr/include/qt4/QtHelp -I/usr/include/qt4/QtDesigner -I/usr/include/qt4/QtDeclarative -I/usr/include/qt4/QtDBus -I/usr/include/qt4/QtAssistant -I/usr/include/qt4/Qt3Support -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtCore -I/usr/include/qt4/Qt -I/usr/share/qt4/mkspecs/default -I/usr/include/qt4 -I/usr/include/lua5.1 -I/usr/include/qimageblitz -I/usr/include/libkdegamesprivate -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -Wnon-virtual-dtor -Wno-long-long -Wundef -Wcast-align -Wchar-subscripts -Wall -W -Wpointer-arith -Wformat-security -fno-exceptions -DQT_NO_EXCEPTIONS -fno-check-new -fno-common -Woverloaded-virtual -fno-threadsafe-statics -fvisibility=hidden -Werror=return-type -fvisibility-inlines-hidden -fexceptions -D_GNU_SOURCE -D_LARGEFILE64_SOURCE -I/usr/include/lua5.1 -o CMakeFiles/tagua.dir/hlvariant/chess/variant.o -c /work/yann/deb/tagua/tagua/src/hlvariant/chess/variant.cpp -In file included from /work/yann/deb/tagua/tagua/src/hlvariant/chess/variant.h:18:0, - from /work/yann/deb/tagua/tagua/src/hlvariant/chess/variant.cpp:11: -/work/yann/deb/tagua/tagua/src/hlvariant/chess/../animator.h: In instantiation of ‘AnimationGroupPtr HLVariant::SimpleAnimator<_Variant>::forward(const GameState&, const Move&) [with _Variant = HLVariant::Chess::Variant; AnimationGroupPtr = boost::shared_ptr; HLVariant::SimpleAnimator<_Variant>::GameState = HLVariant::Chess::GameState, HLVariant::Chess::Move>; HLVariant::SimpleAnimator<_Variant>::Move = HLVariant::Chess::Move]’: -/work/yann/deb/tagua/tagua/src/hlvariant/chess/variant.cpp:39:1: required from here -/work/yann/deb/tagua/tagua/src/hlvariant/chess/../animator.h:162:14: warning: variable ‘real’ set but not used [-Wunused-but-set-variable] - QPoint real = m_cinterface->converter()->toReal(move.to()); - ^ -[ 1%] Building CXX object src/CMakeFiles/tagua.dir/hlvariant/dummy/variant.o -cd /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/src && /usr/bin/c++ -DKDE4_CMAKE_TOPLEVEL_DIR_LENGTH=20 -DKDE_DEPRECATED_WARNINGS -DQT_NO_CAST_TO_ASCII -DQT_NO_KEYWORDS -DQT_NO_STL -DUSE_UNSTABLE_LIBKDEGAMESPRIVATE_API -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_REENTRANT -D_XOPEN_SOURCE=500 -I/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/src -I/work/yann/deb/tagua/tagua/src -I/usr/include/KDE -I/usr/include/qt4/phonon -I/usr/include/qt4/QtXmlPatterns -I/usr/include/qt4/QtXml -I/usr/include/qt4/QtWebKit -I/usr/include/qt4/QtUiTools -I/usr/include/qt4/QtTest -I/usr/include/qt4/QtSvg -I/usr/include/qt4/QtSql -I/usr/include/qt4/QtScriptTools -I/usr/include/qt4/QtScript -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4/QtNetwork -I/usr/include/qt4/QtHelp -I/usr/include/qt4/QtDesigner -I/usr/include/qt4/QtDeclarative -I/usr/include/qt4/QtDBus -I/usr/include/qt4/QtAssistant -I/usr/include/qt4/Qt3Support -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtCore -I/usr/include/qt4/Qt -I/usr/share/qt4/mkspecs/default -I/usr/include/qt4 -I/usr/include/lua5.1 -I/usr/include/qimageblitz -I/usr/include/libkdegamesprivate -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -Wnon-virtual-dtor -Wno-long-long -Wundef -Wcast-align -Wchar-subscripts -Wall -W -Wpointer-arith -Wformat-security -fno-exceptions -DQT_NO_EXCEPTIONS -fno-check-new -fno-common -Woverloaded-virtual -fno-threadsafe-statics -fvisibility=hidden -Werror=return-type -fvisibility-inlines-hidden -fexceptions -D_GNU_SOURCE -D_LARGEFILE64_SOURCE -I/usr/include/lua5.1 -o CMakeFiles/tagua.dir/hlvariant/dummy/variant.o -c /work/yann/deb/tagua/tagua/src/hlvariant/dummy/variant.cpp -In file included from /work/yann/deb/tagua/tagua/src/hlvariant/dummy/../crazyhouse/../chess/gamestate.h:15:0, - from /work/yann/deb/tagua/tagua/src/hlvariant/dummy/../crazyhouse/../chess/legalitycheck.h:14, - from /work/yann/deb/tagua/tagua/src/hlvariant/dummy/../crazyhouse/../chess/movegenerator.h:14, - from /work/yann/deb/tagua/tagua/src/hlvariant/dummy/../crazyhouse/movegenerator.h:14, - from /work/yann/deb/tagua/tagua/src/hlvariant/dummy/../crazyhouse/variant.h:15, - from /work/yann/deb/tagua/tagua/src/hlvariant/dummy/variant.h:14, - from /work/yann/deb/tagua/tagua/src/hlvariant/dummy/variant.cpp:11: -/work/yann/deb/tagua/tagua/src/hlvariant/dummy/../crazyhouse/../chess/piece.h:55:16: warning: ‘virtual bool HLVariant::Chess::Piece::operator==(const HLVariant::Chess::Piece&) const’ was hidden [-Woverloaded-virtual] - virtual bool operator==(const Piece& other) const; - ^ -In file included from /work/yann/deb/tagua/tagua/src/hlvariant/dummy/../crazyhouse/variant.h:17:0, - from /work/yann/deb/tagua/tagua/src/hlvariant/dummy/variant.h:14, - from /work/yann/deb/tagua/tagua/src/hlvariant/dummy/variant.cpp:11: -/work/yann/deb/tagua/tagua/src/hlvariant/dummy/../crazyhouse/piece.h:24:16: warning:  by ‘virtual bool HLVariant::Crazyhouse::Piece::operator==(const HLVariant::Crazyhouse::Piece&) const’ [-Woverloaded-virtual] - virtual bool operator==(const Piece& other) const; - ^ -In file included from /work/yann/deb/tagua/tagua/src/hlvariant/dummy/../crazyhouse/../chess/variant.h:18:0, - from /work/yann/deb/tagua/tagua/src/hlvariant/dummy/../crazyhouse/variant.h:21, - from /work/yann/deb/tagua/tagua/src/hlvariant/dummy/variant.h:14, - from /work/yann/deb/tagua/tagua/src/hlvariant/dummy/variant.cpp:11: -/work/yann/deb/tagua/tagua/src/hlvariant/dummy/../crazyhouse/../chess/../animator.h: In instantiation of ‘AnimationGroupPtr HLVariant::SimpleAnimator<_Variant>::forward(const GameState&, const Move&) [with _Variant = HLVariant::Dummy::Variant; AnimationGroupPtr = boost::shared_ptr; HLVariant::SimpleAnimator<_Variant>::GameState = HLVariant::Crazyhouse::GameState, HLVariant::Crazyhouse::MoveMixin >; HLVariant::SimpleAnimator<_Variant>::Move = HLVariant::Crazyhouse::MoveMixin]’: -/work/yann/deb/tagua/tagua/src/hlvariant/dummy/variant.cpp:31:1: required from here -/work/yann/deb/tagua/tagua/src/hlvariant/dummy/../crazyhouse/../chess/../animator.h:162:14: warning: variable ‘real’ set but not used [-Wunused-but-set-variable] - QPoint real = m_cinterface->converter()->toReal(move.to()); - ^ -[ 2%] Building CXX object src/CMakeFiles/tagua.dir/hlvariant/crazyhouse/variant.o -cd /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/src && /usr/bin/c++ -DKDE4_CMAKE_TOPLEVEL_DIR_LENGTH=20 -DKDE_DEPRECATED_WARNINGS -DQT_NO_CAST_TO_ASCII -DQT_NO_KEYWORDS -DQT_NO_STL -DUSE_UNSTABLE_LIBKDEGAMESPRIVATE_API -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_REENTRANT -D_XOPEN_SOURCE=500 -I/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/src -I/work/yann/deb/tagua/tagua/src -I/usr/include/KDE -I/usr/include/qt4/phonon -I/usr/include/qt4/QtXmlPatterns -I/usr/include/qt4/QtXml -I/usr/include/qt4/QtWebKit -I/usr/include/qt4/QtUiTools -I/usr/include/qt4/QtTest -I/usr/include/qt4/QtSvg -I/usr/include/qt4/QtSql -I/usr/include/qt4/QtScriptTools -I/usr/include/qt4/QtScript -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4/QtNetwork -I/usr/include/qt4/QtHelp -I/usr/include/qt4/QtDesigner -I/usr/include/qt4/QtDeclarative -I/usr/include/qt4/QtDBus -I/usr/include/qt4/QtAssistant -I/usr/include/qt4/Qt3Support -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtCore -I/usr/include/qt4/Qt -I/usr/share/qt4/mkspecs/default -I/usr/include/qt4 -I/usr/include/lua5.1 -I/usr/include/qimageblitz -I/usr/include/libkdegamesprivate -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -Wnon-virtual-dtor -Wno-long-long -Wundef -Wcast-align -Wchar-subscripts -Wall -W -Wpointer-arith -Wformat-security -fno-exceptions -DQT_NO_EXCEPTIONS -fno-check-new -fno-common -Woverloaded-virtual -fno-threadsafe-statics -fvisibility=hidden -Werror=return-type -fvisibility-inlines-hidden -fexceptions -D_GNU_SOURCE -D_LARGEFILE64_SOURCE -I/usr/include/lua5.1 -o CMakeFiles/tagua.dir/hlvariant/crazyhouse/variant.o -c /work/yann/deb/tagua/tagua/src/hlvariant/crazyhouse/variant.cpp -In file included from /work/yann/deb/tagua/tagua/src/hlvariant/crazyhouse/../chess/gamestate.h:15:0, - from /work/yann/deb/tagua/tagua/src/hlvariant/crazyhouse/../chess/legalitycheck.h:14, - from /work/yann/deb/tagua/tagua/src/hlvariant/crazyhouse/../chess/movegenerator.h:14, - from /work/yann/deb/tagua/tagua/src/hlvariant/crazyhouse/movegenerator.h:14, - from /work/yann/deb/tagua/tagua/src/hlvariant/crazyhouse/variant.h:15, - from /work/yann/deb/tagua/tagua/src/hlvariant/crazyhouse/variant.cpp:11: -/work/yann/deb/tagua/tagua/src/hlvariant/crazyhouse/../chess/piece.h:55:16: warning: ‘virtual bool HLVariant::Chess::Piece::operator==(const HLVariant::Chess::Piece&) const’ was hidden [-Woverloaded-virtual] - virtual bool operator==(const Piece& other) const; - ^ -In file included from /work/yann/deb/tagua/tagua/src/hlvariant/crazyhouse/variant.h:17:0, - from /work/yann/deb/tagua/tagua/src/hlvariant/crazyhouse/variant.cpp:11: -/work/yann/deb/tagua/tagua/src/hlvariant/crazyhouse/piece.h:24:16: warning:  by ‘virtual bool HLVariant::Crazyhouse::Piece::operator==(const HLVariant::Crazyhouse::Piece&) const’ [-Woverloaded-virtual] - virtual bool operator==(const Piece& other) const; - ^ -In file included from /work/yann/deb/tagua/tagua/src/hlvariant/crazyhouse/../chess/variant.h:18:0, - from /work/yann/deb/tagua/tagua/src/hlvariant/crazyhouse/variant.h:21, - from /work/yann/deb/tagua/tagua/src/hlvariant/crazyhouse/variant.cpp:11: -/work/yann/deb/tagua/tagua/src/hlvariant/crazyhouse/../chess/../animator.h: In instantiation of ‘AnimationGroupPtr HLVariant::SimpleAnimator<_Variant>::forward(const GameState&, const Move&) [with _Variant = HLVariant::Crazyhouse::Variant; AnimationGroupPtr = boost::shared_ptr; HLVariant::SimpleAnimator<_Variant>::GameState = HLVariant::Crazyhouse::GameState, HLVariant::Crazyhouse::MoveMixin >; HLVariant::SimpleAnimator<_Variant>::Move = HLVariant::Crazyhouse::MoveMixin]’: -/work/yann/deb/tagua/tagua/src/hlvariant/crazyhouse/variant.cpp:31:1: required from here -/work/yann/deb/tagua/tagua/src/hlvariant/crazyhouse/../chess/../animator.h:162:14: warning: variable ‘real’ set but not used [-Wunused-but-set-variable] - QPoint real = m_cinterface->converter()->toReal(move.to()); - ^ -[ 3%] Building CXX object src/CMakeFiles/tagua.dir/hlvariant/minichess5/variant.o -cd /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/src && /usr/bin/c++ -DKDE4_CMAKE_TOPLEVEL_DIR_LENGTH=20 -DKDE_DEPRECATED_WARNINGS -DQT_NO_CAST_TO_ASCII -DQT_NO_KEYWORDS -DQT_NO_STL -DUSE_UNSTABLE_LIBKDEGAMESPRIVATE_API -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_REENTRANT -D_XOPEN_SOURCE=500 -I/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/src -I/work/yann/deb/tagua/tagua/src -I/usr/include/KDE -I/usr/include/qt4/phonon -I/usr/include/qt4/QtXmlPatterns -I/usr/include/qt4/QtXml -I/usr/include/qt4/QtWebKit -I/usr/include/qt4/QtUiTools -I/usr/include/qt4/QtTest -I/usr/include/qt4/QtSvg -I/usr/include/qt4/QtSql -I/usr/include/qt4/QtScriptTools -I/usr/include/qt4/QtScript -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4/QtNetwork -I/usr/include/qt4/QtHelp -I/usr/include/qt4/QtDesigner -I/usr/include/qt4/QtDeclarative -I/usr/include/qt4/QtDBus -I/usr/include/qt4/QtAssistant -I/usr/include/qt4/Qt3Support -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtCore -I/usr/include/qt4/Qt -I/usr/share/qt4/mkspecs/default -I/usr/include/qt4 -I/usr/include/lua5.1 -I/usr/include/qimageblitz -I/usr/include/libkdegamesprivate -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -Wnon-virtual-dtor -Wno-long-long -Wundef -Wcast-align -Wchar-subscripts -Wall -W -Wpointer-arith -Wformat-security -fno-exceptions -DQT_NO_EXCEPTIONS -fno-check-new -fno-common -Woverloaded-virtual -fno-threadsafe-statics -fvisibility=hidden -Werror=return-type -fvisibility-inlines-hidden -fexceptions -D_GNU_SOURCE -D_LARGEFILE64_SOURCE -I/usr/include/lua5.1 -o CMakeFiles/tagua.dir/hlvariant/minichess5/variant.o -c /work/yann/deb/tagua/tagua/src/hlvariant/minichess5/variant.cpp -In file included from /work/yann/deb/tagua/tagua/src/hlvariant/minichess5/../chess/variant.h:18:0, - from /work/yann/deb/tagua/tagua/src/hlvariant/minichess5/variant.h:14, - from /work/yann/deb/tagua/tagua/src/hlvariant/minichess5/variant.cpp:11: -/work/yann/deb/tagua/tagua/src/hlvariant/minichess5/../chess/../animator.h: In instantiation of ‘AnimationGroupPtr HLVariant::SimpleAnimator<_Variant>::forward(const GameState&, const Move&) [with _Variant = HLVariant::Minichess5::Variant; AnimationGroupPtr = boost::shared_ptr; HLVariant::SimpleAnimator<_Variant>::GameState = HLVariant::Chess::GameState, HLVariant::Chess::Move>; HLVariant::SimpleAnimator<_Variant>::Move = HLVariant::Chess::Move]’: -/work/yann/deb/tagua/tagua/src/hlvariant/minichess5/variant.cpp:31:1: required from here -/work/yann/deb/tagua/tagua/src/hlvariant/minichess5/../chess/../animator.h:162:14: warning: variable ‘real’ set but not used [-Wunused-but-set-variable] - QPoint real = m_cinterface->converter()->toReal(move.to()); - ^ -[ 4%] Building CXX object src/CMakeFiles/tagua.dir/hlvariant/shogi/variant.o -cd /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/src && /usr/bin/c++ -DKDE4_CMAKE_TOPLEVEL_DIR_LENGTH=20 -DKDE_DEPRECATED_WARNINGS -DQT_NO_CAST_TO_ASCII -DQT_NO_KEYWORDS -DQT_NO_STL -DUSE_UNSTABLE_LIBKDEGAMESPRIVATE_API -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_REENTRANT -D_XOPEN_SOURCE=500 -I/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/src -I/work/yann/deb/tagua/tagua/src -I/usr/include/KDE -I/usr/include/qt4/phonon -I/usr/include/qt4/QtXmlPatterns -I/usr/include/qt4/QtXml -I/usr/include/qt4/QtWebKit -I/usr/include/qt4/QtUiTools -I/usr/include/qt4/QtTest -I/usr/include/qt4/QtSvg -I/usr/include/qt4/QtSql -I/usr/include/qt4/QtScriptTools -I/usr/include/qt4/QtScript -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4/QtNetwork -I/usr/include/qt4/QtHelp -I/usr/include/qt4/QtDesigner -I/usr/include/qt4/QtDeclarative -I/usr/include/qt4/QtDBus -I/usr/include/qt4/QtAssistant -I/usr/include/qt4/Qt3Support -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtCore -I/usr/include/qt4/Qt -I/usr/share/qt4/mkspecs/default -I/usr/include/qt4 -I/usr/include/lua5.1 -I/usr/include/qimageblitz -I/usr/include/libkdegamesprivate -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -Wnon-virtual-dtor -Wno-long-long -Wundef -Wcast-align -Wchar-subscripts -Wall -W -Wpointer-arith -Wformat-security -fno-exceptions -DQT_NO_EXCEPTIONS -fno-check-new -fno-common -Woverloaded-virtual -fno-threadsafe-statics -fvisibility=hidden -Werror=return-type -fvisibility-inlines-hidden -fexceptions -D_GNU_SOURCE -D_LARGEFILE64_SOURCE -I/usr/include/lua5.1 -o CMakeFiles/tagua.dir/hlvariant/shogi/variant.o -c /work/yann/deb/tagua/tagua/src/hlvariant/shogi/variant.cpp -In file included from /work/yann/deb/tagua/tagua/src/hlvariant/shogi/variant.h:22:0, - from /work/yann/deb/tagua/tagua/src/hlvariant/shogi/variant.cpp:11: -/work/yann/deb/tagua/tagua/src/hlvariant/shogi/../animator.h: In instantiation of ‘AnimationGroupPtr HLVariant::SimpleAnimator<_Variant>::forward(const GameState&, const Move&) [with _Variant = HLVariant::Shogi::Variant; AnimationGroupPtr = boost::shared_ptr; HLVariant::SimpleAnimator<_Variant>::GameState = HLVariant::Shogi::GameState, HLVariant::Crazyhouse::MoveMixin >; HLVariant::SimpleAnimator<_Variant>::Move = HLVariant::Crazyhouse::MoveMixin]’: -/work/yann/deb/tagua/tagua/src/hlvariant/shogi/variant.cpp:31:1: required from here -/work/yann/deb/tagua/tagua/src/hlvariant/shogi/../animator.h:162:14: warning: variable ‘real’ set but not used [-Wunused-but-set-variable] - QPoint real = m_cinterface->converter()->toReal(move.to()); - ^ -In file included from /work/yann/deb/tagua/tagua/src/hlvariant/shogi/variant.h:20:0, - from /work/yann/deb/tagua/tagua/src/hlvariant/shogi/variant.cpp:11: -/work/yann/deb/tagua/tagua/src/hlvariant/shogi/serializer.h: In instantiation of ‘HLVariant::Shogi::Serializer<_LegalityCheck>::Move HLVariant::Shogi::Serializer<_LegalityCheck>::parse(const QString&, int&, int, const GameState&) [with _LegalityCheck = HLVariant::Shogi::LegalityCheck, HLVariant::Crazyhouse::MoveMixin > >; HLVariant::Shogi::Serializer<_LegalityCheck>::Move = HLVariant::Crazyhouse::MoveMixin; HLVariant::Shogi::Serializer<_LegalityCheck>::GameState = HLVariant::Shogi::GameState, HLVariant::Crazyhouse::MoveMixin >]’: -/work/yann/deb/tagua/tagua/src/hlvariant/shogi/serializer.h:278:15: required from ‘HLVariant::Shogi::Serializer<_LegalityCheck>::Move HLVariant::Shogi::Serializer<_LegalityCheck>::parse(const QString&, int, const GameState&) [with _LegalityCheck = HLVariant::Shogi::LegalityCheck, HLVariant::Crazyhouse::MoveMixin > >; HLVariant::Shogi::Serializer<_LegalityCheck>::Move = HLVariant::Crazyhouse::MoveMixin; HLVariant::Shogi::Serializer<_LegalityCheck>::GameState = HLVariant::Shogi::GameState, HLVariant::Crazyhouse::MoveMixin >]’ -/work/yann/deb/tagua/tagua/src/hlvariant/shogi/serializer.h:291:17: required from ‘HLVariant::Shogi::Serializer<_LegalityCheck>::Move HLVariant::Shogi::Serializer<_LegalityCheck>::deserialize(const QString&, const GameState&) [with _LegalityCheck = HLVariant::Shogi::LegalityCheck, HLVariant::Crazyhouse::MoveMixin > >; HLVariant::Shogi::Serializer<_LegalityCheck>::Move = HLVariant::Crazyhouse::MoveMixin; HLVariant::Shogi::Serializer<_LegalityCheck>::GameState = HLVariant::Shogi::GameState, HLVariant::Crazyhouse::MoveMixin >]’ -/work/yann/deb/tagua/tagua/src/hlvariant/shogi/../tagua_wrapped.h:338:53: required from ‘MovePtr HLVariant::WrappedPosition::getMove(const QString&) const [with Variant = HLVariant::Shogi::Variant; MovePtr = boost::shared_ptr]’ -/work/yann/deb/tagua/tagua/src/hlvariant/shogi/variant.cpp:31:1: required from here -/work/yann/deb/tagua/tagua/src/hlvariant/shogi/serializer.h:207:15: warning: unused parameter ‘ysize’ [-Wunused-parameter] - int ysize, const GameState& ref) { - ^ -[ 5%] Building CXX object src/CMakeFiles/tagua.dir/hlvariant/minishogi/variant.o -cd /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/src && /usr/bin/c++ -DKDE4_CMAKE_TOPLEVEL_DIR_LENGTH=20 -DKDE_DEPRECATED_WARNINGS -DQT_NO_CAST_TO_ASCII -DQT_NO_KEYWORDS -DQT_NO_STL -DUSE_UNSTABLE_LIBKDEGAMESPRIVATE_API -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_REENTRANT -D_XOPEN_SOURCE=500 -I/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/src -I/work/yann/deb/tagua/tagua/src -I/usr/include/KDE -I/usr/include/qt4/phonon -I/usr/include/qt4/QtXmlPatterns -I/usr/include/qt4/QtXml -I/usr/include/qt4/QtWebKit -I/usr/include/qt4/QtUiTools -I/usr/include/qt4/QtTest -I/usr/include/qt4/QtSvg -I/usr/include/qt4/QtSql -I/usr/include/qt4/QtScriptTools -I/usr/include/qt4/QtScript -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4/QtNetwork -I/usr/include/qt4/QtHelp -I/usr/include/qt4/QtDesigner -I/usr/include/qt4/QtDeclarative -I/usr/include/qt4/QtDBus -I/usr/include/qt4/QtAssistant -I/usr/include/qt4/Qt3Support -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtCore -I/usr/include/qt4/Qt -I/usr/share/qt4/mkspecs/default -I/usr/include/qt4 -I/usr/include/lua5.1 -I/usr/include/qimageblitz -I/usr/include/libkdegamesprivate -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -Wnon-virtual-dtor -Wno-long-long -Wundef -Wcast-align -Wchar-subscripts -Wall -W -Wpointer-arith -Wformat-security -fno-exceptions -DQT_NO_EXCEPTIONS -fno-check-new -fno-common -Woverloaded-virtual -fno-threadsafe-statics -fvisibility=hidden -Werror=return-type -fvisibility-inlines-hidden -fexceptions -D_GNU_SOURCE -D_LARGEFILE64_SOURCE -I/usr/include/lua5.1 -o CMakeFiles/tagua.dir/hlvariant/minishogi/variant.o -c /work/yann/deb/tagua/tagua/src/hlvariant/minishogi/variant.cpp -In file included from /work/yann/deb/tagua/tagua/src/hlvariant/minishogi/variant.h:24:0, - from /work/yann/deb/tagua/tagua/src/hlvariant/minishogi/variant.cpp:12: -/work/yann/deb/tagua/tagua/src/hlvariant/minishogi/../animator.h: In instantiation of ‘AnimationGroupPtr HLVariant::SimpleAnimator<_Variant>::forward(const GameState&, const Move&) [with _Variant = HLVariant::MiniShogi::Variant; AnimationGroupPtr = boost::shared_ptr; HLVariant::SimpleAnimator<_Variant>::GameState = HLVariant::MiniShogi::GameState, HLVariant::Crazyhouse::MoveMixin >; HLVariant::SimpleAnimator<_Variant>::Move = HLVariant::Crazyhouse::MoveMixin]’: -/work/yann/deb/tagua/tagua/src/hlvariant/minishogi/variant.cpp:32:1: required from here -/work/yann/deb/tagua/tagua/src/hlvariant/minishogi/../animator.h:162:14: warning: variable ‘real’ set but not used [-Wunused-but-set-variable] - QPoint real = m_cinterface->converter()->toReal(move.to()); - ^ -In file included from /work/yann/deb/tagua/tagua/src/hlvariant/minishogi/variant.h:22:0, - from /work/yann/deb/tagua/tagua/src/hlvariant/minishogi/variant.cpp:12: -/work/yann/deb/tagua/tagua/src/hlvariant/minishogi/../shogi/serializer.h: In instantiation of ‘HLVariant::Shogi::Serializer<_LegalityCheck>::Move HLVariant::Shogi::Serializer<_LegalityCheck>::parse(const QString&, int&, int, const GameState&) [with _LegalityCheck = HLVariant::Shogi::LegalityCheck, HLVariant::Crazyhouse::MoveMixin > >; HLVariant::Shogi::Serializer<_LegalityCheck>::Move = HLVariant::Crazyhouse::MoveMixin; HLVariant::Shogi::Serializer<_LegalityCheck>::GameState = HLVariant::MiniShogi::GameState, HLVariant::Crazyhouse::MoveMixin >]’: -/work/yann/deb/tagua/tagua/src/hlvariant/minishogi/../shogi/serializer.h:278:15: required from ‘HLVariant::Shogi::Serializer<_LegalityCheck>::Move HLVariant::Shogi::Serializer<_LegalityCheck>::parse(const QString&, int, const GameState&) [with _LegalityCheck = HLVariant::Shogi::LegalityCheck, HLVariant::Crazyhouse::MoveMixin > >; HLVariant::Shogi::Serializer<_LegalityCheck>::Move = HLVariant::Crazyhouse::MoveMixin; HLVariant::Shogi::Serializer<_LegalityCheck>::GameState = HLVariant::MiniShogi::GameState, HLVariant::Crazyhouse::MoveMixin >]’ -/work/yann/deb/tagua/tagua/src/hlvariant/minishogi/../shogi/serializer.h:291:17: required from ‘HLVariant::Shogi::Serializer<_LegalityCheck>::Move HLVariant::Shogi::Serializer<_LegalityCheck>::deserialize(const QString&, const GameState&) [with _LegalityCheck = HLVariant::Shogi::LegalityCheck, HLVariant::Crazyhouse::MoveMixin > >; HLVariant::Shogi::Serializer<_LegalityCheck>::Move = HLVariant::Crazyhouse::MoveMixin; HLVariant::Shogi::Serializer<_LegalityCheck>::GameState = HLVariant::MiniShogi::GameState, HLVariant::Crazyhouse::MoveMixin >]’ -/work/yann/deb/tagua/tagua/src/hlvariant/minishogi/../tagua_wrapped.h:338:53: required from ‘MovePtr HLVariant::WrappedPosition::getMove(const QString&) const [with Variant = HLVariant::MiniShogi::Variant; MovePtr = boost::shared_ptr]’ -/work/yann/deb/tagua/tagua/src/hlvariant/minishogi/variant.cpp:32:1: required from here -/work/yann/deb/tagua/tagua/src/hlvariant/minishogi/../shogi/serializer.h:207:15: warning: unused parameter ‘ysize’ [-Wunused-parameter] - int ysize, const GameState& ref) { - ^ -[ 6%] Building CXX object src/CMakeFiles/tagua.dir/hlvariant/sho-shogi/variant.o -cd /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/src && /usr/bin/c++ -DKDE4_CMAKE_TOPLEVEL_DIR_LENGTH=20 -DKDE_DEPRECATED_WARNINGS -DQT_NO_CAST_TO_ASCII -DQT_NO_KEYWORDS -DQT_NO_STL -DUSE_UNSTABLE_LIBKDEGAMESPRIVATE_API -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_REENTRANT -D_XOPEN_SOURCE=500 -I/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/src -I/work/yann/deb/tagua/tagua/src -I/usr/include/KDE -I/usr/include/qt4/phonon -I/usr/include/qt4/QtXmlPatterns -I/usr/include/qt4/QtXml -I/usr/include/qt4/QtWebKit -I/usr/include/qt4/QtUiTools -I/usr/include/qt4/QtTest -I/usr/include/qt4/QtSvg -I/usr/include/qt4/QtSql -I/usr/include/qt4/QtScriptTools -I/usr/include/qt4/QtScript -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4/QtNetwork -I/usr/include/qt4/QtHelp -I/usr/include/qt4/QtDesigner -I/usr/include/qt4/QtDeclarative -I/usr/include/qt4/QtDBus -I/usr/include/qt4/QtAssistant -I/usr/include/qt4/Qt3Support -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtCore -I/usr/include/qt4/Qt -I/usr/share/qt4/mkspecs/default -I/usr/include/qt4 -I/usr/include/lua5.1 -I/usr/include/qimageblitz -I/usr/include/libkdegamesprivate -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -Wnon-virtual-dtor -Wno-long-long -Wundef -Wcast-align -Wchar-subscripts -Wall -W -Wpointer-arith -Wformat-security -fno-exceptions -DQT_NO_EXCEPTIONS -fno-check-new -fno-common -Woverloaded-virtual -fno-threadsafe-statics -fvisibility=hidden -Werror=return-type -fvisibility-inlines-hidden -fexceptions -D_GNU_SOURCE -D_LARGEFILE64_SOURCE -I/usr/include/lua5.1 -o CMakeFiles/tagua.dir/hlvariant/sho-shogi/variant.o -c /work/yann/deb/tagua/tagua/src/hlvariant/sho-shogi/variant.cpp -In file included from /work/yann/deb/tagua/tagua/src/hlvariant/sho-shogi/variant.h:24:0, - from /work/yann/deb/tagua/tagua/src/hlvariant/sho-shogi/variant.cpp:12: -/work/yann/deb/tagua/tagua/src/hlvariant/sho-shogi/../animator.h: In instantiation of ‘AnimationGroupPtr HLVariant::SimpleAnimator<_Variant>::forward(const GameState&, const Move&) [with _Variant = HLVariant::ShoShogi::Variant; AnimationGroupPtr = boost::shared_ptr; HLVariant::SimpleAnimator<_Variant>::GameState = HLVariant::ShoShogi::GameState, HLVariant::Crazyhouse::MoveMixin >; HLVariant::SimpleAnimator<_Variant>::Move = HLVariant::Crazyhouse::MoveMixin]’: -/work/yann/deb/tagua/tagua/src/hlvariant/sho-shogi/variant.cpp:32:1: required from here -/work/yann/deb/tagua/tagua/src/hlvariant/sho-shogi/../animator.h:162:14: warning: variable ‘real’ set but not used [-Wunused-but-set-variable] - QPoint real = m_cinterface->converter()->toReal(move.to()); - ^ -In file included from /work/yann/deb/tagua/tagua/src/hlvariant/sho-shogi/variant.h:22:0, - from /work/yann/deb/tagua/tagua/src/hlvariant/sho-shogi/variant.cpp:12: -/work/yann/deb/tagua/tagua/src/hlvariant/sho-shogi/../shogi/serializer.h: In instantiation of ‘HLVariant::Shogi::Serializer<_LegalityCheck>::Move HLVariant::Shogi::Serializer<_LegalityCheck>::parse(const QString&, int&, int, const GameState&) [with _LegalityCheck = HLVariant::ShoShogi::LegalityCheck, HLVariant::Crazyhouse::MoveMixin > >; HLVariant::Shogi::Serializer<_LegalityCheck>::Move = HLVariant::Crazyhouse::MoveMixin; HLVariant::Shogi::Serializer<_LegalityCheck>::GameState = HLVariant::ShoShogi::GameState, HLVariant::Crazyhouse::MoveMixin >]’: -/work/yann/deb/tagua/tagua/src/hlvariant/sho-shogi/../shogi/serializer.h:278:15: required from ‘HLVariant::Shogi::Serializer<_LegalityCheck>::Move HLVariant::Shogi::Serializer<_LegalityCheck>::parse(const QString&, int, const GameState&) [with _LegalityCheck = HLVariant::ShoShogi::LegalityCheck, HLVariant::Crazyhouse::MoveMixin > >; HLVariant::Shogi::Serializer<_LegalityCheck>::Move = HLVariant::Crazyhouse::MoveMixin; HLVariant::Shogi::Serializer<_LegalityCheck>::GameState = HLVariant::ShoShogi::GameState, HLVariant::Crazyhouse::MoveMixin >]’ -/work/yann/deb/tagua/tagua/src/hlvariant/sho-shogi/../shogi/serializer.h:291:17: required from ‘HLVariant::Shogi::Serializer<_LegalityCheck>::Move HLVariant::Shogi::Serializer<_LegalityCheck>::deserialize(const QString&, const GameState&) [with _LegalityCheck = HLVariant::ShoShogi::LegalityCheck, HLVariant::Crazyhouse::MoveMixin > >; HLVariant::Shogi::Serializer<_LegalityCheck>::Move = HLVariant::Crazyhouse::MoveMixin; HLVariant::Shogi::Serializer<_LegalityCheck>::GameState = HLVariant::ShoShogi::GameState, HLVariant::Crazyhouse::MoveMixin >]’ -/work/yann/deb/tagua/tagua/src/hlvariant/sho-shogi/../tagua_wrapped.h:338:53: required from ‘MovePtr HLVariant::WrappedPosition::getMove(const QString&) const [with Variant = HLVariant::ShoShogi::Variant; MovePtr = boost::shared_ptr]’ -/work/yann/deb/tagua/tagua/src/hlvariant/sho-shogi/variant.cpp:32:1: required from here -/work/yann/deb/tagua/tagua/src/hlvariant/sho-shogi/../shogi/serializer.h:207:15: warning: unused parameter ‘ysize’ [-Wunused-parameter] - int ysize, const GameState& ref) { - ^ -[ 6%] Building CXX object src/CMakeFiles/tagua.dir/hlvariant/tori-shogi/variant.o -cd /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/src && /usr/bin/c++ -DKDE4_CMAKE_TOPLEVEL_DIR_LENGTH=20 -DKDE_DEPRECATED_WARNINGS -DQT_NO_CAST_TO_ASCII -DQT_NO_KEYWORDS -DQT_NO_STL -DUSE_UNSTABLE_LIBKDEGAMESPRIVATE_API -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_REENTRANT -D_XOPEN_SOURCE=500 -I/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/src -I/work/yann/deb/tagua/tagua/src -I/usr/include/KDE -I/usr/include/qt4/phonon -I/usr/include/qt4/QtXmlPatterns -I/usr/include/qt4/QtXml -I/usr/include/qt4/QtWebKit -I/usr/include/qt4/QtUiTools -I/usr/include/qt4/QtTest -I/usr/include/qt4/QtSvg -I/usr/include/qt4/QtSql -I/usr/include/qt4/QtScriptTools -I/usr/include/qt4/QtScript -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4/QtNetwork -I/usr/include/qt4/QtHelp -I/usr/include/qt4/QtDesigner -I/usr/include/qt4/QtDeclarative -I/usr/include/qt4/QtDBus -I/usr/include/qt4/QtAssistant -I/usr/include/qt4/Qt3Support -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtCore -I/usr/include/qt4/Qt -I/usr/share/qt4/mkspecs/default -I/usr/include/qt4 -I/usr/include/lua5.1 -I/usr/include/qimageblitz -I/usr/include/libkdegamesprivate -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -Wnon-virtual-dtor -Wno-long-long -Wundef -Wcast-align -Wchar-subscripts -Wall -W -Wpointer-arith -Wformat-security -fno-exceptions -DQT_NO_EXCEPTIONS -fno-check-new -fno-common -Woverloaded-virtual -fno-threadsafe-statics -fvisibility=hidden -Werror=return-type -fvisibility-inlines-hidden -fexceptions -D_GNU_SOURCE -D_LARGEFILE64_SOURCE -I/usr/include/lua5.1 -o CMakeFiles/tagua.dir/hlvariant/tori-shogi/variant.o -c /work/yann/deb/tagua/tagua/src/hlvariant/tori-shogi/variant.cpp -In file included from /work/yann/deb/tagua/tagua/src/hlvariant/tori-shogi/variant.h:23:0, - from /work/yann/deb/tagua/tagua/src/hlvariant/tori-shogi/variant.cpp:11: -/work/yann/deb/tagua/tagua/src/hlvariant/tori-shogi/../animator.h: In instantiation of ‘AnimationGroupPtr HLVariant::SimpleAnimator<_Variant>::forward(const GameState&, const Move&) [with _Variant = HLVariant::ToriShogi::Variant; AnimationGroupPtr = boost::shared_ptr; HLVariant::SimpleAnimator<_Variant>::GameState = HLVariant::ToriShogi::GameState, HLVariant::Crazyhouse::MoveMixin >; HLVariant::SimpleAnimator<_Variant>::Move = HLVariant::Crazyhouse::MoveMixin]’: -/work/yann/deb/tagua/tagua/src/hlvariant/tori-shogi/variant.cpp:31:1: required from here -/work/yann/deb/tagua/tagua/src/hlvariant/tori-shogi/../animator.h:162:14: warning: variable ‘real’ set but not used [-Wunused-but-set-variable] - QPoint real = m_cinterface->converter()->toReal(move.to()); - ^ -In file included from /work/yann/deb/tagua/tagua/src/hlvariant/tori-shogi/serializer.h:14:0, - from /work/yann/deb/tagua/tagua/src/hlvariant/tori-shogi/variant.h:21, - from /work/yann/deb/tagua/tagua/src/hlvariant/tori-shogi/variant.cpp:11: -/work/yann/deb/tagua/tagua/src/hlvariant/tori-shogi/../shogi/serializer.h: In instantiation of ‘HLVariant::Shogi::Serializer<_LegalityCheck>::Move HLVariant::Shogi::Serializer<_LegalityCheck>::parse(const QString&, int&, int, const GameState&) [with _LegalityCheck = HLVariant::ToriShogi::LegalityCheck, HLVariant::Crazyhouse::MoveMixin > >; HLVariant::Shogi::Serializer<_LegalityCheck>::Move = HLVariant::Crazyhouse::MoveMixin; HLVariant::Shogi::Serializer<_LegalityCheck>::GameState = HLVariant::ToriShogi::GameState, HLVariant::Crazyhouse::MoveMixin >]’: -/work/yann/deb/tagua/tagua/src/hlvariant/tori-shogi/../shogi/serializer.h:278:15: required from ‘HLVariant::Shogi::Serializer<_LegalityCheck>::Move HLVariant::Shogi::Serializer<_LegalityCheck>::parse(const QString&, int, const GameState&) [with _LegalityCheck = HLVariant::ToriShogi::LegalityCheck, HLVariant::Crazyhouse::MoveMixin > >; HLVariant::Shogi::Serializer<_LegalityCheck>::Move = HLVariant::Crazyhouse::MoveMixin; HLVariant::Shogi::Serializer<_LegalityCheck>::GameState = HLVariant::ToriShogi::GameState, HLVariant::Crazyhouse::MoveMixin >]’ -/work/yann/deb/tagua/tagua/src/hlvariant/tori-shogi/../shogi/serializer.h:291:17: required from ‘HLVariant::Shogi::Serializer<_LegalityCheck>::Move HLVariant::Shogi::Serializer<_LegalityCheck>::deserialize(const QString&, const GameState&) [with _LegalityCheck = HLVariant::ToriShogi::LegalityCheck, HLVariant::Crazyhouse::MoveMixin > >; HLVariant::Shogi::Serializer<_LegalityCheck>::Move = HLVariant::Crazyhouse::MoveMixin; HLVariant::Shogi::Serializer<_LegalityCheck>::GameState = HLVariant::ToriShogi::GameState, HLVariant::Crazyhouse::MoveMixin >]’ -/work/yann/deb/tagua/tagua/src/hlvariant/tori-shogi/../tagua_wrapped.h:338:53: required from ‘MovePtr HLVariant::WrappedPosition::getMove(const QString&) const [with Variant = HLVariant::ToriShogi::Variant; MovePtr = boost::shared_ptr]’ -/work/yann/deb/tagua/tagua/src/hlvariant/tori-shogi/variant.cpp:31:1: required from here -/work/yann/deb/tagua/tagua/src/hlvariant/tori-shogi/../shogi/serializer.h:207:15: warning: unused parameter ‘ysize’ [-Wunused-parameter] - int ysize, const GameState& ref) { - ^ -[ 7%] Linking CXX executable tagua -cd /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/src && /usr/bin/cmake -E cmake_link_script CMakeFiles/tagua.dir/link.txt --verbose=1 -/usr/bin/c++ -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -Wnon-virtual-dtor -Wno-long-long -Wundef -Wcast-align -Wchar-subscripts -Wall -W -Wpointer-arith -Wformat-security -fno-exceptions -DQT_NO_EXCEPTIONS -fno-check-new -fno-common -Woverloaded-virtual -fno-threadsafe-statics -fvisibility=hidden -Werror=return-type -fvisibility-inlines-hidden -Wl,--enable-new-dtags -Wl,-z,relro CMakeFiles/tagua.dir/tagua_automoc.o CMakeFiles/tagua.dir/main.o CMakeFiles/tagua.dir/controllers/editgame.o CMakeFiles/tagua.dir/controllers/abstract.o CMakeFiles/tagua.dir/controllers/editposition.o CMakeFiles/tagua.dir/controllers/entitytoken.o CMakeFiles/tagua.dir/loader/image.o CMakeFiles/tagua.dir/loader/theme.o CMakeFiles/tagua.dir/loader/context.o CMakeFiles/tagua.dir/luaapi/lfunclib.o CMakeFiles/tagua.dir/luaapi/options.o CMakeFiles/tagua.dir/luaapi/luahl.o CMakeFiles/tagua.dir/luaapi/genericwrapper.o CMakeFiles/tagua.dir/luaapi/loader.o CMakeFiles/tagua.dir/luaapi/imaging.o CMakeFiles/tagua.dir/luaapi/luavalue.o CMakeFiles/tagua.dir/entities/gameentity.o CMakeFiles/tagua.dir/entities/userentity.o CMakeFiles/tagua.dir/entities/examinationentity.o CMakeFiles/tagua.dir/entities/entity.o CMakeFiles/tagua.dir/entities/engineentity.o CMakeFiles/tagua.dir/entities/icsentity.o CMakeFiles/tagua.dir/hlvariant/chess/variant.o CMakeFiles/tagua.dir/hlvariant/chess/san.o CMakeFiles/tagua.dir/hlvariant/chess/icsverbose.o CMakeFiles/tagua.dir/hlvariant/chess/move.o CMakeFiles/tagua.dir/hlvariant/chess/gamestate.o CMakeFiles/tagua.dir/hlvariant/chess/piece.o CMakeFiles/tagua.dir/hlvariant/chess/actions.o CMakeFiles/tagua.dir/hlvariant/dummy/variant.o CMakeFiles/tagua.dir/hlvariant/crazyhouse/variant.o CMakeFiles/tagua.dir/hlvariant/crazyhouse/piece.o CMakeFiles/tagua.dir/hlvariant/minichess5/variant.o CMakeFiles/tagua.dir/hlvariant/shogi/variant.o CMakeFiles/tagua.dir/hlvariant/shogi/piece.o CMakeFiles/tagua.dir/hlvariant/shogi/shogiactions.o CMakeFiles/tagua.dir/hlvariant/minishogi/variant.o CMakeFiles/tagua.dir/hlvariant/sho-shogi/variant.o CMakeFiles/tagua.dir/hlvariant/tori-shogi/variant.o CMakeFiles/tagua.dir/hlvariant/tori-shogi/piece.o CMakeFiles/tagua.dir/animationfactory.o CMakeFiles/tagua.dir/constrainedtext.o CMakeFiles/tagua.dir/movelist.o CMakeFiles/tagua.dir/infodisplay.o CMakeFiles/tagua.dir/engineinfo.o CMakeFiles/tagua.dir/premove.o CMakeFiles/tagua.dir/mainanimation.o CMakeFiles/tagua.dir/random.o CMakeFiles/tagua.dir/point.o CMakeFiles/tagua.dir/sprite.o CMakeFiles/tagua.dir/pref_movelist.o CMakeFiles/tagua.dir/option.o CMakeFiles/tagua.dir/graphicalsystem.o CMakeFiles/tagua.dir/agentgroup.o CMakeFiles/tagua.dir/graphicalgame.o CMakeFiles/tagua.dir/imageeffects.o CMakeFiles/tagua.dir/crash.o CMakeFiles/tagua.dir/flash.o CMakeFiles/tagua.dir/histlineedit.o CMakeFiles/tagua.dir/pathinfo.o CMakeFiles/tagua.dir/pref_theme.o CMakeFiles/tagua.dir/gameinfo.o CMakeFiles/tagua.dir/console.o CMakeFiles/tagua.dir/animation.o CMakeFiles/tagua.dir/pref_engines.o CMakeFiles/tagua.dir/clock.o CMakeFiles/tagua.dir/chesstable.o CMakeFiles/tagua.dir/index.o CMakeFiles/tagua.dir/mastersettings.o CMakeFiles/tagua.dir/location.o CMakeFiles/tagua.dir/hline.o CMakeFiles/tagua.dir/xboardengine.o CMakeFiles/tagua.dir/gnushogiengine.o CMakeFiles/tagua.dir/settings.o CMakeFiles/tagua.dir/positioninfo.o CMakeFiles/tagua.dir/engine.o CMakeFiles/tagua.dir/ui.o CMakeFiles/tagua.dir/movelist_widget.o CMakeFiles/tagua.dir/pref_preferences.o CMakeFiles/tagua.dir/poolinfo.o CMakeFiles/tagua.dir/pixmaploader.o CMakeFiles/tagua.dir/qconnect.o CMakeFiles/tagua.dir/pref_board.o CMakeFiles/tagua.dir/game.o CMakeFiles/tagua.dir/piecepool.o CMakeFiles/tagua.dir/movelist_textual.o CMakeFiles/tagua.dir/icsconnection.o CMakeFiles/tagua.dir/mainwindow.o CMakeFiles/tagua.dir/board.o CMakeFiles/tagua.dir/common.o CMakeFiles/tagua.dir/pgnparser.o CMakeFiles/tagua.dir/movement.o CMakeFiles/tagua.dir/connection.o CMakeFiles/tagua.dir/movelist_table.o CMakeFiles/tagua.dir/newgame.o CMakeFiles/tagua.dir/option_p.o CMakeFiles/tagua.dir/themeinfo.o CMakeFiles/tagua.dir/namedsprite.o CMakeFiles/tagua.dir/icsgamedata.o CMakeFiles/tagua.dir/turnpolicy.o CMakeFiles/tagua.dir/decoratedmove.o CMakeFiles/tagua.dir/variants.o CMakeFiles/tagua.dir/actioncollection.o CMakeFiles/tagua.dir/tabwidget.o CMakeFiles/tagua.dir/imageeffects_mmx.o CMakeFiles/tagua.dir/imageeffects_sse.o -o tagua -rdynamic -llua5.1 /usr/lib/libkio.so.5.14.21 -lqimageblitz -ldl -lkdegames -lkdegamesprivate /usr/lib/x86_64-linux-gnu/libQtNetwork.so /usr/lib/x86_64-linux-gnu/libQtXml.so /usr/lib/libkdeui.so.5.14.21 /usr/lib/x86_64-linux-gnu/libQtGui.so /usr/lib/x86_64-linux-gnu/libQtSvg.so /usr/lib/libkdecore.so.5.14.21 /usr/lib/x86_64-linux-gnu/libQtDBus.so /usr/lib/x86_64-linux-gnu/libQtCore.so -cd /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/src && /usr/bin/cmake -D_filename=/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/src/tagua.shell -D_library_path_variable=LD_LIBRARY_PATH -D_ld_library_path="/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/lib/./:/usr/lib:/usr/lib:/usr/lib/x86_64-linux-gnu" -D_executable=/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/src/tagua -P /usr/share/kde4/apps/cmake/modules/kde4_exec_via_sh.cmake -make[4]: Leaving directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -[ 92%] Built target tagua -make -f translations/CMakeFiles/translation-cs.dir/build.make translations/CMakeFiles/translation-cs.dir/depend -make[4]: Entering directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -cd /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /work/yann/deb/tagua/tagua /work/yann/deb/tagua/tagua/translations /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/translations /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/translations/CMakeFiles/translation-cs.dir/DependInfo.cmake --color= -make[4]: Leaving directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -make -f translations/CMakeFiles/translation-cs.dir/build.make translations/CMakeFiles/translation-cs.dir/build -make[4]: Entering directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -make[4]: Nothing to be done for 'translations/CMakeFiles/translation-cs.dir/build'. -make[4]: Leaving directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -[ 92%] Built target translation-cs -make -f translations/CMakeFiles/translation-fr.dir/build.make translations/CMakeFiles/translation-fr.dir/depend -make[4]: Entering directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -cd /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /work/yann/deb/tagua/tagua /work/yann/deb/tagua/tagua/translations /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/translations /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/translations/CMakeFiles/translation-fr.dir/DependInfo.cmake --color= -make[4]: Leaving directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -make -f translations/CMakeFiles/translation-fr.dir/build.make translations/CMakeFiles/translation-fr.dir/build -make[4]: Entering directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -make[4]: Nothing to be done for 'translations/CMakeFiles/translation-fr.dir/build'. -make[4]: Leaving directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -[ 93%] Built target translation-fr -make -f tests/settings/CMakeFiles/settings_test_automoc.dir/build.make tests/settings/CMakeFiles/settings_test_automoc.dir/depend -make[4]: Entering directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -cd /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /work/yann/deb/tagua/tagua /work/yann/deb/tagua/tagua/tests/settings /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/tests/settings /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/tests/settings/CMakeFiles/settings_test_automoc.dir/DependInfo.cmake --color= -make[4]: Leaving directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -make -f tests/settings/CMakeFiles/settings_test_automoc.dir/build.make tests/settings/CMakeFiles/settings_test_automoc.dir/build -make[4]: Entering directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -cd /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/tests/settings && /usr/bin/automoc4 /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/tests/settings/settings_test_automoc.cpp /work/yann/deb/tagua/tagua/tests/settings /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/tests/settings /usr/lib/x86_64-linux-gnu/qt4/bin/moc /usr/bin/cmake -make[4]: Leaving directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -[ 93%] Built target settings_test_automoc -make -f tests/settings/CMakeFiles/settings_test.dir/build.make tests/settings/CMakeFiles/settings_test.dir/depend -make[4]: Entering directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -cd /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /work/yann/deb/tagua/tagua /work/yann/deb/tagua/tagua/tests/settings /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/tests/settings /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/tests/settings/CMakeFiles/settings_test.dir/DependInfo.cmake --color= -make[4]: Leaving directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -make -f tests/settings/CMakeFiles/settings_test.dir/build.make tests/settings/CMakeFiles/settings_test.dir/build -make[4]: Entering directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -make[4]: Nothing to be done for 'tests/settings/CMakeFiles/settings_test.dir/build'. -make[4]: Leaving directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -[ 97%] Built target settings_test -make -f tests/weak_set/CMakeFiles/weakset_test.dir/build.make tests/weak_set/CMakeFiles/weakset_test.dir/depend -make[4]: Entering directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -cd /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /work/yann/deb/tagua/tagua /work/yann/deb/tagua/tagua/tests/weak_set /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/tests/weak_set /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/tests/weak_set/CMakeFiles/weakset_test.dir/DependInfo.cmake --color= -make[4]: Leaving directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -make -f tests/weak_set/CMakeFiles/weakset_test.dir/build.make tests/weak_set/CMakeFiles/weakset_test.dir/build -make[4]: Entering directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -make[4]: Nothing to be done for 'tests/weak_set/CMakeFiles/weakset_test.dir/build'. -make[4]: Leaving directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -[100%] Built target weakset_test -make[3]: Leaving directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -/usr/bin/cmake -E cmake_progress_start /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/CMakeFiles 0 -make[2]: Leaving directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' - cd /work/yann/deb/tagua/tagua -./extract-messages.sh -Preparing rc files -Done preparing rc files -Extracting messages -Done extracting messages -Merging translations -translations/cs.po -.................. done. -translations/fr.po -.................. done. -Done merging translations -Cleaning up -Done -make[1]: Leaving directory '/work/yann/deb/tagua/tagua' - dh_auto_test - cd obj-x86_64-linux-gnu - make -j1 test ARGS\+=-j1 -make[1]: Entering directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -Running tests... -/usr/bin/ctest --force-new-ctest-process -j1 -Test project /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu - Start 1: settings -1/2 Test #1: settings ......................... Passed 1.05 sec - Start 2: weakset -2/2 Test #2: weakset .......................... Passed 0.01 sec - -100% tests passed, 0 tests failed out of 2 - -Total Test time (real) = 1.06 sec -make[1]: Leaving directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' - cd /work/yann/deb/tagua/tagua - dh_testroot - dh_prep - rm -f debian/tagua.substvars - rm -f debian/tagua.*.debhelper - rm -rf debian/tagua/ - rm -f debian/tagua-data.substvars - rm -f debian/tagua-data.*.debhelper - rm -rf debian/tagua-data/ - debian/rules override_dh_auto_install -make[1]: Entering directory '/work/yann/deb/tagua/tagua' -dh_auto_install - install -d debian/tagua - install -d debian/tagua-data - cd obj-x86_64-linux-gnu - make -j1 install DESTDIR=/work/yann/deb/tagua/tagua/debian/tmp AM_UPDATE_INFO_DIR=no -make[2]: Entering directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -/usr/bin/cmake -H/work/yann/deb/tagua/tagua -B/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu --check-build-system CMakeFiles/Makefile.cmake 0 -/usr/bin/cmake -E cmake_progress_start /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/CMakeFiles /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/CMakeFiles/progress.marks -make -f CMakeFiles/Makefile2 all -make[3]: Entering directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -make -f src/CMakeFiles/tagua_automoc.dir/build.make src/CMakeFiles/tagua_automoc.dir/depend -make[4]: Entering directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -cd /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /work/yann/deb/tagua/tagua /work/yann/deb/tagua/tagua/src /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/src /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/src/CMakeFiles/tagua_automoc.dir/DependInfo.cmake --color= -make[4]: Leaving directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -make -f src/CMakeFiles/tagua_automoc.dir/build.make src/CMakeFiles/tagua_automoc.dir/build -make[4]: Entering directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -cd /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/src && /usr/bin/automoc4 /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/src/tagua_automoc.cpp /work/yann/deb/tagua/tagua/src /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/src /usr/lib/x86_64-linux-gnu/qt4/bin/moc /usr/bin/cmake -make[4]: Leaving directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -[ 0%] Built target tagua_automoc -make -f src/CMakeFiles/tagua.dir/build.make src/CMakeFiles/tagua.dir/depend -make[4]: Entering directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -cd /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /work/yann/deb/tagua/tagua /work/yann/deb/tagua/tagua/src /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/src /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/src/CMakeFiles/tagua.dir/DependInfo.cmake --color= -make[4]: Leaving directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -make -f src/CMakeFiles/tagua.dir/build.make src/CMakeFiles/tagua.dir/build -make[4]: Entering directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -make[4]: Nothing to be done for 'src/CMakeFiles/tagua.dir/build'. -make[4]: Leaving directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -[ 92%] Built target tagua -make -f translations/CMakeFiles/translation-cs.dir/build.make translations/CMakeFiles/translation-cs.dir/depend -make[4]: Entering directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -cd /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /work/yann/deb/tagua/tagua /work/yann/deb/tagua/tagua/translations /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/translations /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/translations/CMakeFiles/translation-cs.dir/DependInfo.cmake --color= -make[4]: Leaving directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -make -f translations/CMakeFiles/translation-cs.dir/build.make translations/CMakeFiles/translation-cs.dir/build -make[4]: Entering directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -[ 92%] Generating cs.gmo -cd /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/translations && /usr/bin/msgfmt --check -o /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/translations/cs.gmo /work/yann/deb/tagua/tagua/translations/cs.po -/work/yann/deb/tagua/tagua/translations/cs.po:9: warning: header field 'Language' still has the initial default value -make[4]: Leaving directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -[ 92%] Built target translation-cs -make -f translations/CMakeFiles/translation-fr.dir/build.make translations/CMakeFiles/translation-fr.dir/depend -make[4]: Entering directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -cd /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /work/yann/deb/tagua/tagua /work/yann/deb/tagua/tagua/translations /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/translations /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/translations/CMakeFiles/translation-fr.dir/DependInfo.cmake --color= -make[4]: Leaving directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -make -f translations/CMakeFiles/translation-fr.dir/build.make translations/CMakeFiles/translation-fr.dir/build -make[4]: Entering directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -[ 93%] Generating fr.gmo -cd /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/translations && /usr/bin/msgfmt --check -o /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/translations/fr.gmo /work/yann/deb/tagua/tagua/translations/fr.po -make[4]: Leaving directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -[ 93%] Built target translation-fr -make -f tests/settings/CMakeFiles/settings_test_automoc.dir/build.make tests/settings/CMakeFiles/settings_test_automoc.dir/depend -make[4]: Entering directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -cd /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /work/yann/deb/tagua/tagua /work/yann/deb/tagua/tagua/tests/settings /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/tests/settings /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/tests/settings/CMakeFiles/settings_test_automoc.dir/DependInfo.cmake --color= -make[4]: Leaving directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -make -f tests/settings/CMakeFiles/settings_test_automoc.dir/build.make tests/settings/CMakeFiles/settings_test_automoc.dir/build -make[4]: Entering directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -cd /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/tests/settings && /usr/bin/automoc4 /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/tests/settings/settings_test_automoc.cpp /work/yann/deb/tagua/tagua/tests/settings /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/tests/settings /usr/lib/x86_64-linux-gnu/qt4/bin/moc /usr/bin/cmake -make[4]: Leaving directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -[ 93%] Built target settings_test_automoc -make -f tests/settings/CMakeFiles/settings_test.dir/build.make tests/settings/CMakeFiles/settings_test.dir/depend -make[4]: Entering directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -cd /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /work/yann/deb/tagua/tagua /work/yann/deb/tagua/tagua/tests/settings /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/tests/settings /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/tests/settings/CMakeFiles/settings_test.dir/DependInfo.cmake --color= -make[4]: Leaving directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -make -f tests/settings/CMakeFiles/settings_test.dir/build.make tests/settings/CMakeFiles/settings_test.dir/build -make[4]: Entering directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -make[4]: Nothing to be done for 'tests/settings/CMakeFiles/settings_test.dir/build'. -make[4]: Leaving directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -[ 97%] Built target settings_test -make -f tests/weak_set/CMakeFiles/weakset_test.dir/build.make tests/weak_set/CMakeFiles/weakset_test.dir/depend -make[4]: Entering directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -cd /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /work/yann/deb/tagua/tagua /work/yann/deb/tagua/tagua/tests/weak_set /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/tests/weak_set /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/tests/weak_set/CMakeFiles/weakset_test.dir/DependInfo.cmake --color= -make[4]: Leaving directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -make -f tests/weak_set/CMakeFiles/weakset_test.dir/build.make tests/weak_set/CMakeFiles/weakset_test.dir/build -make[4]: Entering directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -make[4]: Nothing to be done for 'tests/weak_set/CMakeFiles/weakset_test.dir/build'. -make[4]: Leaving directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -[100%] Built target weakset_test -make[3]: Leaving directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -/usr/bin/cmake -E cmake_progress_start /work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu/CMakeFiles 0 -make -f CMakeFiles/Makefile2 preinstall -make[3]: Entering directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -make[3]: Nothing to be done for 'preinstall'. -make[3]: Leaving directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' -Install the project... -/usr/bin/cmake -P cmake_install.cmake --- Install configuration: "None" --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/bin/tagua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/applications/kde4/tagua.desktop --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/taguaui.rc --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/highlighting/highlighting.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/pics/promoteBishop.png --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/pics/promoteKing.png --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/pics/promoteKnight.png --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/pics/promoteQueen.png --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/pics/promoteRook.png --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/pictures/b.png --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/pictures/k.png --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/pictures/n.png --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/pictures/p.png --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/pictures/q.png --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/pictures/r.png --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/scripts/hllib.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/scripts/movelist_textual.html --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/scripts/piece_theme.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/scripts/shogi_themelib.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/squares/Jose/marble04.jpg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/squares/Jose/marble13.jpg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/squares/Jose/square_last.png --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/squares/Jose/square_premove.png --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/squares/Jose/square_select.png --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/squares/Jose/theme_jose.desktop --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/squares/Jose/theme_jose.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/squares/Default/arrow_grey.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/squares/Default/arrow_yellow.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/squares/Default/selection.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/squares/Default/spiral.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/squares/Default/theme.desktop --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/squares/Default/theme.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/squares/Default/theme_babaschess.desktop --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/squares/Default/theme_babaschess.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/squares/Default/theme_chainreaction.desktop --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/squares/Default/theme_chainreaction.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/squares/Default/theme_connect4.desktop --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/squares/Default/theme_connect4.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/squares/Default/theme_reversi.desktop --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/squares/Default/theme_reversi.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/squares/Default/theme_shogi.desktop --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/squares/Default/theme_shogi.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/squares/Default/theme_solid.desktop --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/squares/Default/theme_solid.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/squares/Default/theme_xboard.desktop --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/squares/Default/theme_xboard.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/squares/Default/theme_xiangqi.desktop --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/squares/Default/theme_xiangqi.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/squares/Default/theme_yahoo.desktop --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/squares/Default/theme_yahoo.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/controls/Cool/active_clock.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/controls/Cool/border_corner.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/controls/Cool/border_top.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/controls/Cool/inactive_clock.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/controls/Cool/theme.desktop --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/controls/Cool/theme.lua --- Up-to-date: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/controls/Cool/active_clock.svg --- Up-to-date: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/controls/Cool/border_corner.svg --- Up-to-date: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/controls/Cool/border_top.svg --- Up-to-date: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/controls/Cool/inactive_clock.svg --- Up-to-date: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/controls/Cool/theme.desktop --- Up-to-date: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/controls/Cool/theme.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/controls/Google/active_clock.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/controls/Google/border_corner.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/controls/Google/border_top.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/controls/Google/inactive_clock.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/controls/Google/theme_google.desktop --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/controls/Google/theme_google.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/controls/XBoard/theme_xboard.desktop --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/controls/XBoard/theme_xboard.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/figurines/AsciiShogiTTF/theme.desktop --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/figurines/AsciiShogiTTF/theme.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/figurines/FantasyTTF/Fantasy.sfd --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/figurines/FantasyTTF/Fantasy.ttf --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/figurines/FantasyTTF/theme.desktop --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/figurines/FantasyTTF/theme.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/figurines/XiangQi/theme.desktop --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/figurines/XiangQi/theme.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/figurines/XiangQi/ukai.ttf --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/figurines/AlphaTTF/theme.desktop --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/figurines/AlphaTTF/theme.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/figurines/ShogiTTF/mikachan.ttf --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/figurines/ShogiTTF/theme.desktop --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/figurines/ShogiTTF/theme.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/EnquilTTF/Enquil.sfd --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/EnquilTTF/Enquil.ttf --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/EnquilTTF/theme_eboard.desktop --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/EnquilTTF/theme_eboard.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/LucenaTTF/Lucena.ttf --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/LucenaTTF/theme_jose.desktop --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/LucenaTTF/theme_jose.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/FantasySVG/bb.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/FantasySVG/bd.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/FantasySVG/bg.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/FantasySVG/bh.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/FantasySVG/bk.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/FantasySVG/bl.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/FantasySVG/bn.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/FantasySVG/bp.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/FantasySVG/bq.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/FantasySVG/br.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/FantasySVG/bs.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/FantasySVG/theme.desktop --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/FantasySVG/theme.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/FantasySVG/wb.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/FantasySVG/wd.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/FantasySVG/wg.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/FantasySVG/wh.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/FantasySVG/wk.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/FantasySVG/wl.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/FantasySVG/wn.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/FantasySVG/wp.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/FantasySVG/wq.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/FantasySVG/wr.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/FantasySVG/ws.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/MayanTTF/Mayan.ttf --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/MayanTTF/theme_eboard.desktop --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/MayanTTF/theme_eboard.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/MayanTTF/theme_jose.desktop --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/MayanTTF/theme_jose.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/SpatialSVG/bb.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/SpatialSVG/bk.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/SpatialSVG/bn.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/SpatialSVG/bp.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/SpatialSVG/bq.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/SpatialSVG/br.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/SpatialSVG/theme.desktop --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/SpatialSVG/theme.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/SpatialSVG/wb.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/SpatialSVG/wk.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/SpatialSVG/wn.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/SpatialSVG/wp.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/SpatialSVG/wq.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/SpatialSVG/wr.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/YahooTTF/Yahoo.sfd --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/YahooTTF/Yahoo.ttf --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/YahooTTF/theme.desktop --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/YahooTTF/theme.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/PrmiSVG/bb.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/PrmiSVG/bk.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/PrmiSVG/bn.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/PrmiSVG/bp.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/PrmiSVG/bq.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/PrmiSVG/br.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/PrmiSVG/theme.desktop --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/PrmiSVG/theme.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/PrmiSVG/wb.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/PrmiSVG/wk.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/PrmiSVG/wn.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/PrmiSVG/wp.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/PrmiSVG/wq.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/PrmiSVG/wr.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/StonesSVG/black.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/StonesSVG/blue.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/StonesSVG/blue_add.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/StonesSVG/green.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/StonesSVG/grey.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/StonesSVG/orange.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/StonesSVG/red.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/StonesSVG/red_add.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/StonesSVG/theme_chainreaction.desktop --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/StonesSVG/theme_chainreaction.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/StonesSVG/theme_rs.desktop --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/StonesSVG/theme_rs.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/StonesSVG/theme_ry.desktop --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/StonesSVG/theme_ry.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/StonesSVG/theme_wb.desktop --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/StonesSVG/theme_wb.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/StonesSVG/violet.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/StonesSVG/white.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/StonesSVG/yellow.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/XiangQiSVG/black_advisor.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/XiangQiSVG/black_cannon.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/XiangQiSVG/black_chariot.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/XiangQiSVG/black_elephant.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/XiangQiSVG/black_general.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/XiangQiSVG/black_horse.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/XiangQiSVG/black_soldier.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/XiangQiSVG/circle.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/XiangQiSVG/inner_circle.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/XiangQiSVG/red_advisor.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/XiangQiSVG/red_cannon.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/XiangQiSVG/red_chariot.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/XiangQiSVG/red_elephant.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/XiangQiSVG/red_general.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/XiangQiSVG/red_horse.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/XiangQiSVG/red_soldier.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/XiangQiTTF/XiangQi.sfd --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/XiangQiTTF/XiangQi.ttf --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/XiangQiTTF/theme.desktop --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/XiangQiTTF/theme.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/AlphaTTF/Alpha.ttf --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/AlphaTTF/gradient darkgrey.bmp --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/AlphaTTF/gradient lightgrey.bmp --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/AlphaTTF/theme_babaschess.desktop --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/AlphaTTF/theme_babaschess.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/AlphaTTF/theme_eboard.desktop --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/AlphaTTF/theme_eboard.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/AlphaTTF/theme_jose.desktop --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/AlphaTTF/theme_jose.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/SkullsSVG/bb.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/SkullsSVG/bk.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/SkullsSVG/bn.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/SkullsSVG/bp.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/SkullsSVG/bq.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/SkullsSVG/br.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/SkullsSVG/theme.desktop --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/SkullsSVG/theme.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/SkullsSVG/wb.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/SkullsSVG/wk.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/SkullsSVG/wn.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/SkullsSVG/wp.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/SkullsSVG/wq.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/SkullsSVG/wr.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/ShogiSVG/default/bishop.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/ShogiSVG/default/example.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/ShogiSVG/default/gold.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/ShogiSVG/default/horse.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/ShogiSVG/default/king.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/ShogiSVG/default/lance.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/ShogiSVG/default/nude_tile.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/ShogiSVG/default/pawn.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/ShogiSVG/default/pbishop.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/ShogiSVG/default/phorse.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/ShogiSVG/default/plance.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/ShogiSVG/default/ppawn.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/ShogiSVG/default/prook.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/ShogiSVG/default/psilver.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/ShogiSVG/default/rook.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/ShogiSVG/default/silver.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/ShogiSVG/default/tile.svg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/ShogiSVG/theme.desktop --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/ShogiSVG/theme.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/ShogiTTF/theme.desktop --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/ShogiTTF/theme.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/ShogiSVG-TTF/Shogi.sfd --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/ShogiSVG-TTF/Shogi.ttf --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/ShogiSVG-TTF/theme.desktop --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/ShogiSVG-TTF/theme.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/ToriShogiTTF/theme.desktop --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/ToriShogiTTF/theme.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/XBoardTTF/XBoard.sfd --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/XBoardTTF/XBoard.ttf --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/XBoardTTF/theme_jose.desktop --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/XBoardTTF/theme_jose.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/XBoardTTF/theme_xboard.desktop --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/XBoardTTF/theme_xboard.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/BerlinTTF/Berlin.ttf --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/BerlinTTF/theme_jose.desktop --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/pieces/BerlinTTF/theme_jose.lua --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/wallpapers/Dark_Sunset.jpg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/wallpapers/Dark_Waters.jpg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/wallpapers/Mont_Blanc.jpg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/wallpapers/Prmao.jpg --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/kde4/apps/tagua/themes/wallpapers/README --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/locale/cs/LC_MESSAGES/tagua.mo --- Installing: /work/yann/deb/tagua/tagua/debian/tmp/usr/share/locale/fr/LC_MESSAGES/tagua.mo -make[2]: Leaving directory '/work/yann/deb/tagua/tagua/obj-x86_64-linux-gnu' - cd /work/yann/deb/tagua/tagua -cd debian/tmp && mv usr/bin usr/games -make[1]: Leaving directory '/work/yann/deb/tagua/tagua' - debian/rules override_dh_install -make[1]: Entering directory '/work/yann/deb/tagua/tagua' -dh_install --fail-missing - install -d debian/tagua//usr - cp --reflink=auto -a debian/tmp/usr/games debian/tagua//usr/ - install -d debian/tagua//usr/share - cp --reflink=auto -a debian/tmp/usr/share/applications debian/tagua//usr/share/ - install -d debian/tagua-data//usr/share - cp --reflink=auto -a debian/tmp/usr/share/kde4 debian/tagua-data//usr/share/ - cp --reflink=auto -a debian/tmp/usr/share/locale debian/tagua-data//usr/share/ -make[1]: Leaving directory '/work/yann/deb/tagua/tagua' - dh_installdocs - install -d debian/tagua/usr/share/doc/tagua - cp --reflink=auto -a README debian/tagua/usr/share/doc/tagua - cp --reflink=auto -a TODO debian/tagua/usr/share/doc/tagua - cp --reflink=auto -a TODO_Maurizio debian/tagua/usr/share/doc/tagua - cp --reflink=auto -a TODO_Riccardo debian/tagua/usr/share/doc/tagua - cp --reflink=auto -a TODO_shogi debian/tagua/usr/share/doc/tagua - chown -R 0:0 debian/tagua/usr/share/doc - chmod -R go=rX debian/tagua/usr/share/doc - chmod -R u\+rw debian/tagua/usr/share/doc - install -p -m0644 debian/README.Debian debian/tagua/usr/share/doc/tagua/README.Debian - install -p -m0644 debian/copyright debian/tagua/usr/share/doc/tagua/copyright - install -d debian/tagua-data/usr/share/doc/tagua-data - install -p -m0644 debian/copyright debian/tagua-data/usr/share/doc/tagua-data/copyright - dh_installchangelogs - install -p -m0644 debian/changelog debian/tagua/usr/share/doc/tagua/changelog.Debian - install -p -m0644 ./CHANGELOG debian/tagua/usr/share/doc/tagua/changelog - install -p -m0644 debian/changelog debian/tagua-data/usr/share/doc/tagua-data/changelog.Debian - install -p -m0644 ./CHANGELOG debian/tagua-data/usr/share/doc/tagua-data/changelog - dh_installmenu - install -d debian/tagua/usr/share/menu - install -p -m0644 debian/menu debian/tagua/usr/share/menu/tagua - echo "# Automatically added by dh_installmenu">> debian/tagua.postinst.debhelper - sed "" /usr/share/debhelper/autoscripts/postinst-menu >> debian/tagua.postinst.debhelper - echo '# End automatically added section' >> debian/tagua.postinst.debhelper - echo "# Automatically added by dh_installmenu">> debian/tagua.postrm.debhelper - sed "" /usr/share/debhelper/autoscripts/postrm-menu >> debian/tagua.postrm.debhelper - echo '# End automatically added section' >> debian/tagua.postrm.debhelper - dh_perl - dh_link - dh_strip_nondeterminism - dh_compress - cd debian/tagua - chmod a-x usr/share/doc/tagua/changelog usr/share/doc/tagua/changelog.Debian - gzip -9nf usr/share/doc/tagua/changelog usr/share/doc/tagua/changelog.Debian - cd '/work/yann/deb/tagua/tagua' - cd debian/tagua-data - chmod a-x usr/share/doc/tagua-data/changelog usr/share/doc/tagua-data/changelog.Debian - gzip -9nf usr/share/doc/tagua-data/changelog usr/share/doc/tagua-data/changelog.Debian - cd '/work/yann/deb/tagua/tagua' - dh_fixperms - find debian/tagua -print0 2>/dev/null | xargs -0r chown --no-dereference 0:0 - find debian/tagua ! -type l -print0 2>/dev/null | xargs -0r chmod go=rX,u+rw,a-s - find debian/tagua/usr/share/doc -type f ! -regex 'debian/tagua/usr/share/doc/[^/]*/examples/.*' -print0 2>/dev/null | xargs -0r chmod 0644 - find debian/tagua/usr/share/doc -type d -print0 2>/dev/null | xargs -0r chmod 0755 - find debian/tagua/usr/share/man debian/tagua/usr/man/ debian/tagua/usr/X11*/man/ -type f -print0 2>/dev/null | xargs -0r chmod 0644 - find debian/tagua/usr/include -type f -print0 2>/dev/null | xargs -0r chmod 0644 - find debian/tagua/usr/share/applications -type f -print0 2>/dev/null | xargs -0r chmod 0644 - find debian/tagua/usr/lib/x86_64-linux-gnu/perl5/5.22 debian/tagua/usr/share/perl5 -type f -perm -5 -name '*.pm' -print0 2>/dev/null | xargs -0r chmod a-X - find debian/tagua -perm -5 -type f \( -name '*.so.*' -o -name '*.so' -o -name '*.la' -o -name '*.a' -o -name '*.js' -o -name '*.css' -o -name '*.jpeg' -o -name '*.jpg' -o -name '*.png' -o -name '*.gif' -o -name '*.cmxs' \) -print0 2>/dev/null | xargs -0r chmod 0644 - find debian/tagua/usr/games -type f -print0 2>/dev/null | xargs -0r chmod a+x - find debian/tagua/usr/lib -type f -name '*.ali' -print0 2>/dev/null | xargs -0r chmod uga-w - find debian/tagua-data -print0 2>/dev/null | xargs -0r chown --no-dereference 0:0 - find debian/tagua-data ! -type l -print0 2>/dev/null | xargs -0r chmod go=rX,u+rw,a-s - find debian/tagua-data/usr/share/doc -type f ! -regex 'debian/tagua-data/usr/share/doc/[^/]*/examples/.*' -print0 2>/dev/null | xargs -0r chmod 0644 - find debian/tagua-data/usr/share/doc -type d -print0 2>/dev/null | xargs -0r chmod 0755 - find debian/tagua-data/usr/share/man debian/tagua-data/usr/man/ debian/tagua-data/usr/X11*/man/ -type f -print0 2>/dev/null | xargs -0r chmod 0644 - find debian/tagua-data/usr/include -type f -print0 2>/dev/null | xargs -0r chmod 0644 - find debian/tagua-data/usr/share/applications -type f -print0 2>/dev/null | xargs -0r chmod 0644 - find debian/tagua-data/usr/lib/x86_64-linux-gnu/perl5/5.22 debian/tagua-data/usr/share/perl5 -type f -perm -5 -name '*.pm' -print0 2>/dev/null | xargs -0r chmod a-X - find debian/tagua-data -perm -5 -type f \( -name '*.so.*' -o -name '*.so' -o -name '*.la' -o -name '*.a' -o -name '*.js' -o -name '*.css' -o -name '*.jpeg' -o -name '*.jpg' -o -name '*.png' -o -name '*.gif' -o -name '*.cmxs' \) -print0 2>/dev/null | xargs -0r chmod 0644 - find debian/tagua-data/usr/lib -type f -name '*.ali' -print0 2>/dev/null | xargs -0r chmod uga-w - dh_strip - install -d debian/.debhelper/tagua/dbgsym-root/usr/lib/debug/.build-id/37 - objcopy --only-keep-debug --compress-debug-sections debian/tagua/usr/games/tagua debian/.debhelper/tagua/dbgsym-root/usr/lib/debug/.build-id/37/fec409fe07891df31f4e8674deda443ed4a85a.debug - chmod 0644 debian/.debhelper/tagua/dbgsym-root/usr/lib/debug/.build-id/37/fec409fe07891df31f4e8674deda443ed4a85a.debug - strip --remove-section=.comment --remove-section=.note debian/tagua/usr/games/tagua - objcopy --add-gnu-debuglink debian/.debhelper/tagua/dbgsym-root/usr/lib/debug/.build-id/37/fec409fe07891df31f4e8674deda443ed4a85a.debug debian/tagua/usr/games/tagua - install -d debian/.debhelper/tagua/dbgsym-root/usr/share/doc - ln -s tagua debian/.debhelper/tagua/dbgsym-root/usr/share/doc/tagua-dbgsym - dh_makeshlibs - rm -f debian/tagua/DEBIAN/shlibs - rm -f debian/tagua-data/DEBIAN/shlibs - dh_shlibdeps - install -d debian/tagua/DEBIAN - dpkg-shlibdeps -Tdebian/tagua.substvars debian/tagua/usr/games/tagua -dpkg-shlibdeps: warning: package could avoid a useless dependency if debian/tagua/usr/games/tagua was not linked against libQtDBus.so.4 (it uses none of the library's symbols) -dpkg-shlibdeps: warning: package could avoid a useless dependency if debian/tagua/usr/games/tagua was not linked against libqimageblitz.so.4 (it uses none of the library's symbols) -dpkg-shlibdeps: warning: package could avoid a useless dependency if debian/tagua/usr/games/tagua was not linked against libkdegames.so.6abi1 (it uses none of the library's symbols) -dpkg-shlibdeps: warning: package could avoid a useless dependency if debian/tagua/usr/games/tagua was not linked against libdl.so.2 (it uses none of the library's symbols) - install -d debian/tagua-data/DEBIAN - dh_installdeb - printf '#!/bin/sh -set -e -' > debian/tagua/DEBIAN/postinst - cat debian/tagua.postinst.debhelper >> debian/tagua/DEBIAN/postinst - chown 0:0 debian/tagua/DEBIAN/postinst - chmod 0755 debian/tagua/DEBIAN/postinst - printf '#!/bin/sh -set -e -' > debian/tagua/DEBIAN/postrm - cat debian/tagua.postrm.debhelper >> debian/tagua/DEBIAN/postrm - chown 0:0 debian/tagua/DEBIAN/postrm - chmod 0755 debian/tagua/DEBIAN/postrm - dh_gencontrol - echo misc:Depends= >> debian/tagua.substvars - echo misc:Pre-Depends= >> debian/tagua.substvars - install -d debian/.debhelper/tagua/dbgsym-root/DEBIAN - dpkg-gencontrol -ptagua -ldebian/changelog -Tdebian/tagua.substvars -Pdebian/.debhelper/tagua/dbgsym-root -UPre-Depends -URecommends -USuggests -UEnhances -UProvides -UEssential -UConflicts -DPriority=extra -DAuto-Built-Package=debug-symbols -DPackage=tagua-dbgsym "-DDepends=tagua (= \${binary:Version})" "-DDescription=Debug symbols for tagua" -DBuild-Ids=37fec409fe07891df31f4e8674deda443ed4a85a -DSection=debug -UMulti-Arch -UReplaces -UBreaks - chmod 0644 debian/.debhelper/tagua/dbgsym-root/DEBIAN/control - chown 0:0 debian/.debhelper/tagua/dbgsym-root/DEBIAN/control - dpkg-gencontrol -ptagua -ldebian/changelog -Tdebian/tagua.substvars -Pdebian/tagua - chmod 0644 debian/tagua/DEBIAN/control - chown 0:0 debian/tagua/DEBIAN/control - echo misc:Depends= >> debian/tagua-data.substvars - echo misc:Pre-Depends= >> debian/tagua-data.substvars - dpkg-gencontrol -ptagua-data -ldebian/changelog -Tdebian/tagua-data.substvars -Pdebian/tagua-data - chmod 0644 debian/tagua-data/DEBIAN/control - chown 0:0 debian/tagua-data/DEBIAN/control - dh_md5sums - (cd debian/tagua >/dev/null ; find . -type f ! -regex './DEBIAN/.*' -printf '%P\0' | LC_ALL=C sort -z | xargs -r0 md5sum > DEBIAN/md5sums) >/dev/null - chmod 0644 debian/tagua/DEBIAN/md5sums - chown 0:0 debian/tagua/DEBIAN/md5sums - (cd debian/.debhelper/tagua/dbgsym-root >/dev/null ; find . -type f ! -regex './DEBIAN/.*' -printf '%P\0' | LC_ALL=C sort -z | xargs -r0 md5sum > DEBIAN/md5sums) >/dev/null - chmod 0644 debian/.debhelper/tagua/dbgsym-root/DEBIAN/md5sums - chown 0:0 debian/.debhelper/tagua/dbgsym-root/DEBIAN/md5sums - (cd debian/tagua-data >/dev/null ; find . -type f ! -regex './DEBIAN/.*' -printf '%P\0' | LC_ALL=C sort -z | xargs -r0 md5sum > DEBIAN/md5sums) >/dev/null - chmod 0644 debian/tagua-data/DEBIAN/md5sums - chown 0:0 debian/tagua-data/DEBIAN/md5sums - dh_builddeb - dpkg-deb -z1 -Zxz -Sextreme --build debian/.debhelper/tagua/dbgsym-root .. -dpkg-deb: building package 'tagua-dbgsym' in '../tagua-dbgsym_1.0~alpha2-14_amd64.deb'. - dpkg-deb --build debian/tagua .. -dpkg-deb: building package 'tagua' in '../tagua_1.0~alpha2-14_amd64.deb'. - dpkg-deb --build debian/tagua-data .. -dpkg-deb: building package 'tagua-data' in '../tagua-data_1.0~alpha2-14_all.deb'. - -Script done on Sat Jul 16 21:43:29 2016