Index: games/freeciv/Makefile =================================================================== diff -u games/freeciv/Makefile.orig games/freeciv/Makefile --- games/freeciv/Makefile.orig Wed Feb 4 04:35:57 2004 +++ games/freeciv/Makefile Wed Apr 14 12:15:55 2004 @@ -2,18 +2,17 @@ # Date created: Jun 20 1997 # Whom: ada@bsd.org # -# $FreeBSD: ports/games/freeciv/Makefile,v 1.55 2004/02/04 04:35:57 marcus Exp $ +# $FreeBSD: ports/games/freeciv/Makefile,v 1.53 2003/08/26 08:19:34 demon Exp $ # PORTNAME= freeciv -PORTVERSION= 1.14.0 -PORTREVISION= 1 +PORTVERSION= 1.14.1 CATEGORIES= games MASTER_SITES= ftp://ftp.freeciv.org/pub/freeciv/stable/ \ ftp://ftp.netc.pt/pub/freeciv/stable/ \ ftp://ftp.pvv.ntnu.no/pub/freeciv/stable/ -MAINTAINER?= adam-ports@blacktabby.org +MAINTAINER?= rehsack@liwing.de COMMENT?= A civilisation clone for X11; multiplayer USE_GETTEXT= yes @@ -27,14 +26,42 @@ .include -.if ${HAVE_GNOME:Mgtk12}!="" -USE_GNOME+= imlib -PKGNAMESUFFIX?= -imlib +.if !defined(WITH_GTK) && !defined(WITH_GTK12) && !defined(WITH_GTK2) && \ + !defined(WITHOUT_GNOME) +AUTO_DEPENDS= yes +.if ${HAVE_GNOME:Mgtk20}!="" +WITH_GTK2= yes +.elif ${HAVE_GNOME:Mgtk12}!="" +WITH_GTK= yes +.endif +.endif + +.if defined(WITH_GTK2) +USE_GNOME+= gtk20 +PKGNAMESUFFIX?= -gtk2 +CONFIGURE_ARGS+= --enable-client=gtk2 +.elif defined(WITH_GTK) || defined(WITH_GTK12) +USE_GNOME+= imlib gtk12 +PKGNAMESUFFIX?= -gtk +CONFIGURE_ARGS+= --enable-client=gtk .else LIB_DEPENDS+= Xaw3d.${XAWVER}:${PORTSDIR}/x11-toolkits/Xaw3d .endif +pre-fetch: +.if defined(AUTO_DEPENDS) + @${ECHO} -n "No WITH_GTK, WITH_GTK2 or WITHOUT_GNOME defined, autodetecting: " +.if defined(WITH_GTK) + @${ECHO} "GTK" +.elif defined(WITH_GTK2) + @${ECHO} "GTK2" +.else + @${ECHO} "Xaw3d" +.endif +.endif + post-patch: - cd ${WRKSRC}; ${FIND} . -name Makefile.in | ${XARGS} ${REINPLACE_CMD} -e 's/@program_transform_name@//' + cd ${WRKSRC}; ${FIND} . -name Makefile.in | \ + ${XARGS} ${REINPLACE_CMD} -e 's/@program_transform_name@//' .include Index: games/freeciv/distinfo =================================================================== diff -u games/freeciv/distinfo.orig games/freeciv/distinfo --- games/freeciv/distinfo.orig Sat Mar 20 21:03:31 2004 +++ games/freeciv/distinfo Tue Apr 13 14:15:54 2004 @@ -1,2 +1,2 @@ -MD5 (freeciv-1.14.0.tar.bz2) = c506ec29b94ea516aaa02a107129cf10 -SIZE (freeciv-1.14.0.tar.bz2) = 5416607 +MD5 (freeciv-1.14.1.tar.bz2) = d328f65e7fca5252f27161f5f9e97a03 +SIZE (freeciv-1.14.1.tar.bz2) = 5850722 Index: games/freeciv/pkg-plist =================================================================== diff -u games/freeciv/pkg-plist.orig games/freeciv/pkg-plist --- games/freeciv/pkg-plist.orig Wed Apr 14 09:30:50 2004 +++ games/freeciv/pkg-plist Wed Apr 14 09:36:49 2004 @@ -126,8 +126,8 @@ share/freeciv/nation/welsh.ruleset share/freeciv/nation/zulu.ruleset share/freeciv/scenario/british-isles-85x80-v2.80.sav -share/freeciv/scenario/earth-80x50-v2.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 @@ -164,12 +164,17 @@ 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/hu/LC_MESSAGES +@dirrm share/locale/hu +@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/history @dirrm share/freeciv/isotrident +@dirrm share/freeciv/history @dirrm share/freeciv/default @dirrm share/freeciv/civ2 @dirrm share/freeciv/civ1 --- patch-gtk2+update-1.14.1 ends here ---