update to freeciv 1.14.1
- uses MULTI_PACKAGES (-client, -server, -share) - gtk2 support in the client from maintainer Aleksander Piotrowski <aleksander.piotrowski at piestrak.waw.pl> cleaned up by yours truly
This commit is contained in:
parent
7057f0c410
commit
98feffca51
@ -1,8 +1,14 @@
|
||||
# $OpenBSD: Makefile,v 1.34 2004/05/04 11:31:48 naddy Exp $
|
||||
# $OpenBSD: Makefile,v 1.35 2004/06/02 12:40:42 sturm Exp $
|
||||
|
||||
COMMENT= "Civilization clone for X11; multiplayer"
|
||||
COMMENT= "Civilization clone for X11; multiplayer; game server"
|
||||
COMMENT-client= "Freeciv client"
|
||||
COMMENT-share= "shared data files for Freeciv"
|
||||
|
||||
DISTNAME= freeciv-1.13.0
|
||||
VERSION= 1.14.1
|
||||
DISTNAME= freeciv-${VERSION}
|
||||
PKGNAME= freeciv-server-${VERSION}
|
||||
PKGNAME-client= freeciv-client-${VERSION}
|
||||
PKGNAME-share= freeciv-share-${VERSION}
|
||||
CATEGORIES= games
|
||||
HOMEPAGE= http://www.freeciv.org/
|
||||
|
||||
@ -17,35 +23,66 @@ PERMIT_DISTFILES_FTP= Yes
|
||||
MASTER_SITES= ftp://ftp.freeciv.org/pub/freeciv/stable/
|
||||
EXTRACT_SUFX= .tar.bz2
|
||||
|
||||
FLAVORS= gtk esd sdl
|
||||
FLAVORS= gtk2 esd sdl
|
||||
PSEUDO_FLAVORS= no_x11
|
||||
FLAVOR?=
|
||||
|
||||
.if ${FLAVOR:L:Mno_x11} && ${FLAVOR:L} != "no_x11"
|
||||
ERRORS+= "Fatal: FLAVOR 'no_x11' and the other FLAVORS are mutually exclusive."
|
||||
.endif
|
||||
|
||||
MULTI_PACKAGES= -share
|
||||
SUBPACKAGES?=
|
||||
|
||||
.if !defined(PACKAGING) || ${SUBPACKAGE} != "-share"
|
||||
# -client and -server
|
||||
MODULES= gettext
|
||||
RUN_DEPENDS+= :freeciv-share-${VERSION}:games/freeciv
|
||||
|
||||
.if ${FLAVOR:L:Mgtk}
|
||||
LIB_DEPENDS+= Imlib.19,gdk_imlib::graphics/imlib
|
||||
.else
|
||||
CONFIGURE_ARGS= --with-xaw
|
||||
.endif
|
||||
|
||||
.if ${FLAVOR:L:Msdl}
|
||||
LIB_DEPENDS+= SDL_mixer::devel/sdl-mixer
|
||||
CONFIGURE_ARGS+= --with-sdl-prefix=${LOCALBASE}
|
||||
.else
|
||||
CONFIGURE_ARGS+= --disable-sdl-mixer
|
||||
.endif
|
||||
|
||||
.if ${FLAVOR:L:Mesd}
|
||||
LIB_DEPENDS+= esd.2::audio/esound
|
||||
CONFIGURE_ARGS+= --with-esd-prefix=${LOCALBASE}
|
||||
.else
|
||||
CONFIGURE_ARGS+= --disable-esd
|
||||
.endif
|
||||
|
||||
. if !${FLAVOR:L:Mno_x11}
|
||||
# -client
|
||||
USE_X11= Yes
|
||||
MULTI_PACKAGES+=-client
|
||||
|
||||
. if ${FLAVOR:L:Msdl}
|
||||
LIB_DEPENDS+= SDL_mixer::devel/sdl-mixer
|
||||
CONFIGURE_ARGS+=--with-sdl-prefix=${LOCALBASE}
|
||||
. else
|
||||
CONFIGURE_ARGS+=--disable-sdl-mixer
|
||||
. endif
|
||||
|
||||
. if ${FLAVOR:L:Mesd}
|
||||
LIB_DEPENDS+= esd.2::audio/esound
|
||||
CONFIGURE_ARGS+=--with-esd-prefix=${LOCALBASE}
|
||||
. else
|
||||
CONFIGURE_ARGS+=--disable-esd
|
||||
. endif
|
||||
|
||||
. if ${FLAVOR:L:Mgtk2}
|
||||
BUILD_DEPENDS+= :pkgconfig-*:devel/pkgconfig
|
||||
LIB_DEPENDS+= gtk-x11-2.0.0.5,gdk-x11-2.0.0.5::x11/gtk+2
|
||||
CONFIGURE_ARGS+=--enable-client=gtk2
|
||||
. else
|
||||
CONFIGURE_ARGS+=--enable-client=xaw
|
||||
. endif
|
||||
|
||||
. else
|
||||
CONFIGURE_ARGS+=--enable-client=no
|
||||
. endif
|
||||
|
||||
.endif
|
||||
|
||||
.if defined(PACKAGING) && ${SUBPACKAGE} == "-share"
|
||||
PKG_ARCH= *
|
||||
.endif
|
||||
|
||||
FULLPKGNAME= ${PKGNAME}
|
||||
FULLPKGNAME-share= ${PKGNAME-share}
|
||||
|
||||
NO_REGRESS= Yes
|
||||
|
||||
CONFIGURE_STYLE= gnu
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib"
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib"
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (freeciv-1.13.0.tar.bz2) = a3544f113dbab77f3c6f00130c1bf181
|
||||
RMD160 (freeciv-1.13.0.tar.bz2) = eab405b82fd5c7f7a1f5037f44af3e5ce4d0ece3
|
||||
SHA1 (freeciv-1.13.0.tar.bz2) = 7cc9c419b9e601368154752313fdf73cfe6a2892
|
||||
MD5 (freeciv-1.14.1.tar.bz2) = d328f65e7fca5252f27161f5f9e97a03
|
||||
RMD160 (freeciv-1.14.1.tar.bz2) = a2486c39ad16dd13446bc47dc2a700842f7cdcc3
|
||||
SHA1 (freeciv-1.14.1.tar.bz2) = fc41f5e44eb7be37a4632999a5bd709c4cf975a2
|
||||
|
21
games/freeciv/patches/patch-common_dataio_c
Normal file
21
games/freeciv/patches/patch-common_dataio_c
Normal file
@ -0,0 +1,21 @@
|
||||
$OpenBSD: patch-common_dataio_c,v 1.1 2004/06/02 12:40:42 sturm Exp $
|
||||
--- common/dataio.c.orig 2003-12-02 19:56:58.000000000 +0100
|
||||
+++ common/dataio.c 2004-05-06 12:27:37.000000000 +0200
|
||||
@@ -225,7 +225,7 @@ void dio_put_uint16(struct data_out *dou
|
||||
void dio_put_uint32(struct data_out *dout, int value)
|
||||
{
|
||||
if (enough_space(dout, 4)) {
|
||||
- unsigned long x = htonl(value);
|
||||
+ unsigned int x = htonl(value);
|
||||
|
||||
memcpy(ADD_TO_POINTER(dout->dest, dout->current), &x, 4);
|
||||
dout->current += 4;
|
||||
@@ -461,7 +461,7 @@ void dio_get_uint32(struct data_in *din,
|
||||
{
|
||||
if (enough_data(din, 4)) {
|
||||
if (dest) {
|
||||
- unsigned long x;
|
||||
+ unsigned int x;
|
||||
|
||||
memcpy(&x, ADD_TO_POINTER(din->src, din->current), 4);
|
||||
*dest = ntohl(x);
|
@ -1,12 +1,21 @@
|
||||
$OpenBSD: patch-configure,v 1.5 2002/07/17 21:08:09 naddy Exp $
|
||||
--- configure.orig Mon Jul 15 15:30:45 2002
|
||||
+++ configure Mon Jul 15 15:32:58 2002
|
||||
@@ -7294,7 +7295,7 @@ else
|
||||
have_new_readline_lib=0
|
||||
fi
|
||||
$OpenBSD: patch-configure,v 1.6 2004/06/02 12:40:42 sturm Exp $
|
||||
--- configure.orig 2004-05-31 13:55:42.000000000 +0200
|
||||
+++ configure 2004-05-31 13:57:44.000000000 +0200
|
||||
@@ -11745,7 +11745,7 @@ if test "${ac_cv_lib_SDL_mixer_Mix_OpenA
|
||||
echo $ECHO_N "(cached) $ECHO_C" >&6
|
||||
else
|
||||
ac_check_lib_save_LIBS=$LIBS
|
||||
-LIBS="-lSDL_mixer $LIBS"
|
||||
+LIBS="$SDL_LIBS -lSDL_mixer $LIBS"
|
||||
cat >conftest.$ac_ext <<_ACEOF
|
||||
#line $LINENO "configure"
|
||||
/* confdefs.h. */
|
||||
@@ -11802,7 +11802,7 @@ echo $ECHO_N "checking building SDL_mixe
|
||||
if test "x$SDL_mixer_h" = "x1"; then
|
||||
if test "x$SDL_mixer" = "xyes"; then
|
||||
SOUND_CFLAGS="$SOUND_CFLAGS $SDL_CFLAGS"
|
||||
- SOUND_LIBS="$SOUND_LIBS $SDL_LIBS -lSDL_mixer"
|
||||
+ SOUND_LIBS="$SOUND_LIBS $SDL_LIBS -lSDL_mixer"
|
||||
|
||||
- if test "$have_readline_lib" != "1" && test "$have_new_readline_lib" != "1"; then
|
||||
+ if test "$have_readline_lib" == "1" && test "$have_new_readline_lib" != "1"; then
|
||||
|
||||
echo $ac_n "checking for tgetent in -ltermlib""... $ac_c" 1>&6
|
||||
echo "configure:7301: checking for tgetent in -ltermlib" >&5
|
||||
cat >>confdefs.h <<\_ACEOF
|
||||
#define SDL 1
|
||||
|
@ -12,6 +12,7 @@ E.g.: civclient -P sdl -S /home/deraadt/civsounds/file.spec
|
||||
(Note: Sound specs might have relative paths.)
|
||||
|
||||
Flavors:
|
||||
* gtk - build UI using GTK widgets
|
||||
* sdl - sound support using SDL library
|
||||
* esd - sound support using ESD library
|
||||
* no_x11 - don't build UI subpackage
|
||||
* gtk2 - build UI using GTK v2 widgets
|
||||
* sdl - sound support using SDL library
|
||||
* esd - sound support using ESD library
|
||||
|
1
games/freeciv/pkg/DESCR-client
Normal file
1
games/freeciv/pkg/DESCR-client
Normal file
@ -0,0 +1 @@
|
||||
This package contains the client for Freeciv.
|
2
games/freeciv/pkg/DESCR-share
Normal file
2
games/freeciv/pkg/DESCR-share
Normal file
@ -0,0 +1,2 @@
|
||||
This package contains Freeciv data files shared between -client and
|
||||
-server subpackages.
|
@ -1,179 +1,2 @@
|
||||
@comment $OpenBSD: PLIST,v 1.9 2003/12/16 18:17:15 naddy Exp $
|
||||
bin/civclient
|
||||
@comment $OpenBSD: PLIST,v 1.10 2004/06/02 12:40:42 sturm Exp $
|
||||
bin/civserver
|
||||
share/freeciv/Freeciv
|
||||
share/freeciv/civ1.serv
|
||||
share/freeciv/civ1/buildings.ruleset
|
||||
share/freeciv/civ1/game.ruleset
|
||||
share/freeciv/civ1/governments.ruleset
|
||||
share/freeciv/civ1/nations.ruleset
|
||||
share/freeciv/civ1/techs.ruleset
|
||||
share/freeciv/civ1/terrain.ruleset
|
||||
share/freeciv/civ1/units.ruleset
|
||||
share/freeciv/civ2.serv
|
||||
share/freeciv/civ2/buildings.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/buildings.ruleset
|
||||
share/freeciv/default/cities.ruleset
|
||||
share/freeciv/default/game.ruleset
|
||||
share/freeciv/default/governments.ruleset
|
||||
share/freeciv/default/nations.ruleset
|
||||
share/freeciv/default/techs.ruleset
|
||||
share/freeciv/default/terrain.ruleset
|
||||
share/freeciv/default/units.ruleset
|
||||
share/freeciv/freeciv.rc
|
||||
share/freeciv/freeciv.rc-2.0
|
||||
share/freeciv/helpdata.txt
|
||||
share/freeciv/isotrident.tilespec
|
||||
share/freeciv/isotrident/cities.spec
|
||||
share/freeciv/isotrident/cities.xpm
|
||||
share/freeciv/isotrident/flags.spec
|
||||
share/freeciv/isotrident/flags.xpm
|
||||
share/freeciv/isotrident/nuke.spec
|
||||
share/freeciv/isotrident/nuke.xpm
|
||||
share/freeciv/isotrident/small.spec
|
||||
share/freeciv/isotrident/small.xpm
|
||||
share/freeciv/isotrident/terrain1.spec
|
||||
share/freeciv/isotrident/terrain1.xpm
|
||||
share/freeciv/isotrident/terrain2.spec
|
||||
share/freeciv/isotrident/terrain2.xpm
|
||||
share/freeciv/isotrident/tiles.spec
|
||||
share/freeciv/isotrident/tiles.xpm
|
||||
share/freeciv/isotrident/units.spec
|
||||
share/freeciv/isotrident/units.xpm
|
||||
share/freeciv/misc/chiefs.spec
|
||||
share/freeciv/misc/chiefs.xpm
|
||||
share/freeciv/misc/intro.xpm
|
||||
share/freeciv/misc/radar.xpm
|
||||
share/freeciv/misc/shields.spec
|
||||
share/freeciv/misc/shields.xpm
|
||||
share/freeciv/misc/small.spec
|
||||
share/freeciv/misc/small.xpm
|
||||
share/freeciv/misc/space.spec
|
||||
share/freeciv/misc/space.xpm
|
||||
share/freeciv/misc/treaty.spec
|
||||
share/freeciv/misc/treaty.xpm
|
||||
share/freeciv/nation/american.ruleset
|
||||
share/freeciv/nation/arab.ruleset
|
||||
share/freeciv/nation/argentine.ruleset
|
||||
share/freeciv/nation/australian.ruleset
|
||||
share/freeciv/nation/aztec.ruleset
|
||||
share/freeciv/nation/babylonian.ruleset
|
||||
share/freeciv/nation/barbarian.ruleset
|
||||
share/freeciv/nation/bavarian.ruleset
|
||||
share/freeciv/nation/boer.ruleset
|
||||
share/freeciv/nation/brazilian.ruleset
|
||||
share/freeciv/nation/canadian.ruleset
|
||||
share/freeciv/nation/carthaginian.ruleset
|
||||
share/freeciv/nation/catalan.ruleset
|
||||
share/freeciv/nation/chilean.ruleset
|
||||
share/freeciv/nation/chinese.ruleset
|
||||
share/freeciv/nation/cornish.ruleset
|
||||
share/freeciv/nation/croatian.ruleset
|
||||
share/freeciv/nation/czech.ruleset
|
||||
share/freeciv/nation/danish.ruleset
|
||||
share/freeciv/nation/dunedain.ruleset
|
||||
share/freeciv/nation/dutch.ruleset
|
||||
share/freeciv/nation/egyptian.ruleset
|
||||
share/freeciv/nation/english.ruleset
|
||||
share/freeciv/nation/estonian.ruleset
|
||||
share/freeciv/nation/filipino.ruleset
|
||||
share/freeciv/nation/finnish.ruleset
|
||||
share/freeciv/nation/french.ruleset
|
||||
share/freeciv/nation/german.ruleset
|
||||
share/freeciv/nation/greek.ruleset
|
||||
share/freeciv/nation/hungarian.ruleset
|
||||
share/freeciv/nation/inca.ruleset
|
||||
share/freeciv/nation/indian.ruleset
|
||||
share/freeciv/nation/irish.ruleset
|
||||
share/freeciv/nation/israeli.ruleset
|
||||
share/freeciv/nation/italian.ruleset
|
||||
share/freeciv/nation/japanese.ruleset
|
||||
share/freeciv/nation/kenyan.ruleset
|
||||
share/freeciv/nation/korean.ruleset
|
||||
share/freeciv/nation/krevi.ruleset
|
||||
share/freeciv/nation/latvian.ruleset
|
||||
share/freeciv/nation/lithuanian.ruleset
|
||||
share/freeciv/nation/misc_cities.ruleset
|
||||
share/freeciv/nation/mongol.ruleset
|
||||
share/freeciv/nation/mordor.ruleset
|
||||
share/freeciv/nation/olympic.ruleset
|
||||
share/freeciv/nation/persian.ruleset
|
||||
share/freeciv/nation/polish.ruleset
|
||||
share/freeciv/nation/portuguese.ruleset
|
||||
share/freeciv/nation/roman.ruleset
|
||||
share/freeciv/nation/russian.ruleset
|
||||
share/freeciv/nation/scottish.ruleset
|
||||
share/freeciv/nation/serbian.ruleset
|
||||
share/freeciv/nation/silesian.ruleset
|
||||
share/freeciv/nation/singaporean.ruleset
|
||||
share/freeciv/nation/sioux.ruleset
|
||||
share/freeciv/nation/slovenian.ruleset
|
||||
share/freeciv/nation/spanish.ruleset
|
||||
share/freeciv/nation/swedish.ruleset
|
||||
share/freeciv/nation/thai.ruleset
|
||||
share/freeciv/nation/turk.ruleset
|
||||
share/freeciv/nation/ukrainian.ruleset
|
||||
share/freeciv/nation/vietnamese.ruleset
|
||||
share/freeciv/nation/viking.ruleset
|
||||
share/freeciv/nation/welsh.ruleset
|
||||
share/freeciv/nation/zulu.ruleset
|
||||
share/freeciv/scenario/british-isles-85x80-v2.80.sav
|
||||
share/freeciv/scenario/earth-160x90-v2.sav
|
||||
share/freeciv/scenario/earth-80x50-v2.sav
|
||||
share/freeciv/scenario/europe-200x100-v2.sav
|
||||
share/freeciv/scenario/hagworld-120x60-v1.2.sav
|
||||
share/freeciv/scenario/iberian-peninsula-136x100-v1.0.sav
|
||||
share/freeciv/trident.tilespec
|
||||
share/freeciv/trident/auto_ll.spec
|
||||
share/freeciv/trident/cities.spec
|
||||
share/freeciv/trident/cities.xpm
|
||||
share/freeciv/trident/explosions.spec
|
||||
share/freeciv/trident/explosions.xpm
|
||||
share/freeciv/trident/flags.spec
|
||||
share/freeciv/trident/flags.xpm
|
||||
share/freeciv/trident/roads.spec
|
||||
share/freeciv/trident/roads.xpm
|
||||
share/freeciv/trident/tiles.spec
|
||||
share/freeciv/trident/tiles.xpm
|
||||
share/freeciv/trident/units.spec
|
||||
share/freeciv/trident/units.xpm
|
||||
share/freeciv/trident_shields.tilespec
|
||||
share/locale/da/LC_MESSAGES/freeciv.mo
|
||||
share/locale/de/LC_MESSAGES/freeciv.mo
|
||||
share/locale/en_GB/LC_MESSAGES/freeciv.mo
|
||||
share/locale/es/LC_MESSAGES/freeciv.mo
|
||||
share/locale/fi/LC_MESSAGES/freeciv.mo
|
||||
share/locale/fr/LC_MESSAGES/freeciv.mo
|
||||
share/locale/hu/LC_MESSAGES/freeciv.mo
|
||||
share/locale/it/LC_MESSAGES/freeciv.mo
|
||||
share/locale/ja/LC_MESSAGES/freeciv.mo
|
||||
share/locale/nl/LC_MESSAGES/freeciv.mo
|
||||
share/locale/no/LC_MESSAGES/freeciv.mo
|
||||
share/locale/pl/LC_MESSAGES/freeciv.mo
|
||||
share/locale/pt/LC_MESSAGES/freeciv.mo
|
||||
share/locale/pt_BR/LC_MESSAGES/freeciv.mo
|
||||
share/locale/ro/LC_MESSAGES/freeciv.mo
|
||||
share/locale/ru/LC_MESSAGES/freeciv.mo
|
||||
share/locale/sv/LC_MESSAGES/freeciv.mo
|
||||
@dirrm share/locale/ro/LC_MESSAGES
|
||||
@dirrm share/locale/ro
|
||||
@dirrm share/locale/hu/LC_MESSAGES
|
||||
@dirrm share/locale/hu
|
||||
@dirrm share/locale/fi/LC_MESSAGES
|
||||
@dirrm share/locale/fi
|
||||
@dirrm share/locale/en_GB/LC_MESSAGES
|
||||
@dirrm share/locale/en_GB
|
||||
@dirrm share/freeciv/trident
|
||||
@dirrm share/freeciv/scenario
|
||||
@dirrm share/freeciv/nation
|
||||
@dirrm share/freeciv/misc
|
||||
@dirrm share/freeciv/isotrident
|
||||
@dirrm share/freeciv/default
|
||||
@dirrm share/freeciv/civ2
|
||||
@dirrm share/freeciv/civ1
|
||||
@dirrm share/freeciv
|
||||
|
2
games/freeciv/pkg/PLIST-client
Normal file
2
games/freeciv/pkg/PLIST-client
Normal file
@ -0,0 +1,2 @@
|
||||
@comment $OpenBSD: PLIST-client,v 1.1 2004/06/02 12:40:42 sturm Exp $
|
||||
bin/civclient
|
186
games/freeciv/pkg/PLIST-share
Normal file
186
games/freeciv/pkg/PLIST-share
Normal file
@ -0,0 +1,186 @@
|
||||
@comment $OpenBSD: PLIST-share,v 1.1 2004/06/02 12:40:42 sturm Exp $
|
||||
share/freeciv/Freeciv
|
||||
share/freeciv/civ1.serv
|
||||
share/freeciv/civ1/buildings.ruleset
|
||||
share/freeciv/civ1/game.ruleset
|
||||
share/freeciv/civ1/governments.ruleset
|
||||
share/freeciv/civ1/nations.ruleset
|
||||
share/freeciv/civ1/techs.ruleset
|
||||
share/freeciv/civ1/terrain.ruleset
|
||||
share/freeciv/civ1/units.ruleset
|
||||
share/freeciv/civ2.serv
|
||||
share/freeciv/civ2/buildings.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/buildings.ruleset
|
||||
share/freeciv/default/cities.ruleset
|
||||
share/freeciv/default/game.ruleset
|
||||
share/freeciv/default/governments.ruleset
|
||||
share/freeciv/default/nations.ruleset
|
||||
share/freeciv/default/techs.ruleset
|
||||
share/freeciv/default/terrain.ruleset
|
||||
share/freeciv/default/units.ruleset
|
||||
share/freeciv/freeciv.rc
|
||||
share/freeciv/freeciv.rc-2.0
|
||||
share/freeciv/helpdata.txt
|
||||
share/freeciv/history/buildings.ruleset
|
||||
share/freeciv/history/game.ruleset
|
||||
share/freeciv/history/governments.ruleset
|
||||
share/freeciv/history/techs.ruleset
|
||||
share/freeciv/history/terrain.ruleset
|
||||
share/freeciv/history/units.ruleset
|
||||
share/freeciv/isotrident.tilespec
|
||||
share/freeciv/isotrident/cities.spec
|
||||
share/freeciv/isotrident/cities.xpm
|
||||
share/freeciv/isotrident/flags.spec
|
||||
share/freeciv/isotrident/flags.xpm
|
||||
share/freeciv/isotrident/nuke.spec
|
||||
share/freeciv/isotrident/nuke.xpm
|
||||
share/freeciv/isotrident/small.spec
|
||||
share/freeciv/isotrident/small.xpm
|
||||
share/freeciv/isotrident/terrain1.spec
|
||||
share/freeciv/isotrident/terrain1.xpm
|
||||
share/freeciv/isotrident/terrain2.spec
|
||||
share/freeciv/isotrident/terrain2.xpm
|
||||
share/freeciv/isotrident/tiles.spec
|
||||
share/freeciv/isotrident/tiles.xpm
|
||||
share/freeciv/isotrident/units.spec
|
||||
share/freeciv/isotrident/units.xpm
|
||||
share/freeciv/misc/chiefs.spec
|
||||
share/freeciv/misc/chiefs.xpm
|
||||
share/freeciv/misc/intro.xpm
|
||||
share/freeciv/misc/radar.xpm
|
||||
share/freeciv/misc/shields.spec
|
||||
share/freeciv/misc/shields.xpm
|
||||
share/freeciv/misc/small.spec
|
||||
share/freeciv/misc/small.xpm
|
||||
share/freeciv/misc/space.spec
|
||||
share/freeciv/misc/space.xpm
|
||||
share/freeciv/misc/treaty.spec
|
||||
share/freeciv/misc/treaty.xpm
|
||||
share/freeciv/nation/american.ruleset
|
||||
share/freeciv/nation/arab.ruleset
|
||||
share/freeciv/nation/argentine.ruleset
|
||||
share/freeciv/nation/australian.ruleset
|
||||
share/freeciv/nation/aztec.ruleset
|
||||
share/freeciv/nation/babylonian.ruleset
|
||||
share/freeciv/nation/barbarian.ruleset
|
||||
share/freeciv/nation/bavarian.ruleset
|
||||
share/freeciv/nation/boer.ruleset
|
||||
share/freeciv/nation/brazilian.ruleset
|
||||
share/freeciv/nation/canadian.ruleset
|
||||
share/freeciv/nation/carthaginian.ruleset
|
||||
share/freeciv/nation/catalan.ruleset
|
||||
share/freeciv/nation/chilean.ruleset
|
||||
share/freeciv/nation/chinese.ruleset
|
||||
share/freeciv/nation/cornish.ruleset
|
||||
share/freeciv/nation/croatian.ruleset
|
||||
share/freeciv/nation/czech.ruleset
|
||||
share/freeciv/nation/danish.ruleset
|
||||
share/freeciv/nation/dunedain.ruleset
|
||||
share/freeciv/nation/dutch.ruleset
|
||||
share/freeciv/nation/egyptian.ruleset
|
||||
share/freeciv/nation/english.ruleset
|
||||
share/freeciv/nation/estonian.ruleset
|
||||
share/freeciv/nation/filipino.ruleset
|
||||
share/freeciv/nation/finnish.ruleset
|
||||
share/freeciv/nation/french.ruleset
|
||||
share/freeciv/nation/german.ruleset
|
||||
share/freeciv/nation/greek.ruleset
|
||||
share/freeciv/nation/hungarian.ruleset
|
||||
share/freeciv/nation/inca.ruleset
|
||||
share/freeciv/nation/indian.ruleset
|
||||
share/freeciv/nation/irish.ruleset
|
||||
share/freeciv/nation/israeli.ruleset
|
||||
share/freeciv/nation/italian.ruleset
|
||||
share/freeciv/nation/japanese.ruleset
|
||||
share/freeciv/nation/kenyan.ruleset
|
||||
share/freeciv/nation/korean.ruleset
|
||||
share/freeciv/nation/latvian.ruleset
|
||||
share/freeciv/nation/lithuanian.ruleset
|
||||
share/freeciv/nation/misc_cities.ruleset
|
||||
share/freeciv/nation/mongol.ruleset
|
||||
share/freeciv/nation/mordor.ruleset
|
||||
share/freeciv/nation/persian.ruleset
|
||||
share/freeciv/nation/polish.ruleset
|
||||
share/freeciv/nation/portuguese.ruleset
|
||||
share/freeciv/nation/roman.ruleset
|
||||
share/freeciv/nation/russian.ruleset
|
||||
share/freeciv/nation/scottish.ruleset
|
||||
share/freeciv/nation/serbian.ruleset
|
||||
share/freeciv/nation/silesian.ruleset
|
||||
share/freeciv/nation/singaporean.ruleset
|
||||
share/freeciv/nation/sioux.ruleset
|
||||
share/freeciv/nation/slovenian.ruleset
|
||||
share/freeciv/nation/spanish.ruleset
|
||||
share/freeciv/nation/swedish.ruleset
|
||||
share/freeciv/nation/thai.ruleset
|
||||
share/freeciv/nation/turk.ruleset
|
||||
share/freeciv/nation/ukrainian.ruleset
|
||||
share/freeciv/nation/vietnamese.ruleset
|
||||
share/freeciv/nation/viking.ruleset
|
||||
share/freeciv/nation/welsh.ruleset
|
||||
share/freeciv/nation/zulu.ruleset
|
||||
share/freeciv/scenario/british-isles-85x80-v2.80.sav
|
||||
share/freeciv/scenario/earth-160x90-v2.sav
|
||||
share/freeciv/scenario/earth-80x50-v2.sav
|
||||
share/freeciv/scenario/europe-200x100-v2.sav
|
||||
share/freeciv/scenario/hagworld-120x60-v1.2.sav
|
||||
share/freeciv/scenario/iberian-peninsula-136x100-v1.0.sav
|
||||
share/freeciv/trident.tilespec
|
||||
share/freeciv/trident/auto_ll.spec
|
||||
share/freeciv/trident/cities.spec
|
||||
share/freeciv/trident/cities.xpm
|
||||
share/freeciv/trident/explosions.spec
|
||||
share/freeciv/trident/explosions.xpm
|
||||
share/freeciv/trident/flags.spec
|
||||
share/freeciv/trident/flags.xpm
|
||||
share/freeciv/trident/roads.spec
|
||||
share/freeciv/trident/roads.xpm
|
||||
share/freeciv/trident/tiles.spec
|
||||
share/freeciv/trident/tiles.xpm
|
||||
share/freeciv/trident/units.spec
|
||||
share/freeciv/trident/units.xpm
|
||||
share/freeciv/trident_shields.tilespec
|
||||
share/locale/da/LC_MESSAGES/freeciv.mo
|
||||
share/locale/de/LC_MESSAGES/freeciv.mo
|
||||
share/locale/en_GB/LC_MESSAGES/freeciv.mo
|
||||
share/locale/es/LC_MESSAGES/freeciv.mo
|
||||
share/locale/et/LC_MESSAGES/freeciv.mo
|
||||
share/locale/fi/LC_MESSAGES/freeciv.mo
|
||||
share/locale/fr/LC_MESSAGES/freeciv.mo
|
||||
share/locale/hu/LC_MESSAGES/freeciv.mo
|
||||
share/locale/it/LC_MESSAGES/freeciv.mo
|
||||
share/locale/ja/LC_MESSAGES/freeciv.mo
|
||||
share/locale/nl/LC_MESSAGES/freeciv.mo
|
||||
share/locale/no/LC_MESSAGES/freeciv.mo
|
||||
share/locale/pl/LC_MESSAGES/freeciv.mo
|
||||
share/locale/pt/LC_MESSAGES/freeciv.mo
|
||||
share/locale/pt_BR/LC_MESSAGES/freeciv.mo
|
||||
share/locale/ro/LC_MESSAGES/freeciv.mo
|
||||
share/locale/ru/LC_MESSAGES/freeciv.mo
|
||||
share/locale/sv/LC_MESSAGES/freeciv.mo
|
||||
share/locale/uk/LC_MESSAGES/freeciv.mo
|
||||
@dirrm share/locale/uk/LC_MESSAGES
|
||||
@dirrm share/locale/uk
|
||||
@dirrm share/locale/ro/LC_MESSAGES
|
||||
@dirrm share/locale/ro
|
||||
@dirrm share/locale/hu/LC_MESSAGES
|
||||
@dirrm share/locale/hu
|
||||
@dirrm share/locale/fi/LC_MESSAGES
|
||||
@dirrm share/locale/fi
|
||||
@dirrm share/locale/en_GB/LC_MESSAGES
|
||||
@dirrm share/locale/en_GB
|
||||
@dirrm share/freeciv/trident
|
||||
@dirrm share/freeciv/scenario
|
||||
@dirrm share/freeciv/nation
|
||||
@dirrm share/freeciv/misc
|
||||
@dirrm share/freeciv/isotrident
|
||||
@dirrm share/freeciv/history
|
||||
@dirrm share/freeciv/default
|
||||
@dirrm share/freeciv/civ2
|
||||
@dirrm share/freeciv/civ1
|
||||
@dirrm share/freeciv
|
Loading…
Reference in New Issue
Block a user