pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/games/wesnoth Update to 1.4.5, provided by Leonardo Ta...
details: https://anonhg.NetBSD.org/pkgsrc/rev/9a7b00aae71e
branches: trunk
changeset: 548135:9a7b00aae71e
user: wiz <wiz%pkgsrc.org@localhost>
date: Thu Oct 09 12:55:23 2008 +0000
description:
Update to 1.4.5, provided by Leonardo Taccari in PR 39679:
Version 1.4.5:
* campaigns:
* Sceptre of Fire
* Fixed a coordinate bug that caused 'Hills of the Shorbear Clan' to not
end when it was supposed to.
* Fixed a bug that allowed one to finish 'The Dragon' by defeating both
enemy leaders.
* graphics:
* new portraits: Silver Mages, White Mages, female Mage of Light, Arch Mages,
Red Mages, Dark Adepts, female Necromancer/Dark Sorceress, L1 Mages, Lich
* language and i18n:
* updated translations: Chinese (Traditional), Czech, Danish, French,
Galician, German, Hungarian, Italian, Lithuanian, Polish, Russian,
Spanish
* updated manpages: Hungarian
* updated manual: Hungarian
* fonts: DejaVuSans 2.26
* miscellaneous and bug fixes:
* Fixed linewrapping with not to wrap markups (bug #11946 and bug #11945)
* Fixed OOS bug when giving control and having move in undo stack.
* Fixed crash when ai moves units next to level 0 hiden unit (bug #12252)
* Fixed loading ai parameters. MP side defination now overwrites
era values (bug #12171)
* Fixed MP saves to transfer correct completion state to remote clients
when loadin game (bug #10385)
Version 1.4.4:
* language and i18n:
* new translation: Latvian
* updated translations: Arabic, Catalan, Chinese (Traditional), Czech,
Danish, Finnish, French, Galician, German, Greek, Hungarian, Italian,
Japanese, Lithuanian, Polish, Russian, Serbian, Slovak
* langcode change: moved gl_ES to gl
* miscellaneous and bug fixes:
* Fixed timer end warning not to play in opponents turn (bug: #11517)
* fix bug #11630 (preventing redo and rename during opponent's turn)
* Added recursion preventarion to [kill] fire_event=yes [/kill]
* Added check whether sendfile is in glibc (debian patch #490638)
Version 1.4.3:
* campaigns:
* The Rise of Wesnoth:
* fixed the Wesfolk Outcast line's distract ability not working
* language and i18n:
* new translations: Arabic, Friulian, Macedonian
* updated translations: Czech, Danish, Dutch, Estonian, Finnish, French,
German, Hungarian, Japanese, Polish, Russian, Serbian, Slovak, Spanish
* fonts: DejaVuSans 2.25
* manual: updated screenshots to match UI rearrangements
* WML engine:
* fix [teleport] capturing villages with the wrong side (bug #11683)
* campaignd
* made campaign server use gzip compression for networking
* made campaign server detect if client can receive gzipped data
* made campaign server use gzip for storing addons
* added configuraion option to choose gzip compression level
* miscellaneous and bug fixes:
* fixed parser bug that prevented loading binary data strings
* starting a campaign without any installed now gives an error.
* fixed issues with campaign info in non-compressed saved games
(bug #11386)
* Backported graceful restart feature to server
* Improved connection stability with slow connections.
* Implemented send_file to reduce memory usage when sending files
* Fixed a mememory leak in networking code
* fixed an alignement issue which caused a SIGBUS on a Sparc
(debian bug #426318)
* Fixed tokenizer not to strip CR from quoted string becaue it would destroy
images transfered over network
* added some includes to fix compilation problems with Sun Studio 12
(patch #1066)
* fixed null-pointer reference in network code
diffstat:
games/wesnoth/Makefile | 14 +-
games/wesnoth/PLIST | 331 +++++++++++++++++++++++++++++++++++++---
games/wesnoth/distinfo | 10 +-
games/wesnoth/patches/patch-aa | 31 ---
games/wesnoth/patches/patch-ab | 19 --
5 files changed, 319 insertions(+), 86 deletions(-)
diffs (truncated from 731 to 300 lines):
diff -r f6f39048a8bd -r 9a7b00aae71e games/wesnoth/Makefile
--- a/games/wesnoth/Makefile Thu Oct 09 12:45:00 2008 +0000
+++ b/games/wesnoth/Makefile Thu Oct 09 12:55:23 2008 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.46 2008/06/20 01:09:20 joerg Exp $
+# $NetBSD: Makefile,v 1.47 2008/10/09 12:55:23 wiz Exp $
-DISTNAME= wesnoth-1.4.2
+DISTNAME= wesnoth-1.4.5
CATEGORIES= games
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=wesnoth/}
EXTRACT_SUFX= .tar.bz2
@@ -9,6 +9,8 @@
HOMEPAGE= http://www.wesnoth.org/
COMMENT= Fantasy turn-based strategy game
+#LICENSE= gnu-gpl-v2
+
PKG_DESTDIR_SUPPORT= user-destdir
BUILD_DEPENDS+= libxslt-[0-9]*:../../textproc/libxslt
@@ -23,16 +25,19 @@
UNLIMIT_RESOURCES+= datasize
+# This is not needed for the average player, so do not require bash.
+#REPLACE_BASH+= data/tools/castle-cutter/mk-castle.sh
+#USE_TOOLS+= bash:run
+
REPLACE_PERL+= utils/wmlxgettext
REPLACE_PERL+= data/tools/unit_tree/units.pl
REPLACE_PERL+= data/tools/unit_tree/TeamColorizer.pl
REPLACE_PERL+= data/tools/TeamColorizer.pl
USE_TOOLS+= perl:run msgfmt
-REPLACE_PYTHON= data/ais/documentation.py
SUBST_CLASSES+= python
SUBST_STAGE.python= post-build
-SUBST_FILES.python= data/ais/bruteforce.py
+SUBST_FILES.python+= data/ais/bruteforce.py
SUBST_FILES.python+= data/ais/documentation.py
SUBST_FILES.python+= data/ais/sample.py
SUBST_FILES.python+= data/campaigns/Descent_Into_Darkness/ais/kamikaze.py
@@ -41,6 +46,7 @@
# Best we can do without pulling in a python dependency.
SUBST_SED.python+= -e 's,WPY,${PREFIX}/bin/python2.5,'
SUBST_SED.python+= -e 's,/bin/env.*python,${PREFIX}/bin/python2.5,'
+SUBST_SED.python+= -e 's,/usr/bin/python,${PREFIX}/bin/python2.5,'
REPLACE_RUBY= data/tools/terrain2wiki.rb
.include "../../lang/ruby/replace.mk"
diff -r f6f39048a8bd -r 9a7b00aae71e games/wesnoth/PLIST
--- a/games/wesnoth/PLIST Thu Oct 09 12:45:00 2008 +0000
+++ b/games/wesnoth/PLIST Thu Oct 09 12:55:23 2008 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.23 2008/05/20 11:43:59 wiz Exp $
+@comment $NetBSD: PLIST,v 1.24 2008/10/09 12:55:23 wiz Exp $
bin/wesnoth
man/ca_ES@valencia/man6/wesnoth.6
man/cs/man6/wesnoth.6
@@ -6,7 +6,7 @@
man/de/man6/wesnoth.6
man/es/man6/wesnoth.6
man/fr/man6/wesnoth.6
-man/gl_ES/man6/wesnoth.6
+man/gl/man6/wesnoth.6
man/hu/man6/wesnoth.6
man/it/man6/wesnoth.6
man/ja/man6/wesnoth.6
@@ -20,8 +20,27 @@
man/sv/man6/wesnoth.6
man/tr/man6/wesnoth.6
man/zh_CN/man6/wesnoth.6
+man/zh_TW/man6/wesnoth.6
share/applications/wesnoth.desktop
+share/doc/wesnoth/manual/images/de/game-screen.jpg
+share/doc/wesnoth/manual/images/de/main-menu.jpg
+share/doc/wesnoth/manual/images/de/multiplayer.jpg
+share/doc/wesnoth/manual/images/de/recruit.jpg
+share/doc/wesnoth/manual/images/de/right_pane.jpg
+share/doc/wesnoth/manual/images/de/top_pane.jpg
+share/doc/wesnoth/manual/images/fr/game-screen.jpg
+share/doc/wesnoth/manual/images/fr/main-menu.jpg
+share/doc/wesnoth/manual/images/fr/multiplayer.jpg
+share/doc/wesnoth/manual/images/fr/recruit.jpg
+share/doc/wesnoth/manual/images/fr/right_pane.jpg
+share/doc/wesnoth/manual/images/fr/top_pane.jpg
share/doc/wesnoth/manual/images/game-screen.jpg
+share/doc/wesnoth/manual/images/hu/game-screen.jpg
+share/doc/wesnoth/manual/images/hu/main-menu.jpg
+share/doc/wesnoth/manual/images/hu/multiplayer.jpg
+share/doc/wesnoth/manual/images/hu/recruit.jpg
+share/doc/wesnoth/manual/images/hu/right_pane.jpg
+share/doc/wesnoth/manual/images/hu/top_pane.jpg
share/doc/wesnoth/manual/images/main-menu.jpg
share/doc/wesnoth/manual/images/multiplayer.jpg
share/doc/wesnoth/manual/images/orb-blue.jpg
@@ -39,12 +58,20 @@
share/doc/wesnoth/manual/images/schedule-secondwatch.jpg
share/doc/wesnoth/manual/images/schedule-underground.jpg
share/doc/wesnoth/manual/images/top_pane.jpg
+share/doc/wesnoth/manual/images/tr/game-screen.jpg
+share/doc/wesnoth/manual/images/tr/main-menu.jpg
+share/doc/wesnoth/manual/images/tr/multiplayer.jpg
+share/doc/wesnoth/manual/images/tr/recruit.jpg
+share/doc/wesnoth/manual/images/tr/right_pane.jpg
+share/doc/wesnoth/manual/images/tr/top_pane.jpg
share/doc/wesnoth/manual/manual.cs.html
share/doc/wesnoth/manual/manual.da.html
share/doc/wesnoth/manual/manual.de.html
share/doc/wesnoth/manual/manual.en.html
+share/doc/wesnoth/manual/manual.es.html
+share/doc/wesnoth/manual/manual.et.html
share/doc/wesnoth/manual/manual.fr.html
-share/doc/wesnoth/manual/manual.gl_ES.html
+share/doc/wesnoth/manual/manual.gl.html
share/doc/wesnoth/manual/manual.hu.html
share/doc/wesnoth/manual/manual.it.html
share/doc/wesnoth/manual/manual.pl.html
@@ -53,6 +80,7 @@
share/doc/wesnoth/manual/manual.tr.html
share/doc/wesnoth/manual/manual.txt
share/doc/wesnoth/manual/manual.zh_CN.html
+share/doc/wesnoth/manual/manual.zh_TW.html
share/doc/wesnoth/manual/styles/manual.css
share/icons/wesnoth-icon.png
share/wesnoth/data/COPYING.txt
@@ -1979,6 +2007,20 @@
share/wesnoth/data/core/images/halo/mage-preparation-halo5.png
share/wesnoth/data/core/images/halo/mage-preparation-halo6.png
share/wesnoth/data/core/images/halo/mage-preparation-halo7.png
+share/wesnoth/data/core/images/halo/merfolk/staff-flare-1.png
+share/wesnoth/data/core/images/halo/merfolk/staff-flare-2.png
+share/wesnoth/data/core/images/halo/merfolk/staff-flare-3.png
+share/wesnoth/data/core/images/halo/merfolk/staff-flare-4.png
+share/wesnoth/data/core/images/halo/merfolk/staff-flare-5.png
+share/wesnoth/data/core/images/halo/merfolk/staff-flare-6.png
+share/wesnoth/data/core/images/halo/merfolk/staff-flare-7.png
+share/wesnoth/data/core/images/halo/merfolk/water-halo-1.png
+share/wesnoth/data/core/images/halo/merfolk/water-halo-2.png
+share/wesnoth/data/core/images/halo/merfolk/water-halo-3.png
+share/wesnoth/data/core/images/halo/merfolk/water-halo-4.png
+share/wesnoth/data/core/images/halo/merfolk/water-halo-5.png
+share/wesnoth/data/core/images/halo/merfolk/water-halo-6.png
+share/wesnoth/data/core/images/halo/merfolk/water-halo-7.png
share/wesnoth/data/core/images/halo/saurian-magic-halo-1.png
share/wesnoth/data/core/images/halo/saurian-magic-halo-2.png
share/wesnoth/data/core/images/halo/saurian-magic-halo-3.png
@@ -2161,6 +2203,21 @@
share/wesnoth/data/core/images/portraits/Kitty/elvish-shaman.png
share/wesnoth/data/core/images/portraits/Kitty/elvish-shyde.png
share/wesnoth/data/core/images/portraits/Kitty/elvish-sorceress.png
+share/wesnoth/data/core/images/portraits/Kitty/human-dark-adept+female.png
+share/wesnoth/data/core/images/portraits/Kitty/human-dark-adept.png
+share/wesnoth/data/core/images/portraits/Kitty/human-mage+female.png
+share/wesnoth/data/core/images/portraits/Kitty/human-mage-arch+female.png
+share/wesnoth/data/core/images/portraits/Kitty/human-mage-arch.png
+share/wesnoth/data/core/images/portraits/Kitty/human-mage-light+female.png
+share/wesnoth/data/core/images/portraits/Kitty/human-mage-red+female.png
+share/wesnoth/data/core/images/portraits/Kitty/human-mage-red.png
+share/wesnoth/data/core/images/portraits/Kitty/human-mage-silver+female.png
+share/wesnoth/data/core/images/portraits/Kitty/human-mage-silver.png
+share/wesnoth/data/core/images/portraits/Kitty/human-mage-white+female.png
+share/wesnoth/data/core/images/portraits/Kitty/human-mage-white.png
+share/wesnoth/data/core/images/portraits/Kitty/human-mage.png
+share/wesnoth/data/core/images/portraits/Kitty/human-necromancer+female.png
+share/wesnoth/data/core/images/portraits/Kitty/undead-lich.png
share/wesnoth/data/core/images/portraits/Neoriceisgood/dwarvish_berzerker.png
share/wesnoth/data/core/images/portraits/Neoriceisgood/orcish_grunt.png
share/wesnoth/data/core/images/portraits/Neoriceisgood/orcish_leader.png
@@ -2260,11 +2317,38 @@
share/wesnoth/data/core/images/projectiles/lightning-bolt.png
share/wesnoth/data/core/images/projectiles/lightning-n.png
share/wesnoth/data/core/images/projectiles/lightning-ne.png
+share/wesnoth/data/core/images/projectiles/misfire-spark-1.png
+share/wesnoth/data/core/images/projectiles/misfire-spark-2.png
+share/wesnoth/data/core/images/projectiles/misfire-spark-3.png
+share/wesnoth/data/core/images/projectiles/misfire-spark-4.png
share/wesnoth/data/core/images/projectiles/missile-fire-n.png
share/wesnoth/data/core/images/projectiles/missile-fire-ne.png
share/wesnoth/data/core/images/projectiles/missile-n.png
share/wesnoth/data/core/images/projectiles/missile-ne.png
share/wesnoth/data/core/images/projectiles/mud-glob.png
+share/wesnoth/data/core/images/projectiles/muzzle-flash-10.png
+share/wesnoth/data/core/images/projectiles/muzzle-flash-11.png
+share/wesnoth/data/core/images/projectiles/muzzle-flash-12.png
+share/wesnoth/data/core/images/projectiles/muzzle-flash-13.png
+share/wesnoth/data/core/images/projectiles/muzzle-flash-14.png
+share/wesnoth/data/core/images/projectiles/muzzle-flash-4.png
+share/wesnoth/data/core/images/projectiles/muzzle-flash-5.png
+share/wesnoth/data/core/images/projectiles/muzzle-flash-6.png
+share/wesnoth/data/core/images/projectiles/muzzle-flash-7.png
+share/wesnoth/data/core/images/projectiles/muzzle-flash-8.png
+share/wesnoth/data/core/images/projectiles/muzzle-flash-9.png
+share/wesnoth/data/core/images/projectiles/muzzle-flash-n-1.png
+share/wesnoth/data/core/images/projectiles/muzzle-flash-n-2.png
+share/wesnoth/data/core/images/projectiles/muzzle-flash-n-3.png
+share/wesnoth/data/core/images/projectiles/muzzle-flash-ne-1.png
+share/wesnoth/data/core/images/projectiles/muzzle-flash-ne-2.png
+share/wesnoth/data/core/images/projectiles/muzzle-flash-ne-3.png
+share/wesnoth/data/core/images/projectiles/muzzle-flash-s-1.png
+share/wesnoth/data/core/images/projectiles/muzzle-flash-s-2.png
+share/wesnoth/data/core/images/projectiles/muzzle-flash-s-3.png
+share/wesnoth/data/core/images/projectiles/muzzle-flash-se-1.png
+share/wesnoth/data/core/images/projectiles/muzzle-flash-se-2.png
+share/wesnoth/data/core/images/projectiles/muzzle-flash-se-3.png
share/wesnoth/data/core/images/projectiles/pitchfork-n.png
share/wesnoth/data/core/images/projectiles/pitchfork-ne.png
share/wesnoth/data/core/images/projectiles/spear-n.png
@@ -3659,6 +3743,9 @@
share/wesnoth/data/core/images/terrain/village/desert3.png
share/wesnoth/data/core/images/terrain/village/dwarven-tile.png
share/wesnoth/data/core/images/terrain/village/dwarven.png
+share/wesnoth/data/core/images/terrain/village/dwarven2.png
+share/wesnoth/data/core/images/terrain/village/dwarven3.png
+share/wesnoth/data/core/images/terrain/village/dwarven4.png
share/wesnoth/data/core/images/terrain/village/elven-snow-tile.png
share/wesnoth/data/core/images/terrain/village/elven-snow.png
share/wesnoth/data/core/images/terrain/village/elven-snow2.png
@@ -4052,6 +4139,12 @@
share/wesnoth/data/core/images/units/dwarves/fighter-axe-3.png
share/wesnoth/data/core/images/units/dwarves/fighter-axe-4.png
share/wesnoth/data/core/images/units/dwarves/fighter-axe-5.png
+share/wesnoth/data/core/images/units/dwarves/fighter-axe-6.png
+share/wesnoth/data/core/images/units/dwarves/fighter-axe-7.png
+share/wesnoth/data/core/images/units/dwarves/fighter-axe-8.png
+share/wesnoth/data/core/images/units/dwarves/fighter-axe-9.png
+share/wesnoth/data/core/images/units/dwarves/fighter-defend-1.png
+share/wesnoth/data/core/images/units/dwarves/fighter-defend-2.png
share/wesnoth/data/core/images/units/dwarves/fighter-defend.png
share/wesnoth/data/core/images/units/dwarves/fighter-hammer-1.png
share/wesnoth/data/core/images/units/dwarves/fighter-hammer-2.png
@@ -4095,6 +4188,8 @@
share/wesnoth/data/core/images/units/dwarves/guard.png
share/wesnoth/data/core/images/units/dwarves/lord-attack-mace.png
share/wesnoth/data/core/images/units/dwarves/lord-attack.png
+share/wesnoth/data/core/images/units/dwarves/lord-defend-1.png
+share/wesnoth/data/core/images/units/dwarves/lord-defend-2.png
share/wesnoth/data/core/images/units/dwarves/lord-defend.png
share/wesnoth/data/core/images/units/dwarves/lord-ranged.png
share/wesnoth/data/core/images/units/dwarves/lord.png
@@ -4111,13 +4206,19 @@
share/wesnoth/data/core/images/units/dwarves/runemaster-idle-7.png
share/wesnoth/data/core/images/units/dwarves/runemaster.png
share/wesnoth/data/core/images/units/dwarves/sentinel-attack.png
+share/wesnoth/data/core/images/units/dwarves/sentinel-defend-1.png
+share/wesnoth/data/core/images/units/dwarves/sentinel-defend-2.png
share/wesnoth/data/core/images/units/dwarves/sentinel-defend.png
share/wesnoth/data/core/images/units/dwarves/sentinel.png
share/wesnoth/data/core/images/units/dwarves/stalwart-attack.png
+share/wesnoth/data/core/images/units/dwarves/stalwart-defend-1.png
+share/wesnoth/data/core/images/units/dwarves/stalwart-defend-2.png
share/wesnoth/data/core/images/units/dwarves/stalwart-defend.png
share/wesnoth/data/core/images/units/dwarves/stalwart.png
share/wesnoth/data/core/images/units/dwarves/steelclad-attack-mace.png
share/wesnoth/data/core/images/units/dwarves/steelclad-attack.png
+share/wesnoth/data/core/images/units/dwarves/steelclad-defend-1.png
+share/wesnoth/data/core/images/units/dwarves/steelclad-defend-2.png
share/wesnoth/data/core/images/units/dwarves/steelclad-defend.png
share/wesnoth/data/core/images/units/dwarves/steelclad-idle-1.png
share/wesnoth/data/core/images/units/dwarves/steelclad-idle-10.png
@@ -4596,6 +4697,18 @@
share/wesnoth/data/core/images/units/goblins/wolf-rider-moving.png
share/wesnoth/data/core/images/units/goblins/wolf-rider-water.png
share/wesnoth/data/core/images/units/goblins/wolf-rider.png
+share/wesnoth/data/core/images/units/human-loyalists/bowman-bow-attack-1.png
+share/wesnoth/data/core/images/units/human-loyalists/bowman-bow-attack-2.png
+share/wesnoth/data/core/images/units/human-loyalists/bowman-bow-attack-3.png
+share/wesnoth/data/core/images/units/human-loyalists/bowman-bow-attack-4.png
+share/wesnoth/data/core/images/units/human-loyalists/bowman-bow-defend.png
+share/wesnoth/data/core/images/units/human-loyalists/bowman-bow.png
+share/wesnoth/data/core/images/units/human-loyalists/bowman-melee-attack-1.png
+share/wesnoth/data/core/images/units/human-loyalists/bowman-melee-attack-2.png
+share/wesnoth/data/core/images/units/human-loyalists/bowman-melee-attack-3.png
+share/wesnoth/data/core/images/units/human-loyalists/bowman-melee-attack-4.png
+share/wesnoth/data/core/images/units/human-loyalists/bowman-melee-defend-1.png
+share/wesnoth/data/core/images/units/human-loyalists/bowman-melee-defend-2.png
share/wesnoth/data/core/images/units/human-loyalists/bowman-ranged-1.png
share/wesnoth/data/core/images/units/human-loyalists/bowman-ranged-2.png
share/wesnoth/data/core/images/units/human-loyalists/bowman-ranged-3.png
@@ -4778,6 +4891,10 @@
share/wesnoth/data/core/images/units/human-loyalists/lieutenant-idle-9.png
share/wesnoth/data/core/images/units/human-loyalists/lieutenant-leading.png
share/wesnoth/data/core/images/units/human-loyalists/lieutenant.png
+share/wesnoth/data/core/images/units/human-loyalists/longbowman-bow-attack-1.png
+share/wesnoth/data/core/images/units/human-loyalists/longbowman-bow-attack-2.png
+share/wesnoth/data/core/images/units/human-loyalists/longbowman-bow-attack-3.png
+share/wesnoth/data/core/images/units/human-loyalists/longbowman-bow-attack-4.png
share/wesnoth/data/core/images/units/human-loyalists/longbowman-bow-attack1.png
share/wesnoth/data/core/images/units/human-loyalists/longbowman-bow-attack2.png
share/wesnoth/data/core/images/units/human-loyalists/longbowman-bow-attack3.png
@@ -4788,6 +4905,12 @@
share/wesnoth/data/core/images/units/human-loyalists/longbowman-idle-2.png
share/wesnoth/data/core/images/units/human-loyalists/longbowman-idle-3.png
share/wesnoth/data/core/images/units/human-loyalists/longbowman-idle-4.png
+share/wesnoth/data/core/images/units/human-loyalists/longbowman-melee-attack-1.png
+share/wesnoth/data/core/images/units/human-loyalists/longbowman-melee-attack-2.png
+share/wesnoth/data/core/images/units/human-loyalists/longbowman-melee-attack-3.png
+share/wesnoth/data/core/images/units/human-loyalists/longbowman-melee-attack-4.png
+share/wesnoth/data/core/images/units/human-loyalists/longbowman-melee-defend-1.png
Home |
Main Index |
Thread Index |
Old Index