Index: head/games/wyrmsun/Makefile =================================================================== --- head/games/wyrmsun/Makefile (revision 489383) +++ head/games/wyrmsun/Makefile (revision 489384) @@ -1,50 +1,30 @@ # Created by: Dmitry Marakasov # $FreeBSD$ PORTNAME= wyrmsun -PORTVERSION= 3.4.1 +PORTVERSION= 3.5.1 DISTVERSIONPREFIX= v CATEGORIES= games MAINTAINER= amdmi3@FreeBSD.org COMMENT= Strategy game based on history, mythology and fiction LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/license.txt RUN_DEPENDS= wyrmgus:games/wyrmgus USE_GITHUB= yes GH_ACCOUNT= Andrettin GH_PROJECT= Wyrmsun -NO_BUILD= yes +USES= cmake gnome +INSTALLS_ICONS= yes NO_ARCH= yes -PLIST_FILES= bin/${PORTNAME} \ - share/applications/${PORTNAME}.desktop \ - share/appdata/${PORTNAME}.appdata.xml PORTDATA= * PORTDOCS= * -SUB_FILES= ${PORTNAME} - OPTIONS_DEFINE= DOCS - -post-patch: - @${REINPLACE_CMD} -e 's|wyrmgus -d /usr/share/wyrmsun|${PORTNAME}|' \ - ${WRKSRC}/linux/wyrmsun.desktop - -do-install: - cd ${WRKSRC} && ${COPYTREE_SHARE} "graphics maps music oaml.defs \ - scripts sounds translations" ${STAGEDIR}${DATADIR}/ - ${INSTALL_DATA} ${WRKSRC}/linux/wyrmsun.desktop ${STAGEDIR}${PREFIX}/share/applications - @${MKDIR} ${STAGEDIR}${PREFIX}/share/appdata - ${INSTALL_DATA} ${WRKSRC}/linux/wyrmsun.appdata.xml ${STAGEDIR}${PREFIX}/share/appdata - ${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin - -do-install-DOCS-on: - @${MKDIR} ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/readme.txt ${STAGEDIR}${DOCSDIR} .include Index: head/games/wyrmsun/distinfo =================================================================== --- head/games/wyrmsun/distinfo (revision 489383) +++ head/games/wyrmsun/distinfo (revision 489384) @@ -1,3 +1,3 @@ -TIMESTAMP = 1541690210 -SHA256 (Andrettin-Wyrmsun-v3.4.1_GH0.tar.gz) = 2616f0dbc30b3473db9d4e9bbfb65f69fda5a4f835e6e3fba8f381e796732185 -SIZE (Andrettin-Wyrmsun-v3.4.1_GH0.tar.gz) = 272461186 +TIMESTAMP = 1545918235 +SHA256 (Andrettin-Wyrmsun-v3.5.1_GH0.tar.gz) = a2f5c0521a8d6fa0b4643478946b01957357f5c99a6b7ab5d629e519aa02f4ac +SIZE (Andrettin-Wyrmsun-v3.5.1_GH0.tar.gz) = 273083934 Index: head/games/wyrmsun/files/wyrmsun.in =================================================================== --- head/games/wyrmsun/files/wyrmsun.in (revision 489383) +++ head/games/wyrmsun/files/wyrmsun.in (nonexistent) @@ -1,3 +0,0 @@ -#!/bin/sh - -exec "%%LOCALBASE%%/bin/wyrmgus" -d "%%DATADIR%%" "$@" Property changes on: head/games/wyrmsun/files/wyrmsun.in ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/games/wyrmsun/files/patch-cmake =================================================================== --- head/games/wyrmsun/files/patch-cmake (nonexistent) +++ head/games/wyrmsun/files/patch-cmake (revision 489384) @@ -0,0 +1,68 @@ +commit 15caa201694821770e1355f989a716afd3ea650b +Author: Dmitry Marakasov +Date: Wed Dec 26 22:14:17 2018 +0300 + + Add CMake-based installation support + + - Provide script to run wyrmsun from command line + - Fix hardcoded path to /usr/share/wyrmsun + - Install data, documentation, script, desktop and appdata files as well + as icons into designated locations + +diff --git CMakeLists.txt CMakeLists.txt +new file mode 100644 +index 00000000..91ef748a +--- /dev/null ++++ CMakeLists.txt +@@ -0,0 +1,30 @@ ++project(wyrmsun) ++cmake_minimum_required(VERSION 3.0) ++ ++set(DATADIR share/wyrmsun CACHE STRING "Where to install Wyrmsun data files") ++set(DOCSDIR share/doc/wyrmsun CACHE STRING "Where to install Wyrmsun documentation") ++ ++configure_file(linux/wyrmsun.sh.in linux/wyrmsun.sh @ONLY) ++ ++install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/linux/wyrmsun.sh DESTINATION bin RENAME wyrmsun) ++install(FILES linux/wyrmsun.desktop DESTINATION share/applications) ++install(FILES linux/wyrmsun.appdata.xml DESTINATION share/appdata) ++install(FILES graphics/ui/icons/wyrmsun_icon_32.png DESTINATION share/icons/hicolor/32x32/apps RENAME wyrmsun.png) ++install(FILES graphics/ui/icons/wyrmsun_icon_64.png DESTINATION share/icons/hicolor/64x64/apps RENAME wyrmsun.png) ++install(FILES graphics/ui/icons/wyrmsun_icon_128.png DESTINATION share/icons/hicolor/128x128/apps RENAME wyrmsun.png) ++ ++install(FILES oaml.defs DESTINATION ${DATADIR}) ++ ++install(DIRECTORY ++ data ++ graphics ++ maps ++ music ++ scripts ++ sounds ++ translations ++ DESTINATION ${DATADIR} ++) ++ ++install(FILES readme.txt DESTINATION ${DOCSDIR}) ++install(DIRECTORY documents DESTINATION ${DOCSDIR}) +diff --git linux/wyrmsun.desktop linux/wyrmsun.desktop +index b779fa63..cad9ea6b 100644 +--- linux/wyrmsun.desktop ++++ linux/wyrmsun.desktop +@@ -1,6 +1,6 @@ + [Desktop Entry] + Categories=Game;StrategyGame; +-Exec=wyrmgus -d /usr/share/wyrmsun ++Exec=wyrmsun + GenericName=Mythologic realtime-strategy game + GenericName[de]=Mythologisches Echtzeitstrategiespiel + Icon=wyrmsun +diff --git linux/wyrmsun.sh.in linux/wyrmsun.sh.in +new file mode 100644 +index 00000000..6bcb0675 +--- /dev/null ++++ linux/wyrmsun.sh.in +@@ -0,0 +1,3 @@ ++#!/bin/sh ++ ++exec wyrmgus -d @CMAKE_INSTALL_PREFIX@/@DATADIR@ "$@" Property changes on: head/games/wyrmsun/files/patch-cmake ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/games/wyrmsun/files/patch-scripts_tilesets_cave.lua =================================================================== --- head/games/wyrmsun/files/patch-scripts_tilesets_cave.lua (nonexistent) +++ head/games/wyrmsun/files/patch-scripts_tilesets_cave.lua (revision 489384) @@ -0,0 +1,10 @@ +--- scripts/tilesets/cave.lua.orig 2018-12-25 12:18:32 UTC ++++ scripts/tilesets/cave.lua +@@ -165,4 +165,6 @@ BuildTilesetTables() + + Load("scripts/scripts.lua") + GameSettings.Inside = true +-SetTimeOfDaySchedule("") ++if (LoadedGame == false) then ++ SetTimeOfDaySchedule("") ++end Property changes on: head/games/wyrmsun/files/patch-scripts_tilesets_cave.lua ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/games/wyrmsun/files/patch-scripts_tilesets_dungeon.lua =================================================================== --- head/games/wyrmsun/files/patch-scripts_tilesets_dungeon.lua (nonexistent) +++ head/games/wyrmsun/files/patch-scripts_tilesets_dungeon.lua (revision 489384) @@ -0,0 +1,10 @@ +--- scripts/tilesets/dungeon.lua.orig 2018-12-25 12:18:32 UTC ++++ scripts/tilesets/dungeon.lua +@@ -216,4 +216,6 @@ BuildTilesetTables() + + Load("scripts/scripts.lua") + GameSettings.Inside = true +-SetTimeOfDaySchedule("") ++if (LoadedGame == false) then ++ SetTimeOfDaySchedule("") ++end Property changes on: head/games/wyrmsun/files/patch-scripts_tilesets_dungeon.lua ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/games/wyrmsun/pkg-plist =================================================================== --- head/games/wyrmsun/pkg-plist (nonexistent) +++ head/games/wyrmsun/pkg-plist (revision 489384) @@ -0,0 +1,6 @@ +bin/wyrmsun +share/appdata/wyrmsun.appdata.xml +share/applications/wyrmsun.desktop +share/icons/hicolor/128x128/apps/wyrmsun.png +share/icons/hicolor/32x32/apps/wyrmsun.png +share/icons/hicolor/64x64/apps/wyrmsun.png Property changes on: head/games/wyrmsun/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property