pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/games Changes 1.14.1:
details: https://anonhg.NetBSD.org/pkgsrc/rev/85948a7f7ab5
branches: trunk
changeset: 470024:85948a7f7ab5
user: adam <adam%pkgsrc.org@localhost>
date: Fri Mar 05 12:06:38 2004 +0000
description:
Changes 1.14.1:
- The GTK+-2.0 client is now built by default.
- Lots of improvements to the GTK+-2.0 client.
- The GTK+-2.0 client should now compile for Win32.
- Teams are supported.
- Civserver now works on UTF-8 locales.
- Lots of bug fixes.
diffstat:
games/freeciv-client-gtk/Makefile | 18 ++++++++----------
games/freeciv-client/Makefile | 25 ++++++++++++-------------
games/freeciv-server/Makefile | 19 ++++++++-----------
games/freeciv-share/Makefile | 7 +++----
games/freeciv-share/Makefile.common | 30 +++++++++++++++---------------
games/freeciv-share/PLIST | 3 ++-
games/freeciv-share/distinfo | 6 +++---
7 files changed, 51 insertions(+), 57 deletions(-)
diffs (184 lines):
diff -r 74e0446edbe0 -r 85948a7f7ab5 games/freeciv-client-gtk/Makefile
--- a/games/freeciv-client-gtk/Makefile Fri Mar 05 10:20:27 2004 +0000
+++ b/games/freeciv-client-gtk/Makefile Fri Mar 05 12:06:38 2004 +0000
@@ -1,17 +1,15 @@
-# $NetBSD: Makefile,v 1.20 2004/01/03 18:49:40 reed Exp $
+# $NetBSD: Makefile,v 1.21 2004/03/05 12:09:35 adam Exp $
-PKGNAME= ${DISTNAME:S/-/-client-gtk-/}
-PKGREVISION= 3
-COMMENT= Freeciv client with GTK+ interface
+PKGNAME= ${DISTNAME:S/-/-client-gtk-/}
+COMMENT= Freeciv client with GTK+ interface
-DEPENDS+= freeciv-share>=${FC_VERS}:../../games/freeciv-share
-DEPENDS+= freeciv-sounds>=2.0:../../games/freeciv-sounds
+DEPENDS+= freeciv-share>=${FC_VERS}:../../games/freeciv-share
+DEPENDS+= freeciv-sounds>=2.0:../../games/freeciv-sounds
-USE_BUILDLINK2= # defined
-USE_X11= # defined
+USE_BUILDLINK2= yes
+USE_X11= yes
-CONFIGURE_ARGS+= --disable-server
-CONFIGURE_ARGS+= --disable-make-data
+CONFIGURE_ARGS+= --disable-server --disable-make-data
CONFIGURE_ARGS+= --enable-client=gtk
CONFIGURE_ARGS+= --program-transform-name="s,civclient,civclient-gtk,"
diff -r 74e0446edbe0 -r 85948a7f7ab5 games/freeciv-client/Makefile
--- a/games/freeciv-client/Makefile Fri Mar 05 10:20:27 2004 +0000
+++ b/games/freeciv-client/Makefile Fri Mar 05 12:06:38 2004 +0000
@@ -1,22 +1,21 @@
-# $NetBSD: Makefile,v 1.17 2003/07/13 17:42:38 wiz Exp $
+# $NetBSD: Makefile,v 1.18 2004/03/05 12:07:51 adam Exp $
-PKGNAME= ${DISTNAME:S/-/-client-/}
-COMMENT= Freeciv client with Xaw interface
+PKGNAME= ${DISTNAME:S/-/-client-/}
+COMMENT= Freeciv client with Xaw interface
+
+DEPENDS+= freeciv-share>=${FC_VERS}:../../games/freeciv-share
+DEPENDS+= freeciv-sounds>=2.0:../../games/freeciv-sounds
-DEPENDS+= freeciv-share>=${FC_VERS}:../../games/freeciv-share
-DEPENDS+= freeciv-sounds>=2.0:../../games/freeciv-sounds
+CONFLICTS= freeciv-client-gtk<=1.11.4
-CONFLICTS= freeciv-client-gtk<=1.11.4
+USE_BUILDLINK2= yes
+USE_X11= yes
+
+CONFIGURE_ARGS+= --disable-server --disable-make-data
+CONFIGURE_ARGS+= --enable-client=xaw
.include "../../mk/bsd.prefs.mk"
-USE_BUILDLINK2= # defined
-USE_X11= # defined
-
-CONFIGURE_ARGS+= --disable-server
-CONFIGURE_ARGS+= --disable-make-data
-CONFIGURE_ARGS+= --enable-client=xaw
-
.if defined(XAW_TYPE) && (${XAW_TYPE} == "3d" || ${XAW_TYPE} == "xpm")
CONFIGURE_ARGS+= --with-xaw3d
.endif
diff -r 74e0446edbe0 -r 85948a7f7ab5 games/freeciv-server/Makefile
--- a/games/freeciv-server/Makefile Fri Mar 05 10:20:27 2004 +0000
+++ b/games/freeciv-server/Makefile Fri Mar 05 12:06:38 2004 +0000
@@ -1,21 +1,18 @@
-# $NetBSD: Makefile,v 1.14 2003/07/13 17:42:39 wiz Exp $
-
-PKGNAME= ${DISTNAME:S/-/-server-/}
-COMMENT= Freeciv game server
+# $NetBSD: Makefile,v 1.15 2004/03/05 12:08:51 adam Exp $
-DEPENDS+= freeciv-share>=${FC_VERS}:../../games/freeciv-share
+PKGNAME= ${DISTNAME:S/-/-server-/}
+COMMENT= Freeciv game server
-CONFIGURE_ARGS+= --enable-client=no
-CONFIGURE_ARGS+= --disable-make-data
-CONFIGURE_ARGS+= --with-readline
+DEPENDS+= freeciv-share>=${FC_VERS}:../../games/freeciv-share
USE_BUILDLINK2= # defined
USE_GNU_READLINE= # uses callback interface of GNU readline
LIBS+= -ltermcap
-# Uses rl_filename_completion_function() which was introduced to the readline
-# API in version 4.2.
-#
+CONFIGURE_ARGS+= --enable-client=no --disable-make-data
+CONFIGURE_ARGS+= --with-readline
+
+# Uses rl_filename_completion_function() which was introduced in readline-4.2
BUILDLINK_DEPENDS.readline= readline>=4.2
.include "../freeciv-share/Makefile.common"
diff -r 74e0446edbe0 -r 85948a7f7ab5 games/freeciv-share/Makefile
--- a/games/freeciv-share/Makefile Fri Mar 05 10:20:27 2004 +0000
+++ b/games/freeciv-share/Makefile Fri Mar 05 12:06:38 2004 +0000
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.8 2003/07/13 13:51:44 wiz Exp $
+# $NetBSD: Makefile,v 1.9 2004/03/05 12:06:38 adam Exp $
-PKGNAME= ${DISTNAME:S/-/-share-/}
-PKGREVISION= 1
-COMMENT= Machine independent files for Freeciv
+PKGNAME= ${DISTNAME:S/-/-share-/}
+COMMENT= Machine independent files for Freeciv
.include "../freeciv-share/Makefile.common"
diff -r 74e0446edbe0 -r 85948a7f7ab5 games/freeciv-share/Makefile.common
--- a/games/freeciv-share/Makefile.common Fri Mar 05 10:20:27 2004 +0000
+++ b/games/freeciv-share/Makefile.common Fri Mar 05 12:06:38 2004 +0000
@@ -1,22 +1,22 @@
-# $NetBSD: Makefile.common,v 1.15 2003/07/17 21:38:23 grant Exp $
+# $NetBSD: Makefile.common,v 1.16 2004/03/05 12:06:38 adam Exp $
-DISTNAME= freeciv-${FC_VERS}
-FC_VERS= 1.14.0
-CATEGORIES= games
-MASTER_SITES= ftp://ftp.freeciv.org/pub/freeciv/stable/ \
- http://www.freeciv.org/ftp/stable/ \
- ftp://ftp.freeciv.org/pub/freeciv/beta/ \
- http://www.freeciv.org/ftp/beta/
-EXTRACT_SUFX= .tar.bz2
+DISTNAME= freeciv-${FC_VERS}
+FC_VERS= 1.14.1
+CATEGORIES= games
+MASTER_SITES= ftp://ftp.freeciv.org/pub/freeciv/stable/ \
+ http://www.freeciv.org/ftp/stable/ \
+ ftp://ftp.freeciv.org/pub/freeciv/beta/ \
+ http://www.freeciv.org/ftp/beta/
+EXTRACT_SUFX= .tar.bz2
-MAINTAINER= tech-pkg%NetBSD.org@localhost
-HOMEPAGE= http://www.freeciv.org/
+MAINTAINER= tech-pkg%NetBSD.org@localhost
+HOMEPAGE= http://www.freeciv.org/
-BUILD_USES_MSGFMT= # defined
+BUILD_USES_MSGFMT= yes
-USE_BUILDLINK2= # defined
-USE_PKGLOCALEDIR= # defined
-GNU_CONFIGURE= # defined
+USE_BUILDLINK2= yes
+USE_PKGLOCALEDIR= yes
+GNU_CONFIGURE= yes
DISTINFO_FILE= ${.CURDIR}/../../games/freeciv-share/distinfo
PATCHDIR= ${.CURDIR}/../../games/freeciv-share/patches
diff -r 74e0446edbe0 -r 85948a7f7ab5 games/freeciv-share/PLIST
--- a/games/freeciv-share/PLIST Fri Mar 05 10:20:27 2004 +0000
+++ b/games/freeciv-share/PLIST Fri Mar 05 12:06:38 2004 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.2 2003/02/23 13:18:19 salo Exp $
+@comment $NetBSD: PLIST,v 1.3 2004/03/05 12:06:38 adam Exp $
share/freeciv/Freeciv
share/freeciv/civ1.serv
share/freeciv/civ1/buildings.ruleset
@@ -163,6 +163,7 @@
${PKGLOCALEDIR}/locale/ro/LC_MESSAGES/freeciv.mo
${PKGLOCALEDIR}/locale/ru/LC_MESSAGES/freeciv.mo
${PKGLOCALEDIR}/locale/sv/LC_MESSAGES/freeciv.mo
+${PKGLOCALEDIR}/locale/uk/LC_MESSAGES/freeciv.mo
@dirrm share/freeciv/trident
@dirrm share/freeciv/scenario
@dirrm share/freeciv/nation
diff -r 74e0446edbe0 -r 85948a7f7ab5 games/freeciv-share/distinfo
--- a/games/freeciv-share/distinfo Fri Mar 05 10:20:27 2004 +0000
+++ b/games/freeciv-share/distinfo Fri Mar 05 12:06:38 2004 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.5 2003/02/23 13:18:20 salo Exp $
+$NetBSD: distinfo,v 1.6 2004/03/05 12:06:38 adam Exp $
-SHA1 (freeciv-1.14.0.tar.bz2) = 73a7dceb84215194c7beda4712933f5b596784ea
-Size (freeciv-1.14.0.tar.bz2) = 5416607 bytes
+SHA1 (freeciv-1.14.1.tar.bz2) = fc41f5e44eb7be37a4632999a5bd709c4cf975a2
+Size (freeciv-1.14.1.tar.bz2) = 5850722 bytes
Home |
Main Index |
Thread Index |
Old Index