svn commit: r495182 - in head/games: . colobot

Fernando Apesteguía fernape at FreeBSD.org
Sat Mar 9 17:59:03 UTC 2019


Author: fernape
Date: Sat Mar  9 17:59:01 2019
New Revision: 495182
URL: https://svnweb.freebsd.org/changeset/ports/495182

Log:
  [new port]: games/colobot: educational real-time strategy video game featuring 3D graphics
  
  The objective of the game is to find a planet for colonization by the human race
  by establishing a basic infrastructure on the surface and eliminating any alien
  life forms endangering the expedition
  
  You can program your units (bots) in a language called CBOT, which is
  similar to C++ and Java.
  
  Reviewed by:	tcberner
  Differential Revision:  https://reviews.freebsd.org/D19481

Added:
  head/games/colobot/
  head/games/colobot/Makefile   (contents, props changed)
  head/games/colobot/distinfo   (contents, props changed)
  head/games/colobot/pkg-descr   (contents, props changed)
  head/games/colobot/pkg-plist   (contents, props changed)
Modified:
  head/games/Makefile

Modified: head/games/Makefile
==============================================================================
--- head/games/Makefile	Sat Mar  9 17:55:00 2019	(r495181)
+++ head/games/Makefile	Sat Mar  9 17:59:01 2019	(r495182)
@@ -161,6 +161,7 @@
     SUBDIR += cleanq3
     SUBDIR += cockatrice
     SUBDIR += coffeebreak
+    SUBDIR += colobot
     SUBDIR += colorcode
     SUBDIR += columns
     SUBDIR += concentration

Added: head/games/colobot/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/colobot/Makefile	Sat Mar  9 17:59:01 2019	(r495182)
@@ -0,0 +1,50 @@
+# $FreeBSD$
+
+PORTNAME=	colobot
+DISTVERSIONPREFIX=	${PORTNAME}-gold-
+DISTVERSION=	0.1.12
+DISTVERSIONSUFFIX=	-alpha
+CATEGORIES=	games
+MASTER_SITES=	https://colobot.info/files/music/
+DISTFILES=	colobot-music_ogg_0.1.12-alpha.tar.gz
+
+MAINTAINER=	fernape at FreeBSD.org
+COMMENT=	Educational game aiming to teach programming to kids
+
+LICENSE=	GPLv3
+LICENSE_FILE=	${WRKSRC}/LICENSE.txt
+
+LIB_DEPENDS=	libpng.so:graphics/png \
+		libsndfile.so:audio/libsndfile \
+		libvorbis.so:audio/libvorbis \
+		libogg.so:audio/libogg \
+		libopenal.so:audio/openal-soft \
+		libphysfs.so:devel/physfs \
+		libboost_system.so:devel/boost-libs
+
+USES=		cmake gl gettext-runtime gettext-tools:build \
+		localbase:ldflags openal sdl
+USE_SDL=	image2 ttf2
+USE_GL=		gl glew glu
+USE_LDCONFIG=	yes
+
+USE_GITHUB=	yes
+GH_TUPLE=	colobot:colobot-data:c467bd9:data
+
+LLD_UNSAFE=	yes
+
+post-extract:
+	@${MV} ${WRKDIR}/colobot-data-c467bd9/* ${WRKSRC}/data
+	@${MV} ${WRKDIR}/*.ogg ${WRKDIR}/LICENSE.txt ${WRKSRC}/data/music/
+	@${REINPLACE_CMD} 's|$${CMAKE_INSTALL_PREFIX}/games|$${CMAKE_INSTALL_PREFIX}/bin|g' ${WRKSRC}/CMakeLists.txt
+	@${REINPLACE_CMD} 's|PLATFORM_MACOSX|PLATFORM_MACOSX OR PLATFORM_OTHER|g' ${WRKSRC}/src/CMakeLists.txt
+
+post-patch:
+	@${REINPLACE_CMD} 's|/usr/local|${LOCALBASE}|g' ${WRKSRC}/cmake/FindGLEW.cmake
+	@${REINPLACE_CMD} 's|/usr/local|${LOCALBASE}|g' ${WRKSRC}/cmake/FindPhysFS.cmake
+	@${REINPLACE_CMD} 's|/usr/local|${LOCALBASE}|g' ${WRKSRC}/cmake/FindSDL2.cmake
+	@${REINPLACE_CMD} 's|/usr/local|${LOCALBASE}|g' ${WRKSRC}/cmake/FindSDL2_image.cmake
+	@${REINPLACE_CMD} 's|/usr/local|${LOCALBASE}|g' ${WRKSRC}/cmake/FindSDL2_ttf.cmake
+	@${REINPLACE_CMD} 's|/usr/local|${LOCALBASE}|g' ${WRKSRC}/tools/check-levels.sh
+
+.include <bsd.port.mk>

Added: head/games/colobot/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/colobot/distinfo	Sat Mar  9 17:59:01 2019	(r495182)
@@ -0,0 +1,7 @@
+TIMESTAMP = 1551719919
+SHA256 (colobot-music_ogg_0.1.12-alpha.tar.gz) = 55e89d244f1f63e2467ef71253ca881ee31279f02aac9ac4706ef26c466306e9
+SIZE (colobot-music_ogg_0.1.12-alpha.tar.gz) = 55596353
+SHA256 (colobot-colobot-colobot-gold-0.1.12-alpha_GH0.tar.gz) = 38e01a6fb8c670203b86e7a100c79ed4ab4a9a4dcc01fd26a6a57f40fa1a8b5c
+SIZE (colobot-colobot-colobot-gold-0.1.12-alpha_GH0.tar.gz) = 1468594
+SHA256 (colobot-colobot-data-c467bd9_GH0.tar.gz) = 4a6a53ea22970870d05a12ebf56f595d34d765a789ab3b0aae618f2747312c35
+SIZE (colobot-colobot-data-c467bd9_GH0.tar.gz) = 54728879

Added: head/games/colobot/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/colobot/pkg-descr	Sat Mar  9 17:59:01 2019	(r495182)
@@ -0,0 +1,11 @@
+Colobot is an educational real-time strategy video game featuring 3D graphics.
+The objective of the game is to find a planet for colonization by the human race
+by establishing a basic infrastructure on the surface and eliminating any alien
+life forms endangering the expedition
+
+You can program your units (bots) in a language called CBOT, which is
+similar to C++ and Java. Your mission is to find a new planet to live and
+survive. You can save the humanity and get programming skills!
+
+
+WWW: https://colobot.info/

Added: head/games/colobot/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/colobot/pkg-plist	Sat Mar  9 17:59:01 2019	(r495182)
@@ -0,0 +1,3673 @@
+bin/colobot
+lib/colobot/libCBot.so
+share/games/colobot/ai/ant01.txt
+share/games/colobot/ai/ant02.txt
+share/games/colobot/ai/ant03.txt
+share/games/colobot/ai/ant04.txt
+share/games/colobot/ai/ant05.txt
+share/games/colobot/ai/ant06.txt
+share/games/colobot/ai/ant07.txt
+share/games/colobot/ai/ant08.txt
+share/games/colobot/ai/ant09.txt
+share/games/colobot/ai/ant10.txt
+share/games/colobot/ai/ant11.txt
+share/games/colobot/ai/ant12.txt
+share/games/colobot/ai/antatt30.txt
+share/games/colobot/ai/antattaw.txt
+share/games/colobot/ai/antattsw.txt
+share/games/colobot/ai/antec.txt
+share/games/colobot/ai/antice.txt
+share/games/colobot/ai/antich.txt
+share/games/colobot/ai/antich2.txt
+share/games/colobot/ai/anticp.txt
+share/games/colobot/ai/antics.txt
+share/games/colobot/ai/antict.txt
+share/games/colobot/ai/anticv.txt
+share/games/colobot/ai/antsurp1.txt
+share/games/colobot/ai/antsurp2.txt
+share/games/colobot/ai/antt41.txt
+share/games/colobot/ai/antt42.txt
+share/games/colobot/ai/antt43.txt
+share/games/colobot/ai/charge1.txt
+share/games/colobot/ai/charge2.txt
+share/games/colobot/ai/charge3.txt
+share/games/colobot/ai/convert.txt
+share/games/colobot/ai/exchg1.txt
+share/games/colobot/ai/flash.txt
+share/games/colobot/ai/human01.txt
+share/games/colobot/ai/human02.txt
+share/games/colobot/ai/human03.txt
+share/games/colobot/ai/human04.txt
+share/games/colobot/ai/human05.txt
+share/games/colobot/ai/human06.txt
+share/games/colobot/ai/human07.txt
+share/games/colobot/ai/kill1.txt
+share/games/colobot/ai/lady01.txt
+share/games/colobot/ai/lady02.txt
+share/games/colobot/ai/run1.txt
+share/games/colobot/ai/shield01.txt
+share/games/colobot/ai/shield02.txt
+share/games/colobot/ai/shield03.txt
+share/games/colobot/ai/spider01.txt
+share/games/colobot/ai/spider02.txt
+share/games/colobot/ai/spider03.txt
+share/games/colobot/ai/spidict.txt
+share/games/colobot/ai/strain1.txt
+share/games/colobot/ai/strain2.txt
+share/games/colobot/ai/tant1.txt
+share/games/colobot/ai/tant2.txt
+share/games/colobot/ai/tant3.txt
+share/games/colobot/ai/tant4.txt
+share/games/colobot/ai/tant5.txt
+share/games/colobot/ai/tcell1.txt
+share/games/colobot/ai/tcell2.txt
+share/games/colobot/ai/tchasse1.txt
+share/games/colobot/ai/tchasse2.txt
+share/games/colobot/ai/tchasse3.txt
+share/games/colobot/ai/tchasse4.txt
+share/games/colobot/ai/tchasse5.txt
+share/games/colobot/ai/tdragst.txt
+share/games/colobot/ai/tevite.txt
+share/games/colobot/ai/texch1.txt
+share/games/colobot/ai/texch2.txt
+share/games/colobot/ai/tfollow1.txt
+share/games/colobot/ai/tfollow2.txt
+share/games/colobot/ai/tfor.txt
+share/games/colobot/ai/tfor2.txt
+share/games/colobot/ai/titan1.txt
+share/games/colobot/ai/titan2.txt
+share/games/colobot/ai/titan3.txt
+share/games/colobot/ai/titan4.txt
+share/games/colobot/ai/tlaby1.txt
+share/games/colobot/ai/tlaby2.txt
+share/games/colobot/ai/tmove1.txt
+share/games/colobot/ai/tmove2.txt
+share/games/colobot/ai/tmove3.txt
+share/games/colobot/ai/tower1.txt
+share/games/colobot/ai/tproc1.txt
+share/games/colobot/ai/tproc2.txt
+share/games/colobot/ai/tprot1.txt
+share/games/colobot/ai/tprot1a.txt
+share/games/colobot/ai/tradar1.txt
+share/games/colobot/ai/tradar2.txt
+share/games/colobot/ai/tremot1a.txt
+share/games/colobot/ai/tremot1b.txt
+share/games/colobot/ai/tremot2a.txt
+share/games/colobot/ai/tremot2b.txt
+share/games/colobot/ai/tremot3a.txt
+share/games/colobot/ai/tremot3b.txt
+share/games/colobot/ai/tremot4a.txt
+share/games/colobot/ai/tremot4b.txt
+share/games/colobot/ai/tremot5a.txt
+share/games/colobot/ai/tremot5b.txt
+share/games/colobot/ai/tremova1.txt
+share/games/colobot/ai/tremova2.txt
+share/games/colobot/ai/tremova3.txt
+share/games/colobot/ai/tremova4.txt
+share/games/colobot/ai/trepulse.txt
+share/games/colobot/ai/tsniff.txt
+share/games/colobot/ai/tspid1.txt
+share/games/colobot/ai/tspid2.txt
+share/games/colobot/ai/tspid3.txt
+share/games/colobot/ai/ttit1.txt
+share/games/colobot/ai/ttit2.txt
+share/games/colobot/ai/ttrap1.txt
+share/games/colobot/ai/ttrap2.txt
+share/games/colobot/ai/twasp1.txt
+share/games/colobot/ai/twasp2.txt
+share/games/colobot/ai/wait.txt
+share/games/colobot/ai/wasp01.txt
+share/games/colobot/ai/wasp02.txt
+share/games/colobot/ai/wasp03.txt
+share/games/colobot/ai/waspe1.txt
+share/games/colobot/ai/win904a.txt
+share/games/colobot/ai/win904b.txt
+share/games/colobot/ai/win904c.txt
+share/games/colobot/ai/wingsh02.txt
+share/games/colobot/ai/wingshoo.txt
+share/games/colobot/ai/worm01.txt
+share/games/colobot/ai/worm02.txt
+share/games/colobot/ai/worm03.txt
+share/games/colobot/fonts/LICENSE.txt
+share/games/colobot/fonts/dvu_sans.ttf
+share/games/colobot/fonts/dvu_sans_bold.ttf
+share/games/colobot/fonts/dvu_sans_italic.ttf
+share/games/colobot/fonts/dvu_sans_mono.ttf
+share/games/colobot/fonts/dvu_sans_mono_bold.ttf
+share/games/colobot/help/B/authors.txt
+share/games/colobot/help/B/battles.txt
+share/games/colobot/help/B/cbot.txt
+share/games/colobot/help/B/cbot/abstime.txt
+share/games/colobot/help/B/cbot/acos.txt
+share/games/colobot/help/B/cbot/aim.txt
+share/games/colobot/help/B/cbot/array.txt
+share/games/colobot/help/B/cbot/asin.txt
+share/games/colobot/help/B/cbot/atan.txt
+share/games/colobot/help/B/cbot/atan2.txt
+share/games/colobot/help/B/cbot/bloc.txt
+share/games/colobot/help/B/cbot/bool.txt
+share/games/colobot/help/B/cbot/break.txt
+share/games/colobot/help/B/cbot/build.txt
+share/games/colobot/help/B/cbot/buildingenabled.txt
+share/games/colobot/help/B/cbot/busy.txt
+share/games/colobot/help/B/cbot/canbuild.txt
+share/games/colobot/help/B/cbot/canresearch.txt
+share/games/colobot/help/B/cbot/category.txt
+share/games/colobot/help/B/cbot/ceil.txt
+share/games/colobot/help/B/cbot/class.txt
+share/games/colobot/help/B/cbot/close.txt
+share/games/colobot/help/B/cbot/colors.txt
+share/games/colobot/help/B/cbot/cond.txt
+share/games/colobot/help/B/cbot/continue.txt
+share/games/colobot/help/B/cbot/cos.txt
+share/games/colobot/help/B/cbot/deletef.txt
+share/games/colobot/help/B/cbot/delinfo.txt
+share/games/colobot/help/B/cbot/destroy.txt
+share/games/colobot/help/B/cbot/detect.txt
+share/games/colobot/help/B/cbot/direct.txt
+share/games/colobot/help/B/cbot/dist.txt
+share/games/colobot/help/B/cbot/dist2d.txt
+share/games/colobot/help/B/cbot/do.txt
+share/games/colobot/help/B/cbot/drop.txt
+share/games/colobot/help/B/cbot/eof.txt
+share/games/colobot/help/B/cbot/errmode.txt
+share/games/colobot/help/B/cbot/expr.txt
+share/games/colobot/help/B/cbot/extends.txt
+share/games/colobot/help/B/cbot/extern.txt
+share/games/colobot/help/B/cbot/factory.txt
+share/games/colobot/help/B/cbot/false.txt
+share/games/colobot/help/B/cbot/file.txt
+share/games/colobot/help/B/cbot/fire.txt
+share/games/colobot/help/B/cbot/flatgrnd.txt
+share/games/colobot/help/B/cbot/flatspace.txt
+share/games/colobot/help/B/cbot/float.txt
+share/games/colobot/help/B/cbot/floor.txt
+share/games/colobot/help/B/cbot/for.txt
+share/games/colobot/help/B/cbot/function.txt
+share/games/colobot/help/B/cbot/goto.txt
+share/games/colobot/help/B/cbot/grab.txt
+share/games/colobot/help/B/cbot/if.txt
+share/games/colobot/help/B/cbot/int.txt
+share/games/colobot/help/B/cbot/jet.txt
+share/games/colobot/help/B/cbot/message.txt
+share/games/colobot/help/B/cbot/motor.txt
+share/games/colobot/help/B/cbot/move.txt
+share/games/colobot/help/B/cbot/nan.txt
+share/games/colobot/help/B/cbot/new.txt
+share/games/colobot/help/B/cbot/null.txt
+share/games/colobot/help/B/cbot/object.txt
+share/games/colobot/help/B/cbot/open.txt
+share/games/colobot/help/B/cbot/openfile.txt
+share/games/colobot/help/B/cbot/pencolor.txt
+share/games/colobot/help/B/cbot/pendown.txt
+share/games/colobot/help/B/cbot/penup.txt
+share/games/colobot/help/B/cbot/penwidth.txt
+share/games/colobot/help/B/cbot/point.txt
+share/games/colobot/help/B/cbot/pointer.txt
+share/games/colobot/help/B/cbot/pow.txt
+share/games/colobot/help/B/cbot/private.txt
+share/games/colobot/help/B/cbot/produce.txt
+share/games/colobot/help/B/cbot/protected.txt
+share/games/colobot/help/B/cbot/public.txt
+share/games/colobot/help/B/cbot/radar.txt
+share/games/colobot/help/B/cbot/radarall.txt
+share/games/colobot/help/B/cbot/rand.txt
+share/games/colobot/help/B/cbot/readln.txt
+share/games/colobot/help/B/cbot/receive.txt
+share/games/colobot/help/B/cbot/recycle.txt
+share/games/colobot/help/B/cbot/research.txt
+share/games/colobot/help/B/cbot/researched.txt
+share/games/colobot/help/B/cbot/researches.txt
+share/games/colobot/help/B/cbot/retobj.txt
+share/games/colobot/help/B/cbot/return.txt
+share/games/colobot/help/B/cbot/round.txt
+share/games/colobot/help/B/cbot/search.txt
+share/games/colobot/help/B/cbot/send.txt
+share/games/colobot/help/B/cbot/shield.txt
+share/games/colobot/help/B/cbot/sin.txt
+share/games/colobot/help/B/cbot/sizeof.txt
+share/games/colobot/help/B/cbot/sniff.txt
+share/games/colobot/help/B/cbot/space.txt
+share/games/colobot/help/B/cbot/sqrt.txt
+share/games/colobot/help/B/cbot/static.txt
+share/games/colobot/help/B/cbot/strfind.txt
+share/games/colobot/help/B/cbot/string.txt
+share/games/colobot/help/B/cbot/strleft.txt
+share/games/colobot/help/B/cbot/strlen.txt
+share/games/colobot/help/B/cbot/strlower.txt
+share/games/colobot/help/B/cbot/strmid.txt
+share/games/colobot/help/B/cbot/strright.txt
+share/games/colobot/help/B/cbot/strupper.txt
+share/games/colobot/help/B/cbot/strval.txt
+share/games/colobot/help/B/cbot/super.txt
+share/games/colobot/help/B/cbot/switch.txt
+share/games/colobot/help/B/cbot/synchro.txt
+share/games/colobot/help/B/cbot/takeoff.txt
+share/games/colobot/help/B/cbot/tan.txt
+share/games/colobot/help/B/cbot/term.txt
+share/games/colobot/help/B/cbot/testinfo.txt
+share/games/colobot/help/B/cbot/this.txt
+share/games/colobot/help/B/cbot/thump.txt
+share/games/colobot/help/B/cbot/topo.txt
+share/games/colobot/help/B/cbot/true.txt
+share/games/colobot/help/B/cbot/trunc.txt
+share/games/colobot/help/B/cbot/turn.txt
+share/games/colobot/help/B/cbot/type.txt
+share/games/colobot/help/B/cbot/var.txt
+share/games/colobot/help/B/cbot/void.txt
+share/games/colobot/help/B/cbot/wait.txt
+share/games/colobot/help/B/cbot/while.txt
+share/games/colobot/help/B/cbot/writeln.txt
+share/games/colobot/help/B/cheats.txt
+share/games/colobot/help/B/command.txt
+share/games/colobot/help/B/freehelp.txt
+share/games/colobot/help/B/licences.txt
+share/games/colobot/help/B/navig.txt
+share/games/colobot/help/B/object/ant.txt
+share/games/colobot/help/B/object/atomic.txt
+share/games/colobot/help/B/object/barrier.txt
+share/games/colobot/help/B/object/base.txt
+share/games/colobot/help/B/object/bbox.txt
+share/games/colobot/help/B/object/botbc.txt
+share/games/colobot/help/B/object/botbj.txt
+share/games/colobot/help/B/object/botbr.txt
+share/games/colobot/help/B/object/botbs.txt
+share/games/colobot/help/B/object/botdraw.txt
+share/games/colobot/help/B/object/botfc.txt
+share/games/colobot/help/B/object/botfj.txt
+share/games/colobot/help/B/object/botfr.txt
+share/games/colobot/help/B/object/botfs.txt
+share/games/colobot/help/B/object/botgc.txt
+share/games/colobot/help/B/object/botgj.txt
+share/games/colobot/help/B/object/botgr.txt
+share/games/colobot/help/B/object/botgs.txt
+share/games/colobot/help/B/object/botoc.txt
+share/games/colobot/help/B/object/botoj.txt
+share/games/colobot/help/B/object/botor.txt
+share/games/colobot/help/B/object/botos.txt
+share/games/colobot/help/B/object/botphaz.txt
+share/games/colobot/help/B/object/botrecy.txt
+share/games/colobot/help/B/object/botsc.txt
+share/games/colobot/help/B/object/botshld.txt
+share/games/colobot/help/B/object/botsj.txt
+share/games/colobot/help/B/object/botsr.txt
+share/games/colobot/help/B/object/botss.txt
+share/games/colobot/help/B/object/botsub.txt
+share/games/colobot/help/B/object/bottarg.txt
+share/games/colobot/help/B/object/bottr.txt
+share/games/colobot/help/B/object/bottump.txt
+share/games/colobot/help/B/object/bullet.txt
+share/games/colobot/help/B/object/captor.txt
+share/games/colobot/help/B/object/convert.txt
+share/games/colobot/help/B/object/derrick.txt
+share/games/colobot/help/B/object/destroy.txt
+share/games/colobot/help/B/object/egg.txt
+share/games/colobot/help/B/object/energy.txt
+share/games/colobot/help/B/object/enerspot.txt
+share/games/colobot/help/B/object/exchange.txt
+share/games/colobot/help/B/object/factory.txt
+share/games/colobot/help/B/object/flag.txt
+share/games/colobot/help/B/object/goal.txt
+share/games/colobot/help/B/object/human.txt
+share/games/colobot/help/B/object/huston.txt
+share/games/colobot/help/B/object/key.txt
+share/games/colobot/help/B/object/labo.txt
+share/games/colobot/help/B/object/lrv.txt
+share/games/colobot/help/B/object/mine.txt
+share/games/colobot/help/B/object/mother.txt
+share/games/colobot/help/B/object/nest.txt
+share/games/colobot/help/B/object/nuclear.txt
+share/games/colobot/help/B/object/power.txt
+share/games/colobot/help/B/object/radar.txt
+share/games/colobot/help/B/object/repair.txt
+share/games/colobot/help/B/object/research.txt
+share/games/colobot/help/B/object/ruin.txt
+share/games/colobot/help/B/object/safe.txt
+share/games/colobot/help/B/object/spider.txt
+share/games/colobot/help/B/object/start.txt
+share/games/colobot/help/B/object/station.txt
+share/games/colobot/help/B/object/stonspot.txt
+share/games/colobot/help/B/object/target1.txt
+share/games/colobot/help/B/object/target2.txt
+share/games/colobot/help/B/object/titan.txt
+share/games/colobot/help/B/object/titanore.txt
+share/games/colobot/help/B/object/tnt.txt
+share/games/colobot/help/B/object/tower.txt
+share/games/colobot/help/B/object/uranore.txt
+share/games/colobot/help/B/object/uranspot.txt
+share/games/colobot/help/B/object/wasp.txt
+share/games/colobot/help/B/object/waypoint.txt
+share/games/colobot/help/B/object/worm.txt
+share/games/colobot/help/B/object/wreck.txt
+share/games/colobot/help/B/programs/10_FollowPhazer.txt
+share/games/colobot/help/B/programs/1_SwitchCell1.txt
+share/games/colobot/help/B/programs/1_SwitchCell1_link.txt
+share/games/colobot/help/B/programs/2_Recharge1.txt
+share/games/colobot/help/B/programs/2_Recharge1_link.txt
+share/games/colobot/help/B/programs/3_Recharge2.txt
+share/games/colobot/help/B/programs/3_Recharge2_link.txt
+share/games/colobot/help/B/programs/4_CollectTitanium1.txt
+share/games/colobot/help/B/programs/5_CollectTitanium2.txt
+share/games/colobot/help/B/programs/5_CollectTitanium2_link.txt
+share/games/colobot/help/B/programs/6_KillAnt1.txt
+share/games/colobot/help/B/programs/6_KillAnt1_link.txt
+share/games/colobot/help/B/programs/7_CollectTitanium3.txt
+share/games/colobot/help/B/programs/8_ServiceTower1.txt
+share/games/colobot/help/B/programs/8_ServiceTower1_link.txt
+share/games/colobot/help/B/programs/9_terranova.txt
+share/games/colobot/help/B/win.txt
+share/games/colobot/help/C/authors.txt
+share/games/colobot/help/C/battles.txt
+share/games/colobot/help/C/cbot.txt
+share/games/colobot/help/C/cbot/abstime.txt
+share/games/colobot/help/C/cbot/acos.txt
+share/games/colobot/help/C/cbot/aim.txt
+share/games/colobot/help/C/cbot/array.txt
+share/games/colobot/help/C/cbot/asin.txt
+share/games/colobot/help/C/cbot/atan.txt
+share/games/colobot/help/C/cbot/atan2.txt
+share/games/colobot/help/C/cbot/bloc.txt
+share/games/colobot/help/C/cbot/bool.txt
+share/games/colobot/help/C/cbot/break.txt
+share/games/colobot/help/C/cbot/build.txt
+share/games/colobot/help/C/cbot/buildingenabled.txt
+share/games/colobot/help/C/cbot/busy.txt
+share/games/colobot/help/C/cbot/canbuild.txt
+share/games/colobot/help/C/cbot/canresearch.txt
+share/games/colobot/help/C/cbot/category.txt
+share/games/colobot/help/C/cbot/ceil.txt
+share/games/colobot/help/C/cbot/class.txt
+share/games/colobot/help/C/cbot/close.txt
+share/games/colobot/help/C/cbot/colors.txt
+share/games/colobot/help/C/cbot/cond.txt
+share/games/colobot/help/C/cbot/continue.txt
+share/games/colobot/help/C/cbot/cos.txt
+share/games/colobot/help/C/cbot/deletef.txt
+share/games/colobot/help/C/cbot/delinfo.txt
+share/games/colobot/help/C/cbot/destroy.txt
+share/games/colobot/help/C/cbot/detect.txt
+share/games/colobot/help/C/cbot/direct.txt
+share/games/colobot/help/C/cbot/dist.txt
+share/games/colobot/help/C/cbot/dist2d.txt
+share/games/colobot/help/C/cbot/do.txt
+share/games/colobot/help/C/cbot/drop.txt
+share/games/colobot/help/C/cbot/eof.txt
+share/games/colobot/help/C/cbot/errmode.txt
+share/games/colobot/help/C/cbot/expr.txt
+share/games/colobot/help/C/cbot/extends.txt
+share/games/colobot/help/C/cbot/extern.txt
+share/games/colobot/help/C/cbot/factory.txt
+share/games/colobot/help/C/cbot/false.txt
+share/games/colobot/help/C/cbot/file.txt
+share/games/colobot/help/C/cbot/fire.txt
+share/games/colobot/help/C/cbot/flatgrnd.txt
+share/games/colobot/help/C/cbot/flatspace.txt
+share/games/colobot/help/C/cbot/float.txt
+share/games/colobot/help/C/cbot/floor.txt
+share/games/colobot/help/C/cbot/for.txt
+share/games/colobot/help/C/cbot/function.txt
+share/games/colobot/help/C/cbot/goto.txt
+share/games/colobot/help/C/cbot/grab.txt
+share/games/colobot/help/C/cbot/if.txt
+share/games/colobot/help/C/cbot/int.txt
+share/games/colobot/help/C/cbot/jet.txt
+share/games/colobot/help/C/cbot/message.txt
+share/games/colobot/help/C/cbot/motor.txt
+share/games/colobot/help/C/cbot/move.txt
+share/games/colobot/help/C/cbot/nan.txt
+share/games/colobot/help/C/cbot/new.txt
+share/games/colobot/help/C/cbot/null.txt
+share/games/colobot/help/C/cbot/object.txt
+share/games/colobot/help/C/cbot/open.txt
+share/games/colobot/help/C/cbot/openfile.txt
+share/games/colobot/help/C/cbot/pencolor.txt
+share/games/colobot/help/C/cbot/pendown.txt
+share/games/colobot/help/C/cbot/penup.txt
+share/games/colobot/help/C/cbot/penwidth.txt
+share/games/colobot/help/C/cbot/point.txt
+share/games/colobot/help/C/cbot/pointer.txt
+share/games/colobot/help/C/cbot/pow.txt
+share/games/colobot/help/C/cbot/private.txt
+share/games/colobot/help/C/cbot/produce.txt
+share/games/colobot/help/C/cbot/protected.txt
+share/games/colobot/help/C/cbot/public.txt
+share/games/colobot/help/C/cbot/radar.txt
+share/games/colobot/help/C/cbot/radarall.txt
+share/games/colobot/help/C/cbot/rand.txt
+share/games/colobot/help/C/cbot/readln.txt
+share/games/colobot/help/C/cbot/receive.txt
+share/games/colobot/help/C/cbot/recycle.txt
+share/games/colobot/help/C/cbot/research.txt
+share/games/colobot/help/C/cbot/researched.txt
+share/games/colobot/help/C/cbot/researches.txt
+share/games/colobot/help/C/cbot/retobj.txt
+share/games/colobot/help/C/cbot/return.txt
+share/games/colobot/help/C/cbot/round.txt
+share/games/colobot/help/C/cbot/search.txt
+share/games/colobot/help/C/cbot/send.txt
+share/games/colobot/help/C/cbot/shield.txt
+share/games/colobot/help/C/cbot/sin.txt
+share/games/colobot/help/C/cbot/sizeof.txt
+share/games/colobot/help/C/cbot/sniff.txt
+share/games/colobot/help/C/cbot/space.txt
+share/games/colobot/help/C/cbot/sqrt.txt
+share/games/colobot/help/C/cbot/static.txt
+share/games/colobot/help/C/cbot/strfind.txt
+share/games/colobot/help/C/cbot/string.txt
+share/games/colobot/help/C/cbot/strleft.txt
+share/games/colobot/help/C/cbot/strlen.txt
+share/games/colobot/help/C/cbot/strlower.txt
+share/games/colobot/help/C/cbot/strmid.txt
+share/games/colobot/help/C/cbot/strright.txt
+share/games/colobot/help/C/cbot/strupper.txt
+share/games/colobot/help/C/cbot/strval.txt
+share/games/colobot/help/C/cbot/super.txt
+share/games/colobot/help/C/cbot/switch.txt
+share/games/colobot/help/C/cbot/synchro.txt
+share/games/colobot/help/C/cbot/takeoff.txt
+share/games/colobot/help/C/cbot/tan.txt
+share/games/colobot/help/C/cbot/term.txt
+share/games/colobot/help/C/cbot/testinfo.txt
+share/games/colobot/help/C/cbot/this.txt
+share/games/colobot/help/C/cbot/thump.txt
+share/games/colobot/help/C/cbot/topo.txt
+share/games/colobot/help/C/cbot/true.txt
+share/games/colobot/help/C/cbot/trunc.txt
+share/games/colobot/help/C/cbot/turn.txt
+share/games/colobot/help/C/cbot/type.txt
+share/games/colobot/help/C/cbot/var.txt
+share/games/colobot/help/C/cbot/void.txt
+share/games/colobot/help/C/cbot/wait.txt
+share/games/colobot/help/C/cbot/while.txt
+share/games/colobot/help/C/cbot/writeln.txt
+share/games/colobot/help/C/cheats.txt
+share/games/colobot/help/C/command.txt
+share/games/colobot/help/C/freehelp.txt
+share/games/colobot/help/C/licences.txt
+share/games/colobot/help/C/navig.txt
+share/games/colobot/help/C/object/ant.txt
+share/games/colobot/help/C/object/atomic.txt
+share/games/colobot/help/C/object/barrier.txt
+share/games/colobot/help/C/object/base.txt
+share/games/colobot/help/C/object/bbox.txt
+share/games/colobot/help/C/object/botbc.txt
+share/games/colobot/help/C/object/botbj.txt
+share/games/colobot/help/C/object/botbr.txt
+share/games/colobot/help/C/object/botbs.txt
+share/games/colobot/help/C/object/botdraw.txt
+share/games/colobot/help/C/object/botfc.txt
+share/games/colobot/help/C/object/botfj.txt
+share/games/colobot/help/C/object/botfr.txt
+share/games/colobot/help/C/object/botfs.txt
+share/games/colobot/help/C/object/botgc.txt
+share/games/colobot/help/C/object/botgj.txt
+share/games/colobot/help/C/object/botgr.txt
+share/games/colobot/help/C/object/botgs.txt
+share/games/colobot/help/C/object/botoc.txt
+share/games/colobot/help/C/object/botoj.txt
+share/games/colobot/help/C/object/botor.txt
+share/games/colobot/help/C/object/botos.txt
+share/games/colobot/help/C/object/botphaz.txt
+share/games/colobot/help/C/object/botrecy.txt
+share/games/colobot/help/C/object/botsc.txt
+share/games/colobot/help/C/object/botshld.txt
+share/games/colobot/help/C/object/botsj.txt
+share/games/colobot/help/C/object/botsr.txt
+share/games/colobot/help/C/object/botss.txt
+share/games/colobot/help/C/object/botsub.txt
+share/games/colobot/help/C/object/bottarg.txt
+share/games/colobot/help/C/object/bottr.txt
+share/games/colobot/help/C/object/bottump.txt
+share/games/colobot/help/C/object/bullet.txt
+share/games/colobot/help/C/object/captor.txt
+share/games/colobot/help/C/object/convert.txt
+share/games/colobot/help/C/object/derrick.txt
+share/games/colobot/help/C/object/destroy.txt
+share/games/colobot/help/C/object/egg.txt
+share/games/colobot/help/C/object/energy.txt
+share/games/colobot/help/C/object/enerspot.txt
+share/games/colobot/help/C/object/exchange.txt
+share/games/colobot/help/C/object/factory.txt
+share/games/colobot/help/C/object/flag.txt
+share/games/colobot/help/C/object/goal.txt
+share/games/colobot/help/C/object/human.txt
+share/games/colobot/help/C/object/huston.txt
+share/games/colobot/help/C/object/key.txt
+share/games/colobot/help/C/object/labo.txt
+share/games/colobot/help/C/object/lrv.txt
+share/games/colobot/help/C/object/mine.txt
+share/games/colobot/help/C/object/mother.txt
+share/games/colobot/help/C/object/nest.txt
+share/games/colobot/help/C/object/nuclear.txt
+share/games/colobot/help/C/object/power.txt
+share/games/colobot/help/C/object/radar.txt
+share/games/colobot/help/C/object/repair.txt
+share/games/colobot/help/C/object/research.txt
+share/games/colobot/help/C/object/ruin.txt
+share/games/colobot/help/C/object/safe.txt
+share/games/colobot/help/C/object/spider.txt
+share/games/colobot/help/C/object/start.txt
+share/games/colobot/help/C/object/station.txt
+share/games/colobot/help/C/object/stonspot.txt
+share/games/colobot/help/C/object/target1.txt
+share/games/colobot/help/C/object/target2.txt
+share/games/colobot/help/C/object/titan.txt
+share/games/colobot/help/C/object/titanore.txt
+share/games/colobot/help/C/object/tnt.txt
+share/games/colobot/help/C/object/tower.txt
+share/games/colobot/help/C/object/uranore.txt
+share/games/colobot/help/C/object/uranspot.txt
+share/games/colobot/help/C/object/wasp.txt
+share/games/colobot/help/C/object/waypoint.txt
+share/games/colobot/help/C/object/worm.txt
+share/games/colobot/help/C/object/wreck.txt
+share/games/colobot/help/C/programs/10_FollowPhazer.txt
+share/games/colobot/help/C/programs/1_SwitchCell1.txt
+share/games/colobot/help/C/programs/1_SwitchCell1_link.txt
+share/games/colobot/help/C/programs/2_Recharge1.txt
+share/games/colobot/help/C/programs/2_Recharge1_link.txt
+share/games/colobot/help/C/programs/3_Recharge2.txt
+share/games/colobot/help/C/programs/3_Recharge2_link.txt
+share/games/colobot/help/C/programs/4_CollectTitanium1.txt
+share/games/colobot/help/C/programs/5_CollectTitanium2.txt
+share/games/colobot/help/C/programs/5_CollectTitanium2_link.txt
+share/games/colobot/help/C/programs/6_KillAnt1.txt
+share/games/colobot/help/C/programs/6_KillAnt1_link.txt
+share/games/colobot/help/C/programs/7_CollectTitanium3.txt
+share/games/colobot/help/C/programs/8_ServiceTower1.txt
+share/games/colobot/help/C/programs/8_ServiceTower1_link.txt
+share/games/colobot/help/C/programs/9_terranova.txt
+share/games/colobot/help/C/win.txt
+share/games/colobot/help/D/authors.txt
+share/games/colobot/help/D/battles.txt
+share/games/colobot/help/D/cbot.txt
+share/games/colobot/help/D/cbot/abstime.txt
+share/games/colobot/help/D/cbot/acos.txt
+share/games/colobot/help/D/cbot/aim.txt
+share/games/colobot/help/D/cbot/array.txt
+share/games/colobot/help/D/cbot/asin.txt
+share/games/colobot/help/D/cbot/atan.txt
+share/games/colobot/help/D/cbot/atan2.txt
+share/games/colobot/help/D/cbot/bloc.txt
+share/games/colobot/help/D/cbot/bool.txt
+share/games/colobot/help/D/cbot/break.txt
+share/games/colobot/help/D/cbot/build.txt
+share/games/colobot/help/D/cbot/buildingenabled.txt
+share/games/colobot/help/D/cbot/busy.txt
+share/games/colobot/help/D/cbot/canbuild.txt
+share/games/colobot/help/D/cbot/canresearch.txt
+share/games/colobot/help/D/cbot/category.txt
+share/games/colobot/help/D/cbot/ceil.txt
+share/games/colobot/help/D/cbot/class.txt
+share/games/colobot/help/D/cbot/close.txt
+share/games/colobot/help/D/cbot/colors.txt
+share/games/colobot/help/D/cbot/cond.txt
+share/games/colobot/help/D/cbot/continue.txt
+share/games/colobot/help/D/cbot/cos.txt
+share/games/colobot/help/D/cbot/deletef.txt
+share/games/colobot/help/D/cbot/delinfo.txt
+share/games/colobot/help/D/cbot/destroy.txt
+share/games/colobot/help/D/cbot/detect.txt
+share/games/colobot/help/D/cbot/direct.txt
+share/games/colobot/help/D/cbot/dist.txt
+share/games/colobot/help/D/cbot/dist2d.txt
+share/games/colobot/help/D/cbot/do.txt
+share/games/colobot/help/D/cbot/drop.txt
+share/games/colobot/help/D/cbot/eof.txt
+share/games/colobot/help/D/cbot/errmode.txt
+share/games/colobot/help/D/cbot/expr.txt
+share/games/colobot/help/D/cbot/extends.txt
+share/games/colobot/help/D/cbot/extern.txt
+share/games/colobot/help/D/cbot/factory.txt
+share/games/colobot/help/D/cbot/false.txt
+share/games/colobot/help/D/cbot/file.txt
+share/games/colobot/help/D/cbot/fire.txt
+share/games/colobot/help/D/cbot/flatgrnd.txt
+share/games/colobot/help/D/cbot/flatspace.txt
+share/games/colobot/help/D/cbot/float.txt
+share/games/colobot/help/D/cbot/floor.txt
+share/games/colobot/help/D/cbot/for.txt
+share/games/colobot/help/D/cbot/function.txt
+share/games/colobot/help/D/cbot/goto.txt
+share/games/colobot/help/D/cbot/grab.txt
+share/games/colobot/help/D/cbot/if.txt
+share/games/colobot/help/D/cbot/int.txt
+share/games/colobot/help/D/cbot/jet.txt
+share/games/colobot/help/D/cbot/message.txt
+share/games/colobot/help/D/cbot/motor.txt
+share/games/colobot/help/D/cbot/move.txt
+share/games/colobot/help/D/cbot/nan.txt
+share/games/colobot/help/D/cbot/new.txt
+share/games/colobot/help/D/cbot/null.txt
+share/games/colobot/help/D/cbot/object.txt
+share/games/colobot/help/D/cbot/open.txt
+share/games/colobot/help/D/cbot/openfile.txt
+share/games/colobot/help/D/cbot/pencolor.txt
+share/games/colobot/help/D/cbot/pendown.txt
+share/games/colobot/help/D/cbot/penup.txt
+share/games/colobot/help/D/cbot/penwidth.txt
+share/games/colobot/help/D/cbot/point.txt
+share/games/colobot/help/D/cbot/pointer.txt
+share/games/colobot/help/D/cbot/pow.txt
+share/games/colobot/help/D/cbot/private.txt
+share/games/colobot/help/D/cbot/produce.txt
+share/games/colobot/help/D/cbot/protected.txt
+share/games/colobot/help/D/cbot/public.txt
+share/games/colobot/help/D/cbot/radar.txt
+share/games/colobot/help/D/cbot/radarall.txt
+share/games/colobot/help/D/cbot/rand.txt
+share/games/colobot/help/D/cbot/readln.txt
+share/games/colobot/help/D/cbot/receive.txt
+share/games/colobot/help/D/cbot/recycle.txt
+share/games/colobot/help/D/cbot/research.txt
+share/games/colobot/help/D/cbot/researched.txt
+share/games/colobot/help/D/cbot/researches.txt
+share/games/colobot/help/D/cbot/retobj.txt
+share/games/colobot/help/D/cbot/return.txt
+share/games/colobot/help/D/cbot/round.txt
+share/games/colobot/help/D/cbot/search.txt
+share/games/colobot/help/D/cbot/send.txt
+share/games/colobot/help/D/cbot/shield.txt
+share/games/colobot/help/D/cbot/sin.txt
+share/games/colobot/help/D/cbot/sizeof.txt
+share/games/colobot/help/D/cbot/sniff.txt
+share/games/colobot/help/D/cbot/space.txt
+share/games/colobot/help/D/cbot/sqrt.txt
+share/games/colobot/help/D/cbot/static.txt
+share/games/colobot/help/D/cbot/strfind.txt
+share/games/colobot/help/D/cbot/string.txt
+share/games/colobot/help/D/cbot/strleft.txt
+share/games/colobot/help/D/cbot/strlen.txt
+share/games/colobot/help/D/cbot/strlower.txt
+share/games/colobot/help/D/cbot/strmid.txt
+share/games/colobot/help/D/cbot/strright.txt
+share/games/colobot/help/D/cbot/strupper.txt
+share/games/colobot/help/D/cbot/strval.txt
+share/games/colobot/help/D/cbot/super.txt
+share/games/colobot/help/D/cbot/switch.txt
+share/games/colobot/help/D/cbot/synchro.txt
+share/games/colobot/help/D/cbot/takeoff.txt
+share/games/colobot/help/D/cbot/tan.txt
+share/games/colobot/help/D/cbot/term.txt
+share/games/colobot/help/D/cbot/testinfo.txt
+share/games/colobot/help/D/cbot/this.txt
+share/games/colobot/help/D/cbot/thump.txt
+share/games/colobot/help/D/cbot/topo.txt
+share/games/colobot/help/D/cbot/true.txt
+share/games/colobot/help/D/cbot/trunc.txt
+share/games/colobot/help/D/cbot/turn.txt
+share/games/colobot/help/D/cbot/type.txt
+share/games/colobot/help/D/cbot/var.txt
+share/games/colobot/help/D/cbot/void.txt
+share/games/colobot/help/D/cbot/wait.txt
+share/games/colobot/help/D/cbot/while.txt
+share/games/colobot/help/D/cbot/writeln.txt
+share/games/colobot/help/D/cheats.txt
+share/games/colobot/help/D/command.txt
+share/games/colobot/help/D/freehelp.txt
+share/games/colobot/help/D/licences.txt
+share/games/colobot/help/D/navig.txt
+share/games/colobot/help/D/object/ant.txt
+share/games/colobot/help/D/object/atomic.txt
+share/games/colobot/help/D/object/barrier.txt
+share/games/colobot/help/D/object/base.txt
+share/games/colobot/help/D/object/bbox.txt
+share/games/colobot/help/D/object/botbc.txt
+share/games/colobot/help/D/object/botbj.txt
+share/games/colobot/help/D/object/botbr.txt
+share/games/colobot/help/D/object/botbs.txt
+share/games/colobot/help/D/object/botdraw.txt
+share/games/colobot/help/D/object/botfc.txt
+share/games/colobot/help/D/object/botfj.txt
+share/games/colobot/help/D/object/botfr.txt
+share/games/colobot/help/D/object/botfs.txt
+share/games/colobot/help/D/object/botgc.txt
+share/games/colobot/help/D/object/botgj.txt
+share/games/colobot/help/D/object/botgr.txt
+share/games/colobot/help/D/object/botgs.txt
+share/games/colobot/help/D/object/botoc.txt
+share/games/colobot/help/D/object/botoj.txt
+share/games/colobot/help/D/object/botor.txt
+share/games/colobot/help/D/object/botos.txt
+share/games/colobot/help/D/object/botphaz.txt
+share/games/colobot/help/D/object/botrecy.txt
+share/games/colobot/help/D/object/botsc.txt
+share/games/colobot/help/D/object/botshld.txt
+share/games/colobot/help/D/object/botsj.txt
+share/games/colobot/help/D/object/botsr.txt
+share/games/colobot/help/D/object/botss.txt
+share/games/colobot/help/D/object/botsub.txt
+share/games/colobot/help/D/object/bottarg.txt
+share/games/colobot/help/D/object/bottr.txt
+share/games/colobot/help/D/object/bottump.txt
+share/games/colobot/help/D/object/bullet.txt
+share/games/colobot/help/D/object/captor.txt
+share/games/colobot/help/D/object/convert.txt
+share/games/colobot/help/D/object/derrick.txt
+share/games/colobot/help/D/object/destroy.txt
+share/games/colobot/help/D/object/egg.txt
+share/games/colobot/help/D/object/energy.txt
+share/games/colobot/help/D/object/enerspot.txt
+share/games/colobot/help/D/object/exchange.txt
+share/games/colobot/help/D/object/factory.txt
+share/games/colobot/help/D/object/flag.txt
+share/games/colobot/help/D/object/goal.txt
+share/games/colobot/help/D/object/human.txt
+share/games/colobot/help/D/object/huston.txt
+share/games/colobot/help/D/object/key.txt
+share/games/colobot/help/D/object/labo.txt
+share/games/colobot/help/D/object/lrv.txt
+share/games/colobot/help/D/object/mine.txt
+share/games/colobot/help/D/object/mother.txt
+share/games/colobot/help/D/object/nest.txt
+share/games/colobot/help/D/object/nuclear.txt
+share/games/colobot/help/D/object/power.txt
+share/games/colobot/help/D/object/radar.txt
+share/games/colobot/help/D/object/repair.txt
+share/games/colobot/help/D/object/research.txt
+share/games/colobot/help/D/object/ruin.txt
+share/games/colobot/help/D/object/safe.txt
+share/games/colobot/help/D/object/spider.txt
+share/games/colobot/help/D/object/start.txt
+share/games/colobot/help/D/object/station.txt
+share/games/colobot/help/D/object/stonspot.txt
+share/games/colobot/help/D/object/target1.txt
+share/games/colobot/help/D/object/target2.txt
+share/games/colobot/help/D/object/titan.txt
+share/games/colobot/help/D/object/titanore.txt
+share/games/colobot/help/D/object/tnt.txt
+share/games/colobot/help/D/object/tower.txt
+share/games/colobot/help/D/object/uranore.txt
+share/games/colobot/help/D/object/uranspot.txt
+share/games/colobot/help/D/object/wasp.txt
+share/games/colobot/help/D/object/waypoint.txt
+share/games/colobot/help/D/object/worm.txt
+share/games/colobot/help/D/object/wreck.txt
+share/games/colobot/help/D/programs/10_FollowPhazer.txt
+share/games/colobot/help/D/programs/1_SwitchCell1.txt
+share/games/colobot/help/D/programs/1_SwitchCell1_link.txt
+share/games/colobot/help/D/programs/2_Recharge1.txt
+share/games/colobot/help/D/programs/2_Recharge1_link.txt
+share/games/colobot/help/D/programs/3_Recharge2.txt
+share/games/colobot/help/D/programs/3_Recharge2_link.txt
+share/games/colobot/help/D/programs/4_CollectTitanium1.txt
+share/games/colobot/help/D/programs/5_CollectTitanium2.txt
+share/games/colobot/help/D/programs/5_CollectTitanium2_link.txt
+share/games/colobot/help/D/programs/6_KillAnt1.txt
+share/games/colobot/help/D/programs/6_KillAnt1_link.txt
+share/games/colobot/help/D/programs/7_CollectTitanium3.txt
+share/games/colobot/help/D/programs/8_ServiceTower1.txt
+share/games/colobot/help/D/programs/8_ServiceTower1_link.txt
+share/games/colobot/help/D/programs/9_terranova.txt
+share/games/colobot/help/D/win.txt
+share/games/colobot/help/E/authors.txt
+share/games/colobot/help/E/battles.txt
+share/games/colobot/help/E/cbot.txt
+share/games/colobot/help/E/cbot/abstime.txt
+share/games/colobot/help/E/cbot/acos.txt
+share/games/colobot/help/E/cbot/aim.txt
+share/games/colobot/help/E/cbot/array.txt
+share/games/colobot/help/E/cbot/asin.txt
+share/games/colobot/help/E/cbot/atan.txt
+share/games/colobot/help/E/cbot/atan2.txt
+share/games/colobot/help/E/cbot/bloc.txt
+share/games/colobot/help/E/cbot/bool.txt
+share/games/colobot/help/E/cbot/break.txt
+share/games/colobot/help/E/cbot/build.txt
+share/games/colobot/help/E/cbot/buildingenabled.txt
+share/games/colobot/help/E/cbot/busy.txt
+share/games/colobot/help/E/cbot/canbuild.txt
+share/games/colobot/help/E/cbot/canresearch.txt
+share/games/colobot/help/E/cbot/category.txt
+share/games/colobot/help/E/cbot/ceil.txt
+share/games/colobot/help/E/cbot/class.txt
+share/games/colobot/help/E/cbot/close.txt
+share/games/colobot/help/E/cbot/colors.txt
+share/games/colobot/help/E/cbot/cond.txt
+share/games/colobot/help/E/cbot/continue.txt
+share/games/colobot/help/E/cbot/cos.txt
+share/games/colobot/help/E/cbot/deletef.txt
+share/games/colobot/help/E/cbot/delinfo.txt
+share/games/colobot/help/E/cbot/destroy.txt
+share/games/colobot/help/E/cbot/detect.txt
+share/games/colobot/help/E/cbot/direct.txt
+share/games/colobot/help/E/cbot/dist.txt
+share/games/colobot/help/E/cbot/dist2d.txt
+share/games/colobot/help/E/cbot/do.txt
+share/games/colobot/help/E/cbot/drop.txt
+share/games/colobot/help/E/cbot/eof.txt
+share/games/colobot/help/E/cbot/errmode.txt
+share/games/colobot/help/E/cbot/expr.txt
+share/games/colobot/help/E/cbot/extends.txt
+share/games/colobot/help/E/cbot/extern.txt
+share/games/colobot/help/E/cbot/factory.txt
+share/games/colobot/help/E/cbot/false.txt
+share/games/colobot/help/E/cbot/file.txt
+share/games/colobot/help/E/cbot/fire.txt
+share/games/colobot/help/E/cbot/flatgrnd.txt
+share/games/colobot/help/E/cbot/flatspace.txt
+share/games/colobot/help/E/cbot/float.txt
+share/games/colobot/help/E/cbot/floor.txt
+share/games/colobot/help/E/cbot/for.txt
+share/games/colobot/help/E/cbot/function.txt
+share/games/colobot/help/E/cbot/goto.txt
+share/games/colobot/help/E/cbot/grab.txt
+share/games/colobot/help/E/cbot/if.txt
+share/games/colobot/help/E/cbot/int.txt
+share/games/colobot/help/E/cbot/jet.txt
+share/games/colobot/help/E/cbot/message.txt
+share/games/colobot/help/E/cbot/motor.txt
+share/games/colobot/help/E/cbot/move.txt
+share/games/colobot/help/E/cbot/nan.txt
+share/games/colobot/help/E/cbot/new.txt
+share/games/colobot/help/E/cbot/null.txt
+share/games/colobot/help/E/cbot/object.txt
+share/games/colobot/help/E/cbot/open.txt
+share/games/colobot/help/E/cbot/openfile.txt
+share/games/colobot/help/E/cbot/pencolor.txt
+share/games/colobot/help/E/cbot/pendown.txt
+share/games/colobot/help/E/cbot/penup.txt
+share/games/colobot/help/E/cbot/penwidth.txt
+share/games/colobot/help/E/cbot/point.txt
+share/games/colobot/help/E/cbot/pointer.txt
+share/games/colobot/help/E/cbot/pow.txt
+share/games/colobot/help/E/cbot/private.txt
+share/games/colobot/help/E/cbot/produce.txt
+share/games/colobot/help/E/cbot/protected.txt
+share/games/colobot/help/E/cbot/public.txt
+share/games/colobot/help/E/cbot/radar.txt
+share/games/colobot/help/E/cbot/radarall.txt
+share/games/colobot/help/E/cbot/rand.txt
+share/games/colobot/help/E/cbot/readln.txt
+share/games/colobot/help/E/cbot/receive.txt
+share/games/colobot/help/E/cbot/recycle.txt
+share/games/colobot/help/E/cbot/research.txt
+share/games/colobot/help/E/cbot/researched.txt
+share/games/colobot/help/E/cbot/researches.txt
+share/games/colobot/help/E/cbot/retobj.txt
+share/games/colobot/help/E/cbot/return.txt
+share/games/colobot/help/E/cbot/round.txt
+share/games/colobot/help/E/cbot/search.txt
+share/games/colobot/help/E/cbot/send.txt
+share/games/colobot/help/E/cbot/shield.txt
+share/games/colobot/help/E/cbot/sin.txt
+share/games/colobot/help/E/cbot/sizeof.txt
+share/games/colobot/help/E/cbot/sniff.txt
+share/games/colobot/help/E/cbot/space.txt
+share/games/colobot/help/E/cbot/sqrt.txt
+share/games/colobot/help/E/cbot/static.txt
+share/games/colobot/help/E/cbot/strfind.txt
+share/games/colobot/help/E/cbot/string.txt
+share/games/colobot/help/E/cbot/strleft.txt
+share/games/colobot/help/E/cbot/strlen.txt
+share/games/colobot/help/E/cbot/strlower.txt
+share/games/colobot/help/E/cbot/strmid.txt
+share/games/colobot/help/E/cbot/strright.txt
+share/games/colobot/help/E/cbot/strupper.txt
+share/games/colobot/help/E/cbot/strval.txt
+share/games/colobot/help/E/cbot/super.txt
+share/games/colobot/help/E/cbot/switch.txt
+share/games/colobot/help/E/cbot/synchro.txt

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***


More information about the svn-ports-all mailing list