Hi!
This updates wormux to 0.9.0.
Beware: you won't be able to play multiplayer game with older
wormux versions ;)
One patch was deleted, so apply with -E.
Daniel
--
LÉVAI Dániel
PGP key ID = 0x4AC0A4B1
Key fingerprint = D037 03B9 C12D D338 4412 2D83 1373 917A 4AC0 A4B1
Index: Makefile
===================================================================
RCS file: /cvs/ports/games/wormux/Makefile,v
retrieving revision 1.15
diff -p -u -r1.15 Makefile
--- Makefile 22 Dec 2009 16:28:01 -0000 1.15
+++ Makefile 5 Feb 2010 13:26:17 -0000
@@ -2,8 +2,8 @@
COMMENT= free software clone of Worms(R) game concept
-DISTNAME= wormux-0.8.4
-PKGNAME= ${DISTNAME}p1
+DISTNAME= wormux-0.9.0
+PKGNAME= ${DISTNAME}
CATEGORIES= games
HOMEPAGE= http://wormux.org
@@ -33,6 +33,7 @@ CONFIGURE_STYLE= gnu
CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include ${CFLAGS}" \
LDFLAGS="-L${LOCALBASE}/lib" \
MKDIR_P='mkdir -p'
+CONFIGURE_ARGS+= --enable-servers
post-extract:
rm -Rf ${WRKSRC}/data/locale
Index: distinfo
===================================================================
RCS file: /cvs/ports/games/wormux/distinfo,v
retrieving revision 1.5
diff -p -u -r1.5 distinfo
--- distinfo 21 Jul 2009 19:16:49 -0000 1.5
+++ distinfo 5 Feb 2010 13:26:17 -0000
@@ -1,5 +1,5 @@
-MD5 (wormux-0.8.4.tar.bz2) = Cu0xZ5lyMXPy1uJCrzEjgg==
-RMD160 (wormux-0.8.4.tar.bz2) = IIa6yAwgzXoYVqEwcRZPApSMsLI=
-SHA1 (wormux-0.8.4.tar.bz2) = aVcqdOqQXWXmY4DPql7N2A0FZpE=
-SHA256 (wormux-0.8.4.tar.bz2) = TlIoZmpi9vn2FgBIkc1NmjcKwvlWMiu2c/kBTkHZRcQ=
-SIZE (wormux-0.8.4.tar.bz2) = 52814016
+MD5 (wormux-0.9.0.tar.bz2) = ABtJecU//PTEVxXK1Pi8hQ==
+RMD160 (wormux-0.9.0.tar.bz2) = 7PwdNH5wkCUKahMqnjJ8LGT0AMU=
+SHA1 (wormux-0.9.0.tar.bz2) = Upij3BIsegRJoGgleXpPCO7PXnE=
+SHA256 (wormux-0.9.0.tar.bz2) = 5m/Hap4dtJSnqisVw23U/d9iTXYvuCEm4MWpT5rtNo8=
+SIZE (wormux-0.9.0.tar.bz2) = 76733389
Index: patches/patch-lib_wormux_net_network_cpp
===================================================================
RCS file: /cvs/ports/games/wormux/patches/patch-lib_wormux_net_network_cpp,v
retrieving revision 1.1
diff -p -u -r1.1 patch-lib_wormux_net_network_cpp
--- patches/patch-lib_wormux_net_network_cpp 21 Jul 2009 19:16:49 -0000 1.1
+++ patches/patch-lib_wormux_net_network_cpp 5 Feb 2010 13:26:17 -0000
@@ -1,9 +1,9 @@
-$OpenBSD: patch-lib_wormux_net_network_cpp,v 1.1 2009/07/21 19:16:49 landry Exp $
---- lib/wormux/net/network.cpp.orig Wed Jul 15 20:22:41 2009
-+++ lib/wormux/net/network.cpp Wed Jul 15 20:24:13 2009
-@@ -23,6 +23,7 @@
+$OpenBSD$
+--- lib/wormux/net/network.cpp.orig Tue Jan 26 20:55:28 2010
++++ lib/wormux/net/network.cpp Fri Feb 5 11:34:10 2010
+@@ -26,6 +26,7 @@
#ifdef WIN32
- # include <winsock2.h>
+ # include <ws2tcpip.h>
#else
+# include <sys/types.h>
# include <sys/socket.h>
Index: patches/patch-src_interface_interface_cpp
===================================================================
RCS file: patches/patch-src_interface_interface_cpp
diff -N patches/patch-src_interface_interface_cpp
--- patches/patch-src_interface_interface_cpp 21 Jul 2009 19:16:49 -0000 1.2
+++ /dev/null 1 Jan 1970 00:00:00 -0000
@@ -1,23 +0,0 @@
-$OpenBSD: patch-src_interface_interface_cpp,v 1.2 2009/07/21 19:16:49 landry Exp $
---- src/interface/interface.cpp.orig Sat Jul 4 23:16:39 2009
-+++ src/interface/interface.cpp Wed Jul 15 20:17:46 2009
-@@ -358,7 +358,8 @@ void Interface::DrawMapPreview()
- Rectanglei water(0, rect_preview.GetSizeY()-h, rect_preview.GetSizeX(), h);
-
-
-- Surface water_surf(Surface(GetWorld().ground.GetPreviewSize(),SDL_SWSURFACE, true));
-+ Surface water_surf;
-+ water_surf = Surface(GetWorld().ground.GetPreviewSize(),SDL_SWSURFACE, true);
-
- // Draw box with color according to water type
- water_surf.BoxColor(water, water_color);
-@@ -399,7 +400,8 @@ void Interface::DrawMapPreview()
- void Interface::GenerateStyledBox(Surface & source)
- {
-
-- Surface save_surf(Surface(GetWorld().ground.GetPreviewSize(),SDL_SWSURFACE, true));
-+ Surface save_surf;
-+ save_surf = Surface(GetWorld().ground.GetPreviewSize(),SDL_SWSURFACE, true);
- save_surf.MergeSurface(source, Point2i(0,0));
- Rectanglei temp_rect;
-
Index: patches/patch-tools_servers_index_server_net_data_cpp
===================================================================
RCS file: /cvs/ports/games/wormux/patches/patch-tools_servers_index_server_net_data_cpp,v
retrieving revision 1.1
diff -p -u -r1.1 patch-tools_servers_index_server_net_data_cpp
--- patches/patch-tools_servers_index_server_net_data_cpp 21 Jul 2009 19:16:49 -0000 1.1
+++ patches/patch-tools_servers_index_server_net_data_cpp 5 Feb 2010 13:26:17 -0000
@@ -1,8 +1,7 @@
-$OpenBSD: patch-tools_servers_index_server_net_data_cpp,v 1.1 2009/07/21 19:16:49 landry Exp $
-We don't #define MSG_NOSIGNAL
---- tools/servers/index_server/net_data.cpp.orig Wed Jul 15 20:42:01 2009
-+++ tools/servers/index_server/net_data.cpp Wed Jul 15 20:42:27 2009
-@@ -247,7 +247,7 @@ bool NetData::SendInt(const int &nbr)
+$OpenBSD$
+--- tools/servers/index_server/net_data.cpp.orig Tue Jan 26 20:55:28 2010
++++ tools/servers/index_server/net_data.cpp Fri Feb 5 11:34:36 2010
+@@ -248,7 +248,7 @@ bool NetData::SendInt(const int &nbr)
unsigned int u_nbr = *((unsigned int*)&nbr);
packet = htonl(u_nbr);
@@ -11,7 +10,7 @@ We don't #define MSG_NOSIGNAL
PRINT_ERROR;
return false;
}
-@@ -262,7 +262,7 @@ bool NetData::SendStr(const std::string &full_str)
+@@ -263,7 +263,7 @@ bool NetData::SendStr(const std::string &full_str)
if (!SendInt((int)full_str.size()))
return false;
Index: pkg/PLIST
===================================================================
RCS file: /cvs/ports/games/wormux/pkg/PLIST,v
retrieving revision 1.8
diff -p -u -r1.8 PLIST
--- pkg/PLIST 22 Dec 2009 16:28:01 -0000 1.8
+++ pkg/PLIST 5 Feb 2010 13:26:18 -0000
@@ -1,6 +1,7 @@
-...@comment $OpenBSD: PLIST,v 1.8 2009/12/22 16:28:01 ajacoutot Exp $
+...@comment $OpenBSD$
@bin bin/wormux
@bin bin/wormux-index-server
+...@bin bin/wormux-list-games
@bin bin/wormux-server
@man man/man6/wormux.6
share/applications/wormux.desktop
@@ -18,6 +19,7 @@ share/locale/de/LC_MESSAGES/wormux.mo
share/locale/el/LC_MESSAGES/wormux.mo
share/locale/eo/LC_MESSAGES/wormux.mo
share/locale/es/LC_MESSAGES/wormux.mo
+share/locale/et/LC_MESSAGES/wormux.mo
share/locale/fa/
share/locale/fa/LC_MESSAGES/
share/locale/fa/LC_MESSAGES/wormux.mo
@@ -27,6 +29,12 @@ share/locale/gl/LC_MESSAGES/wormux.mo
share/locale/he/LC_MESSAGES/wormux.mo
share/locale/hu/LC_MESSAGES/wormux.mo
share/locale/it/LC_MESSAGES/wormux.mo
+share/locale/ja_JP/
+share/locale/ja_JP/LC_MESSAGES/
+share/locale/ja_JP/LC_MESSAGES/wormux.mo
+share/locale/kw/
+share/locale/kw/LC_MESSAGES/
+share/locale/kw/LC_MESSAGES/wormux.mo
share/locale/lv/LC_MESSAGES/wormux.mo
share/locale/nb/LC_MESSAGES/wormux.mo
share/locale/nl/LC_MESSAGES/wormux.mo
@@ -192,6 +200,48 @@ share/wormux/body/gnu/noze.png
share/wormux/body/gnu/pupil.png
share/wormux/body/gnu/sick_head.png
share/wormux/body/gnu/tail.png
+share/wormux/body/hexley/
+share/wormux/body/hexley/arm1left.png
+share/wormux/body/hexley/arm1right.png
+share/wormux/body/hexley/arm2left.png
+share/wormux/body/hexley/arm2right.png
+share/wormux/body/hexley/arm3left.png
+share/wormux/body/hexley/arm3right.png
+share/wormux/body/hexley/back.png
+share/wormux/body/hexley/black_arm1left.png
+share/wormux/body/hexley/black_arm1right.png
+share/wormux/body/hexley/black_arm2left.png
+share/wormux/body/hexley/black_arm2right.png
+share/wormux/body/hexley/black_arm3left.png
+share/wormux/body/hexley/black_arm3right.png
+share/wormux/body/hexley/black_back.png
+share/wormux/body/hexley/black_body.png
+share/wormux/body/hexley/black_eyelid.png
+share/wormux/body/hexley/black_eyes.png
+share/wormux/body/hexley/black_footleft.png
+share/wormux/body/hexley/black_footright.png
+share/wormux/body/hexley/black_hair.png
+share/wormux/body/hexley/black_head.png
+share/wormux/body/hexley/black_hornleft.png
+share/wormux/body/hexley/black_hornright.png
+share/wormux/body/hexley/black_noze.png
+share/wormux/body/hexley/black_pupil.png
+share/wormux/body/hexley/black_tail.png
+share/wormux/body/hexley/body.png
+share/wormux/body/hexley/config.xml
+share/wormux/body/hexley/dead.png
+share/wormux/body/hexley/eyelid.png
+share/wormux/body/hexley/eyes.png
+share/wormux/body/hexley/footleft.png
+share/wormux/body/hexley/footright.png
+share/wormux/body/hexley/hair.png
+share/wormux/body/hexley/head.png
+share/wormux/body/hexley/hornleft.png
+share/wormux/body/hexley/hornright.png
+share/wormux/body/hexley/noze.png
+share/wormux/body/hexley/pupil.png
+share/wormux/body/hexley/sick_head.png
+share/wormux/body/hexley/tail.png
share/wormux/body/konqi/
share/wormux/body/konqi/arm1left.png
share/wormux/body/konqi/arm1right.png
@@ -403,6 +453,49 @@ share/wormux/body/pidgin/noze.png
share/wormux/body/pidgin/pupil.png
share/wormux/body/pidgin/sick_head.png
share/wormux/body/pidgin/tail.png
+share/wormux/body/postfix/
+share/wormux/body/postfix/arm1left.png
+share/wormux/body/postfix/arm1right.png
+share/wormux/body/postfix/arm2left.png
+share/wormux/body/postfix/arm2right.png
+share/wormux/body/postfix/arm3left.png
+share/wormux/body/postfix/arm3right.png
+share/wormux/body/postfix/back.png
+share/wormux/body/postfix/black_arm1left.png
+share/wormux/body/postfix/black_arm1right.png
+share/wormux/body/postfix/black_arm2left.png
+share/wormux/body/postfix/black_arm2right.png
+share/wormux/body/postfix/black_arm3left.png
+share/wormux/body/postfix/black_arm3right.png
+share/wormux/body/postfix/black_back.png
+share/wormux/body/postfix/black_body.png
+share/wormux/body/postfix/black_eyelid.png
+share/wormux/body/postfix/black_eyes.png
+share/wormux/body/postfix/black_footleft.png
+share/wormux/body/postfix/black_footright.png
+share/wormux/body/postfix/black_hair.png
+share/wormux/body/postfix/black_head.png
+share/wormux/body/postfix/black_hornleft.png
+share/wormux/body/postfix/black_hornright.png
+share/wormux/body/postfix/black_noze.png
+share/wormux/body/postfix/black_pupil.png
+share/wormux/body/postfix/black_tail.png
+share/wormux/body/postfix/blackfootright.png
+share/wormux/body/postfix/body.png
+share/wormux/body/postfix/config.xml
+share/wormux/body/postfix/dead.png
+share/wormux/body/postfix/eyelid.png
+share/wormux/body/postfix/eyes.png
+share/wormux/body/postfix/footleft.png
+share/wormux/body/postfix/footright.png
+share/wormux/body/postfix/hair.png
+share/wormux/body/postfix/head.png
+share/wormux/body/postfix/hornleft.png
+share/wormux/body/postfix/hornright.png
+share/wormux/body/postfix/noze.png
+share/wormux/body/postfix/pupil.png
+share/wormux/body/postfix/sick_head.png
+share/wormux/body/postfix/tail.png
share/wormux/body/skeletons.xml
share/wormux/body/snort/
share/wormux/body/snort/arm1left.png
@@ -703,91 +796,59 @@ share/wormux/cursors.dtd
share/wormux/cursors.xml
share/wormux/font/
share/wormux/font/DejaVuSans.ttf
+share/wormux/font/VL-Gothic-Regular.ttf
+share/wormux/font/wqy-microhei-lite.ttc
share/wormux/game_mode/
share/wormux/game_mode/blitz.xml
-share/wormux/game_mode/blitz_objects.xml
share/wormux/game_mode/classic.xml
-share/wormux/game_mode/classic_objects.xml
+share/wormux/game_mode/default_objects.xml
share/wormux/game_mode/game_mode.dtd
share/wormux/game_mode/objects.dtd
-share/wormux/game_mode/skin_viewer.xml~
+share/wormux/game_mode/skin_viewer.xml
share/wormux/game_mode/unlimited.xml
-share/wormux/game_mode/unlimited_objects.xml
-share/wormux/gfx/
-share/wormux/gfx/arrow.png
-share/wormux/gfx/pointer.png
-share/wormux/gfx/water/
-share/wormux/gfx/water/chocolate.png
-share/wormux/gfx/water/chocolate_bottom.png
-share/wormux/gfx/water/chocolate_drop.png
-share/wormux/gfx/water/dirtywater.png
-share/wormux/gfx/water/dirtywater_bottom.png
-share/wormux/gfx/water/dirtywater_drop.png
-share/wormux/gfx/water/lava.png
-share/wormux/gfx/water/lava_bottom.png
-share/wormux/gfx/water/lava_drop.png
-share/wormux/gfx/water/radioactive.png
-share/wormux/gfx/water/radioactive_bottom.png
-share/wormux/gfx/water/radioactive_drop.png
-share/wormux/gfx/water/water.png
-share/wormux/gfx/water/water_bottom.png
-share/wormux/gfx/water/water_drop.png
share/wormux/graphism.dtd
share/wormux/graphism.xml
share/wormux/interface/
-share/wormux/interface/background_interface.png
-share/wormux/interface/clock.png
-share/wormux/interface/clock_background.png
-share/wormux/interface/colors.png
-share/wormux/interface/cross.png
-share/wormux/interface/cursors/
-share/wormux/interface/cursors/arrow-down.left.png
-share/wormux/interface/cursors/arrow-down.png
-share/wormux/interface/cursors/arrow-down.right.png
-share/wormux/interface/cursors/arrow-left.png
-share/wormux/interface/cursors/arrow-right.png
-share/wormux/interface/cursors/arrow-top.left.png
-share/wormux/interface/cursors/arrow-top.png
-share/wormux/interface/cursors/arrow-top.right.png
-share/wormux/interface/cursors/hand-cursor.png
-share/wormux/interface/cursors/hand-fire.left.png
-share/wormux/interface/cursors/hand-fire.png
-share/wormux/interface/cursors/hand-fire.right.png
-share/wormux/interface/cursors/hand-move.png
-share/wormux/interface/hide_bottom.png
-share/wormux/interface/hide_bottomleft.png
-share/wormux/interface/hide_bottomright.png
-share/wormux/interface/hide_left.png
-share/wormux/interface/hide_right.png
-share/wormux/interface/hide_top.png
-share/wormux/interface/hide_topleft.png
-share/wormux/interface/hide_topright.png
-share/wormux/interface/lastfire.png
-share/wormux/interface/line_up2down.png
-share/wormux/interface/quit.png
-share/wormux/interface/rounding_bottom.png
-share/wormux/interface/rounding_bottomleft.png
-share/wormux/interface/rounding_bottomright.png
-share/wormux/interface/rounding_center.png
-share/wormux/interface/rounding_left.png
-share/wormux/interface/rounding_right.png
-share/wormux/interface/rounding_top.png
-share/wormux/interface/rounding_topleft.png
-share/wormux/interface/rounding_topright.png
-share/wormux/interface/small_background_interface.png
-share/wormux/interface/square_bottom.png
-share/wormux/interface/square_bottomleft.png
-share/wormux/interface/square_bottomright.png
-share/wormux/interface/square_center.png
-share/wormux/interface/square_left.png
-share/wormux/interface/square_right.png
-share/wormux/interface/square_top.png
-share/wormux/interface/square_topleft.png
-share/wormux/interface/square_topright.png
-share/wormux/interface/warning.png
-share/wormux/interface/wind.png
-share/wormux/interface/wind_indicator.png
+share/wormux/interface/not_skin/
+share/wormux/interface/not_skin/background_interface.png
+share/wormux/interface/not_skin/clock_background.png
+share/wormux/interface/not_skin/readme.txt
+share/wormux/interface/not_skin/small_background_interface.png
+share/wormux/interface/whitetheme/
+share/wormux/interface/whitetheme/arrow_jump.png
+share/wormux/interface/whitetheme/arrow_turn.png
+share/wormux/interface/whitetheme/box_big.png
+share/wormux/interface/whitetheme/box_big_hide.png
+share/wormux/interface/whitetheme/box_little.png
+share/wormux/interface/whitetheme/box_little_hide.png
+share/wormux/interface/whitetheme/clock.png
+share/wormux/interface/whitetheme/clock_emergency.png
+share/wormux/interface/whitetheme/cursors/
+share/wormux/interface/whitetheme/cursors/arrow-down.left.png
+share/wormux/interface/whitetheme/cursors/arrow-down.png
+share/wormux/interface/whitetheme/cursors/arrow-down.right.png
+share/wormux/interface/whitetheme/cursors/arrow-left.png
+share/wormux/interface/whitetheme/cursors/arrow-right.png
+share/wormux/interface/whitetheme/cursors/arrow-top.left.png
+share/wormux/interface/whitetheme/cursors/arrow-top.png
+share/wormux/interface/whitetheme/cursors/arrow-top.right.png
+share/wormux/interface/whitetheme/cursors/hand-cursor.png
+share/wormux/interface/whitetheme/cursors/hand-fire.png
+share/wormux/interface/whitetheme/cursors/hand-move.png
+share/wormux/interface/whitetheme/cursors/here-from-left.png
+share/wormux/interface/whitetheme/cursors/here-from-right.png
+share/wormux/interface/whitetheme/hourglass.png
+share/wormux/interface/whitetheme/lastfire.png
+share/wormux/interface/whitetheme/pointer.png
+share/wormux/interface/whitetheme/wind.png
+share/wormux/interface/whitetheme/wind_indicator.png
share/wormux/map/
+share/wormux/map/apocalypse/
+share/wormux/map/apocalypse/apocalypse.jpg
+share/wormux/map/apocalypse/apocalypse.png
+share/wormux/map/apocalypse/config.xml
+share/wormux/map/apocalypse/mini.jpg
+share/wormux/map/apocalypse/vent.png
share/wormux/map/aquarium/
share/wormux/map/aquarium/background.png
share/wormux/map/aquarium/config.xml
@@ -799,6 +860,12 @@ share/wormux/map/arbre/config.xml
share/wormux/map/arbre/fond.jpg
share/wormux/map/arbre/gland-anim.png
share/wormux/map/arbre/preview.jpg
+share/wormux/map/arcaderoom/
+share/wormux/map/arcaderoom/background.jpg
+share/wormux/map/arcaderoom/config.xml
+share/wormux/map/arcaderoom/map.png
+share/wormux/map/arcaderoom/preview.jpg
+share/wormux/map/arcaderoom/wind_particle.png
share/wormux/map/bankiz/
share/wormux/map/bankiz/bankiz.png
share/wormux/map/bankiz/config.xml
@@ -832,28 +899,31 @@ share/wormux/map/cheese/emmental.png
share/wormux/map/cheese/minicheese.png
share/wormux/map/cheese/preview.jpg
share/wormux/map/cheese/sky.jpg
-share/wormux/map/christmas/
-share/wormux/map/christmas/config.xml
-share/wormux/map/christmas/flocon.png
-share/wormux/map/christmas/map.png
-share/wormux/map/christmas/preview.jpg
-share/wormux/map/christmas/sky.jpg
+share/wormux/map/construction/
+share/wormux/map/construction/config.xml
+share/wormux/map/construction/map.png
+share/wormux/map/construction/preview.jpg
+share/wormux/map/construction/raindrop.png
+share/wormux/map/construction/sky.jpg
+share/wormux/map/construction/sky0.png
+share/wormux/map/construction/sky1.png
+share/wormux/map/construction/sky2.png
share/wormux/map/country/
share/wormux/map/country/config.xml
share/wormux/map/country/map.png
share/wormux/map/country/preview.jpg
share/wormux/map/country/sky.jpg
-share/wormux/map/cowland/
-share/wormux/map/cowland/config.xml
-share/wormux/map/cowland/map.png
-share/wormux/map/cowland/nuage.png
-share/wormux/map/cowland/preview.jpg
-share/wormux/map/cowland/sky.jpg
share/wormux/map/crystal/
share/wormux/map/crystal/config.xml
share/wormux/map/crystal/crystal.png
share/wormux/map/crystal/preview.jpg
share/wormux/map/crystal/sky.jpg
+share/wormux/map/cyclades/
+share/wormux/map/cyclades/config.xml
+share/wormux/map/cyclades/map.png
+share/wormux/map/cyclades/preview.png
+share/wormux/map/cyclades/rameau_dolivier.png
+share/wormux/map/cyclades/sky.png
share/wormux/map/desert/
share/wormux/map/desert/config.xml
share/wormux/map/desert/desert.png
@@ -870,6 +940,16 @@ share/wormux/map/electronik/background.p
share/wormux/map/electronik/config.xml
share/wormux/map/electronik/preview.jpg
share/wormux/map/electronik/sky.jpg
+share/wormux/map/farm/
+share/wormux/map/farm/config.xml
+share/wormux/map/farm/map.png
+share/wormux/map/farm/one_layer_sky.jpg
+share/wormux/map/farm/particule.png
+share/wormux/map/farm/preview.jpg
+share/wormux/map/farm/sky_layer-0.jpg
+share/wormux/map/farm/sky_layer-1.png
+share/wormux/map/farm/sky_layer-2.png
+share/wormux/map/farm/sky_layer-3.png
share/wormux/map/frog/
share/wormux/map/frog/config.xml
share/wormux/map/frog/map.png
@@ -892,12 +972,6 @@ share/wormux/map/greehills/greenhills.pn
share/wormux/map/greehills/greenhills_sky.jpg
share/wormux/map/greehills/preview.jpg
share/wormux/map/greehills/star.png
-share/wormux/map/grenouilles/
-share/wormux/map/grenouilles/config.xml
-share/wormux/map/grenouilles/grenouilles.png
-share/wormux/map/grenouilles/jungle.jpg
-share/wormux/map/grenouilles/nuage.png
-share/wormux/map/grenouilles/preview.jpg
share/wormux/map/halloween/
share/wormux/map/halloween/config.xml
share/wormux/map/halloween/map.png
@@ -940,12 +1014,22 @@ share/wormux/map/lonely_island/preview.j
share/wormux/map/lonely_island/sky.jpg
share/wormux/map/lonely_island/wind_particules.png
share/wormux/map/map.dtd
-share/wormux/map/monkeybubbleworld/
-share/wormux/map/monkeybubbleworld/config.xml
-share/wormux/map/monkeybubbleworld/feuille.png
-share/wormux/map/monkeybubbleworld/monkeybubbleworld.png
-share/wormux/map/monkeybubbleworld/preview.jpg
-share/wormux/map/monkeybubbleworld/sky.jpg
+share/wormux/map/monkeybubble/
+share/wormux/map/monkeybubble/config.xml
+share/wormux/map/monkeybubble/feuille.png
+share/wormux/map/monkeybubble/map.png
+share/wormux/map/monkeybubble/one_layer_sky.jpg
+share/wormux/map/monkeybubble/preview.jpg
+share/wormux/map/monkeybubble/sky_layer-0.jpg
+share/wormux/map/monkeybubble/sky_layer-1.png
+share/wormux/map/monkeybubble/sky_layer-2.png
+share/wormux/map/monkeybubble/sky_layer-3.png
+share/wormux/map/montagnes/
+share/wormux/map/montagnes/config.xml
+share/wormux/map/montagnes/flocon.png
+share/wormux/map/montagnes/map.png
+share/wormux/map/montagnes/preview.jpg
+share/wormux/map/montagnes/sky.jpg
share/wormux/map/moon-4m/
share/wormux/map/moon-4m/config.xml
share/wormux/map/moon-4m/map.png
@@ -957,6 +1041,11 @@ share/wormux/map/oktopus/config.xml
share/wormux/map/oktopus/map.png
share/wormux/map/oktopus/preview.jpg
share/wormux/map/oktopus/sky.jpg
+share/wormux/map/paint/
+share/wormux/map/paint/config.xml
+share/wormux/map/paint/map.png
+share/wormux/map/paint/preview.jpg
+share/wormux/map/paint/sky.png
share/wormux/map/paradis/
share/wormux/map/paradis/config.xml
share/wormux/map/paradis/decor_paradis.png
@@ -1002,6 +1091,12 @@ share/wormux/map/randomisland/sky.jpg
share/wormux/map/randomisland/texture.png
share/wormux/map/randomisland/tresor1.png
share/wormux/map/randomisland/tresor2.png
+share/wormux/map/snow/
+share/wormux/map/snow/config.xml
+share/wormux/map/snow/map.png
+share/wormux/map/snow/one_layer_sky.jpg
+share/wormux/map/snow/particule.png
+share/wormux/map/snow/preview.jpg
share/wormux/map/space2/
share/wormux/map/space2/config.xml
share/wormux/map/space2/map.png
@@ -1032,12 +1127,10 @@ share/wormux/menu/
share/wormux/menu/add_custom_team.png
share/wormux/menu/annulus_background.png
share/wormux/menu/annulus_foreground.png
-share/wormux/menu/background.png
-share/wormux/menu/background_credits.png
-share/wormux/menu/background_help.png
-share/wormux/menu/background_network.png
-share/wormux/menu/background_options.png
-share/wormux/menu/background_play.png
+share/wormux/menu/background.jpg
+share/wormux/menu/background_loading.jpg
+share/wormux/menu/background_main.jpg
+share/wormux/menu/background_network.jpg
share/wormux/menu/big_left.png
share/wormux/menu/big_right.png
share/wormux/menu/bip.png
@@ -1067,18 +1160,25 @@ share/wormux/menu/i_play.png
share/wormux/menu/i_quit.png
share/wormux/menu/i_update.png
share/wormux/menu/ico_maps.png
+share/wormux/menu/ico_network.png
share/wormux/menu/ico_skins.png
share/wormux/menu/ico_sounds.png
share/wormux/menu/ico_weapons.png
share/wormux/menu/init_energy.png
+share/wormux/menu/left-right_mouse.png
share/wormux/menu/left.png
-share/wormux/menu/loading.png
share/wormux/menu/max_energy.png
share/wormux/menu/minus.png
+share/wormux/menu/multisky.png
share/wormux/menu/music_enable.png
share/wormux/menu/padlock.png
+share/wormux/menu/player_local_ai.png
+share/wormux/menu/player_local_human.png
+share/wormux/menu/player_remote_ai.png
+share/wormux/menu/player_remote_human.png
share/wormux/menu/plus.png
share/wormux/menu/podium.png
+share/wormux/menu/quit.png
share/wormux/menu/refresh.png
share/wormux/menu/resolution.png
share/wormux/menu/right.png
@@ -1093,6 +1193,7 @@ share/wormux/menu/timing_switch.png
share/wormux/menu/timing_turn.png
share/wormux/menu/up.png
share/wormux/menu/validate.png
+share/wormux/menu/warning.png
share/wormux/music/
share/wormux/music/ingame/
share/wormux/music/ingame/Mike_Errecart.-.Monkey-bubble.ogg
@@ -1102,14 +1203,15 @@ share/wormux/music/ingame/Olivier_Milito
share/wormux/music/ingame/Olivier_Militon.-.Like_a_rock.ogg
share/wormux/music/ingame/Olivier_Militon.-.Vers_solitaire.ogg
share/wormux/music/ingame/Olivier_Militon.-.Vogue_a_lame.ogg
+share/wormux/music/ingame/construction.m3u
+share/wormux/music/ingame/construction.ogg
share/wormux/music/ingame/fear.m3u
share/wormux/music/ingame/funfair.m3u
share/wormux/music/ingame/ingame.m3u
share/wormux/music/ingame/monkey.m3u
share/wormux/music/ingame/sea.m3u
share/wormux/music/menu/
-share/wormux/music/menu/Olivier_Militon.-.Le_Calumet.ogg
-share/wormux/music/menu/Olivier_Militon.-.Le_Calumet_F.ogg
+share/wormux/music/menu/Divertissement_pour_flute.ogg
share/wormux/music/menu/menu.m3u
share/wormux/music/profile.xml
share/wormux/object/
@@ -1119,11 +1221,14 @@ share/wormux/object/bonus_box.png
share/wormux/object/dark_smoke.png
share/wormux/object/fire.png
share/wormux/object/ill_bubble.png
+share/wormux/object/kaboom.png
+share/wormux/object/kaboomk.png
share/wormux/object/medkit.png
share/wormux/object/pink_star.png
share/wormux/object/smoke.png
share/wormux/object/smoke2.png
share/wormux/object/smoke3.png
+share/wormux/object/smokea.png
share/wormux/object/star.png
share/wormux/object/yellow_star.png
share/wormux/sound/
@@ -1176,7 +1281,7 @@ share/wormux/sound/default/voices/injure
share/wormux/sound/default/voices/jump.ogg
share/wormux/sound/default/voices/out.ogg
share/wormux/sound/default/voices/suicide.ogg
-share/wormux/sound/default/voices/superjump.ogg
+share/wormux/sound/default/voices/superjump-notused.ogg
share/wormux/sound/default/weapons/
share/wormux/sound/default/weapons/aircraft_bomb_falling.ogg
share/wormux/sound/default/weapons/aircraft_flying.ogg
@@ -1207,6 +1312,7 @@ share/wormux/sound/default/weapons/grapp
share/wormux/sound/default/weapons/grapple_detaching.ogg
share/wormux/sound/default/weapons/grenade_bounce.ogg
share/wormux/sound/default/weapons/gun.ogg
+share/wormux/sound/default/weapons/homerun.ogg
share/wormux/sound/default/weapons/jetpack.ogg
share/wormux/sound/default/weapons/load.ogg
share/wormux/sound/default/weapons/lowgravity.ogg
@@ -1245,6 +1351,11 @@ share/wormux/team/gnu/dead.png
share/wormux/team/gnu/flag.png
share/wormux/team/gnu/flag64.png
share/wormux/team/gnu/team.xml
+share/wormux/team/hexley/
+share/wormux/team/hexley/dead.png
+share/wormux/team/hexley/flag.png
+share/wormux/team/hexley/flag64.png
+share/wormux/team/hexley/team.xml
share/wormux/team/konqi/
share/wormux/team/konqi/dead.png
share/wormux/team/konqi/flag.png
@@ -1270,6 +1381,11 @@ share/wormux/team/pidgin/dead.png
share/wormux/team/pidgin/flag.png
share/wormux/team/pidgin/flag64.png
share/wormux/team/pidgin/team.xml
+share/wormux/team/postfix/
+share/wormux/team/postfix/dead.png
+share/wormux/team/postfix/flag.png
+share/wormux/team/postfix/flag64.png
+share/wormux/team/postfix/team.xml
share/wormux/team/snort/
share/wormux/team/snort/dead.png
share/wormux/team/snort/flag.png
@@ -1307,6 +1423,31 @@ share/wormux/team/workrave/flag.png
share/wormux/team/workrave/flag64.png
share/wormux/team/workrave/team.xml
share/wormux/uninstall.xpm
+share/wormux/water/
+share/wormux/water/chocolate/
+share/wormux/water/chocolate/chocolate.png
+share/wormux/water/chocolate/chocolate_bottom.png
+share/wormux/water/chocolate/chocolate_drop.png
+share/wormux/water/dirtywater/
+share/wormux/water/dirtywater/dirtywater.png
+share/wormux/water/dirtywater/dirtywater_bottom.png
+share/wormux/water/dirtywater/dirtywater_drop.png
+share/wormux/water/lava/
+share/wormux/water/lava/lava.png
+share/wormux/water/lava/lava_bottom.png
+share/wormux/water/lava/lava_drop.png
+share/wormux/water/radioactive/
+share/wormux/water/radioactive/radioactive.png
+share/wormux/water/radioactive/radioactive_bottom.png
+share/wormux/water/radioactive/radioactive_drop.png
+share/wormux/water/water/
+share/wormux/water/water/water.png
+share/wormux/water/water/water_bottom.png
+share/wormux/water/water/water_drop.png
+share/wormux/water/wine/
+share/wormux/water/wine/wine.png
+share/wormux/water/wine/wine_bottom.png
+share/wormux/water/wine/wine_drop.png
share/wormux/weapon/
share/wormux/weapon/air_attack/
share/wormux/weapon/air_attack/air_attack.png
@@ -1445,5 +1586,3 @@ share/wormux/wormux_256x256.png
share/wormux/wormux_32x32.png
share/wormux/wormux_32x32.xpm
share/wormux/wormux_default_config.xml
-...@exec %D/bin/update-desktop-database
-...@unexec-delete %D/bin/update-desktop-database