diff options
author | mezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-10-13 01:57:57 +0800 |
---|---|---|
committer | mezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-10-13 01:57:57 +0800 |
commit | c0e29fc2d4e57477b9289d1a9f259ded510790fa (patch) | |
tree | 0ad190cb5307076e94e1468a3a3106a3dafd741b | |
parent | 41bde74fc915cc7da15d6e9b247fd489c7488e40 (diff) | |
download | marcuscom-ports-c0e29fc2d4e57477b9289d1a9f259ded510790fa.tar marcuscom-ports-c0e29fc2d4e57477b9289d1a9f259ded510790fa.tar.gz marcuscom-ports-c0e29fc2d4e57477b9289d1a9f259ded510790fa.tar.bz2 marcuscom-ports-c0e29fc2d4e57477b9289d1a9f259ded510790fa.tar.lz marcuscom-ports-c0e29fc2d4e57477b9289d1a9f259ded510790fa.tar.xz marcuscom-ports-c0e29fc2d4e57477b9289d1a9f259ded510790fa.tar.zst marcuscom-ports-c0e29fc2d4e57477b9289d1a9f259ded510790fa.zip |
Fix the build with new freetype, copied from graphics/crystalspace with a bit
tweak to make the patch apply.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@7742 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r-- | graphics/crystalspace-devel/Makefile | 186 | ||||
-rw-r--r-- | graphics/crystalspace-devel/distinfo | 3 | ||||
-rw-r--r-- | graphics/crystalspace-devel/files/patch-configure | 18 | ||||
-rw-r--r-- | graphics/crystalspace-devel/files/patch-plugins-mesh-sprcal3d-object_sprcal3d.cpp | 75 | ||||
-rw-r--r-- | graphics/crystalspace-devel/files/patch-plugins_font_server_freefnt2_freefnt2.cpp | 214 | ||||
-rw-r--r-- | graphics/crystalspace-devel/pkg-descr | 11 | ||||
-rw-r--r-- | graphics/crystalspace-devel/pkg-plist | 1615 |
7 files changed, 2122 insertions, 0 deletions
diff --git a/graphics/crystalspace-devel/Makefile b/graphics/crystalspace-devel/Makefile new file mode 100644 index 000000000..aa9af9a73 --- /dev/null +++ b/graphics/crystalspace-devel/Makefile @@ -0,0 +1,186 @@ +# New ports collection makefile for: Crystal Space 3d +# Date created: 2005-11-19 +# Whom: Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe> +# +# $FreeBSD$ +# + +PORTNAME= crystalspace +PORTVERSION= 20060710 +PORTREVISION= 3 +CATEGORIES= graphics +MASTER_SITES= http://alex.foxybanana.com/freebsd/ +PKGNAMESUFFIX= -devel +DIST_SUBDIR= ${PORTNAME} + +MAINTAINER= acm@FreeBSD.org +COMMENT= Free and portable 3D Game Development Kit + +BUILD_DEPENDS= nasm:${PORTSDIR}/devel/nasm \ + swig:${PORTSDIR}/devel/swig13 \ + jam:${PORTSDIR}/devel/jam +LIB_DEPENDS= png.5:${PORTSDIR}/graphics/png \ + jpeg.9:${PORTSDIR}/graphics/jpeg \ + aa.1:${PORTSDIR}/graphics/aalib \ + openal.0:${PORTSDIR}/audio/openal \ + alut.1:${PORTSDIR}/audio/freealut \ + CEGUIBase.0:${PORTSDIR}/graphics/cegui + +USE_BZIP2= yes +GNU_CONFIGURE= yes +USE_GCC= 3.4+ +USE_GL= yes +LDFLAGS= -L${LOCALBASE}/lib -L${X11BASE}/lib ${PTHREAD_LIBS} +CPPFLAGS= -I${LOCALBASE}/include -I${X11BASE}/include +CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} +MAKE_ENV= CC="${CC}" CFLAGS="${CFLAGS} ${CXX}" \ + CPPFLAGS="${CPPFLAGS} "LDFLAGS="${LDFLAGS}" +CONFIGURE_ARGS+= --disable-cpu-specific-optimizations \ + --disable-make-emulation \ + --prefix=${PREFIX} +DOCSDIR= share/doc/${PORTNAME}-0.99 +JAM_CMD= ${LOCALBASE}/bin/jam +JAM_ARGS= -qa + +OPTIONS= DEBUG "Build with debugging information" off \ + PYTHON "PYTHON interface" on \ + PERL "PERL interface" on \ + LCMS "Little Color Management System support" on \ + MNG "MNG/JNG graphic files support" on \ + MIKMOD "MIKMOD support" on \ + VORBIS "Ogg/Vorbis sound plugin support" on \ + 3DS "3DS files support" on \ + ODE "Plugin providing physics through ODE" on \ + FREETYPE2 "FREETYPE2 support" on \ + CAL3D "Skeletal based 3D character animation support" on \ + SDL "SDL support" on \ + CACA "LIBCACA support" on \ + CPPUNIT "The C++ Unit Test Library" on \ + BFD "Universal BFD library from the GNU binutils" on + +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500000 +BROKEN= Does not compile on 4.x +.endif + +.if ${ARCH} == "sparc64" +BROKEN= Does not compile on sparc64 +.endif + +.if !defined(WITHOUT_DEBUG) +CONFIGURE_ARGS+= --enable-debug=yes +.else +CONFIGURE_ARGS+= --enable-debug=no +.endif + +.if !defined(WITHOUT_PYTHON) +USE_PYTHON= yes +.include <${PORTSDIR}/Mk/bsd.python.mk> +.else +CONFIGURE_ARGS+= --without-python +.endif + +.if !defined(WITHOUT_PERL) +USE_PERL5= yes +.else +CONFIGURE_ARGS+= --without-perl +.endif + +.if !defined(WITHOUT_LCMS) +LIB_DEPENDS+= lcms.1:${PORTSDIR}/graphics/lcms +.else +CONFIGURE_ARGS+= --without-lcms +.endif + +.if !defined(WITHOUT_MNG) +LIB_DEPENDS+= mng.1:${PORTSDIR}/graphics/libmng +.else +CONFIGURE_ARGS+= --without-mng +.endif + +.if !defined(WITHOUT_MIKMOD) +LIB_DEPENDS+= mikmod.2:${PORTSDIR}/audio/libmikmod +.else +CONFIGURE_ARGS+= --without-mikmod +.endif + +.if !defined(WITHOUT_VORBIS) +LIB_DEPENDS+= vorbis:${PORTSDIR}/audio/libvorbis +.else +CONFIGURE_ARGS+= --without-ogg \ + --without-vorbis +.endif + +.if !defined(WITHOUT_3DS) +LIB_DEPENDS+= 3ds.1:${PORTSDIR}/graphics/lib3ds +.else +CONFIGURE_ARGS+= --without-3ds +.endif + +.if !defined(WITHOUT_ODE) +BUILD_DEPENDS+= ${X11BASE}/lib/libode.a:${PORTSDIR}/devel/ode +CONFIGURE_ARGS+= --with-ode=${X11BASE} +.else +CONFIGURE_ARGS+= --without-ode +.endif + +.if !defined(WITHOUT_FREETYPE2) +LIB_DEPENDS+= freetype.9:${PORTSDIR}/print/freetype2 +.else +CONFIGURE_ARGS+= --without-freetype2 +.endif + +.if !defined(WITHOUT_CAL3D) +LIB_DEPENDS+= cal3d.12:${PORTSDIR}/graphics/cal3d +.else +CONFIGURE_ARGS+= --without-cal3d +.endif + +.if !defined(WITHOUT_SDL) +USE_SDL= sdl +.else +CONFIGURE_ARGS+= --without-sdl +.endif + +.if !defined(WITHOUT_CACA) +BUILD_DEPENDS+= ${LOCALBASE}/lib/libcaca.a:${PORTSDIR}/graphics/libcaca +.else +CONFIGURE_ARGS+= --without-caca +.endif + +.if !defined(WITHOUT_CPPUNIT) +LIB_DEPENDS+= cppunit-1.10:${PORTSDIR}/devel/cppunit +.else +CONFIGURE_ARGS+= --without-cppunit +.endif + +.if !defined(WITHOUT_BFD) +BUILD_DEPENDS+= ${LOCALBASE}/lib/libbfd.a:${PORTSDIR}/devel/libbfd +.else +CONFIGURE_ARGS+= --without-bfd +.endif + +pre-configure: + @${REINPLACE_CMD} -e 's,sdl-config,${SDL_CONFIG:T},g; \ + s,86\*),86\*|amd64|ia64),' ${WRKSRC}/configure + +post-configure: + @${REINPLACE_CMD} -i "" -e 's|^COMPILER.LFLAGS += "-lm"|COMPILER.LFLAGS += "-lm -lc"|g' \ + ${WRKSRC}/Jamconfig + @${REINPLACE_CMD} -i "" -e 's|-lcaca|-lcaca_pic|g' ${WRKSRC}/Jamconfig +.if defined(NOPORTDOCS) + @${REINPLACE_CMD} -e 42,44d ${WRKSRC}/Makefile + @${REINPLACE_CMD} -e 26d ${WRKSRC}/Jamfile + @${REINPLACE_CMD} -e 79d ${WRKSRC}/Jamfile +.endif + +do-build: + @cd ${WRKSRC} && \ + ${SETENV} ${MAKE_ENV} ${JAM_CMD} ${JAM_ARGS} + +do-install: + @cd ${WRKSRC} && \ + ${JAM_CMD} install + +.include <bsd.port.post.mk> diff --git a/graphics/crystalspace-devel/distinfo b/graphics/crystalspace-devel/distinfo new file mode 100644 index 000000000..7340f4414 --- /dev/null +++ b/graphics/crystalspace-devel/distinfo @@ -0,0 +1,3 @@ +MD5 (crystalspace/crystalspace-20060710.tar.bz2) = 1f6c04c0168bec349e87f39f0ac0f843 +SHA256 (crystalspace/crystalspace-20060710.tar.bz2) = 1ca2db2cbc3269bdeca85defed823710543f59fba390e2a0a73b2ace61df25b1 +SIZE (crystalspace/crystalspace-20060710.tar.bz2) = 20546176 diff --git a/graphics/crystalspace-devel/files/patch-configure b/graphics/crystalspace-devel/files/patch-configure new file mode 100644 index 000000000..26e7850c4 --- /dev/null +++ b/graphics/crystalspace-devel/files/patch-configure @@ -0,0 +1,18 @@ +--- configure.orig Tue Oct 10 17:24:44 2006 ++++ configure Tue Oct 10 17:29:10 2006 +@@ -39605,7 +39605,6 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + #include <ft2build.h> +- #include FT_INTERNAL_OBJECTS_H + #include FT_FREETYPE_H + #include FT_GLYPH_H + #include FT_MODULE_H +@@ -39760,7 +39759,6 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + #include <ft2build.h> +- #include FT_INTERNAL_OBJECTS_H + #include FT_FREETYPE_H + #include FT_GLYPH_H + #include FT_MODULE_H diff --git a/graphics/crystalspace-devel/files/patch-plugins-mesh-sprcal3d-object_sprcal3d.cpp b/graphics/crystalspace-devel/files/patch-plugins-mesh-sprcal3d-object_sprcal3d.cpp new file mode 100644 index 000000000..0f1031994 --- /dev/null +++ b/graphics/crystalspace-devel/files/patch-plugins-mesh-sprcal3d-object_sprcal3d.cpp @@ -0,0 +1,75 @@ +--- plugins/mesh/sprcal3d/object/sprcal3d.cpp Wed Aug 16 10:45:55 2006 ++++ plugins/mesh/sprcal3d/object/sprcal3d.cpp Wed Aug 16 23:34:50 2006 +@@ -53,6 +53,8 @@ + + + #include "sprcal3d.h" ++#include <cal3d/coretrack.h> ++#include <cal3d/corekeyframe.h> + + // STL include required by cal3d + #include <string> +@@ -657,10 +659,12 @@ + ->getVectorCoreBone(); + + // loop through all root core bones +- std::list<int>::iterator iteratorRootCoreBoneId; +- for (iteratorRootCoreBoneId = pCoreSkeleton->getListRootCoreBoneId().begin() +- ; iteratorRootCoreBoneId != pCoreSkeleton->getListRootCoreBoneId().end() +- ; ++iteratorRootCoreBoneId) ++ std::vector<int>& rootCoreBones = ++ pCoreSkeleton->getVectorRootCoreBoneId(); ++ std::vector<int>::iterator iteratorRootCoreBoneId; ++ for (iteratorRootCoreBoneId = rootCoreBones.begin(); ++ iteratorRootCoreBoneId != rootCoreBones.end(); ++ ++iteratorRootCoreBoneId) + { + CalCoreBone *bone = vectorCoreBone[*iteratorRootCoreBoneId]; + CalQuaternion bonerot = bone->getRotation(); +@@ -677,32 +681,25 @@ + { + CalCoreAnimation *anim = calCoreModel.getCoreAnimation(i); + if (!anim) continue; +- +- const uint trackCount = anim->getTrackCount(); +- std::vector<CalTransform> poses = anim->getPoses(); +- const uint frameCount = (uint)poses.size() / trackCount; +- + // loop through all root core bones +- std::list<int>::iterator iteratorRootCoreBoneId; +- for (iteratorRootCoreBoneId = pCoreSkeleton->getListRootCoreBoneId().begin() +- ; iteratorRootCoreBoneId != pCoreSkeleton->getListRootCoreBoneId().end() +- ; ++iteratorRootCoreBoneId) ++ for (iteratorRootCoreBoneId = rootCoreBones.begin(); ++ iteratorRootCoreBoneId != rootCoreBones.end(); ++ ++iteratorRootCoreBoneId) + { +- int boneTrack = anim->getTrackAssignment (*iteratorRootCoreBoneId); +- if (boneTrack < 0) continue; +- for (uint j = 0; j < frameCount; j++) ++ CalCoreTrack *track = anim->getCoreTrack(*iteratorRootCoreBoneId); ++ if (!track) continue; ++ for (int j=0; j<track->getCoreKeyframeCount(); j++) + { +- CalTransform& tf = poses[j * trackCount + boneTrack]; +- CalQuaternion bonerot = tf.getRotation(); +- CalVector bonevec = tf.getTranslation(); +- bonerot *= quatrot; +- bonevec *= quatrot; +- bonevec += translation; +- tf.setRotation (bonerot); +- tf.setTranslation (bonevec); ++ CalCoreKeyframe *frame = track->getCoreKeyframe(j); ++ CalQuaternion bonerot = frame->getRotation(); ++ CalVector bonevec = frame->getTranslation(); ++ bonerot *= quatrot; ++ bonevec *= quatrot; ++ bonevec += translation; ++ frame->setRotation(bonerot); ++ frame->setTranslation(bonevec); + } + } +- anim->setPoses (poses, trackCount); + } + // calCoreModel.getCoreSkeleton()->calculateBoundingBoxes(&calCoreModel); + } diff --git a/graphics/crystalspace-devel/files/patch-plugins_font_server_freefnt2_freefnt2.cpp b/graphics/crystalspace-devel/files/patch-plugins_font_server_freefnt2_freefnt2.cpp new file mode 100644 index 000000000..486843d87 --- /dev/null +++ b/graphics/crystalspace-devel/files/patch-plugins_font_server_freefnt2_freefnt2.cpp @@ -0,0 +1,214 @@ +--- plugins/font/server/freefnt2/freefnt2.cpp.orig Thu Oct 12 12:48:44 2006 ++++ plugins/font/server/freefnt2/freefnt2.cpp Thu Oct 12 12:54:51 2006 +@@ -30,10 +30,11 @@ + #include "iutil/comp.h" + + #include <ft2build.h> +-#include FT_INTERNAL_OBJECTS_H + #include FT_FREETYPE_H + #include FT_GLYPH_H + #include FT_MODULE_H ++#include FT_SIZES_H ++#include FT_OUTLINE_H + + #include "freefnt2.h" + +@@ -372,6 +373,20 @@ + return true; + } + ++static void GridFitCbox (FT_BBox& cbox, FT_UInt& glyphW, FT_UInt& glyphH) ++{ ++ /* compute the control box, and grid fit it */ ++#define FT_PIX_FLOOR( x ) ( (x) & ~63 ) ++#define FT_PIX_CEIL( x ) FT_PIX_FLOOR( (x) + 63 ) ++ cbox.xMin = FT_PIX_FLOOR( cbox.xMin ); ++ cbox.yMin = FT_PIX_FLOOR( cbox.yMin ); ++ cbox.xMax = FT_PIX_CEIL( cbox.xMax ); ++ cbox.yMax = FT_PIX_CEIL( cbox.yMax ); ++ ++ glyphW = (FT_UInt)( ( cbox.xMax - cbox.xMin ) >> 6 ); ++ glyphH = (FT_UInt)( ( cbox.yMax - cbox.yMin ) >> 6 ); ++} ++ + csPtr<iDataBuffer> csFreeType2Font::GetGlyphBitmap (utf32_char c, + csBitmapMetrics& metrics) + { +@@ -381,37 +396,65 @@ + if ((c != CS_FONT_DEFAULT_GLYPH) && (ci == 0)) return 0; + + if (server->FreetypeError (FT_Load_Glyph (face->face, ci, +- FT_LOAD_RENDER | FT_LOAD_MONOCHROME | FT_LOAD_TARGET_MONO), ++ FT_LOAD_MONOCHROME | FT_LOAD_TARGET_MONO), + "Could not load glyph %u for %s", ci, name)) + { + return 0; + } + +- int stride = (face->face->glyph->bitmap.width + 7) / 8; ++ /* Work around an FT2.2.1 issue where rendering of a glyph fails if the width ++ * or height is 0 */ ++ FT_Outline* outline = &face->face->glyph->outline; ++ FT_BBox cbox; ++ FT_Outline_Get_CBox( outline, &cbox ); ++ FT_UInt glyphW, glyphH; ++ GridFitCbox (cbox, glyphW, glyphH); + int maxrows = (size->metrics.height + 63) >> 6; +- int bitmapsize = maxrows*stride; +- uint8* bitmap = new uint8 [bitmapsize]; +- memset (bitmap, 0, bitmapsize); ++ int stride, bitmapsize; ++ uint8* bitmap; ++ if ((glyphW > 0) && (glyphH > 0)) ++ { ++ if (server->FreetypeError (FT_Render_Glyph (face->face->glyph, ++ FT_RENDER_MODE_MONO), ++ "Could not render glyph %u for %s", ci, name)) ++ { ++ return 0; ++ } ++ stride = (face->face->glyph->bitmap.width + 7) / 8; ++ bitmapsize = maxrows*stride; ++ } ++ else ++ bitmapsize = 0; + + int descend = (-size->metrics.descender + 63) >> 6;; + +- int startrow = maxrows - (descend + face->face->glyph->bitmap_top); +- +- int endrow = startrow + face->face->glyph->bitmap.rows; ++ if (bitmapsize > 0) ++ { ++ int startrow = maxrows - (descend + face->face->glyph->bitmap_top); ++ int endrow = startrow + face->face->glyph->bitmap.rows; + +- if (startrow < 0) startrow = 0; +- if (endrow > maxrows) endrow = maxrows; ++ if (startrow < 0) startrow = 0; ++ if (endrow > maxrows) endrow = maxrows; + +- int n, i; +- for (n = 0, i = startrow; i < endrow; i++, n++) +- memcpy (bitmap + stride*i, +- face->face->glyph->bitmap.buffer + +- n * face->face->glyph->bitmap.pitch, +- MIN(stride, face->face->glyph->bitmap.pitch)); ++ bitmap = new uint8 [bitmapsize]; ++ memset (bitmap, 0, bitmapsize); ++ int n, i; ++ for (n = 0, i = startrow; i < endrow; i++, n++) ++ memcpy (bitmap + stride*i, ++ face->face->glyph->bitmap.buffer + ++ n * face->face->glyph->bitmap.pitch, ++ MIN(stride, face->face->glyph->bitmap.pitch)); ++ metrics.width = face->face->glyph->bitmap.width; ++ metrics.left = face->face->glyph->bitmap_left; ++ } ++ else ++ { ++ bitmap = 0; ++ metrics.width = glyphW >> 6; ++ metrics.left = (FT_Int)( cbox.xMin >> 6 ); ++ } + +- metrics.width = face->face->glyph->bitmap.width; + metrics.height = maxrows; +- metrics.left = face->face->glyph->bitmap_left; + metrics.top = maxrows - descend; + + return (csPtr<iDataBuffer> (new csDataBuffer ((char*)bitmap, bitmapsize, +@@ -427,42 +470,70 @@ + if ((c != CS_FONT_DEFAULT_GLYPH) && (ci == 0)) return 0; + + if (server->FreetypeError (FT_Load_Glyph (face->face, ci, +- FT_LOAD_RENDER | FT_RENDER_MODE_NORMAL), ++ FT_LOAD_TARGET_NORMAL), + "Could not load glyph %u for %s", ci, name)) + { + return 0; + } + +- if (face->face->glyph->bitmap.pixel_mode != FT_PIXEL_MODE_GRAY) +- // That's not what we want. +- return 0; +- +- int stride = face->face->glyph->bitmap.width; ++ /* Work around an FT2.2.1 issue where rendering of a glyph fails if the width ++ * or height is 0 */ ++ FT_Outline* outline = &face->face->glyph->outline; ++ FT_BBox cbox; ++ FT_Outline_Get_CBox( outline, &cbox ); ++ FT_UInt glyphW, glyphH; ++ GridFitCbox (cbox, glyphW, glyphH); + int maxrows = (size->metrics.height + 63) >> 6; +- int bitmapsize = maxrows * stride; +- // Allocate at least 1 byte +- uint8* bitmap = (bitmapsize > 0) ? new uint8 [bitmapsize] : new uint8[1]; +- memset (bitmap, 0, bitmapsize); ++ int stride, bitmapsize; ++ uint8* bitmap; ++ if ((glyphW > 0) && (glyphH > 0)) ++ { ++ if (server->FreetypeError (FT_Render_Glyph (face->face->glyph, ++ FT_RENDER_MODE_NORMAL), ++ "Could not render glyph %u for %s", ci, name)) ++ { ++ return 0; ++ } ++ if (face->face->glyph->bitmap.pixel_mode != FT_PIXEL_MODE_GRAY) ++ { ++ // That's not what we want. ++ return 0; ++ } ++ stride = face->face->glyph->bitmap.width; ++ bitmapsize = maxrows*stride; ++ metrics.width = face->face->glyph->bitmap.width; ++ metrics.left = face->face->glyph->bitmap_left; ++ } ++ else ++ { ++ bitmapsize = 0; ++ metrics.width = glyphW >> 6; ++ metrics.left = (FT_Int)( cbox.xMin >> 6 ); ++ } + + int descend = (-size->metrics.descender + 63) >> 6; + +- int startrow = maxrows - (descend + face->face->glyph->bitmap_top); +- +- int endrow = startrow + face->face->glyph->bitmap.rows; ++ if (bitmapsize > 0) ++ { ++ int startrow = maxrows - (descend + face->face->glyph->bitmap_top); ++ int endrow = startrow + face->face->glyph->bitmap.rows; + +- if (startrow < 0) startrow = 0; +- if (endrow > maxrows) endrow = maxrows; ++ if (startrow < 0) startrow = 0; ++ if (endrow > maxrows) endrow = maxrows; + +- int n, i; +- for (n = 0, i = startrow; i < endrow; i++, n++) +- memcpy (bitmap + stride*i, +- face->face->glyph->bitmap.buffer + +- n * face->face->glyph->bitmap.pitch, +- MIN(stride, face->face->glyph->bitmap.pitch)); ++ bitmap = new uint8 [bitmapsize]; ++ memset (bitmap, 0, bitmapsize); ++ int n, i; ++ for (n = 0, i = startrow; i < endrow; i++, n++) ++ memcpy (bitmap + stride*i, ++ face->face->glyph->bitmap.buffer + ++ n * face->face->glyph->bitmap.pitch, ++ MIN(stride, face->face->glyph->bitmap.pitch)); ++ } ++ else ++ bitmap = 0; + +- metrics.width = face->face->glyph->bitmap.width; + metrics.height = maxrows; +- metrics.left = face->face->glyph->bitmap_left; + metrics.top = maxrows - descend; + + return (csPtr<iDataBuffer> (new csDataBuffer ((char*)bitmap, bitmapsize, diff --git a/graphics/crystalspace-devel/pkg-descr b/graphics/crystalspace-devel/pkg-descr new file mode 100644 index 000000000..47dcecde1 --- /dev/null +++ b/graphics/crystalspace-devel/pkg-descr @@ -0,0 +1,11 @@ +Crystal Space is a free (LGPL) and portable 3D Game Development Kit written in +C++. It supports: true six degrees of freedom, colored lighting, lightmapped +and stencil based lighting, shader support (CG, vertex programs, fragment +programs, ...), mipmapping, portals, mirrors, alpha transparency, reflective +surfaces, 3D sprites (frame based or with skeletal animation using cal3d +animation library), procedural textures, particle systems, halos, volumetric +fog, scripting (using Python, Perl, Java, or potentially other languages), +16-bit and 32-bit display support, OpenGL, and software renderer, font support +(also with freetype), hierarchical transformations, physics plugin based on ODE + +WWW: http://www.crystalspace3d.org diff --git a/graphics/crystalspace-devel/pkg-plist b/graphics/crystalspace-devel/pkg-plist new file mode 100644 index 000000000..6c2a40efe --- /dev/null +++ b/graphics/crystalspace-devel/pkg-plist @@ -0,0 +1,1615 @@ +bin/3ds2lev +bin/ceguitest +bin/cs-config +bin/csbench +bin/csdemo +bin/csfgen +bin/cslight +bin/docconv +bin/heightmapgen +bin/levtool +bin/lighter2 +bin/maya2spr +bin/md32spr +bin/mdl2spr +bin/partedit +bin/partedit2 +bin/python.cex +bin/startme +bin/viewmesh +bin/vsh +bin/walktest +etc/crystalspace/asciiart.cfg +etc/crystalspace/autoexec.cfg +etc/crystalspace/awstest.cfg +etc/crystalspace/awstut.cfg +etc/crystalspace/bugplug.cfg +etc/crystalspace/bugplug.key +etc/crystalspace/cacacanvas.cfg +etc/crystalspace/csdemo.cfg +etc/crystalspace/dynavis.cfg +etc/crystalspace/engine.cfg +etc/crystalspace/fancycon.cfg +etc/crystalspace/fontplex.cfg +etc/crystalspace/freetype.cfg +etc/crystalspace/g2dtest.cfg +etc/crystalspace/gldrivers.xml +etc/crystalspace/heightmapgen.cfg +etc/crystalspace/joystick.cfg +etc/crystalspace/lighter.xml +etc/crystalspace/macosx.cfg +etc/crystalspace/mouse.cfg +etc/crystalspace/movierecorder.cfg +etc/crystalspace/null3d.cfg +etc/crystalspace/partedit2.cfg +etc/crystalspace/picview.cfg +etc/crystalspace/r3dopengl.cfg +etc/crystalspace/shadermgr.cfg +etc/crystalspace/simpcon.cfg +etc/crystalspace/simpvs.cfg +etc/crystalspace/soft3d.cfg +etc/crystalspace/sound.cfg +etc/crystalspace/sprcal3d.cfg +etc/crystalspace/standardcon.cfg +etc/crystalspace/startme.cfg +etc/crystalspace/system.cfg +etc/crystalspace/thing.cfg +etc/crystalspace/vfs.cfg +etc/crystalspace/video.cfg +etc/crystalspace/walktest.cfg +etc/crystalspace/waterdemo.cfg +include/crystalspace/crystalspace.h +include/crystalspace/csconfig.h +include/crystalspace/csdef.h +include/crystalspace/csextern.h +include/crystalspace/csgeom.h +include/crystalspace/csgeom/box.h +include/crystalspace/csgeom/bsptree.h +include/crystalspace/csgeom/cspoint.h +include/crystalspace/csgeom/csrect.h +include/crystalspace/csgeom/csrectrg.h +include/crystalspace/csgeom/chainhull2d.h +include/crystalspace/csgeom/fastsqrt.h +include/crystalspace/csgeom/fixed.h +include/crystalspace/csgeom/frustum.h +include/crystalspace/csgeom/kdtree.h +include/crystalspace/csgeom/math.h +include/crystalspace/csgeom/math2d.h +include/crystalspace/csgeom/math3d.h +include/crystalspace/csgeom/math3d_d.h +include/crystalspace/csgeom/matrix2.h +include/crystalspace/csgeom/matrix3.h +include/crystalspace/csgeom/obb.h +include/crystalspace/csgeom/path.h +include/crystalspace/csgeom/plane2.h +include/crystalspace/csgeom/plane3.h +include/crystalspace/csgeom/pmtools.h +include/crystalspace/csgeom/poly2d.h +include/crystalspace/csgeom/poly3d.h +include/crystalspace/csgeom/polyaa.h +include/crystalspace/csgeom/polyclip.h +include/crystalspace/csgeom/polyidx.h +include/crystalspace/csgeom/polymesh.h +include/crystalspace/csgeom/polypool.h +include/crystalspace/csgeom/quaterni.h +include/crystalspace/csgeom/quaternion.h +include/crystalspace/csgeom/segment.h +include/crystalspace/csgeom/solidspace.h +include/crystalspace/csgeom/sphere.h +include/crystalspace/csgeom/spline.h +include/crystalspace/csgeom/subrec.h +include/crystalspace/csgeom/subrec2.h +include/crystalspace/csgeom/tcovbuf.h +include/crystalspace/csgeom/textrans.h +include/crystalspace/csgeom/transfrm.h +include/crystalspace/csgeom/tri.h +include/crystalspace/csgeom/triangulate.h +include/crystalspace/csgeom/trimesh.h +include/crystalspace/csgeom/trimeshlod.h +include/crystalspace/csgeom/vector2.h +include/crystalspace/csgeom/vector3.h +include/crystalspace/csgeom/vector4.h +include/crystalspace/csgfx.h +include/crystalspace/csgfx/bakekeycolor.h +include/crystalspace/csgfx/gradient.h +include/crystalspace/csgfx/imagebase.h +include/crystalspace/csgfx/imagecubemapmaker.h +include/crystalspace/csgfx/imagemanipulate.h +include/crystalspace/csgfx/imagetools.h +include/crystalspace/csgfx/imagevolumemaker.h +include/crystalspace/csgfx/inv_cmap.h +include/crystalspace/csgfx/lightsvcache.h +include/crystalspace/csgfx/memimage.h +include/crystalspace/csgfx/normalmaptools.h +include/crystalspace/csgfx/packrgb.h +include/crystalspace/csgfx/quantize.h +include/crystalspace/csgfx/renderbuffer.h +include/crystalspace/csgfx/rgbpixel.h +include/crystalspace/csgfx/shaderexp.h +include/crystalspace/csgfx/shaderexpaccessor.h +include/crystalspace/csgfx/shadervar.h +include/crystalspace/csgfx/shadervarblockalloc.h +include/crystalspace/csgfx/shadervarcontext.h +include/crystalspace/csgfx/shadervarframeholder.h +include/crystalspace/csgfx/vertexlight.h +include/crystalspace/csgfx/vertexlistwalker.h +include/crystalspace/csgfx/xorpat.h +include/crystalspace/csplatform.h +include/crystalspace/csplugincommon.h +include/crystalspace/csplugincommon/canvas/cursorconvert.h +include/crystalspace/csplugincommon/canvas/draw_box.h +include/crystalspace/csplugincommon/canvas/draw_common.h +include/crystalspace/csplugincommon/canvas/draw_line.h +include/crystalspace/csplugincommon/canvas/draw_text.h +include/crystalspace/csplugincommon/canvas/fontcache.h +include/crystalspace/csplugincommon/canvas/graph2d.h +include/crystalspace/csplugincommon/canvas/scancode.h +include/crystalspace/csplugincommon/canvas/scrshot.h +include/crystalspace/csplugincommon/canvas/softfontcache.h +include/crystalspace/csplugincommon/canvas/softfontcacheimpl.h +include/crystalspace/csplugincommon/directx/csextern_dx.h +include/crystalspace/csplugincommon/directx/directdetection.h +include/crystalspace/csplugincommon/directx/error.h +include/crystalspace/csplugincommon/directx/guids.h +include/crystalspace/csplugincommon/imageloader/commonimagefile.h +include/crystalspace/csplugincommon/imageloader/optionsparser.h +include/crystalspace/csplugincommon/iopengl/driverdb.h +include/crystalspace/csplugincommon/iopengl/openglinterface.h +include/crystalspace/csplugincommon/macosx/OSXDelegate2D.h +include/crystalspace/csplugincommon/macosx/OSXDriver2D.h +include/crystalspace/csplugincommon/macosx/OSXView.h +include/crystalspace/csplugincommon/macosx/OSXWindow.h +include/crystalspace/csplugincommon/macosx/csextern_osx.h +include/crystalspace/csplugincommon/opengl/csextern_gl.h +include/crystalspace/csplugincommon/opengl/driverdb.h +include/crystalspace/csplugincommon/opengl/glcommon2d.h +include/crystalspace/csplugincommon/opengl/glenum_identstrs.h +include/crystalspace/csplugincommon/opengl/glextmanager.h +include/crystalspace/csplugincommon/opengl/glfontcache.h +include/crystalspace/csplugincommon/opengl/glhelper.h +include/crystalspace/csplugincommon/opengl/glss.h +include/crystalspace/csplugincommon/opengl/glstates.h +include/crystalspace/csplugincommon/particlesys/partgen.h +include/crystalspace/csplugincommon/particlesys/particle.h +include/crystalspace/csplugincommon/render3d/normalizationcube.h +include/crystalspace/csplugincommon/render3d/txtmgr.h +include/crystalspace/csplugincommon/renderstep/basesteploader.h +include/crystalspace/csplugincommon/renderstep/basesteptype.h +include/crystalspace/csplugincommon/renderstep/parserenderstep.h +include/crystalspace/csplugincommon/shader/shaderplugin.h +include/crystalspace/csplugincommon/shader/shaderprogram.h +include/crystalspace/csplugincommon/shader/shaderprogram.tok +include/crystalspace/csplugincommon/sndsys/convert.h +include/crystalspace/csplugincommon/sndsys/cyclicbuf.h +include/crystalspace/csplugincommon/sndsys/queue.h +include/crystalspace/csplugincommon/sndsys/snddata.h +include/crystalspace/csplugincommon/sndsys/sndstream.h +include/crystalspace/csplugincommon/softshader/defaultshader.h +include/crystalspace/csplugincommon/softshader/renderinterface.h +include/crystalspace/csplugincommon/softshader/scanline.h +include/crystalspace/csplugincommon/softshader/texture.h +include/crystalspace/csplugincommon/softshader/types.h +include/crystalspace/csplugincommon/win32/csextern_win.h +include/crystalspace/csplugincommon/win32/customcursor.h +include/crystalspace/csqint.h +include/crystalspace/csqsqrt.h +include/crystalspace/cssysdef.h +include/crystalspace/cstool.h +include/crystalspace/cstool/basetexfact.h +include/crystalspace/cstool/bitmasktostr.h +include/crystalspace/cstool/collider.h +include/crystalspace/cstool/csanim2d.h +include/crystalspace/cstool/csapplicationframework.h +include/crystalspace/cstool/csfxscr.h +include/crystalspace/cstool/cspixmap.h +include/crystalspace/cstool/csview.h +include/crystalspace/cstool/debugimagewriter.h +include/crystalspace/cstool/enginetools.h +include/crystalspace/cstool/fogmath.h +include/crystalspace/cstool/framedataholder.h +include/crystalspace/cstool/gentrtex.h +include/crystalspace/cstool/identstrings.h +include/crystalspace/cstool/importkit.h +include/crystalspace/cstool/initapp.h +include/crystalspace/cstool/keyval.h +include/crystalspace/cstool/mapnode.h +include/crystalspace/cstool/meshobjtmpl.h +include/crystalspace/cstool/normalcalc.h +include/crystalspace/cstool/objmodel.h +include/crystalspace/cstool/pen.h +include/crystalspace/cstool/primitives.h +include/crystalspace/cstool/procmesh.h +include/crystalspace/cstool/proctex.h +include/crystalspace/cstool/proctxtanim.h +include/crystalspace/cstool/rbuflock.h +include/crystalspace/cstool/rendermeshholder.h +include/crystalspace/cstool/rendermeshlist.h +include/crystalspace/cstool/saverfile.h +include/crystalspace/cstool/saverref.h +include/crystalspace/cstool/tokenlist.h +include/crystalspace/cstool/userrndbuf.h +include/crystalspace/cstool/vertexcompress.h +include/crystalspace/cstool/vfsdirchange.h +include/crystalspace/cstypes.h +include/crystalspace/csutil.h +include/crystalspace/csutil/algorithms.h +include/crystalspace/csutil/alignedalloc.h +include/crystalspace/csutil/allocator.h +include/crystalspace/csutil/ansicommand.h +include/crystalspace/csutil/ansiparse.h +include/crystalspace/csutil/archive.h +include/crystalspace/csutil/array.h +include/crystalspace/csutil/binder.h +include/crystalspace/csutil/bitarray.h +include/crystalspace/csutil/blockallocator.h +include/crystalspace/csutil/callstack.h +include/crystalspace/csutil/cfgacc.h +include/crystalspace/csutil/cfgdoc.h +include/crystalspace/csutil/cfgfile.h +include/crystalspace/csutil/cfgmgr.h +include/crystalspace/csutil/cmdhelp.h +include/crystalspace/csutil/cmdline.h +include/crystalspace/csutil/common_handlers.h +include/crystalspace/csutil/comparator.h +include/crystalspace/csutil/compileassert.h +include/crystalspace/csutil/cowwrapper.h +include/crystalspace/csutil/csbaseeventh.h +include/crystalspace/csutil/cscolor.h +include/crystalspace/csutil/csendian.h +include/crystalspace/csutil/csevcord.h +include/crystalspace/csutil/csevent.h +include/crystalspace/csutil/cseventflattener.h +include/crystalspace/csutil/cseventq.h +include/crystalspace/csutil/csinput.h +include/crystalspace/csutil/csmd5.h +include/crystalspace/csutil/csobject.h +include/crystalspace/csutil/csosdefs.h +include/crystalspace/csutil/csperlxs_fallback.inc +include/crystalspace/csutil/cspmeter.h +include/crystalspace/csutil/csppulse.h +include/crystalspace/csutil/csprocessorcap.h +include/crystalspace/csutil/csshlib.h +include/crystalspace/csutil/csstring.h +include/crystalspace/csutil/cssubscription.h +include/crystalspace/csutil/csuctransform.h +include/crystalspace/csutil/csunicode.h +include/crystalspace/csutil/custom_new_disable.h +include/crystalspace/csutil/custom_new_enable.h +include/crystalspace/csutil/databuf.h +include/crystalspace/csutil/debug.h +include/crystalspace/csutil/dirtyaccessarray.h +include/crystalspace/csutil/documentcommon.h +include/crystalspace/csutil/documenthelper.h +include/crystalspace/csutil/event.h +include/crystalspace/csutil/eventhandlers.h +include/crystalspace/csutil/eventnames.h +include/crystalspace/csutil/evoutlet.h +include/crystalspace/csutil/fifo.h +include/crystalspace/csutil/filereadhelper.h +include/crystalspace/csutil/fixedsizeallocator.h +include/crystalspace/csutil/flags.h +include/crystalspace/csutil/floatrand.h +include/crystalspace/csutil/formatter.h +include/crystalspace/csutil/fpu80x86.h +include/crystalspace/csutil/garray.h +include/crystalspace/csutil/getopt.h +include/crystalspace/csutil/hash.h +include/crystalspace/csutil/hashhandlers.h +include/crystalspace/csutil/hashr.h +include/crystalspace/csutil/inputdef.h +include/crystalspace/csutil/leakguard.h +include/crystalspace/csutil/list.h +include/crystalspace/csutil/macosx/OSXAssistant.h +include/crystalspace/csutil/macosx/csosdefs.h +include/crystalspace/csutil/measuretime.h +include/crystalspace/csutil/memdebug.h +include/crystalspace/csutil/memfile.h +include/crystalspace/csutil/memheap.h +include/crystalspace/csutil/mempool.h +include/crystalspace/csutil/mmap_dummy.h +include/crystalspace/csutil/mmap_posix.h +include/crystalspace/csutil/mmapio.h +include/crystalspace/csutil/nobjvec.h +include/crystalspace/csutil/nulcache.h +include/crystalspace/csutil/objiter.h +include/crystalspace/csutil/objpool.h +include/crystalspace/csutil/objreg.h +include/crystalspace/csutil/parasiticdatabuffer.h +include/crystalspace/csutil/partialorder.h +include/crystalspace/csutil/parray.h +include/crystalspace/csutil/physfile.h +include/crystalspace/csutil/plugldr.h +include/crystalspace/csutil/plugmgr.h +include/crystalspace/csutil/pooledscfclass.h +include/crystalspace/csutil/prfxcfg.h +include/crystalspace/csutil/profile.h +include/crystalspace/csutil/ptrwrap.h +include/crystalspace/csutil/radixsort.h +include/crystalspace/csutil/randomgen.h +include/crystalspace/csutil/redblacktree.h +include/crystalspace/csutil/ref.h +include/crystalspace/csutil/refarr.h +include/crystalspace/csutil/refcount.h +include/crystalspace/csutil/reftrackeraccess.h +include/crystalspace/csutil/regexp.h +include/crystalspace/csutil/scanstr.h +include/crystalspace/csutil/scf.h +include/crystalspace/csutil/scf_impl.h +include/crystalspace/csutil/scf_implementation.h +include/crystalspace/csutil/scf_implgen.h +include/crystalspace/csutil/scf_interface.h +include/crystalspace/csutil/scfarray.h +include/crystalspace/csutil/scfstr.h +include/crystalspace/csutil/scfstringarray.h +include/crystalspace/csutil/scfstrset.h +include/crystalspace/csutil/scopedmutexlock.h +include/crystalspace/csutil/schedule.h +include/crystalspace/csutil/set.h +include/crystalspace/csutil/snprintf.h +include/crystalspace/csutil/sparse3d.h +include/crystalspace/csutil/spinlock.h +include/crystalspace/csutil/strhash.h +include/crystalspace/csutil/stringarray.h +include/crystalspace/csutil/stringreader.h +include/crystalspace/csutil/strset.h +include/crystalspace/csutil/sysfunc.h +include/crystalspace/csutil/syspath.h +include/crystalspace/csutil/thread.h +include/crystalspace/csutil/threadjobqueue.h +include/crystalspace/csutil/timer.h +include/crystalspace/csutil/tree.h +include/crystalspace/csutil/typetraits.h +include/crystalspace/csutil/unix/csosdefs.h +include/crystalspace/csutil/util.h +include/crystalspace/csutil/verbosity.h +include/crystalspace/csutil/vfscache.h +include/crystalspace/csutil/vfsplat.h +include/crystalspace/csutil/virtclk.h +include/crystalspace/csutil/weakref.h +include/crystalspace/csutil/weakrefarr.h +include/crystalspace/csutil/win32/APIdeclare.inc +include/crystalspace/csutil/win32/DbgHelpAPI.fun +include/crystalspace/csutil/win32/DbgHelpAPI.h +include/crystalspace/csutil/win32/callstack.h +include/crystalspace/csutil/win32/csconfig.h +include/crystalspace/csutil/win32/csosdefs.h +include/crystalspace/csutil/win32/minidump.h +include/crystalspace/csutil/win32/mmap.h +include/crystalspace/csutil/win32/msvc_deprecated_warn_off.h +include/crystalspace/csutil/win32/msvc_deprecated_warn_on.h +include/crystalspace/csutil/win32/psdk-compat.h +include/crystalspace/csutil/win32/registrycfg.h +include/crystalspace/csutil/win32/sanity.inc +include/crystalspace/csutil/win32/win32.h +include/crystalspace/csutil/win32/wintools.h +include/crystalspace/csutil/xmltiny.h +include/crystalspace/csutil/zip.h +include/crystalspace/csver.h +include/crystalspace/iaws.h +include/crystalspace/iaws/aws.h +include/crystalspace/iaws/aws2.h +include/crystalspace/iaws/awscnvs.h +include/crystalspace/iaws/awsdefs.h +include/crystalspace/iaws/awsdock.h +include/crystalspace/iaws/awsecomp.h +include/crystalspace/iaws/awsparm.h +include/crystalspace/iengine.h +include/crystalspace/iengine/camera.h +include/crystalspace/iengine/campos.h +include/crystalspace/iengine/collectn.h +include/crystalspace/iengine/engine.h +include/crystalspace/iengine/fview.h +include/crystalspace/iengine/halo.h +include/crystalspace/iengine/imposter.h +include/crystalspace/iengine/light.h +include/crystalspace/iengine/lightmgr.h +include/crystalspace/iengine/lod.h +include/crystalspace/iengine/material.h +include/crystalspace/iengine/mesh.h +include/crystalspace/iengine/meshgen.h +include/crystalspace/iengine/movable.h +include/crystalspace/iengine/objwatch.h +include/crystalspace/iengine/portal.h +include/crystalspace/iengine/portalcontainer.h +include/crystalspace/iengine/region.h +include/crystalspace/iengine/renderloop.h +include/crystalspace/iengine/rendersteps/icontainer.h +include/crystalspace/iengine/rendersteps/igeneric.h +include/crystalspace/iengine/rendersteps/ilightiter.h +include/crystalspace/iengine/rendersteps/irenderstep.h +include/crystalspace/iengine/rendersteps/irsfact.h +include/crystalspace/iengine/rview.h +include/crystalspace/iengine/scenenode.h +include/crystalspace/iengine/sector.h +include/crystalspace/iengine/shadcast.h +include/crystalspace/iengine/shadows.h +include/crystalspace/iengine/sharevar.h +include/crystalspace/iengine/texture.h +include/crystalspace/iengine/viscull.h +include/crystalspace/igeom.h +include/crystalspace/igeom/clip2d.h +include/crystalspace/igeom/path.h +include/crystalspace/igeom/polymesh.h +include/crystalspace/igraphic.h +include/crystalspace/igraphic/animimg.h +include/crystalspace/igraphic/image.h +include/crystalspace/igraphic/imageio.h +include/crystalspace/imap.h +include/crystalspace/imap/ldrctxt.h +include/crystalspace/imap/loader.h +include/crystalspace/imap/modelload.h +include/crystalspace/imap/parser.h +include/crystalspace/imap/reader.h +include/crystalspace/imap/saver.h +include/crystalspace/imap/saverfile.h +include/crystalspace/imap/saverref.h +include/crystalspace/imap/services.h +include/crystalspace/imap/streamsource.h +include/crystalspace/imap/writer.h +include/crystalspace/imesh.h +include/crystalspace/imesh/bezier.h +include/crystalspace/imesh/emit.h +include/crystalspace/imesh/explode.h +include/crystalspace/imesh/fire.h +include/crystalspace/imesh/fountain.h +include/crystalspace/imesh/genmesh.h +include/crystalspace/imesh/gmeshanim.h +include/crystalspace/imesh/gmeshskel.h +include/crystalspace/imesh/gmeshskel2.h +include/crystalspace/imesh/haze.h +include/crystalspace/imesh/instmesh.h +include/crystalspace/imesh/lghtng.h +include/crystalspace/imesh/lighting.h +include/crystalspace/imesh/nullmesh.h +include/crystalspace/imesh/object.h +include/crystalspace/imesh/objmodel.h +include/crystalspace/imesh/particle.h +include/crystalspace/imesh/particles.h +include/crystalspace/imesh/partsys.h +include/crystalspace/imesh/protomesh.h +include/crystalspace/imesh/rain.h +include/crystalspace/imesh/skeleton.h +include/crystalspace/imesh/snow.h +include/crystalspace/imesh/spiral.h +include/crystalspace/imesh/sprite2d.h +include/crystalspace/imesh/sprite3d.h +include/crystalspace/imesh/spritecal3d.h +include/crystalspace/imesh/terrain.h +include/crystalspace/imesh/thing.h +include/crystalspace/inetwork.h +include/crystalspace/isndsys.h +include/crystalspace/isndsys/ss_data.h +include/crystalspace/isndsys/ss_driver.h +include/crystalspace/isndsys/ss_eventrecorder.h +include/crystalspace/isndsys/ss_filter.h +include/crystalspace/isndsys/ss_listener.h +include/crystalspace/isndsys/ss_loader.h +include/crystalspace/isndsys/ss_manager.h +include/crystalspace/isndsys/ss_renderer.h +include/crystalspace/isndsys/ss_source.h +include/crystalspace/isndsys/ss_stream.h +include/crystalspace/isndsys/ss_structs.h +include/crystalspace/itexture.h +include/crystalspace/itexture/ifire.h +include/crystalspace/itexture/iproctex.h +include/crystalspace/itexture/itexfact.h +include/crystalspace/itexture/itexloaderctx.h +include/crystalspace/iutil.h +include/crystalspace/iutil/array.h +include/crystalspace/iutil/binder.h +include/crystalspace/iutil/cache.h +include/crystalspace/iutil/cfgfile.h +include/crystalspace/iutil/cfgmgr.h +include/crystalspace/iutil/cmdline.h +include/crystalspace/iutil/comp.h +include/crystalspace/iutil/csinput.h +include/crystalspace/iutil/databuff.h +include/crystalspace/iutil/dbghelp.h +include/crystalspace/iutil/document.h +include/crystalspace/iutil/evdefs.h +include/crystalspace/iutil/event.h +include/crystalspace/iutil/eventh.h +include/crystalspace/iutil/eventhandlers.h +include/crystalspace/iutil/eventnames.h +include/crystalspace/iutil/eventq.h +include/crystalspace/iutil/job.h +include/crystalspace/iutil/kitchensink.h +include/crystalspace/iutil/memdebug.h +include/crystalspace/iutil/object.h +include/crystalspace/iutil/objreg.h +include/crystalspace/iutil/plugin.h +include/crystalspace/iutil/pluginconfig.h +include/crystalspace/iutil/reftrack.h +include/crystalspace/iutil/selfdestruct.h +include/crystalspace/iutil/string.h +include/crystalspace/iutil/stringarray.h +include/crystalspace/iutil/strset.h +include/crystalspace/iutil/timer.h +include/crystalspace/iutil/verbositymanager.h +include/crystalspace/iutil/vfs.h +include/crystalspace/iutil/virtclk.h +include/crystalspace/ivaria.h +include/crystalspace/ivaria/bugplug.h +include/crystalspace/ivaria/collider.h +include/crystalspace/ivaria/conin.h +include/crystalspace/ivaria/conout.h +include/crystalspace/ivaria/cspace.i +include/crystalspace/ivaria/dynamics.h +include/crystalspace/ivaria/engseq.h +include/crystalspace/ivaria/gradient.h +include/crystalspace/ivaria/icegui.h +include/crystalspace/ivaria/javapost.i +include/crystalspace/ivaria/javapre.i +include/crystalspace/ivaria/keyval.h +include/crystalspace/ivaria/mapnode.h +include/crystalspace/ivaria/movierecorder.h +include/crystalspace/ivaria/ode.h +include/crystalspace/ivaria/pagingformer.h +include/crystalspace/ivaria/perl1st.i +include/crystalspace/ivaria/perlpost.i +include/crystalspace/ivaria/perlpre.i +include/crystalspace/ivaria/pmeter.h +include/crystalspace/ivaria/pyeventh.i +include/crystalspace/ivaria/pythpost.i +include/crystalspace/ivaria/pythpre.i +include/crystalspace/ivaria/pythvarg.i +include/crystalspace/ivaria/reporter.h +include/crystalspace/ivaria/scf.i +include/crystalspace/ivaria/script.h +include/crystalspace/ivaria/sequence.h +include/crystalspace/ivaria/simpleformer.h +include/crystalspace/ivaria/stdrep.h +include/crystalspace/ivaria/terraform.h +include/crystalspace/ivaria/view.h +include/crystalspace/ivideo.h +include/crystalspace/ivideo/cursor.h +include/crystalspace/ivideo/custcursor.h +include/crystalspace/ivideo/fontserv.h +include/crystalspace/ivideo/gfxmem.h +include/crystalspace/ivideo/graph2d.h +include/crystalspace/ivideo/graph3d.h +include/crystalspace/ivideo/halo.h +include/crystalspace/ivideo/lighting.h +include/crystalspace/ivideo/material.h +include/crystalspace/ivideo/natwin.h +include/crystalspace/ivideo/rendermesh.h +include/crystalspace/ivideo/rndbuf.h +include/crystalspace/ivideo/shader/shader.h +include/crystalspace/ivideo/texture.h +include/crystalspace/ivideo/txtmgr.h +include/crystalspace/ivideo/wxwin.h +lib/crystalspace/aws.so +lib/crystalspace/bezier.so +lib/crystalspace/bezierldr.so +lib/crystalspace/bindoc.so +lib/crystalspace/bruteblock.so +lib/crystalspace/bugplug.so +lib/crystalspace/cacacanvas.so +lib/crystalspace/cegui.so +lib/crystalspace/csbmpimg.so +lib/crystalspace/csconin.so +lib/crystalspace/csconout.so +lib/crystalspace/cscursor.so +lib/crystalspace/csddsimg.so +lib/crystalspace/csfont.so +lib/crystalspace/csgifimg.so +lib/crystalspace/csjngimg.so +lib/crystalspace/csjpgimg.so +lib/crystalspace/csopcode.so +lib/crystalspace/csparser.so +lib/crystalspace/cspngimg.so +lib/crystalspace/cspython.so +lib/crystalspace/cssaver.so +lib/crystalspace/cssynldr.so +lib/crystalspace/cstgaimg.so +lib/crystalspace/dsplex.so +lib/crystalspace/dynavis.so +lib/crystalspace/emit.so +lib/crystalspace/emitldr.so +lib/crystalspace/engine.so +lib/crystalspace/engseq.so +lib/crystalspace/explo.so +lib/crystalspace/exploldr.so +lib/crystalspace/fancycon.so +lib/crystalspace/fire.so +lib/crystalspace/fireldr.so +lib/crystalspace/fontplex.so +lib/crystalspace/fountain.so +lib/crystalspace/fountldr.so +lib/crystalspace/freefnt2.so +lib/crystalspace/frustvis.so +lib/crystalspace/genmesh.so +lib/crystalspace/gl3d.so +lib/crystalspace/glshader_arb.so +lib/crystalspace/glshader_fixed.so +lib/crystalspace/glshader_ps1.so +lib/crystalspace/glx2d.so +lib/crystalspace/gmesh3ds.so +lib/crystalspace/gmeshanim.so +lib/crystalspace/gmeshldr.so +lib/crystalspace/gmeshskelanim.so +lib/crystalspace/gmeshskelanim2.so +lib/crystalspace/haze.so +lib/crystalspace/hazeldr.so +lib/crystalspace/imgplex.so +lib/crystalspace/instmesh.so +lib/crystalspace/instmeshldr.so +lib/crystalspace/lghtng.so +lib/crystalspace/lghtngldr.so +lib/crystalspace/memory2d.so +lib/crystalspace/movierecorder.so +lib/crystalspace/null2d.so +lib/crystalspace/null3d.so +lib/crystalspace/nullmesh.so +lib/crystalspace/nullmeshldr.so +lib/crystalspace/odedynam.so +lib/crystalspace/pagingformer.so +lib/crystalspace/pagingformerldr.so +lib/crystalspace/particles.so +lib/crystalspace/particlesldr.so +lib/crystalspace/partphys_ode.so +lib/crystalspace/partphys_simple.so +lib/crystalspace/physldr.so +lib/crystalspace/protomesh.so +lib/crystalspace/protomeshldr.so +lib/crystalspace/ptanimimg.so +lib/crystalspace/rain.so +lib/crystalspace/rainldr.so +lib/crystalspace/rendloop_loader.so +lib/crystalspace/rendstep_fatrl.so +lib/crystalspace/rendstep_std.so +lib/crystalspace/rendstep_stencil.so +lib/crystalspace/rendstep_stencil2.so +lib/crystalspace/reporter.so +lib/crystalspace/sdl2d.so +lib/crystalspace/sequence.so +lib/crystalspace/shadermgr.so +lib/crystalspace/simpleformer.so +lib/crystalspace/simpleformerldr.so +lib/crystalspace/skeleton.so +lib/crystalspace/skelldr.so +lib/crystalspace/sndmanager.so +lib/crystalspace/sndsyseventrecorder.so +lib/crystalspace/sndsysloader.so +lib/crystalspace/sndsysnull.so +lib/crystalspace/sndsysogg.so +lib/crystalspace/sndsysoss.so +lib/crystalspace/sndsyssoft.so +lib/crystalspace/sndsyswav.so +lib/crystalspace/snow.so +lib/crystalspace/snowldr.so +lib/crystalspace/soft3d.so +lib/crystalspace/softshader.so +lib/crystalspace/spiral.so +lib/crystalspace/spirldr.so +lib/crystalspace/spr2d.so +lib/crystalspace/spr2dldr.so +lib/crystalspace/spr3d.so +lib/crystalspace/spr3dbin.so +lib/crystalspace/spr3dldr.so +lib/crystalspace/spr3md2.so +lib/crystalspace/sprcal3d.so +lib/crystalspace/sprcal3dldr.so +lib/crystalspace/stdpt.so +lib/crystalspace/stdrep.so +lib/crystalspace/terrainldr.so +lib/crystalspace/thing.so +lib/crystalspace/thingldr.so +lib/crystalspace/tlfunc.so +lib/crystalspace/vfs.so +lib/crystalspace/vproc_std.so +lib/crystalspace/x2d.so +lib/crystalspace/xext86vm.so +lib/crystalspace/xextshm.so +lib/crystalspace/xmlread.so +lib/crystalspace/xmlshader.so +lib/crystalspace/xmltiny.so +lib/crystalspace/xwin.so +lib/libcrystalspace.a +lib/libcrystalspace_opengl.a +lib/libcrystalspace_python.a +%%DATADIR%%/bindings/java/SimpleRoom.java +%%DATADIR%%/bindings/python/_cspace.so +%%DATADIR%%/bindings/python/cshelper.py +%%DATADIR%%/bindings/python/cspace.py +%%DATADIR%%/bindings/python/pysimp.py +%%DATADIR%%/bindings/python/pysimp2.py +%%DATADIR%%/bindings/python/pysimpcd.py +%%DATADIR%%/bindings/python/tutorial0.py +%%DATADIR%%/bindings/python/tutorial1.py +%%DATADIR%%/bindings/python/tutorial2.py +%%DATADIR%%/bindings/python/tutorial3.py +%%DATADIR%%/build/autoconf/cel.m4 +%%DATADIR%%/build/autoconf/compiler.m4 +%%DATADIR%%/build/autoconf/config.guess +%%DATADIR%%/build/autoconf/config.sub +%%DATADIR%%/build/autoconf/crystal.m4 +%%DATADIR%%/build/autoconf/cs_check_host.m4 +%%DATADIR%%/build/autoconf/checkbuild.m4 +%%DATADIR%%/build/autoconf/checkcommon.m4 +%%DATADIR%%/build/autoconf/checkcppunit.m4 +%%DATADIR%%/build/autoconf/checkcswin32libs.m4 +%%DATADIR%%/build/autoconf/checklib.m4 +%%DATADIR%%/build/autoconf/checklibtool.m4 +%%DATADIR%%/build/autoconf/checkopengl.m4 +%%DATADIR%%/build/autoconf/checkpic.m4 +%%DATADIR%%/build/autoconf/checkprog.m4 +%%DATADIR%%/build/autoconf/checkpthread.m4 +%%DATADIR%%/build/autoconf/checkpython.m4 +%%DATADIR%%/build/autoconf/checktt2.m4 +%%DATADIR%%/build/autoconf/diagnose.m4 +%%DATADIR%%/build/autoconf/embed.m4 +%%DATADIR%%/build/autoconf/emit.m4 +%%DATADIR%%/build/autoconf/headercache.m4 +%%DATADIR%%/build/autoconf/install-sh +%%DATADIR%%/build/autoconf/installdirs.m4 +%%DATADIR%%/build/autoconf/jamcache.m4 +%%DATADIR%%/build/autoconf/makecache.m4 +%%DATADIR%%/build/autoconf/mkdir.m4 +%%DATADIR%%/build/autoconf/packageinfo.m4 +%%DATADIR%%/build/autoconf/path.m4 +%%DATADIR%%/build/autoconf/progver.m4 +%%DATADIR%%/build/autoconf/qualify.m4 +%%DATADIR%%/build/autoconf/split.m4 +%%DATADIR%%/build/autoconf/textcache.m4 +%%DATADIR%%/build/autoconf/trim.m4 +%%DATADIR%%/build/autoconf/warnings.m4 +%%DATADIR%%/build/jam/application.jam +%%DATADIR%%/build/jam/assembler.jam +%%DATADIR%%/build/jam/bisonflex.jam +%%DATADIR%%/build/jam/build.jam +%%DATADIR%%/build/jam/clean.jam +%%DATADIR%%/build/jam/compiler.jam +%%DATADIR%%/build/jam/docs.jam +%%DATADIR%%/build/jam/dump.jam +%%DATADIR%%/build/jam/flags.jam +%%DATADIR%%/build/jam/groups.jam +%%DATADIR%%/build/jam/help.jam +%%DATADIR%%/build/jam/helper.jam +%%DATADIR%%/build/jam/install.jam +%%DATADIR%%/build/jam/jamcompatibility.jam +%%DATADIR%%/build/jam/library.jam +%%DATADIR%%/build/jam/macosx.jam +%%DATADIR%%/build/jam/msvcgen.jam +%%DATADIR%%/build/jam/objectivec.jam +%%DATADIR%%/build/jam/objects.jam +%%DATADIR%%/build/jam/options.jam +%%DATADIR%%/build/jam/plugin.jam +%%DATADIR%%/build/jam/property.jam +%%DATADIR%%/build/jam/resource.jam +%%DATADIR%%/build/jam/static.jam +%%DATADIR%%/build/jam/strip.jam +%%DATADIR%%/build/jam/subdir.jam +%%DATADIR%%/build/jam/swig.jam +%%DATADIR%%/build/jam/unittest.jam +%%DATADIR%%/build/jam/unix.jam +%%DATADIR%%/build/jam/variant.jam +%%DATADIR%%/build/jam/win32.jam +%%DATADIR%%/build/jamtemplate/Jamfile-src.template +%%DATADIR%%/build/jamtemplate/Jamfile.template +%%DATADIR%%/build/jamtemplate/Jamrules.template +%%DATADIR%%/build/jamtemplate/README +%%DATADIR%%/build/jamtemplate/README-msvc.template +%%DATADIR%%/build/jamtemplate/README.template +%%DATADIR%%/build/jamtemplate/app.cpp.template +%%DATADIR%%/build/jamtemplate/app.h.template +%%DATADIR%%/build/jamtemplate/autogen.template +%%DATADIR%%/build/jamtemplate/config-msvc.template +%%DATADIR%%/build/jamtemplate/configure.template +%%DATADIR%%/build/jamtemplate/createproject.sh +%%DATADIR%%/build/jamtemplate/main.template +%%DATADIR%%/build/jamtemplate/projheader.template +%%DATADIR%%/build/maketemplate/Makefile.template +%%DATADIR%%/build/maketemplate/README +%%DATADIR%%/build/maketemplate/appwrap.sh +%%DATADIR%%/build/msvcgen/control.tlib +%%DATADIR%%/build/msvcgen/macros.tlib +%%DATADIR%%/build/msvcgen/project6.tlib +%%DATADIR%%/build/msvcgen/project7.tlib +%%DATADIR%%/build/msvcgen/projectx6.tlib +%%DATADIR%%/build/msvcgen/projectx7.tlib +%%DATADIR%%/build/msvcgen/workspace6.tlib +%%DATADIR%%/build/msvcgen/workspace7.tlib +%%DATADIR%%/conversion/hammer/README +%%DATADIR%%/conversion/hammer/crystal.fgd +%%DATADIR%%/conversion/max/Poly_Counter.mcr +%%DATADIR%%/conversion/max/README +%%DATADIR%%/conversion/max/exportcsp.mcr +%%DATADIR%%/conversion/max/exporterguide/basics.htm +%%DATADIR%%/conversion/max/exporterguide/emitter.htm +%%DATADIR%%/conversion/max/exporterguide/evenmore.htm +%%DATADIR%%/conversion/max/exporterguide/exportscene.htm +%%DATADIR%%/conversion/max/exporterguide/exportsprite.htm +%%DATADIR%%/conversion/max/exporterguide/index.htm +%%DATADIR%%/conversion/max/exporterguide/installation.htm +%%DATADIR%%/conversion/max/exporterguide/intro.htm +%%DATADIR%%/conversion/max/exporterguide/left_frame.htm +%%DATADIR%%/conversion/max/exporterguide/light.htm +%%DATADIR%%/conversion/max/exporterguide/lod.htm +%%DATADIR%%/conversion/max/exporterguide/modelsprite.htm +%%DATADIR%%/conversion/max/exporterguide/object.htm +%%DATADIR%%/conversion/max/exporterguide/occluders.htm +%%DATADIR%%/conversion/max/exporterguide/pictures/3dsMaxExporters_img1.gif +%%DATADIR%%/conversion/max/exporterguide/pictures/3dsMaxExporters_img2.gif +%%DATADIR%%/conversion/max/exporterguide/pictures/attrib.jpg +%%DATADIR%%/conversion/max/exporterguide/pictures/particle.jpg +%%DATADIR%%/conversion/max/exporterguide/pictures/room_properties.jpg +%%DATADIR%%/conversion/max/exporterguide/portals.htm +%%DATADIR%%/conversion/max/exporterguide/samples.htm +%%DATADIR%%/conversion/max/exporterguide/sectors.htm +%%DATADIR%%/conversion/max/exporterguide/sectorsinfo.htm +%%DATADIR%%/conversion/max/exporterguide/terrain.htm +%%DATADIR%%/conversion/max/exporterguide/thinggenmesh.htm +%%DATADIR%%/conversion/max/exportlights.mcr +%%DATADIR%%/conversion/max/exportsprite.mcr +%%DATADIR%%/conversion/max/fixmaterials.mcr +%%DATADIR%%/conversion/max/gmeshskelanim/IPhysique.gup +%%DATADIR%%/conversion/max/gmeshskelanim/README +%%DATADIR%%/conversion/max/gmeshskelanim/export_genmesh_skelanim.mcr +%%DATADIR%%/conversion/max/ps_terrain.materials.txt +%%DATADIR%%/conversion/max/ps_terrain.render.txt +%%DATADIR%%/conversion/max/ps_terrain.shaders.txt +%%DATADIR%%/conversion/max/ps_terrain.textures.txt +%%DATADIR%%/conversion/max/psmaxmenus5.mnu +%%DATADIR%%/conversion/max/sanitycheck.ms +%%DATADIR%%/conversion/max/showMap.mcr +%%DATADIR%%/conversion/maya/CrystalExporter.mel +%%DATADIR%%/conversion/maya/README +%%DATADIR%%/conversion/maya/exportsprite.mel +%%DATADIR%%/conversion/qt2aws/README +%%DATADIR%%/conversion/qt2aws/qt2aws.xsl +%%DATADIR%%/conversion/qt2aws/qt3aws.xsl +%%DATADIR%%/data/aws/Aws2Default.js +%%DATADIR%%/data/aws/ControlBarTest.def +%%DATADIR%%/data/aws/PopupMenuTest.def +%%DATADIR%%/data/aws/PopupMenuTest2.def +%%DATADIR%%/data/aws/XMLInterface.js +%%DATADIR%%/data/aws/awstest.def +%%DATADIR%%/data/aws/awstest.js.def +%%DATADIR%%/data/aws/awstest.xml.def +%%DATADIR%%/data/aws/awstest2.def +%%DATADIR%%/data/aws/awstut.def +%%DATADIR%%/data/aws/buttonTest.def +%%DATADIR%%/data/aws/layoutTest.def +%%DATADIR%%/data/aws/layouts/Horizontal.js +%%DATADIR%%/data/aws/layouts/Layouts.js +%%DATADIR%%/data/aws/layouts/Vertical.js +%%DATADIR%%/data/aws/skins/Amalgam.js +%%DATADIR%%/data/aws/stddlg.def +%%DATADIR%%/data/aws/test.js +%%DATADIR%%/data/aws/widgets/Button.js +%%DATADIR%%/data/aws/widgets/Clock.js +%%DATADIR%%/data/aws/widgets/ComboBox.js +%%DATADIR%%/data/aws/widgets/CheckBox.js +%%DATADIR%%/data/aws/widgets/FileChooser.js +%%DATADIR%%/data/aws/widgets/Frames.js +%%DATADIR%%/data/aws/widgets/Gauge.js +%%DATADIR%%/data/aws/widgets/Image.js +%%DATADIR%%/data/aws/widgets/Label.js +%%DATADIR%%/data/aws/widgets/Listbox.js +%%DATADIR%%/data/aws/widgets/Panel.js +%%DATADIR%%/data/aws/widgets/RadioButton.js +%%DATADIR%%/data/aws/widgets/ResizeKnob.js +%%DATADIR%%/data/aws/widgets/ScrollBar.js +%%DATADIR%%/data/aws/widgets/Slider.js +%%DATADIR%%/data/aws/widgets/StatusBar.js +%%DATADIR%%/data/aws/widgets/Styles.js +%%DATADIR%%/data/aws/widgets/Support.js +%%DATADIR%%/data/aws/widgets/TextBox.js +%%DATADIR%%/data/aws/widgets/TitleBar.js +%%DATADIR%%/data/aws/widgets/ToolTip.js +%%DATADIR%%/data/aws/widgets/Widgets.js +%%DATADIR%%/data/aws/widgets/Window.js +%%DATADIR%%/data/aws/windowTest.def +%%DATADIR%%/data/aws/windows_skin.def +%%DATADIR%%/data/awsdef.zip +%%DATADIR%%/data/ceguitest/Falagard.xsd +%%DATADIR%%/data/ceguitest/Falagard.xsx +%%DATADIR%%/data/ceguitest/GUILayout.xsd +%%DATADIR%%/data/ceguitest/GUIScheme.xsd +%%DATADIR%%/data/ceguitest/GUIScheme.xsx +%%DATADIR%%/data/ceguitest/Imageset.xsd +%%DATADIR%%/data/ceguitest/ice.imageset +%%DATADIR%%/data/ceguitest/ice.layout +%%DATADIR%%/data/ceguitest/ice.looknfeel +%%DATADIR%%/data/ceguitest/ice.png +%%DATADIR%%/data/ceguitest/ice.scheme +%%DATADIR%%/data/ceguitest/ice.svg +%%DATADIR%%/data/cube/cubemap_bk.jpg +%%DATADIR%%/data/cube/cubemap_dn.jpg +%%DATADIR%%/data/cube/cubemap_fr.jpg +%%DATADIR%%/data/cube/cubemap_lf.jpg +%%DATADIR%%/data/cube/cubemap_rt.jpg +%%DATADIR%%/data/cube/cubemap_up.jpg +%%DATADIR%%/data/fancycon.zip +%%DATADIR%%/data/maps/flarge/cube_street.dds +%%DATADIR%%/data/maps/flarge/christmasTree.png +%%DATADIR%%/data/maps/flarge/factories/thingCircle +%%DATADIR%%/data/maps/flarge/factories/thingCircle.006 +%%DATADIR%%/data/maps/flarge/factories/thingCircle.007 +%%DATADIR%%/data/maps/flarge/factories/thingCircle.008 +%%DATADIR%%/data/maps/flarge/factories/thingPlane.004 +%%DATADIR%%/data/maps/flarge/factories/thingPlane.012 +%%DATADIR%%/data/maps/flarge/factories/thingPlane.013 +%%DATADIR%%/data/maps/flarge/factories/thingPlane.014 +%%DATADIR%%/data/maps/flarge/factories/thingPlane.025 +%%DATADIR%%/data/maps/flarge/factories/thingPlane.057 +%%DATADIR%%/data/maps/flarge/factories/thingPlane.058 +%%DATADIR%%/data/maps/flarge/factories/thingPlane.059 +%%DATADIR%%/data/maps/flarge/factories/thingPlane.060 +%%DATADIR%%/data/maps/flarge/mosaic-detail.dds +%%DATADIR%%/data/maps/flarge/oldbrick_h.png +%%DATADIR%%/data/maps/flarge/world +%%DATADIR%%/data/maps/isomap/vedette.spr +%%DATADIR%%/data/maps/isomap/world +%%DATADIR%%/data/maps/parallaxtest/box.jpg +%%DATADIR%%/data/maps/parallaxtest/boxh.jpg +%%DATADIR%%/data/maps/parallaxtest/boxn.jpg +%%DATADIR%%/data/maps/parallaxtest/boxn.png +%%DATADIR%%/data/maps/parallaxtest/floor.jpg +%%DATADIR%%/data/maps/parallaxtest/walls.jpg +%%DATADIR%%/data/maps/parallaxtest/world +%%DATADIR%%/data/maps/particles/dot.png +%%DATADIR%%/data/maps/particles/world +%%DATADIR%%/data/maps/partsys/world +%%DATADIR%%/data/maps/r3dtest/world +%%DATADIR%%/data/maps/stenciltest/bricks.png +%%DATADIR%%/data/maps/stenciltest/bricks_n.png +%%DATADIR%%/data/maps/stenciltest/world +%%DATADIR%%/data/maps/terrain/grass.png +%%DATADIR%%/data/maps/terrain/grassDOT3.png +%%DATADIR%%/data/maps/terrain/heightmap.png +%%DATADIR%%/data/maps/terrain/heightmap_257x257.png +%%DATADIR%%/data/maps/terrain/materialmap.png +%%DATADIR%%/data/maps/terrain/materialmap_base.png +%%DATADIR%%/data/maps/terrain/normalmap.png +%%DATADIR%%/data/maps/terrain/swiss1_b.jpg +%%DATADIR%%/data/maps/terrain/swiss1_d.jpg +%%DATADIR%%/data/maps/terrain/swiss1_f.jpg +%%DATADIR%%/data/maps/terrain/swiss1_l.jpg +%%DATADIR%%/data/maps/terrain/swiss1_r.jpg +%%DATADIR%%/data/maps/terrain/swiss1_u.jpg +%%DATADIR%%/data/maps/terrain/world +%%DATADIR%%/data/maps/terrainf/bark.png +%%DATADIR%%/data/maps/terrainf/branch.png +%%DATADIR%%/data/maps/terrainf/bush2.lib +%%DATADIR%%/data/maps/terrainf/clouddome.jpg +%%DATADIR%%/data/maps/terrainf/grass.dds +%%DATADIR%%/data/maps/terrainf/grass.lib +%%DATADIR%%/data/maps/terrainf/rock.lib +%%DATADIR%%/data/maps/terrainf/rocky_surface.jpg +%%DATADIR%%/data/maps/terrainf/sage2.png +%%DATADIR%%/data/maps/terrainf/skybox_b.jpg +%%DATADIR%%/data/maps/terrainf/skybox_d.jpg +%%DATADIR%%/data/maps/terrainf/skybox_f.jpg +%%DATADIR%%/data/maps/terrainf/skybox_l.jpg +%%DATADIR%%/data/maps/terrainf/skybox_r.jpg +%%DATADIR%%/data/maps/terrainf/skybox_u.jpg +%%DATADIR%%/data/maps/terrainf/tree.lib +%%DATADIR%%/data/maps/terrainf/tree_skimp.lib +%%DATADIR%%/data/maps/terrainf/treebark_bare.lib +%%DATADIR%%/data/maps/terrainf/world +%%DATADIR%%/data/shader/ambient.avp +%%DATADIR%%/data/shader/ambient.fvp +%%DATADIR%%/data/shader/ambient.xml +%%DATADIR%%/data/shader/bump_ppl_diffuse.avp +%%DATADIR%%/data/shader/bump_ppl_diffuse_a.avp +%%DATADIR%%/data/shader/bump_ppl_diffuse_a_2tu.avp +%%DATADIR%%/data/shader/bump_ppl_diffuse_attn.avp +%%DATADIR%%/data/shader/bump_ppl_diffuse_attn2.avp +%%DATADIR%%/data/shader/bump_ppl_scatter.avp +%%DATADIR%%/data/shader/bump_ppl_scatter_b.avp +%%DATADIR%%/data/shader/cg_vertexlight.xml +%%DATADIR%%/data/shader/compressed_splatting_scattering.avp +%%DATADIR%%/data/shader/compressed_splatting_scattering_a.avp +%%DATADIR%%/data/shader/character/character.cgvp +%%DATADIR%%/data/shader/character/character.xml +%%DATADIR%%/data/shader/character/character_bump.cgvp +%%DATADIR%%/data/shader/character/character_bump.xml +%%DATADIR%%/data/shader/flat_ppl_attenuation.avp +%%DATADIR%%/data/shader/flat_ppl_attenuation2.avp +%%DATADIR%%/data/shader/flat_ppl_diffuse.avp +%%DATADIR%%/data/shader/flat_ppl_diffuse_a.avp +%%DATADIR%%/data/shader/flat_ppl_diffuse_b.avp +%%DATADIR%%/data/shader/fog/cg-sectorfog.cginc +%%DATADIR%%/data/shader/fog/cg-sectorfog.inc +%%DATADIR%%/data/shader/light.xml +%%DATADIR%%/data/shader/light2.xml +%%DATADIR%%/data/shader/light_bumpmap.xml +%%DATADIR%%/data/shader/light_bumpmap2.xml +%%DATADIR%%/data/shader/light_projection_bumpmap.xml +%%DATADIR%%/data/shader/light_scattering.xml +%%DATADIR%%/data/shader/lighting/cg-light-classic.cginc +%%DATADIR%%/data/shader/lighting/cg-light-classic.inc +%%DATADIR%%/data/shader/parallax/parallax.afp +%%DATADIR%%/data/shader/parallax/parallax.avp +%%DATADIR%%/data/shader/parallax/parallax.cgfp +%%DATADIR%%/data/shader/parallax/parallax.cgvp +%%DATADIR%%/data/shader/parallax/parallax.xml +%%DATADIR%%/data/shader/particle_basic.xml +%%DATADIR%%/data/shader/reflect.xml +%%DATADIR%%/data/shader/reflectsphere.xml +%%DATADIR%%/data/shader/scattering.avp +%%DATADIR%%/data/shader/scattering_base.afp +%%DATADIR%%/data/shader/shadow.xml +%%DATADIR%%/data/shader/shadow2.xml +%%DATADIR%%/data/shader/shadowdebug.xml +%%DATADIR%%/data/shader/shadowextrude.avp +%%DATADIR%%/data/shader/shadowextrude2.avp +%%DATADIR%%/data/shader/shadowmap/distance.cgfp +%%DATADIR%%/data/shader/shadowmap/distance.cgvp +%%DATADIR%%/data/shader/shadowmap/distance.xml +%%DATADIR%%/data/shader/shadowmap/shadowmap.cgfp +%%DATADIR%%/data/shader/shadowmap/shadowmap.cgvp +%%DATADIR%%/data/shader/shadowmap/shadowmap.xml +%%DATADIR%%/data/shader/sky_scattering.xml +%%DATADIR%%/data/shader/snippets/cg-base.inc +%%DATADIR%%/data/shader/snippets/cg-i-surface.cginc +%%DATADIR%%/data/shader/snippets/fog-ffp.inc +%%DATADIR%%/data/shader/snippets/fog-fvp.inc +%%DATADIR%%/data/shader/snippets/fog-mappings.inc +%%DATADIR%%/data/shader/snippets/fog-pass.inc +%%DATADIR%%/data/shader/snippets/projection-pass.inc +%%DATADIR%%/data/shader/snippets/std_lighting-pass.inc +%%DATADIR%%/data/shader/snippets/std_lighting.cscg +%%DATADIR%%/data/shader/specular/bump.cgvp +%%DATADIR%%/data/shader/specular/light_spec_bumpmap.xml +%%DATADIR%%/data/shader/specular/specular.cgfp +%%DATADIR%%/data/shader/splatting_amb.avp +%%DATADIR%%/data/shader/splatting_amb.xml +%%DATADIR%%/data/shader/splatting_base.avp +%%DATADIR%%/data/shader/splatting_base.xml +%%DATADIR%%/data/shader/splatting_base_b.avp +%%DATADIR%%/data/shader/splatting_bump.avp +%%DATADIR%%/data/shader/splatting_bump.xml +%%DATADIR%%/data/shader/splatting_bump_a.avp +%%DATADIR%%/data/shader/splatting_bump_b.avp +%%DATADIR%%/data/shader/splatting_nobump.avp +%%DATADIR%%/data/shader/splatting_scattering.avp +%%DATADIR%%/data/shader/splatting_scattering.xml +%%DATADIR%%/data/shader/splatting_scattering_a.avp +%%DATADIR%%/data/shader/splatting_scattering_b.avp +%%DATADIR%%/data/shader/splatting_scattering_base.avp +%%DATADIR%%/data/shader/splatting_scattering_base.xml +%%DATADIR%%/data/shader/splatting_scattering_base_b.avp +%%DATADIR%%/data/shader/stat_dyn_reflect.xml +%%DATADIR%%/data/shader/std_lighting.xml +%%DATADIR%%/data/shader/std_lighting_detail.xml +%%DATADIR%%/data/shader/std_lighting_detail_add.xml +%%DATADIR%%/data/shader/std_lighting_detail_alpha.xml +%%DATADIR%%/data/shader/std_lighting_detail_alpha_scroll.xml +%%DATADIR%%/data/shader/std_lighting_fixed.xml +%%DATADIR%%/data/shader/std_lighting_nofog.xml +%%DATADIR%%/data/shader/std_lighting_portal.xml +%%DATADIR%%/data/shader/std_rloop_ambient.xml +%%DATADIR%%/data/shader/std_rloop_diffuse.xml +%%DATADIR%%/data/shader/std_rloop_fat_vproc_all.xml +%%DATADIR%%/data/shader/std_rloop_fattest.xml +%%DATADIR%%/data/shader/std_rloop_fattest2.xml +%%DATADIR%%/data/shader/std_rloop_fattest3.xml +%%DATADIR%%/data/shader/std_rloop_shadowed.xml +%%DATADIR%%/data/shader/std_rloop_shadowed2.xml +%%DATADIR%%/data/shader/std_rloop_shadowmap.xml +%%DATADIR%%/data/shader/std_rloop_standard.xml +%%DATADIR%%/data/shader/std_rloop_terrain.xml +%%DATADIR%%/data/shader/std_rloop_terrainfixed.xml +%%DATADIR%%/data/shader/surface/cg-parallax.cginc +%%DATADIR%%/data/shader/surface/cg-parallax.inc +%%DATADIR%%/data/shader/surface/cg-surface-classic.cginc +%%DATADIR%%/data/shader/surface/cg-surface-classic.inc +%%DATADIR%%/data/shader/terrain_fixed_base.xml +%%DATADIR%%/data/shader/terrain_fixed_splatting.xml +%%DATADIR%%/data/shader/vertexlight.avp +%%DATADIR%%/data/shader/vertexlight.fvp +%%DATADIR%%/data/shader/water.xml +%%DATADIR%%/data/standard.zip +%%DATADIR%%/data/startme.zip +%%DATADIR%%/data/stdtex.zip +%%DATADIR%%/data/teapot.zip +%%DATADIR%%/data/ttf-dejavu.zip +%%DATADIR%%/data/ttf-vera.zip +%%DATADIR%%/data/unifont.zip +%%DATADIR%%/data/varia/partedit.def +%%DATADIR%%/data/varia/picview.def +%%DATADIR%%/data/varia/vidprefs.def +%%DATADIR%%/data/varia/viewmesh.def +%%DATADIR%%/data/varia/walktest.cam +%%PORTDOCS%%%%DOCSDIR%%/LICENSE +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/history.old +%%PORTDOCS%%%%DOCSDIR%%/history.txt +%%PORTDOCS%%%%DOCSDIR%%/html/manual/build/platform/win32/cygwin/cygshot1.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/manual/build/platform/win32/cygwin/cygshot2.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/manual/build/platform/win32/cygwin/cygshot3.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/manual/build/platform/win32/cygwin/cygshot4.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/manual/build/platform/win32/cygwin/cygshot5.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/manual/build/platform/win32/cygwin/cygshot6.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/manual/build/platform/win32/cygwin/cygshot7.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/manual/build/platform/win32/cygwin/cygshot8.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/manual/build/platform/win32/cygwin/cygshot9.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/manual/content/sprites/cylinder.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/manual/content/sprites/skin.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/manual/content/sprites/split.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/manual/content/sprites/unseamly.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_1.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_1.10.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_1.11.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_1.12.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_1.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_1.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_1.4.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_1.5.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_1.6.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_1.7.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_1.8.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_1.9.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_2.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_2.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_2.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_2.4.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_2.4.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_2.4.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_2.4.4.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_2.4.5.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_2.4.5.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_2.4.5.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_2.4.5.4.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_2.4.5.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_2.4.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_2.5.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_2.6.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_3.1.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_3.1.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_3.1.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_3.1.4.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_3.1.4.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_3.1.4.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_3.1.4.4.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_3.1.4.5.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_3.1.4.6.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_3.1.4.7.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_3.1.4.8.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_3.1.4.9.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_3.1.4.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_3.1.5.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_3.1.6.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_3.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_3.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.1.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.1.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.1.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.1.4.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.1.5.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.1.6.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.10.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.10.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.10.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.11.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.11.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.11.3.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.11.3.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.11.3.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.11.3.4.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.11.3.5.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.11.3.6.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.11.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.11.4.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.11.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.12.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.12.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.12.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.13.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.13.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.13.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.14.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.14.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.14.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.14.4.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.14.5.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.14.6.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.14.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.15.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.15.2.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.15.2.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.15.2.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.15.2.4.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.15.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.15.3.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.15.3.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.15.3.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.15.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.15.4.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.15.5.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.15.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.16.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.16.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.16.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.17.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.17.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.17.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.17.4.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.17.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.18.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.18.10.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.18.11.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.18.11.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.18.11.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.18.11.4.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.18.11.5.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.18.11.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.18.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.18.3.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.18.3.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.18.3.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.18.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.18.4.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.18.5.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.18.5.10.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.18.5.11.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.18.5.12.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.18.5.13.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.18.5.14.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.18.5.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.18.5.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.18.5.4.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.18.5.5.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.18.5.6.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.18.5.7.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.18.5.8.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.18.5.9.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.18.5.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.18.6.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.18.7.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.18.8.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.18.9.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.18.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.19.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.19.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.19.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.19.4.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.19.4.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.19.4.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.19.4.4.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.19.4.5.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.19.4.6.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.19.4.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.19.5.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.19.6.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.19.7.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.19.8.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.19.9.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.19.9.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.19.9.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.19.9.4.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.19.9.5.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.19.9.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.19.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.2.1.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.2.1.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.2.1.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.2.1.4.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.2.1.5.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.2.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.2.2.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.2.2.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.2.2.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.2.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.2.3.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.2.3.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.2.3.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.2.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.2.4.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.2.4.10.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.2.4.11.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.2.4.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.2.4.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.2.4.4.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.2.4.5.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.2.4.6.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.2.4.7.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.2.4.8.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.2.4.9.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.2.4.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.20.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.21.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.21.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.21.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.21.4.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.21.5.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.21.6.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.21.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.22.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.22.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.22.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.22.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.3.1.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.3.1.10.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.3.1.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.3.1.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.3.1.4.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.3.1.5.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.3.1.6.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.3.1.7.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.3.1.8.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.3.1.9.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.3.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.3.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.3.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.4.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.4.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.4.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.4.4.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.4.4.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.4.4.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.4.4.4.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.4.4.5.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.4.4.6.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.4.4.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.4.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.5.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.5.2.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.5.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.5.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.6.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.6.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.6.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.7.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.7.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.7.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.7.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.8.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.8.10.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.8.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.8.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.8.4.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.8.5.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.8.6.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.8.7.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.8.8.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.8.8.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.8.8.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.8.8.4.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.8.8.5.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.8.8.6.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.8.8.7.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.8.8.8.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.8.8.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.8.9.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.8.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.9.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.9.10.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.9.11.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.9.12.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.9.13.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.9.14.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.9.15.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.9.16.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.9.17.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.9.18.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.9.19.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.9.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.9.20.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.9.21.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.9.22.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.9.23.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.9.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.9.4.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.9.5.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.9.6.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.9.7.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.9.8.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.9.9.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.9.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_4.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_5.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_5.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_5.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_5.4.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_5.5.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_5.6.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_5.7.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_5.7.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_5.7.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_5.7.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_5.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_6.1.1.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_6.1.1.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_6.1.1.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_6.1.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_6.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_6.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_6.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_6.4.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_6.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_7.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_7.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_7.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_7.4.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_7.5.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_7.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_A.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_B.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_C.1.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_C.1.10.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_C.1.11.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_C.1.12.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_C.1.13.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_C.1.14.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_C.1.15.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_C.1.16.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_C.1.17.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_C.1.18.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_C.1.19.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_C.1.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_C.1.20.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_C.1.21.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_C.1.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_C.1.4.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_C.1.5.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_C.1.6.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_C.1.7.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_C.1.8.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_C.1.9.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_C.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_C.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_C.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_C.4.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_C.5.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_C.6.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_C.7.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_C.8.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_C.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_D.1.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_D.1.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_D.1.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_D.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_D.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_D.3.1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_D.3.2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_D.3.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_D.3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_D.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_INDEX0.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_INDEX1.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_INDEX2.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_INDEX3.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_Index.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_abt.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_ovr.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/cs_toc.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/index.html +%%PORTDOCS%%%%DOCSDIR%%/html/manual/usingcs/engine/portal1.png +%%PORTDOCS%%%%DOCSDIR%%/html/manual/usingcs/engine/portal2.png +%%PORTDOCS%%%%DOCSDIR%%/html/manual/usingcs/engine/thing.png +%%PORTDOCS%%%%DOCSDIR%%/html/manual/usingcs/lighting/light1.png +%%PORTDOCS%%%%DOCSDIR%%/html/manual/usingcs/lighting/light2.png +%%PORTDOCS%%%%DOCSDIR%%/html/manual/usingcs/ownprojects/kdevproj/snap0.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/manual/usingcs/ownprojects/kdevproj/snap1.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/manual/usingcs/ownprojects/kdevproj/snap2.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/manual/usingcs/ownprojects/kdevproj/snap3.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/manual/usingcs/ownprojects/kdevproj/snap4.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/manual/usingcs/ownprojects/kdevproj/snap5.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/manual/usingcs/ownprojects/kdevproj/snap6.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/manual/usingcs/ownprojects/kdevproj/snap7.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/manual/usingcs/ownprojects/kdevproj/snap8.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc7proj/snap0.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc7proj/snap1.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc7proj/snap10.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc7proj/snap11.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc7proj/snap12.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc7proj/snap13.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc7proj/snap14.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc7proj/snap15.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc7proj/snap16.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc7proj/snap2.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc7proj/snap3.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc7proj/snap4.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc7proj/snap5.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc7proj/snap6.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc7proj/snap7.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc7proj/snap8.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc7proj/snap9.jpg +@dirrm etc/crystalspace +@dirrm include/crystalspace/iutil +@dirrm include/crystalspace/cstool +@dirrm include/crystalspace/imesh +@dirrm include/crystalspace/ivaria +@dirrm include/crystalspace/csgeom +@dirrm include/crystalspace/iengine/rendersteps +@dirrm include/crystalspace/iengine +@dirrm include/crystalspace/imap +@dirrm include/crystalspace/igeom +@dirrm include/crystalspace/csplugincommon/directx +@dirrm include/crystalspace/csplugincommon/particlesys +@dirrm include/crystalspace/csplugincommon/softshader +@dirrm include/crystalspace/csplugincommon/win32 +@dirrm include/crystalspace/csplugincommon/sndsys +@dirrm include/crystalspace/csplugincommon/opengl +@dirrm include/crystalspace/csplugincommon/render3d +@dirrm include/crystalspace/csplugincommon/shader +@dirrm include/crystalspace/csplugincommon/imageloader +@dirrm include/crystalspace/csplugincommon/macosx +@dirrm include/crystalspace/csplugincommon/canvas +@dirrm include/crystalspace/csplugincommon/renderstep +@dirrm include/crystalspace/csplugincommon/iopengl +@dirrm include/crystalspace/csplugincommon +@dirrm include/crystalspace/iaws +@dirrm include/crystalspace/csutil/unix +@dirrm include/crystalspace/csutil/win32 +@dirrm include/crystalspace/csutil/macosx +@dirrm include/crystalspace/csutil +@dirrm include/crystalspace/itexture +@dirrm include/crystalspace/csgfx +@dirrm include/crystalspace/igraphic +@dirrm include/crystalspace/ivideo/shader +@dirrm include/crystalspace/ivideo +@dirrm include/crystalspace/isndsys +@dirrm include/crystalspace +@dirrm lib/crystalspace +%%PORTDOCS%%@dirrm %%DOCSDIR%%/html/manual/content/sprites +%%PORTDOCS%%@dirrm %%DOCSDIR%%/html/manual/content +%%PORTDOCS%%@dirrm %%DOCSDIR%%/html/manual/build/platform/win32/cygwin +%%PORTDOCS%%@dirrm %%DOCSDIR%%/html/manual/build/platform/win32 +%%PORTDOCS%%@dirrm %%DOCSDIR%%/html/manual/build/platform +%%PORTDOCS%%@dirrm %%DOCSDIR%%/html/manual/build +%%PORTDOCS%%@dirrm %%DOCSDIR%%/html/manual/usingcs/engine +%%PORTDOCS%%@dirrm %%DOCSDIR%%/html/manual/usingcs/lighting +%%PORTDOCS%%@dirrm %%DOCSDIR%%/html/manual/usingcs/ownprojects/kdevproj +%%PORTDOCS%%@dirrm %%DOCSDIR%%/html/manual/usingcs/ownprojects/msvc7proj +%%PORTDOCS%%@dirrm %%DOCSDIR%%/html/manual/usingcs/ownprojects +%%PORTDOCS%%@dirrm %%DOCSDIR%%/html/manual/usingcs +%%PORTDOCS%%@dirrm %%DOCSDIR%%/html/manual +%%PORTDOCS%%@dirrm %%DOCSDIR%%/html +%%PORTDOCS%%@dirrm %%DOCSDIR%% +@dirrm %%DATADIR%%/bindings/python +@dirrm %%DATADIR%%/bindings/java +@dirrm %%DATADIR%%/bindings +@dirrm %%DATADIR%%/build/autoconf +@dirrm %%DATADIR%%/build/jam +@dirrm %%DATADIR%%/build/msvcgen +@dirrm %%DATADIR%%/build/jamtemplate +@dirrm %%DATADIR%%/build/maketemplate +@dirrm %%DATADIR%%/build +@dirrm %%DATADIR%%/data/maps/isomap +@dirrm %%DATADIR%%/data/maps/parallaxtest +@dirrm %%DATADIR%%/data/maps/particles +@dirrm %%DATADIR%%/data/maps/partsys +@dirrm %%DATADIR%%/data/maps/r3dtest +@dirrm %%DATADIR%%/data/maps/stenciltest +@dirrm %%DATADIR%%/data/maps/terrain +@dirrm %%DATADIR%%/data/maps/terrainf +@dirrm %%DATADIR%%/data/maps/flarge/factories +@dirrm %%DATADIR%%/data/maps/flarge +@dirrm %%DATADIR%%/data/maps +@dirrm %%DATADIR%%/data/aws/widgets +@dirrm %%DATADIR%%/data/aws/skins +@dirrm %%DATADIR%%/data/aws/layouts +@dirrm %%DATADIR%%/data/aws +@dirrm %%DATADIR%%/data/ceguitest +@dirrm %%DATADIR%%/data/cube +@dirrm %%DATADIR%%/data/shader/surface +@dirrm %%DATADIR%%/data/shader/fog +@dirrm %%DATADIR%%/data/shader/lighting +@dirrm %%DATADIR%%/data/shader/parallax +@dirrm %%DATADIR%%/data/shader/specular +@dirrm %%DATADIR%%/data/shader/snippets +@dirrm %%DATADIR%%/data/shader/character +@dirrm %%DATADIR%%/data/shader/shadowmap +@dirrm %%DATADIR%%/data/shader +@dirrm %%DATADIR%%/data/varia +@dirrm %%DATADIR%%/data +@dirrm %%DATADIR%%/conversion/hammer +@dirrm %%DATADIR%%/conversion/max/exporterguide/pictures +@dirrm %%DATADIR%%/conversion/max/exporterguide +@dirrm %%DATADIR%%/conversion/max/gmeshskelanim +@dirrm %%DATADIR%%/conversion/max +@dirrm %%DATADIR%%/conversion/maya +@dirrm %%DATADIR%%/conversion/qt2aws +@dirrm %%DATADIR%%/conversion +@dirrm %%DATADIR%% |