head 1.3; access; symbols pkgsrc-2024Q3:1.2.0.42 pkgsrc-2024Q3-base:1.2 pkgsrc-2024Q2:1.2.0.40 pkgsrc-2024Q2-base:1.2 pkgsrc-2024Q1:1.2.0.38 pkgsrc-2024Q1-base:1.2 pkgsrc-2023Q4:1.2.0.36 pkgsrc-2023Q4-base:1.2 pkgsrc-2023Q3:1.2.0.34 pkgsrc-2023Q3-base:1.2 pkgsrc-2023Q2:1.2.0.32 pkgsrc-2023Q2-base:1.2 pkgsrc-2023Q1:1.2.0.30 pkgsrc-2023Q1-base:1.2 pkgsrc-2022Q4:1.2.0.28 pkgsrc-2022Q4-base:1.2 pkgsrc-2022Q3:1.2.0.26 pkgsrc-2022Q3-base:1.2 pkgsrc-2022Q2:1.2.0.24 pkgsrc-2022Q2-base:1.2 pkgsrc-2022Q1:1.2.0.22 pkgsrc-2022Q1-base:1.2 pkgsrc-2021Q4:1.2.0.20 pkgsrc-2021Q4-base:1.2 pkgsrc-2021Q3:1.2.0.18 pkgsrc-2021Q3-base:1.2 pkgsrc-2021Q2:1.2.0.16 pkgsrc-2021Q2-base:1.2 pkgsrc-2021Q1:1.2.0.14 pkgsrc-2021Q1-base:1.2 pkgsrc-2020Q4:1.2.0.12 pkgsrc-2020Q4-base:1.2 pkgsrc-2020Q3:1.2.0.10 pkgsrc-2020Q3-base:1.2 pkgsrc-2020Q2:1.2.0.8 pkgsrc-2020Q2-base:1.2 pkgsrc-2020Q1:1.2.0.4 pkgsrc-2020Q1-base:1.2 pkgsrc-2019Q4:1.2.0.6 pkgsrc-2019Q4-base:1.2 pkgsrc-2019Q3:1.2.0.2 pkgsrc-2019Q3-base:1.2; locks; strict; comment @# @; 1.3 date 2024.11.18.07.58.49; author wiz; state dead; branches; next 1.2; commitid r0hziSwo0hfmk6yF; 1.2 date 2019.09.03.20.27.02; author adam; state Exp; branches; next 1.1; commitid V6QLb8vWqBlLDBBB; 1.1 date 2019.08.06.19.42.20; author nia; state Exp; branches; next ; commitid mWEO14yl7HfDh0yB; desc @@ 1.3 log @widelands: Update widelands to 1.2.1 From Paul Ripke and Michael Baeuerle in pkgsrc-wip. Highlights in the Widelands 1.2.1 release: - This point release fixes several bugs and crashes found in Widelands 1.2, and offers full compatibility between these two releases for multiplayer games and replays. Highlights in the Widelands 1.2 release: - UI Plugins are add-ons that can add more functionality to the user interface - Naval Warfare preview: Invade foreign coasts using warships! - This is included as a preview feature and needs to be explicitly enabled in the game setup screen. - Soldier garrisons for ports and headquarters - Balancing changes to the Amazon economy - Fifth scenario for the Frisian campaign - More settings in the game setup screen, such as configurable durations for timed win conditions - Diplomacy handling for the computer players - Stick pinned notes onto map fields to mark important points - Hyperlinks let you navigate within the encyclopedia and to the online help - Easy maps publishing inside the editor - High-resolution images for many more units - Accessibility enhancements for many user interface components - Expose more functionality to the add-ons and scenario scripting interface - Fixed many crashes and hangs and enhanced error handling Widelands 1.2 is translated completely into Catalan, German, Hungarian, Low German, and Russian, and the translations for 8 other languages are more than 2/3 complete. Highlights in the 1.1 release: - Three new scenarios: One each for the Atlantean and Frisian campaigns, and a new standalone singleplayer mission - An add-ons webserver allows efficient down- and uploading of add-ons as well as interactions such as voting and commenting on add-ons - High-resolution images for many units - Multithreading provides smoother performance - Multiple enhancements to the in-game encyclopedia - Diplomacy: Manage your alliances during the game - Fastplace: Assign custom shortcuts to buildings to place them with one keystroke - In-game loading and restarting of games and scenarios - Save and load in-game windows - Editor tool history dialog - Various AI enhancements Highlights in the 1.0 release: - A new tribe: the Amazons - An add-on system - A third frisians scenario - Dynamic tribe loading to speed up game loading - Targeting individual map objects for removal - Mute/unmute messages by buildings - Fully redesigned main menu - Configurable keyboard shortcuts - Enhanced keyboard and mousewheel support in the UI - Long-term stable Lua API for game content designers @ text @$NetBSD: patch-CMakeLists.txt,v 1.2 2019/09/03 20:27:02 adam Exp $ Support NetBSD. Do not turn warnings into errors. --- CMakeLists.txt.orig 2019-05-02 05:23:39.000000000 +0000 +++ CMakeLists.txt @@@@ -113,6 +113,7 @@@@ endif() if (APPLE OR WIN32 OR CMAKE_SYSTEM_NAME MATCHES "FreeBSD" OR + CMAKE_SYSTEM_NAME MATCHES "NetBSD" OR CMAKE_SYSTEM_NAME MATCHES "OpenBSD") if (NOT CMAKE_SYSTEM_NAME MATCHES "kFreeBSD") find_package(intl REQUIRED) @@@@ -210,8 +211,6 @@@@ if("${CMAKE_CXX_COMPILER_ID}" STREQUAL " wl_add_flag(WL_COMPILE_DIAGNOSTICS "-Wno-unreachable-code") wl_add_flag(WL_COMPILE_DIAGNOSTICS "-Wno-documentation") - wl_add_flag(WL_COMPILE_DIAGNOSTICS "-Werror=deprecated") - wl_add_flag(WL_COMPILE_DIAGNOSTICS "-Werror=non-pod-varargs") wl_add_flag(WL_COMPILE_DIAGNOSTICS "-Qunused-arguments") @@@@ -275,7 +274,9 @@@@ IF (WIN32) endif (WIN32) # on BSD this must be explicitly linked -if (CMAKE_SYSTEM_NAME MATCHES "FreeBSD" OR CMAKE_SYSTEM_NAME MATCHES "OpenBSD") +if (CMAKE_SYSTEM_NAME MATCHES "FreeBSD" OR + CMAKE_SYSTEM_NAME MATCHES "NetBSD" OR + CMAKE_SYSTEM_NAME MATCHES "OpenBSD") # Not needed on Debian GNU/kFreeBSD.. if (NOT CMAKE_SYSTEM_NAME MATCHES "kFreeBSD") find_library(EXECINFO_LIBRARY NAMES execinfo) @ 1.2 log @widelands: fix building on Darwin @ text @d1 1 a1 1 $NetBSD: patch-CMakeLists.txt,v 1.1 2019/08/06 19:42:20 nia Exp $ @ 1.1 log @Add games/widelands. Widelands is a free, open source real-time strategy game with singleplayer campaigns and a multiplayer mode. The game was inspired by Settlers II but has significantly more variety and depth to it. Still, it is easy to get started through playable tutorials. @ text @d1 1 a1 1 $NetBSD$ d5 2 d17 10 a26 1 @@@@ -275,7 +276,9 @@@@ IF (WIN32) @