Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 13 Jan 2005 02:00:16 +0900
From:      KATO Tsuguru <tkato432@yahoo.com>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/76160: Update port: games/rtb to 1.0.7
Message-ID:  <20050113020016.7c7fae04.tkato432@yahoo.com>
Resent-Message-ID: <200501121710.j0CHAWk9073995@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         76160
>Category:       ports
>Synopsis:       Update port: games/rtb to 1.0.7
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Wed Jan 12 17:10:32 GMT 2005
>Closed-Date:
>Last-Modified:
>Originator:     KATO Tsuguru
>Release:        FreeBSD 4.10-RELEASE-p5 i386
>Organization:
>Environment:
>Description:
- Update to version 1.0.7

New file:
files/patch-rtb-team-framework::io::unixinstreambuf.cpp
files/patch-rtb-team-framework::io::unixoutstreambuf.cpp

Remove file:
files/patch-Makefile.in
files/patch-po::Makefile.in
files/patch-src::Makefile.in

>How-To-Repeat:
>Fix:

diff -urN /usr/ports/games/rtb/Makefile games/rtb/Makefile
--- /usr/ports/games/rtb/Makefile	Fri Dec 10 23:35:53 2004
+++ games/rtb/Makefile	Tue Jan 11 04:04:05 2005
@@ -6,44 +6,70 @@
 #
 
 PORTNAME=	RealTimeBattle
-PORTVERSION=	1.0.6
-PORTREVISION=	2
+PORTVERSION=	1.0.7
 CATEGORIES=	games
-MASTER_SITES=	${MASTER_SITE_SOURCEFORGE} \
-		http://www.lysator.liu.se/realtimebattle/Download/
+MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
 MASTER_SITE_SUBDIR=	${PORTNAME:L}
+DISTNAME=	${PORTNAME}-${PORTVERSION}-Ext
 
 MAINTAINER=	ports@FreeBSD.org
 COMMENT=	Robot programming game for UNIX
 
-USE_BZIP2=	yes
+BUILD_DEPENDS=	gsed:${PORTSDIR}/textproc/gsed
+
 USE_X_PREFIX=	yes
-USE_GNOME=	gnometarget gtk20 lthack
+USE_GNOME=	gnometarget gtk20
+USE_GCC=	3.4
+USE_PERL5=	yes
 USE_GETOPT_LONG=	yes
-USE_GMAKE=	yes
-USE_LIBTOOL_VER=13
 USE_REINPLACE=	yes
+USE_GMAKE=	yes
+GNU_CONFIGURE=	yes
 CONFIGURE_ENV=	CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
-MAKE_ARGS=	ACLOCAL="${TRUE}" AUTOCONF="${TRUE}" AUTOMAKE="${TRUE}" \
-		AUTOHEADER="${TRUE}"
+CONFIGURE_ARGS=	--with-rtb-dir=${PREFIX}/lib/${PORTNAME}
+
+CXXFLAGS+=	-fpermissive
 
 CPPFLAGS=	-I${LOCALBASE}/include -DHAVE_DECL_GETOPT
-LDFLAGS=	-L${LOCALBASE}/lib
+LDFLAGS=	-L${LOCALBASE}/lib -lintl
 
-post-extract:
-	@${REINPLACE_CMD} -E -e 's/min[[:space:]]*\(/Min(/; s/max[[:space:]]*\(/Max\(/' \
-		${WRKSRC}/include/Various.h ${WRKSRC}/src/ArenaBase.cc \
-		${WRKSRC}/src/GeometricalObjects.cc ${WRKSRC}/src/Options.cc \
-		${WRKSRC}/src/Robot.cc ${WRKSRC}/src/StartTournamentWindow.cc \
-		${WRKSRC}/src/StatisticsWindow.cc ${WRKSRC}/src/Various.cc
-	@${REINPLACE_CMD} -E -e 's/\(int\*\)/int\*/' ${WRKSRC}/src/ArenaRealTime.cc
+post-patch:
+.for file in include/Various.h src/ArenaBase.cc src/GeometricalObjects.cc \
+	src/Options.cc src/Robot.cc src/StartTournamentWindow.cc \
+	src/StatisticsWindow.cc src/Various.cc
+	@${REINPLACE_CMD} -E -e 's|min[[:space:]]*\(|Min(|g ; \
+		 s|max[[:space:]]*\(|Max\(|g' ${WRKSRC}/${file}
+.endfor
+.for file in src/ArenaRealTime.cc
+	@${REINPLACE_CMD} -E -e 's|\(int\*\)|int\*|g' ${WRKSRC}/${file}
+.endfor
+.for file in rtb-team-framework/createrobot.sh \
+	rtb-team-framework/createrobotconf.sh
+	@${REINPLACE_CMD} -e 's| sed| gsed|g' ${WRKSRC}/${file}
+.endfor
+.for file in Makefile.in
+	@${REINPLACE_CMD} -e 's|intl Documentation||g' ${WRKSRC}/${file}
+.endfor
 
 post-install:
 .if !defined(NOPORTDOCS)
 	@${MKDIR} ${DOCSDIR}
-	${INSTALL_DATA} ${WRKSRC}/ChangeLog ${DOCSDIR}
-	${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
-	${INSTALL_DATA} ${WRKSRC}/doc/RealTimeBattle.txt ${DOCSDIR}
+.for file in AUTHORS ChangeLog EXTRAROBOTS.README NEWS README TODO \
+	Documentation/RealTimeBattle-1.html \
+	Documentation/RealTimeBattle-2.html \
+	Documentation/RealTimeBattle-3.html \
+	Documentation/RealTimeBattle-4.html \
+	Documentation/RealTimeBattle-5.html \
+	Documentation/RealTimeBattle-6.html \
+	Documentation/RealTimeBattle.html \
+	Documentation/next.gif Documentation/prev.gif Documentation/toc.gif \
+	Documentation/next.png Documentation/prev.png Documentation/toc.png \
+	Documentation/RealTimeBattle.dvi \
+	Documentation/RealTimeBattle.sgml \
+	Documentation/RealTimeBattle.txt \
+	Documentation/RTB-Team-Framework-Tutorial.tar.gz
+	${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
+.endfor
 .endif
 
 .include <bsd.port.mk>
diff -urN /usr/ports/games/rtb/distinfo games/rtb/distinfo
--- /usr/ports/games/rtb/distinfo	Sun Mar 14 18:10:57 2004
+++ games/rtb/distinfo	Fri Dec 17 00:32:35 2004
@@ -1,2 +1,2 @@
-MD5 (RealTimeBattle-1.0.6.tar.bz2) = 46ef5733dc6e65121155463bd62ea2f3
-SIZE (RealTimeBattle-1.0.6.tar.bz2) = 397439
+MD5 (RealTimeBattle-1.0.7-Ext.tar.gz) = f0c3b4056e33539661356e1ecb72baab
+SIZE (RealTimeBattle-1.0.7-Ext.tar.gz) = 1206433
diff -urN /usr/ports/games/rtb/files/patch-Makefile.in games/rtb/files/patch-Makefile.in
--- /usr/ports/games/rtb/files/patch-Makefile.in	Sun Mar 14 16:10:49 2004
+++ games/rtb/files/patch-Makefile.in	Thu Jan  1 09:00:00 1970
@@ -1,20 +0,0 @@
---- Makefile.in.orig	Sun Nov 23 03:44:31 2003
-+++ Makefile.in	Sat Mar 13 02:50:55 2004
-@@ -120,7 +120,7 @@
- USE_NLS = @USE_NLS@
- VERSION = @VERSION@
- 
--SUBDIRS = intl po include src doc
-+SUBDIRS = intl po include src
- 
- realtimebattledocdir = ${prefix}/doc/RealTimeBattle
- realtimebattledoc_DATA =  	README 	COPYING 	AUTHORS 	ChangeLog 	INSTALL 	NEWS 	TODO 	ABOUT-NLS
-@@ -374,7 +374,7 @@
- install-exec-am:
- install-exec: install-exec-recursive
- 
--install-data-am: install-realtimebattledocDATA
-+install-data-am:
- install-data: install-data-recursive
- 
- install-am: all-am
diff -urN /usr/ports/games/rtb/files/patch-po::Makefile.in.in games/rtb/files/patch-po::Makefile.in.in
--- /usr/ports/games/rtb/files/patch-po::Makefile.in.in	Sun Mar 14 16:10:49 2004
+++ games/rtb/files/patch-po::Makefile.in.in	Thu Jan  1 09:00:00 1970
@@ -1,11 +0,0 @@
---- po/Makefile.in.in.orig	Sat Apr 26 00:02:45 2003
-+++ po/Makefile.in.in	Sun Mar 14 10:29:29 2004
-@@ -29,7 +29,7 @@
- INSTALL = @INSTALL@
- INSTALL_DATA = @INSTALL_DATA@
- MKINSTALLDIRS = @MKINSTALLDIRS@
--mkinstalldirs = $(SHELL) `case "$(MKINSTALLDIRS)" in /*) echo "$(MKINSTALLDIRS)" ;; *) echo "$(top_builddir)/$(MKINSTALLDIRS)" ;; esac`
-+mkinstalldirs = $(SHELL) $(MKINSTALLDIRS)
- 
- CC = @CC@
- GMSGFMT = @GMSGFMT@
diff -urN /usr/ports/games/rtb/files/patch-rtb-team-framework::io::unixinstreambuf.cpp games/rtb/files/patch-rtb-team-framework::io::unixinstreambuf.cpp
--- /usr/ports/games/rtb/files/patch-rtb-team-framework::io::unixinstreambuf.cpp	Thu Jan  1 09:00:00 1970
+++ games/rtb/files/patch-rtb-team-framework::io::unixinstreambuf.cpp	Fri Dec 17 01:33:59 2004
@@ -0,0 +1,10 @@
+--- rtb-team-framework/io/unixinstreambuf.cpp.orig	Wed Nov  3 05:09:04 2004
++++ rtb-team-framework/io/unixinstreambuf.cpp	Fri Dec 17 01:33:22 2004
+@@ -29,6 +29,7 @@
+ #include "../exceptions/keynotfoundexception.h"
+ #include "../exceptions/confignotloadedexception.h"
+ #include <sstream>
++#include <cerrno>
+ 
+ /**
+  * Namespace
diff -urN /usr/ports/games/rtb/files/patch-rtb-team-framework::io::unixoutstreambuf.cpp games/rtb/files/patch-rtb-team-framework::io::unixoutstreambuf.cpp
--- /usr/ports/games/rtb/files/patch-rtb-team-framework::io::unixoutstreambuf.cpp	Thu Jan  1 09:00:00 1970
+++ games/rtb/files/patch-rtb-team-framework::io::unixoutstreambuf.cpp	Fri Dec 17 01:35:09 2004
@@ -0,0 +1,10 @@
+--- rtb-team-framework/io/unixoutstreambuf.cpp.orig	Wed Nov  3 05:09:04 2004
++++ rtb-team-framework/io/unixoutstreambuf.cpp	Fri Dec 17 01:34:44 2004
+@@ -26,6 +26,7 @@
+ 
+ #include "unixoutstreambuf.h"
+ #include <sstream>
++#include <cerrno>
+ 
+ /**
+  * Namespace
diff -urN /usr/ports/games/rtb/files/patch-src::Makefile.in games/rtb/files/patch-src::Makefile.in
--- /usr/ports/games/rtb/files/patch-src::Makefile.in	Sun Mar 14 16:10:49 2004
+++ games/rtb/files/patch-src::Makefile.in	Thu Jan  1 09:00:00 1970
@@ -1,15 +0,0 @@
---- src/Makefile.in.orig	Sun Nov 23 03:44:31 2003
-+++ src/Makefile.in	Sat Mar 13 02:46:55 2004
-@@ -123,10 +123,10 @@
- INCLUDES =  	$(GTK_CFLAGS) 	 -I../include
- 
- 
--realtimebattle_CFLAGS =  	 -Wall 	 -O2
-+realtimebattle_CFLAGS =  	 -Wall
- 
- 
--realtimebattle_CXXFLAGS =  	 -Wall 	 -O2
-+realtimebattle_CXXFLAGS =  	 -Wall
- 
- 
- bin_PROGRAMS = realtimebattle
diff -urN /usr/ports/games/rtb/files/patch-src::String.cc games/rtb/files/patch-src::String.cc
--- /usr/ports/games/rtb/files/patch-src::String.cc	Sun Mar 14 16:10:49 2004
+++ games/rtb/files/patch-src::String.cc	Tue Jan 11 02:29:01 2005
@@ -1,10 +1,19 @@
---- src/String.cc.orig	Thu Sep 18 02:51:37 2003
-+++ src/String.cc	Sat Mar 13 02:12:19 2004
-@@ -25,6 +25,7 @@
+--- src/String.cc.orig	Fri Nov 12 22:04:38 2004
++++ src/String.cc	Tue Jan 11 02:28:46 2005
+@@ -21,12 +21,13 @@
+ #include <config.h>
+ #endif
+ 
+-#include <string.h>
++#include <cstring>
  #include <iostream>
  //#include <strstream>
  #include <iomanip>
-+#include <stdio.h>
- #include <stdlib.h>
- #include <ctype.h>
+-#include <stdlib.h>
+-#include <ctype.h>
++#include <cstdio>
++#include <cstdlib>
++#include <cctype>
+ 
+ using namespace std;
  
diff -urN /usr/ports/games/rtb/pkg-descr games/rtb/pkg-descr
--- /usr/ports/games/rtb/pkg-descr	Wed Nov 21 08:49:25 2001
+++ games/rtb/pkg-descr	Tue Jan 11 04:02:49 2005
@@ -4,7 +4,7 @@
 them and firing them to oblivion with the cannon. Great tool for learning
 how to code in C/C++ or other languages.
 
-WWW: http://www.lysator.liu.se/realtimebattle/
+WWW: http://realtimebattle.sourceforge.net/
 
 --
 Dishanker Rajakulendren <draj@oceanfree.net>
diff -urN /usr/ports/games/rtb/pkg-plist games/rtb/pkg-plist
--- /usr/ports/games/rtb/pkg-plist	Sun Mar 14 18:10:57 2004
+++ games/rtb/pkg-plist	Tue Jan 11 03:54:42 2005
@@ -1,34 +1,120 @@
 bin/realtimebattle
-include/RealTimeBattle/ArenaBase.h
-include/RealTimeBattle/ArenaController.h
-include/RealTimeBattle/ArenaRealTime.h
-include/RealTimeBattle/ArenaReplay.h
-include/RealTimeBattle/ArenaWindow.h
-include/RealTimeBattle/ControlWindow.h
-include/RealTimeBattle/Dialog.h
-include/RealTimeBattle/Extras.h
-include/RealTimeBattle/GeometricalObjects.h
-include/RealTimeBattle/Gui.h
-include/RealTimeBattle/IntlDefs.h
-include/RealTimeBattle/List.h
-include/RealTimeBattle/MessageWindow.h
 include/RealTimeBattle/Messagetypes.h
-include/RealTimeBattle/MovingObject.h
-include/RealTimeBattle/Options.h
-include/RealTimeBattle/OptionsWindow.h
-include/RealTimeBattle/Robot.h
-include/RealTimeBattle/ScoreWindow.h
-include/RealTimeBattle/Shape.h
-include/RealTimeBattle/Shot.h
-include/RealTimeBattle/StartTournamentWindow.h
-include/RealTimeBattle/StatisticsWindow.h
-include/RealTimeBattle/String.h
-include/RealTimeBattle/Structs.h
-include/RealTimeBattle/Timer.h
-include/RealTimeBattle/Various.h
-include/RealTimeBattle/Vector2D.h
-include/RealTimeBattle/Wall.h
-include/RealTimeBattle/fdstream.h
+lib/RealTimeBattle/Arenas/Circle.arena
+lib/RealTimeBattle/Arenas/Circles.arena
+lib/RealTimeBattle/Arenas/Cross.arena
+lib/RealTimeBattle/Arenas/Diamond.arena
+lib/RealTimeBattle/Arenas/Flower.arena
+lib/RealTimeBattle/Arenas/Forest.arena
+lib/RealTimeBattle/Arenas/Labyrinth.arena
+lib/RealTimeBattle/Arenas/Maze.arena
+lib/RealTimeBattle/Arenas/MrFriendly.arena
+lib/RealTimeBattle/Arenas/Nippon.arena
+lib/RealTimeBattle/Arenas/PPconquest.arena
+lib/RealTimeBattle/Arenas/Pool.arena
+lib/RealTimeBattle/Arenas/Propeller.arena
+lib/RealTimeBattle/Arenas/Rooms.arena
+lib/RealTimeBattle/Arenas/Square.arena
+lib/RealTimeBattle/Arenas/Star.arena
+lib/RealTimeBattle/Arenas/Triangle.arena
+lib/RealTimeBattle/Arenas/my_Star.arena
+lib/RealTimeBattle/Arenas/my_Star2.arena
+lib/RealTimeBattle/RealTimeBattle.xpm
+lib/RealTimeBattle/Robots/Brotfrucht-Robot1-TeamOne.robot
+lib/RealTimeBattle/Robots/Brotfrucht-Robot1-TeamTwo.robot
+lib/RealTimeBattle/Robots/Brotfrucht-Robot2-TeamOne.robot
+lib/RealTimeBattle/Robots/Brotfrucht-Robot2-TeamTwo.robot
+lib/RealTimeBattle/Robots/Brotfrucht-Robot3-TeamOne.robot
+lib/RealTimeBattle/Robots/Brotfrucht-Robot3-TeamTwo.robot
+lib/RealTimeBattle/Robots/Brotfrucht-Robot4-TeamOne.robot
+lib/RealTimeBattle/Robots/Brotfrucht-Robot4-TeamTwo.robot
+lib/RealTimeBattle/Robots/Brotfrucht-Robot5-TeamOne.robot
+lib/RealTimeBattle/Robots/Brotfrucht-Robot5-TeamTwo.robot
+lib/RealTimeBattle/Robots/empty/Makefile.am
+lib/RealTimeBattle/Robots/empty/empty.c
+lib/RealTimeBattle/Robots/empty-Robot1-TeamThree.robot
+lib/RealTimeBattle/Robots/empty-Robot2-TeamThree.robot
+lib/RealTimeBattle/Robots/empty-Robot3-TeamThree.robot
+lib/RealTimeBattle/Robots/empty-Robot4-TeamThree.robot
+lib/RealTimeBattle/Robots/empty-Robot5-TeamThree.robot
+lib/RealTimeBattle/Robots/empty.robot
+lib/RealTimeBattle/Robots/jBot/JBot.java
+lib/RealTimeBattle/Robots/jBot/JBotMain.java
+lib/RealTimeBattle/Robots/jBot/JBot_C.java
+lib/RealTimeBattle/Robots/jBot/JBot_T.java
+lib/RealTimeBattle/Robots/jBot/Makefile.am
+lib/RealTimeBattle/Robots/jBot/jBot.robot.in
+lib/RealTimeBattle/Robots/joypad_robot/Makefile.am
+lib/RealTimeBattle/Robots/joypad_robot/README
+lib/RealTimeBattle/Robots/joypad_robot/joypad_robot.c
+lib/RealTimeBattle/Robots/perl/Robot.pm
+lib/RealTimeBattle/Robots/perl/perl.robot.in
+lib/RealTimeBattle/Robots/perl-Skeleton/perl-Skeleton.robot.in
+lib/RealTimeBattle/Robots/perl-Skeleton.robot
+lib/RealTimeBattle/Robots/perl.robot
+lib/RealTimeBattle/Robots/rotate_and_fire/Makefile.am
+lib/RealTimeBattle/Robots/rotate_and_fire/rotate_and_fire.cc
+lib/RealTimeBattle/Robots/rotate_and_fire/rotate_and_fire.h
+lib/RealTimeBattle/Robots/rotate_and_fire/rotate_and_fire_blocking.cc
+lib/RealTimeBattle/Robots/rotate_and_fire/rotate_and_fire_select.cc
+lib/RealTimeBattle/Robots/rotate_and_fire/rotate_and_fire_signal.cc
+lib/RealTimeBattle/Robots/rotate_and_fire_blocking.robot
+lib/RealTimeBattle/Robots/rotate_and_fire_select.robot
+lib/RealTimeBattle/Robots/rotate_and_fire_signal.robot
+lib/RealTimeBattle/Robots/rtb-team-framework/Brotfrucht-Robot1-TeamOne.conf
+lib/RealTimeBattle/Robots/rtb-team-framework/Brotfrucht-Robot1-TeamTwo.conf
+lib/RealTimeBattle/Robots/rtb-team-framework/Brotfrucht-Robot2-TeamOne.conf
+lib/RealTimeBattle/Robots/rtb-team-framework/Brotfrucht-Robot2-TeamTwo.conf
+lib/RealTimeBattle/Robots/rtb-team-framework/Brotfrucht-Robot3-TeamOne.conf
+lib/RealTimeBattle/Robots/rtb-team-framework/Brotfrucht-Robot3-TeamTwo.conf
+lib/RealTimeBattle/Robots/rtb-team-framework/Brotfrucht-Robot4-TeamOne.conf
+lib/RealTimeBattle/Robots/rtb-team-framework/Brotfrucht-Robot4-TeamTwo.conf
+lib/RealTimeBattle/Robots/rtb-team-framework/Brotfrucht-Robot5-TeamOne.conf
+lib/RealTimeBattle/Robots/rtb-team-framework/Brotfrucht-Robot5-TeamTwo.conf
+lib/RealTimeBattle/Robots/rtb-team-framework/empty-Robot1-TeamThree.conf
+lib/RealTimeBattle/Robots/rtb-team-framework/empty-Robot2-TeamThree.conf
+lib/RealTimeBattle/Robots/rtb-team-framework/empty-Robot3-TeamThree.conf
+lib/RealTimeBattle/Robots/rtb-team-framework/empty-Robot4-TeamThree.conf
+lib/RealTimeBattle/Robots/rtb-team-framework/empty-Robot5-TeamThree.conf
+lib/RealTimeBattle/Robots/rtb-team-framework/rtb-team
+lib/RealTimeBattle/Robots/seek_and_destroy/Makefile.am
+lib/RealTimeBattle/Robots/seek_and_destroy/seek_and_destroy.cc
+lib/RealTimeBattle/Robots/seek_and_destroy.robot
+lib/RealTimeBattle/Robots/thomas2/Makefile.am
+lib/RealTimeBattle/Robots/thomas2/thomas2.cc
+lib/RealTimeBattle/Robots/thomas2.robot
+lib/RealTimeBattle/Robots/xt-bot/Makefile.am
+lib/RealTimeBattle/Robots/xt-bot/xt-bot-a.cpp
+lib/RealTimeBattle/Robots/xt-bot/xt-bot-b.cpp
+lib/RealTimeBattle/Robots/xt-bot-a.robot
+lib/RealTimeBattle/Robots/xt-bot-b.robot
+lib/RealTimeBattle/rtb_logo.jpg
+lib/RealTimeBattle/rtblogo1024.jpg
+lib/RealTimeBattle/rtblogo1600.jpg
+lib/RealTimeBattle/tournament.txt
+%%PORTDOCS%%%%DOCSDIR%%/AUTHORS
+%%PORTDOCS%%%%DOCSDIR%%/ChangeLog
+%%PORTDOCS%%%%DOCSDIR%%/EXTRAROBOTS.README
+%%PORTDOCS%%%%DOCSDIR%%/NEWS
+%%PORTDOCS%%%%DOCSDIR%%/README
+%%PORTDOCS%%%%DOCSDIR%%/RTB-Team-Framework-Tutorial.tar.gz
+%%PORTDOCS%%%%DOCSDIR%%/RealTimeBattle-1.html
+%%PORTDOCS%%%%DOCSDIR%%/RealTimeBattle-2.html
+%%PORTDOCS%%%%DOCSDIR%%/RealTimeBattle-3.html
+%%PORTDOCS%%%%DOCSDIR%%/RealTimeBattle-4.html
+%%PORTDOCS%%%%DOCSDIR%%/RealTimeBattle-5.html
+%%PORTDOCS%%%%DOCSDIR%%/RealTimeBattle-6.html
+%%PORTDOCS%%%%DOCSDIR%%/RealTimeBattle.dvi
+%%PORTDOCS%%%%DOCSDIR%%/RealTimeBattle.html
+%%PORTDOCS%%%%DOCSDIR%%/RealTimeBattle.sgml
+%%PORTDOCS%%%%DOCSDIR%%/RealTimeBattle.txt
+%%PORTDOCS%%%%DOCSDIR%%/TODO
+%%PORTDOCS%%%%DOCSDIR%%/next.gif
+%%PORTDOCS%%%%DOCSDIR%%/next.png
+%%PORTDOCS%%%%DOCSDIR%%/prev.gif
+%%PORTDOCS%%%%DOCSDIR%%/prev.png
+%%PORTDOCS%%%%DOCSDIR%%/toc.gif
+%%PORTDOCS%%%%DOCSDIR%%/toc.png
 share/locale/de/LC_MESSAGES/RealTimeBattle.mo
 share/locale/es/LC_MESSAGES/RealTimeBattle.mo
 share/locale/gl/LC_MESSAGES/RealTimeBattle.mo
@@ -36,8 +122,18 @@
 share/locale/pl/LC_MESSAGES/RealTimeBattle.mo
 share/locale/pt/LC_MESSAGES/RealTimeBattle.mo
 share/locale/sv/LC_MESSAGES/RealTimeBattle.mo
-%%PORTDOCS%%%%DOCSDIR%%/ChangeLog
-%%PORTDOCS%%%%DOCSDIR%%/README
-%%PORTDOCS%%%%DOCSDIR%%/RealTimeBattle.txt
 %%PORTDOCS%%@dirrm %%DOCSDIR%%
+@dirrm lib/RealTimeBattle/Robots/xt-bot
+@dirrm lib/RealTimeBattle/Robots/thomas2
+@dirrm lib/RealTimeBattle/Robots/seek_and_destroy
+@dirrm lib/RealTimeBattle/Robots/rtb-team-framework
+@dirrm lib/RealTimeBattle/Robots/rotate_and_fire
+@dirrm lib/RealTimeBattle/Robots/perl-Skeleton
+@dirrm lib/RealTimeBattle/Robots/perl
+@dirrm lib/RealTimeBattle/Robots/joypad_robot
+@dirrm lib/RealTimeBattle/Robots/jBot
+@dirrm lib/RealTimeBattle/Robots/empty
+@dirrm lib/RealTimeBattle/Robots
+@dirrm lib/RealTimeBattle/Arenas
+@dirrm lib/RealTimeBattle
 @dirrm include/RealTimeBattle
>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20050113020016.7c7fae04.tkato432>