crawl-stone-soup: update to dungeon-crawl-stone-soup-0.22.1

Stone Soup 0.22.1 (20180916)
----------------------------

Bugfix Release
--------------
* Support for distributing player ghosts files with releases. Now local games
  will have a starting set of ghosts available for ghost vaults.
* New tiles for Azrael, shock serpents, dream sheep, mana vipers, and the Robe
  of Vines.
* An additional set of Gnoll player dolls tiles.
* Fix WebTiles menus for older versions of Firefox.
* 81 bugfixes, adjustments, and cleanups in total.
This commit is contained in:
Yorick Hardy 2018-09-18 20:13:46 +02:00
parent 8cfc11765a
commit e608a6a39a
3 changed files with 23 additions and 6 deletions

View File

@ -1,7 +1,7 @@
# $NetBSD: Makefile,v 1.7 2015/08/18 21:15:41 yhardy Exp $
DISTNAME= stone_soup-0.22.0-nodeps
PKGNAME= dungeon-crawl-stone-soup-0.22.0
DISTNAME= stone_soup-0.22.1-nodeps
PKGNAME= dungeon-crawl-stone-soup-0.22.1
CATEGORIES= games
MASTER_SITES= http://crawl.develz.org/release/0.22/
EXTRACT_SUFX= .tar.xz

View File

@ -1,8 +1,9 @@
$NetBSD: distinfo,v 1.4 2015/08/18 21:15:41 yhardy Exp $
SHA1 (stone_soup-0.22.0-nodeps.tar.xz) = 6c7797f5b84f6e20a3c254ff2c16f09268325957
RMD160 (stone_soup-0.22.0-nodeps.tar.xz) = 8e2d573148f1b66839115e7dbfb9384e274ac665
SHA512 (stone_soup-0.22.0-nodeps.tar.xz) = bd9a1afc7475147af9b01dc9815d5855a2000d2b3bc8ca6b6a0edb81f5e500a5282a67788f609128a610018720b2a9eb45501ba5d131a611f38eaabd80547e37
Size (stone_soup-0.22.0-nodeps.tar.xz) = 10433644 bytes
SHA1 (stone_soup-0.22.1-nodeps.tar.xz) = 3814510db73493b9f8a528b43e7fae35376ecf0f
RMD160 (stone_soup-0.22.1-nodeps.tar.xz) = 8633fff0504e20a2f6118d33fcd5c54a7b2f0abe
SHA512 (stone_soup-0.22.1-nodeps.tar.xz) = 858767e730fee7badc177a0de53764d60aa50128c4a8bd54b9ffaf4259a5da7c8b67a8d0c3ebc695384ec3ef176ca99ce564037a09a5d682d318598b73756b1e
Size (stone_soup-0.22.1-nodeps.tar.xz) = 10441320 bytes
SHA1 (patch-initfile.cc) = c0db8f41404565a44c6e0a26c0ff4a3ec0644e44
SHA1 (patch-source__libunix.cc) = 485c3973bed32e88f7e84e4d42757a987d012090
SHA1 (patch-source_platform.h) = d310773dc87504677108e59a050b5664d82d41e1

View File

@ -0,0 +1,16 @@
$NetBSD$
We need unistd for unlink(2), depending on UNIX being defined
(the same approach is used in files.cc).
--- initfile.cc.orig 2018-09-17 02:40:29.000000000 +0000
+++ initfile.cc
@@ -88,6 +88,8 @@ extern char **NXArgv;
#endif
#elif defined(TARGET_OS_LINUX) || defined(TARGET_OS_CYGWIN)
#include <unistd.h>
+#elif defined(UNIX)
+#include <unistd.h>
#endif
const string game_options::interrupt_prefix = "interrupt_";