pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/games Changes 2.1.2:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/19c3dc57a74d
branches:  trunk
changeset: 537332:19c3dc57a74d
user:      adam <adam%pkgsrc.org@localhost>
date:      Sun Jan 06 16:39:13 2008 +0000

description:
Changes 2.1.2:
* Improved support for GGZ Gaming Zone.
* Fix support for Leave and Load in the same client session.
* Add GTK2 client support for saving server settings.
* Add realistic terrain requirements for three default wonders, as well a number
  of missing ones to civ1 and civ2.
* Improve startup speed, reducing duplicate internal messages sent.
* Updated GTK2 hotkeys, menus, text, and translations, especially Catalan,
  Finnish, Korean, Lithuanian, Turkish, and Ukrainian.

diffstat:

 games/freeciv-client/Makefile        |    6 +-
 games/freeciv-client/options.mk      |    8 +-
 games/freeciv-server/Makefile        |    4 +-
 games/freeciv-server/PLIST           |    3 +-
 games/freeciv-share/Makefile.common  |    6 +-
 games/freeciv-share/PLIST            |  440 ++++++++++++++++++++++++++++++++--
 games/freeciv-share/distinfo         |   13 +-
 games/freeciv-share/patches/patch-aa |   22 +-
 games/freeciv-share/patches/patch-ab |   16 +-
 games/freeciv-share/patches/patch-ac |   19 -
 games/freeciv-sounds/DESCR           |    2 -
 games/freeciv-sounds/Makefile        |   26 --
 games/freeciv-sounds/PLIST           |   19 -
 games/freeciv-sounds/distinfo        |    5 -
 14 files changed, 445 insertions(+), 144 deletions(-)

diffs (truncated from 1056 to 300 lines):

diff -r 87552141bf8c -r 19c3dc57a74d games/freeciv-client/Makefile
--- a/games/freeciv-client/Makefile     Sun Jan 06 16:36:49 2008 +0000
+++ b/games/freeciv-client/Makefile     Sun Jan 06 16:39:13 2008 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.33 2007/08/16 22:59:08 joerg Exp $
+# $NetBSD: Makefile,v 1.34 2008/01/06 16:39:13 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/-client-/}
 COMMENT=       Freeciv client
@@ -6,12 +6,10 @@
 PKG_DESTDIR_SUPPORT=   user-destdir
 
 DEPENDS+=      freeciv-share>=${FC_VERS}:../../games/freeciv-share
-DEPENDS+=      freeciv-sounds>=3.0:../../games/freeciv-sounds
 
 CONFLICTS=     freeciv-client-gtk<=1.11.4
 
-USE_TOOLS+=    pkg-config
-
+USE_TOOLS+=            pkg-config
 CONFIGURE_ARGS+=       --disable-make-data
 CONFIGURE_ARGS+=       --disable-server
 
diff -r 87552141bf8c -r 19c3dc57a74d games/freeciv-client/options.mk
--- a/games/freeciv-client/options.mk   Sun Jan 06 16:36:49 2008 +0000
+++ b/games/freeciv-client/options.mk   Sun Jan 06 16:39:13 2008 +0000
@@ -1,9 +1,9 @@
-# $NetBSD: options.mk,v 1.3 2007/08/16 22:59:08 joerg Exp $
+# $NetBSD: options.mk,v 1.4 2008/01/06 16:39:14 adam Exp $
 
 PKG_OPTIONS_VAR=               PKG_OPTIONS.freeciv-client
 PKG_OPTIONS_REQUIRED_GROUPS=   backend
 PKG_OPTIONS_GROUP.backend=     gtk gtk2 xaw xaw3d sdl x11
-PKG_SUGGESTED_OPTIONS= gtk2
+PKG_SUGGESTED_OPTIONS=         gtk2
 
 .include "../../mk/bsd.options.mk"
 
@@ -29,6 +29,8 @@
 .endif
 
 .if !empty(PKG_OPTIONS:Msdl)
-CONFIGURE_ARGS+=       --enable-ftwl=sdl
+CONFIGURE_ARGS+=       --enable-client=sdl
+#CONFIGURE_ARGS+=      --enable-ftwl=sdl
 .include "../../audio/SDL_mixer/buildlink3.mk"
+.include "../../graphics/SDL_image/buildlink3.mk"
 .endif
diff -r 87552141bf8c -r 19c3dc57a74d games/freeciv-server/Makefile
--- a/games/freeciv-server/Makefile     Sun Jan 06 16:36:49 2008 +0000
+++ b/games/freeciv-server/Makefile     Sun Jan 06 16:39:13 2008 +0000
@@ -1,11 +1,11 @@
-# $NetBSD: Makefile,v 1.24 2007/04/16 15:31:44 gdt Exp $
+# $NetBSD: Makefile,v 1.25 2008/01/06 16:39:14 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/-server-/}
 COMMENT=       Freeciv game server
 
 DEPENDS+=      freeciv-share>=${FC_VERS}:../../games/freeciv-share
 
-MAKE_JOBS_SAFE=                no
+#MAKE_JOBS_SAFE=               no
 
 USE_GNU_READLINE=      yes
 CONFIGURE_ARGS+=       --disable-make-data
diff -r 87552141bf8c -r 19c3dc57a74d games/freeciv-server/PLIST
--- a/games/freeciv-server/PLIST        Sun Jan 06 16:36:49 2008 +0000
+++ b/games/freeciv-server/PLIST        Sun Jan 06 16:39:13 2008 +0000
@@ -1,2 +1,3 @@
-@comment $NetBSD: PLIST,v 1.1 2001/11/01 00:52:27 zuntum Exp $
+@comment $NetBSD: PLIST,v 1.2 2008/01/06 16:39:14 adam Exp $
 bin/civserver
+share/applications/freeciv-server.desktop
diff -r 87552141bf8c -r 19c3dc57a74d games/freeciv-share/Makefile.common
--- a/games/freeciv-share/Makefile.common       Sun Jan 06 16:36:49 2008 +0000
+++ b/games/freeciv-share/Makefile.common       Sun Jan 06 16:39:13 2008 +0000
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile.common,v 1.29 2007/03/18 13:12:14 adam Exp $
+# $NetBSD: Makefile.common,v 1.30 2008/01/06 16:39:15 adam Exp $
 
 DISTNAME=      freeciv-${FC_VERS}
-FC_VERS=       2.0.9
+FC_VERS=       2.1.2
 CATEGORIES=    games
 MASTER_SITES=  ftp://ftp.freeciv.org/pub/freeciv/stable/ \
                http://www.freeciv.org/ftp/stable/ \
@@ -13,7 +13,7 @@
 HOMEPAGE=      http://www.freeciv.org/
 
 USE_PKGLOCALEDIR=      yes
-USE_TOOLS+=            msgfmt pkg-config
+USE_TOOLS+=            gmake msgfmt pkg-config
 GNU_CONFIGURE=         yes
 
 DISTINFO_FILE=         ${.CURDIR}/../../games/freeciv-share/distinfo
diff -r 87552141bf8c -r 19c3dc57a74d games/freeciv-share/PLIST
--- a/games/freeciv-share/PLIST Sun Jan 06 16:36:49 2008 +0000
+++ b/games/freeciv-share/PLIST Sun Jan 06 16:39:13 2008 +0000
@@ -1,8 +1,80 @@
-@comment $NetBSD: PLIST,v 1.7 2007/03/18 13:12:14 adam Exp $
+@comment $NetBSD: PLIST,v 1.8 2008/01/06 16:39:15 adam Exp $
 man/man6/civclient.6
 man/man6/civserver.6
+share/freeciv/amplio.tilespec
+share/freeciv/amplio/ancientcities.png
+share/freeciv/amplio/ancientcities.spec
+share/freeciv/amplio/buildings.spec
+share/freeciv/amplio/cityicon.png
+share/freeciv/amplio/civicon.png
+share/freeciv/amplio/explosions.png
+share/freeciv/amplio/explosions.spec
+share/freeciv/amplio/fog.png
+share/freeciv/amplio/fog.spec
+share/freeciv/amplio/grid.png
+share/freeciv/amplio/grid.spec
+share/freeciv/amplio/icons.spec
+share/freeciv/amplio/medievalcities.png
+share/freeciv/amplio/medievalcities.spec
+share/freeciv/amplio/moderncities.png
+share/freeciv/amplio/moderncities.spec
+share/freeciv/amplio/nuke.png
+share/freeciv/amplio/nuke.spec
+share/freeciv/amplio/select-alpha.png
+share/freeciv/amplio/select.png
+share/freeciv/amplio/select.spec
+share/freeciv/amplio/terrain1.png
+share/freeciv/amplio/terrain1.spec
+share/freeciv/amplio/terrain2.png
+share/freeciv/amplio/terrain2.spec
+share/freeciv/amplio/tiles.png
+share/freeciv/amplio/tiles.spec
+share/freeciv/amplio/units.png
+share/freeciv/amplio/units.spec
+share/freeciv/amplio/wonders.spec
+share/freeciv/buildings/airport.png
+share/freeciv/buildings/aqueduct.png
+share/freeciv/buildings/bank.png
+share/freeciv/buildings/barracks_i.png
+share/freeciv/buildings/barracks_ii.png
+share/freeciv/buildings/barracks_iii.png
+share/freeciv/buildings/capitalization.png
+share/freeciv/buildings/cathedral.png
+share/freeciv/buildings/city_walls.png
+share/freeciv/buildings/coastal_defense.png
+share/freeciv/buildings/colosseum.png
+share/freeciv/buildings/courthouse.png
+share/freeciv/buildings/factory.png
+share/freeciv/buildings/granary.png
+share/freeciv/buildings/harbor.png
+share/freeciv/buildings/hydro_plant.png
+share/freeciv/buildings/library.png
+share/freeciv/buildings/marketplace.png
+share/freeciv/buildings/mass_transit.png
+share/freeciv/buildings/mfg_plant.png
+share/freeciv/buildings/nuclear_plant.png
+share/freeciv/buildings/offshore_platform.png
+share/freeciv/buildings/palace.png
+share/freeciv/buildings/police_station.png
+share/freeciv/buildings/port_facility.png
+share/freeciv/buildings/power_plant.png
+share/freeciv/buildings/recycling_center.png
+share/freeciv/buildings/research_lab.png
+share/freeciv/buildings/sam_battery.png
+share/freeciv/buildings/sdi_defense.png
+share/freeciv/buildings/sewer_system.png
+share/freeciv/buildings/solar_plant.png
+share/freeciv/buildings/space_component.png
+share/freeciv/buildings/space_modules.png
+share/freeciv/buildings/space_structural.png
+share/freeciv/buildings/stock_exchange.png
+share/freeciv/buildings/super_highways.png
+share/freeciv/buildings/supermarket.png
+share/freeciv/buildings/temple.png
+share/freeciv/buildings/university.png
 share/freeciv/civ1.serv
 share/freeciv/civ1/buildings.ruleset
+share/freeciv/civ1/effects.ruleset
 share/freeciv/civ1/game.ruleset
 share/freeciv/civ1/governments.ruleset
 share/freeciv/civ1/nations.ruleset
@@ -11,150 +83,328 @@
 share/freeciv/civ1/units.ruleset
 share/freeciv/civ2.serv
 share/freeciv/civ2/buildings.ruleset
+share/freeciv/civ2/cities.ruleset
+share/freeciv/civ2/effects.ruleset
 share/freeciv/civ2/game.ruleset
 share/freeciv/civ2/governments.ruleset
 share/freeciv/civ2/techs.ruleset
 share/freeciv/civ2/terrain.ruleset
 share/freeciv/civ2/units.ruleset
+share/freeciv/default.serv
 share/freeciv/default/buildings.ruleset
 share/freeciv/default/cities.ruleset
+share/freeciv/default/effects.ruleset
 share/freeciv/default/game.ruleset
 share/freeciv/default/governments.ruleset
 share/freeciv/default/nations.ruleset
+share/freeciv/default/script.lua
 share/freeciv/default/techs.ruleset
 share/freeciv/default/terrain.ruleset
 share/freeciv/default/units.ruleset
+share/freeciv/flags/aborigines-shield.png
+share/freeciv/flags/aborigines.png
 share/freeciv/flags/afghanistan-shield.png
 share/freeciv/flags/afghanistan.png
+share/freeciv/flags/algeria-shield.png
+share/freeciv/flags/algeria.png
+share/freeciv/flags/antarctica-shield.png
+share/freeciv/flags/antarctica.png
+share/freeciv/flags/arab-shield.png
 share/freeciv/flags/arab.png
+share/freeciv/flags/aram-shield.png
+share/freeciv/flags/aram.png
+share/freeciv/flags/argentina-shield.png
 share/freeciv/flags/argentina.png
+share/freeciv/flags/armenia-shield.png
 share/freeciv/flags/armenia.png
 share/freeciv/flags/assyria-shield.png
 share/freeciv/flags/assyria.png
+share/freeciv/flags/australia-shield.png
 share/freeciv/flags/australia.png
+share/freeciv/flags/austria-shield.png
 share/freeciv/flags/austria.png
+share/freeciv/flags/azerbaijan-shield.png
 share/freeciv/flags/azerbaijan.png
+share/freeciv/flags/aztec-shield.png
+share/freeciv/flags/aztec.png
+share/freeciv/flags/babylon-shield.png
+share/freeciv/flags/babylon.png
+share/freeciv/flags/bangladesh-shield.png
+share/freeciv/flags/bangladesh.png
+share/freeciv/flags/barbarian-shield.png
 share/freeciv/flags/barbarian.png
+share/freeciv/flags/bavarian-shield.png
 share/freeciv/flags/bavarian.png
+share/freeciv/flags/belgium-shield.png
 share/freeciv/flags/belgium.png
+share/freeciv/flags/boer-shield.png
 share/freeciv/flags/boer.png
 share/freeciv/flags/bosnia-shield.png
 share/freeciv/flags/bosnia.png
+share/freeciv/flags/brasil-shield.png
 share/freeciv/flags/brasil.png
+share/freeciv/flags/bulgaria-shield.png
 share/freeciv/flags/bulgaria.png
+share/freeciv/flags/byzantium-shield.png
+share/freeciv/flags/byzantium.png
+share/freeciv/flags/canada-shield.png
 share/freeciv/flags/canada.png
+share/freeciv/flags/cartago-shield.png
+share/freeciv/flags/cartago.png
+share/freeciv/flags/catalan-shield.png
 share/freeciv/flags/catalan.png
+share/freeciv/flags/cheyenne-shield.png
 share/freeciv/flags/cheyenne.png
+share/freeciv/flags/chile-shield.png
 share/freeciv/flags/chile.png
+share/freeciv/flags/china-shield.png
 share/freeciv/flags/china.png
-share/freeciv/flags/columbia-shield.png
-share/freeciv/flags/columbia.png
+share/freeciv/flags/colombia-shield.png
+share/freeciv/flags/colombia.png
+share/freeciv/flags/constantine-shield.png
+share/freeciv/flags/constantine.png
+share/freeciv/flags/cornwall-shield.png
 share/freeciv/flags/cornwall.png
+share/freeciv/flags/croatia-shield.png
 share/freeciv/flags/croatia.png
+share/freeciv/flags/cuba-shield.png
 share/freeciv/flags/cuba.png
+share/freeciv/flags/czech-shield.png
 share/freeciv/flags/czech.png
+share/freeciv/flags/denmark-shield.png
 share/freeciv/flags/denmark.png
-share/freeciv/flags/dunedain.png
+share/freeciv/flags/egypt-shield.png
 share/freeciv/flags/egypt.png
-share/freeciv/flags/elves-shield.png
-share/freeciv/flags/elves.png
+share/freeciv/flags/egypt_ancient-shield.png
+share/freeciv/flags/egypt_ancient.png
+share/freeciv/flags/england-shield.png
 share/freeciv/flags/england.png
+share/freeciv/flags/estonia-shield.png
 share/freeciv/flags/estonia.png
 share/freeciv/flags/ethiopia-shield.png
 share/freeciv/flags/ethiopia.png
+share/freeciv/flags/europe-shield.png
 share/freeciv/flags/europe.png
+share/freeciv/flags/finland-shield.png
 share/freeciv/flags/finland.png
+share/freeciv/flags/france-shield.png
 share/freeciv/flags/france.png
+share/freeciv/flags/france_old-shield.png
+share/freeciv/flags/france_old.png
 share/freeciv/flags/galicia-shield.png
 share/freeciv/flags/galicia.png
+share/freeciv/flags/gaul-shield.png



Home | Main Index | Thread Index | Old Index