summaryrefslogtreecommitdiff
path: root/graphics/osg-devel
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/osg-devel')
-rw-r--r--graphics/osg-devel/Makefile74
-rw-r--r--graphics/osg-devel/distinfo3
-rw-r--r--graphics/osg-devel/files/freebsd4-osg-patches688
-rw-r--r--graphics/osg-devel/files/patch-Make::makedefs43
-rw-r--r--graphics/osg-devel/files/patch-Make::makedirdefs14
-rw-r--r--graphics/osg-devel/files/patch-Make::makerules29
-rw-r--r--graphics/osg-devel/pkg-descr6
-rw-r--r--graphics/osg-devel/pkg-plist640
8 files changed, 0 insertions, 1497 deletions
diff --git a/graphics/osg-devel/Makefile b/graphics/osg-devel/Makefile
deleted file mode 100644
index c2ddb321dbda..000000000000
--- a/graphics/osg-devel/Makefile
+++ /dev/null
@@ -1,74 +0,0 @@
-# New ports collection makefile for: Open Scene Graph
-# Date created: 26 Apr 2001
-# Whom: Randall Hopper <aa8vb@nc.rr.com>
-#
-# $FreeBSD$
-#
-
-PORTNAME= osg
-PORTVERSION= 0.9.8
-CATEGORIES= graphics
-MASTER_SITES= http://www.openscenegraph.org/downloads/snapshots/
-DISTNAME= OSG_OP_OT-${PORTVERSION}-2
-
-MAINTAINER= rrghphar@bigpond.net.au
-COMMENT= C++ OpenGL scene graph library for real-time rendering
-
-BUILD_DEPENDS= ${LOCALBASE}/lib/libOpenThreads.so:${PORTSDIR}/devel/openthreads \
- ${X11BASE}/lib/libProducer.so:${PORTSDIR}/graphics/openproducer
-RUN_DEPENDS= ${LOCALBASE}/lib/libOpenThreads.so:${PORTSDIR}/devel/openthreads \
- ${X11BASE}/lib/libProducer.so:${PORTSDIR}/graphics/openproducer
-LIB_DEPENDS= png.5:${PORTSDIR}/graphics/png \
- jpeg.9:${PORTSDIR}/graphics/jpeg \
- ungif.5:${PORTSDIR}/graphics/libungif \
- tiff.4:${PORTSDIR}/graphics/tiff \
- freetype.9:${PORTSDIR}/print/freetype2 \
- xml2.5:${PORTSDIR}/textproc/libxml2
-
-USE_ZIP= yes
-USE_REINPLACE= yes
-USE_X_PREFIX= yes
-USE_GL= yes
-INSTALLS_SHLIB= yes
-USE_GMAKE= yes
-MAKE_ENV= OSGHOME="${WRKSRC}" \
- PTHREAD_LIBS="${PTHREAD_LIBS}" \
- EXAMPLESDIR="${EXAMPLESDIR}" \
- DOCSDIR="${DOCSDIR}" \
- DATADIR="${DATADIR}" \
- OPTF="${CXXFLAGS}"
-MAKEFILE= GNUmakefile
-WRKSRC= ${WRKDIR}/${DISTNAME}/OpenSceneGraph
-
-# opt = optimized ($OPTF added); debug = debug ($DBGF added); opt is default
-ALL_TARGET= opt
-
-.include <bsd.port.pre.mk>
-
-.if ${OSVERSION} < 500035
-EXTRA_PATCHES= ${FILESDIR}/freebsd4-osg-patches
-.endif
-
-.if !defined(NOPORTDOCS)
-
-BUILD_DEPENDS+= doxygen:${PORTSDIR}/devel/doxygen \
- dot:${PORTSDIR}/graphics/graphviz
-PORTDOCS= html
-
-pre-patch:
- ${REINPLACE_CMD} -e 's,[[:cntrl:]]*$$,,' \
- ${WRKSRC}/examples/osgtesselate/osgtesselate.cpp
-
-post-build:
- cd ${WRKSRC}/doc/Doxyfiles && OSGHOME=${WRKSRC} doxygen all_Doxyfile
-
-pre-install:
- ${FIND} ${WRKSRC} -name '*.orig' -delete
-
-post-install:
- @${MKDIR} ${DOCSDIR}
- ${CP} -r ${WRKSRC}/doc/doxygen/ ${DOCSDIR}
-
-.endif
-
-.include <bsd.port.post.mk>
diff --git a/graphics/osg-devel/distinfo b/graphics/osg-devel/distinfo
deleted file mode 100644
index e9abecfbe6c1..000000000000
--- a/graphics/osg-devel/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 (OSG_OP_OT-0.9.8-2.zip) = 4c3fe8b7701e5a5932a4268075b60cda
-SHA256 (OSG_OP_OT-0.9.8-2.zip) = 72a13ad9ca473660eef155041892fd8ba3ca570beaa6220f3375746143bad5f1
-SIZE (OSG_OP_OT-0.9.8-2.zip) = 3805142
diff --git a/graphics/osg-devel/files/freebsd4-osg-patches b/graphics/osg-devel/files/freebsd4-osg-patches
deleted file mode 100644
index 54b5c9fa2779..000000000000
--- a/graphics/osg-devel/files/freebsd4-osg-patches
+++ /dev/null
@@ -1,688 +0,0 @@
-diff -urN ../OpenSceneGraph.orig/examples/osgtesselate/osgtesselate.cpp ./examples/osgtesselate/osgtesselate.cpp
---- ../OpenSceneGraph.orig/examples/osgtesselate/osgtesselate.cpp Sun Oct 24 20:03:59 2004
-+++ ./examples/osgtesselate/osgtesselate.cpp Tue Feb 8 01:28:23 2005
-@@ -562,7 +562,7 @@
- setTesselateVisitor():osg::NodeVisitor(osg::NodeVisitor::TRAVERSE_ALL_CHILDREN) {
- }
- virtual void apply(osg::Geode& geode) {
-- if (geode.getName().compare(0,9,"tesselate")==0) {
-+ if (geode.getName().compare("tesselate",0,9)==0) {
- for(unsigned int i=0;i<geode.getNumDrawables();++i)
- {
- osg::Geometry* geom = dynamic_cast<osg::Geometry*>(geode.getDrawable(i));
-diff -urN ../OpenSceneGraph.orig/examples/osgunittests/osgunittests.cpp ./examples/osgunittests/osgunittests.cpp
---- ../OpenSceneGraph.orig/examples/osgunittests/osgunittests.cpp Wed Nov 10 21:28:06 2004
-+++ ./examples/osgunittests/osgunittests.cpp Tue Feb 8 01:28:23 2005
-@@ -113,9 +113,6 @@
- std::cout<<"sizeof(float)=="<<sizeof(float)<<std::endl;
- std::cout<<"sizeof(double)=="<<sizeof(double)<<std::endl;
-
-- std::cout<<"sizeof(std::istream::pos_type)=="<<sizeof(std::istream::pos_type)<<std::endl;
-- std::cout<<"sizeof(std::istream::off_type)=="<<sizeof(std::istream::off_type)<<std::endl;
--
- }
-
-
-diff -urN ../OpenSceneGraph.orig/include/osg/AnimationPath ./include/osg/AnimationPath
---- ../OpenSceneGraph.orig/include/osg/AnimationPath Wed Sep 1 08:34:49 2004
-+++ ./include/osg/AnimationPath Tue Feb 8 01:28:24 2005
-@@ -15,7 +15,7 @@
- #define OSG_ANIMATIONPATH 1
-
- #include <map>
--#include <istream>
-+#include <istream.h>
- #include <float.h>
-
- #include <osg/Matrixf>
-diff -urN ../OpenSceneGraph.orig/include/osg/ApplicationUsage ./include/osg/ApplicationUsage
---- ../OpenSceneGraph.orig/include/osg/ApplicationUsage Mon Oct 25 19:16:56 2004
-+++ ./include/osg/ApplicationUsage Tue Feb 8 01:28:24 2005
-@@ -18,7 +18,7 @@
-
- #include <map>
- #include <string>
--#include <ostream>
-+#include <ostream.h>
-
- namespace osg {
-
-diff -urN ../OpenSceneGraph.orig/include/osg/ArgumentParser ./include/osg/ArgumentParser
---- ../OpenSceneGraph.orig/include/osg/ArgumentParser Tue Sep 28 09:14:03 2004
-+++ ./include/osg/ArgumentParser Tue Feb 8 01:28:24 2005
-@@ -18,7 +18,7 @@
-
- #include <map>
- #include <string>
--#include <ostream>
-+#include <ostream.h>
-
- namespace osg {
-
-diff -urN ../OpenSceneGraph.orig/include/osg/Matrixd ./include/osg/Matrixd
---- ../OpenSceneGraph.orig/include/osg/Matrixd Tue Aug 31 13:19:30 2004
-+++ ./include/osg/Matrixd Tue Feb 8 01:28:24 2005
-@@ -23,7 +23,7 @@
-
- #include <string.h>
-
--#include <ostream>
-+#include <ostream.h>
- #include <algorithm>
-
- namespace osg {
-diff -urN ../OpenSceneGraph.orig/include/osg/Matrixf ./include/osg/Matrixf
---- ../OpenSceneGraph.orig/include/osg/Matrixf Tue Aug 31 13:19:30 2004
-+++ ./include/osg/Matrixf Tue Feb 8 01:28:24 2005
-@@ -23,7 +23,7 @@
-
- #include <string.h>
-
--#include <ostream>
-+#include <ostream.h>
- #include <algorithm>
-
- namespace osg {
-diff -urN ../OpenSceneGraph.orig/include/osg/Notify ./include/osg/Notify
---- ../OpenSceneGraph.orig/include/osg/Notify Thu Sep 2 19:10:33 2004
-+++ ./include/osg/Notify Tue Feb 8 01:28:24 2005
-@@ -16,7 +16,7 @@
-
- #include <osg/Export>
-
--#include <ostream>
-+#include <ostream.h>
-
- namespace osg {
-
-diff -urN ../OpenSceneGraph.orig/include/osg/UByte4 ./include/osg/UByte4
---- ../OpenSceneGraph.orig/include/osg/UByte4 Mon Sep 13 15:14:11 2004
-+++ ./include/osg/UByte4 Tue Feb 8 01:28:24 2005
-@@ -16,7 +16,7 @@
-
- #include <osg/Vec3>
-
--#include <ostream>
-+#include <ostream.h>
-
- namespace osg {
-
-diff -urN ../OpenSceneGraph.orig/include/osg/Vec2f ./include/osg/Vec2f
---- ../OpenSceneGraph.orig/include/osg/Vec2f Wed Sep 15 19:10:15 2004
-+++ ./include/osg/Vec2f Tue Feb 8 01:28:24 2005
-@@ -14,7 +14,7 @@
- #ifndef OSG_VEC2F
- #define OSG_VEC2F 1
-
--#include <ostream>
-+#include <ostream.h>
-
- #include <osg/Math>
-
-diff -urN ../OpenSceneGraph.orig/include/osg/Vec3f ./include/osg/Vec3f
---- ../OpenSceneGraph.orig/include/osg/Vec3f Mon Oct 18 18:36:40 2004
-+++ ./include/osg/Vec3f Tue Feb 8 01:28:24 2005
-@@ -14,7 +14,7 @@
- #ifndef OSG_VEC3F
- #define OSG_VEC3F 1
-
--#include <ostream>
-+#include <ostream.h>
-
- #include <osg/Vec2f>
- #include <osg/Math>
-diff -urN ../OpenSceneGraph.orig/include/osgDB/FieldReader ./include/osgDB/FieldReader
---- ../OpenSceneGraph.orig/include/osgDB/FieldReader Wed Mar 3 13:27:18 2004
-+++ ./include/osgDB/FieldReader Tue Feb 8 01:28:24 2005
-@@ -19,7 +19,7 @@
- #include <string.h>
- #include <stdlib.h>
-
--#include <istream>
-+#include <istream.h>
-
- namespace osgDB {
-
-diff -urN ../OpenSceneGraph.orig/include/osgSim/GeographicLocation ./include/osgSim/GeographicLocation
---- ../OpenSceneGraph.orig/include/osgSim/GeographicLocation Tue Mar 2 16:12:11 2004
-+++ ./include/osgSim/GeographicLocation Tue Feb 8 01:28:24 2005
-@@ -17,7 +17,7 @@
- #include <osg/Math>
- #include <osg/Referenced>
-
--#include <ostream>
-+#include <ostream.h>
-
- namespace osgSim {
-
-diff -urN ../OpenSceneGraph.orig/src/osgDB/Archive.cpp ./src/osgDB/Archive.cpp
---- ../OpenSceneGraph.orig/src/osgDB/Archive.cpp Thu Nov 25 15:09:56 2004
-+++ ./src/osgDB/Archive.cpp Tue Feb 8 01:28:24 2005
-@@ -18,7 +18,7 @@
- #include <osgDB/FileNameUtils>
- #include <osgDB/Archive>
-
--#include <streambuf>
-+#include <streambuf.h>
-
- using namespace osgDB;
-
-diff -urN ../OpenSceneGraph.orig/src/osgDB/FileNameUtils.cpp ./src/osgDB/FileNameUtils.cpp
---- ../OpenSceneGraph.orig/src/osgDB/FileNameUtils.cpp Wed Oct 6 13:11:04 2004
-+++ ./src/osgDB/FileNameUtils.cpp Tue Feb 8 01:28:23 2005
-@@ -16,8 +16,6 @@
- #include <ctype.h>
- #elif defined(__GNUC__) || !defined(WIN32) || defined(__MWERKS__)
- #include <cctype>
-- using std::tolower;
-- using std::strlen;
- #endif
-
- using namespace std;
-@@ -119,13 +117,13 @@
- {
- // need to check for http://
- if (filename.size()<7) return false;
-- if (filename.compare(0,7,"http://")==0) return true;
-+ if (filename.compare("http://",0,7)==0) return true;
- return false;
- }
-
- std::string osgDB::getServerAddress(const std::string& filename)
- {
-- if (filename.size()>=7 && filename.compare(0,7,"http://")==0)
-+ if (filename.size()>=7 && filename.compare("http://",0,7)==0)
- {
- std::string::size_type pos_slash = filename.find_first_of('/',7);
- if (pos_slash!=std::string::npos)
-@@ -142,7 +140,7 @@
-
- std::string osgDB::getServerFileName(const std::string& filename)
- {
-- if (filename.size()>=7 && filename.compare(0,7,"http://")==0)
-+ if (filename.size()>=7 && filename.compare("http://",0,7)==0)
- {
- std::string::size_type pos_slash = filename.find_first_of('/',7);
- if (pos_slash!=std::string::npos)
-diff -urN ../OpenSceneGraph.orig/src/osgPlugins/ac3d/Geode.cpp ./src/osgPlugins/ac3d/Geode.cpp
---- ../OpenSceneGraph.orig/src/osgPlugins/ac3d/Geode.cpp Thu Nov 18 10:08:29 2004
-+++ ./src/osgPlugins/ac3d/Geode.cpp Tue Feb 8 01:28:23 2005
-@@ -12,7 +12,7 @@
- #include <osg/Texture2D>
- #include <osg/Drawable>
- #include <osg/Geometry>
--#include <limits>
-+#include <limits.h>
- #include <iomanip>
-
- #include "Exception.h"
-@@ -796,8 +796,8 @@
- if (NULL != pTexCoords)
- {
- // Find max min s coords
-- float fMin = std::numeric_limits<float>::max();
-- float fMax = std::numeric_limits<float>::min();
-+ float fMin = FLT_MAX;
-+ float fMax = FLT_MIN;
- unsigned int iNumTexCoords = pGeometry->getTexCoordArray(0)->getNumElements();
-
- for (j = 0; j < iNumTexCoords; j++)
-@@ -809,8 +809,8 @@
- }
- fRep_s = fMax - fMin;
- fOffset_s = fMin;
-- fMin = std::numeric_limits<float>::max();
-- fMax = std::numeric_limits<float>::min();
-+ fMin = FLT_MAX;
-+ fMax = FLT_MIN;
- for (j = 0; j < iNumTexCoords; j++)
- {
- if (pTexCoords[j][1] > fMax)
-diff -urN ../OpenSceneGraph.orig/src/osgPlugins/ac3d/ac3d.cpp ./src/osgPlugins/ac3d/ac3d.cpp
---- ../OpenSceneGraph.orig/src/osgPlugins/ac3d/ac3d.cpp Tue Nov 23 15:29:51 2004
-+++ ./src/osgPlugins/ac3d/ac3d.cpp Tue Feb 8 01:28:25 2005
-@@ -6,9 +6,9 @@
-
-
- #include <stdio.h>
--// Where is malloc.h really needed?
-+// Where is stdlib.h really needed?
- #if !defined(__APPLE__) && !defined(macintosh) && !defined(__FreeBSD__)
--#include <malloc.h>
-+#include <stdlib.h>
- #endif
- #include <math.h>
-
-diff -urN ../OpenSceneGraph.orig/src/osgPlugins/flt/Input.cpp ./src/osgPlugins/flt/Input.cpp
---- ../OpenSceneGraph.orig/src/osgPlugins/flt/Input.cpp Mon Nov 22 23:54:44 2004
-+++ ./src/osgPlugins/flt/Input.cpp Tue Feb 8 01:28:25 2005
-@@ -1,7 +1,7 @@
- // Input.cpp
-
- #include <string>
--// #include <malloc.h>
-+// #include <stdlib.h>
- #include <assert.h>
-
- #include <osg/Notify>
-diff -urN ../OpenSceneGraph.orig/src/osgPlugins/lib3ds/camera.cpp ./src/osgPlugins/lib3ds/camera.cpp
---- ../OpenSceneGraph.orig/src/osgPlugins/lib3ds/camera.cpp Fri Jan 24 15:12:52 2003
-+++ ./src/osgPlugins/lib3ds/camera.cpp Tue Feb 8 01:28:25 2005
-@@ -28,7 +28,7 @@
- #include <string.h>
- #include "config.h"
- #ifdef WITH_DMALLOC
--#include <dmalloc.h>
-+#include <dstdlib.h>
- #endif
-
-
-diff -urN ../OpenSceneGraph.orig/src/osgPlugins/lib3ds/file.cpp ./src/osgPlugins/lib3ds/file.cpp
---- ../OpenSceneGraph.orig/src/osgPlugins/lib3ds/file.cpp Fri Jan 24 15:12:53 2003
-+++ ./src/osgPlugins/lib3ds/file.cpp Tue Feb 8 01:28:25 2005
-@@ -34,7 +34,7 @@
- #include <math.h>
- #include "config.h"
- #ifdef WITH_DMALLOC
--#include <dmalloc.h>
-+#include <dstdlib.h>
- #endif
-
-
-diff -urN ../OpenSceneGraph.orig/src/osgPlugins/lib3ds/light.cpp ./src/osgPlugins/lib3ds/light.cpp
---- ../OpenSceneGraph.orig/src/osgPlugins/lib3ds/light.cpp Fri Jan 24 15:12:53 2003
-+++ ./src/osgPlugins/lib3ds/light.cpp Tue Feb 8 01:28:25 2005
-@@ -28,7 +28,7 @@
- #include <string.h>
- #include "config.h"
- #ifdef WITH_DMALLOC
--#include <dmalloc.h>
-+#include <dstdlib.h>
- #endif
-
-
-diff -urN ../OpenSceneGraph.orig/src/osgPlugins/lib3ds/material.cpp ./src/osgPlugins/lib3ds/material.cpp
---- ../OpenSceneGraph.orig/src/osgPlugins/lib3ds/material.cpp Fri Jan 24 15:12:53 2003
-+++ ./src/osgPlugins/lib3ds/material.cpp Tue Feb 8 01:28:25 2005
-@@ -28,7 +28,7 @@
- #include <string.h>
- #include "config.h"
- #ifdef WITH_DMALLOC
--#include <dmalloc.h>
-+#include <dstdlib.h>
- #endif
-
-
-diff -urN ../OpenSceneGraph.orig/src/osgPlugins/lib3ds/mesh.cpp ./src/osgPlugins/lib3ds/mesh.cpp
---- ../OpenSceneGraph.orig/src/osgPlugins/lib3ds/mesh.cpp Fri Jan 24 15:12:53 2003
-+++ ./src/osgPlugins/lib3ds/mesh.cpp Tue Feb 8 01:28:25 2005
-@@ -30,7 +30,7 @@
- #include <math.h>
- #include "config.h"
- #ifdef WITH_DMALLOC
--#include <dmalloc.h>
-+#include <dstdlib.h>
- #endif
-
-
-diff -urN ../OpenSceneGraph.orig/src/osgPlugins/lib3ds/node.cpp ./src/osgPlugins/lib3ds/node.cpp
---- ../OpenSceneGraph.orig/src/osgPlugins/lib3ds/node.cpp Fri Jan 24 15:12:54 2003
-+++ ./src/osgPlugins/lib3ds/node.cpp Tue Feb 8 01:28:25 2005
-@@ -30,7 +30,7 @@
- #include <math.h>
- #include "config.h"
- #ifdef WITH_DMALLOC
--#include <dmalloc.h>
-+#include <dstdlib.h>
- #endif
-
-
-diff -urN ../OpenSceneGraph.orig/src/osgPlugins/lib3ds/tracks.cpp ./src/osgPlugins/lib3ds/tracks.cpp
---- ../OpenSceneGraph.orig/src/osgPlugins/lib3ds/tracks.cpp Thu Aug 5 13:41:52 2004
-+++ ./src/osgPlugins/lib3ds/tracks.cpp Tue Feb 8 01:28:25 2005
-@@ -31,7 +31,7 @@
- #include <math.h>
- #include "config.h"
- #ifdef WITH_DMALLOC
--#include <dmalloc.h>
-+#include <dstdlib.h>
- #endif
-
-
-diff -urN ../OpenSceneGraph.orig/src/osgPlugins/lwo/Converter.cpp ./src/osgPlugins/lwo/Converter.cpp
---- ../OpenSceneGraph.orig/src/osgPlugins/lwo/Converter.cpp Mon Nov 22 23:54:44 2004
-+++ ./src/osgPlugins/lwo/Converter.cpp Tue Feb 8 01:28:23 2005
-@@ -246,7 +246,7 @@
- std::string file = osgDB::findDataFile(filename, options);
- if (file.empty()) return 0;
-
-- std::ifstream ifs(file.c_str(), std::ios_base::in | std::ios_base::binary);
-+ std::ifstream ifs(file.c_str(), std::ios::in | std::ios::binary);
- if (!ifs.is_open()) return 0;
-
- std::vector<char> buffer;
-diff -urN ../OpenSceneGraph.orig/src/osgPlugins/lwo/Object.cpp ./src/osgPlugins/lwo/Object.cpp
---- ../OpenSceneGraph.orig/src/osgPlugins/lwo/Object.cpp Mon Jun 28 14:18:48 2004
-+++ ./src/osgPlugins/lwo/Object.cpp Tue Feb 8 01:28:23 2005
-@@ -135,7 +135,7 @@
- }
- VertexMap *new_map = current_layer.units().back().weight_maps()->getOrCreate(vmap->name);
- for (lwo2::FORM::VMAP::Mapping_list::const_iterator i=vmap->mapping.begin(); i!=vmap->mapping.end(); ++i) {
-- (*new_map)[i->vert.index] = osg::Vec4(i->value.at(0), 0, 0, 0);
-+ (*new_map)[i->vert.index] = osg::Vec4(i->value[0], 0, 0, 0);
- }
- }
- if (type == "MNVW") {
-@@ -145,7 +145,7 @@
- }
- VertexMap *new_map = current_layer.units().back().subpatch_weight_maps()->getOrCreate(vmap->name);
- for (lwo2::FORM::VMAP::Mapping_list::const_iterator i=vmap->mapping.begin(); i!=vmap->mapping.end(); ++i) {
-- (*new_map)[i->vert.index] = osg::Vec4(i->value.at(0), 0, 0, 0);
-+ (*new_map)[i->vert.index] = osg::Vec4(i->value[0], 0, 0, 0);
- }
- }
- if (type == "TXUV") {
-@@ -155,7 +155,7 @@
- }
- VertexMap *new_map = current_layer.units().back().texture_maps()->getOrCreate(vmap->name);
- for (lwo2::FORM::VMAP::Mapping_list::const_iterator i=vmap->mapping.begin(); i!=vmap->mapping.end(); ++i) {
-- (*new_map)[i->vert.index] = osg::Vec4(i->value.at(0), i->value.at(1), 0, 0);
-+ (*new_map)[i->vert.index] = osg::Vec4(i->value[0], i->value[1], 0, 0);
- }
- }
- if (type == "RGB ") {
-@@ -165,7 +165,7 @@
- }
- VertexMap *new_map = current_layer.units().back().rgb_maps()->getOrCreate(vmap->name);
- for (lwo2::FORM::VMAP::Mapping_list::const_iterator i=vmap->mapping.begin(); i!=vmap->mapping.end(); ++i) {
-- (*new_map)[i->vert.index] = osg::Vec4(i->value.at(0), i->value.at(1), i->value.at(2), 1);
-+ (*new_map)[i->vert.index] = osg::Vec4(i->value[0], i->value[1], i->value[2], 1);
- }
- }
- if (type == "RGBA") {
-@@ -175,7 +175,7 @@
- }
- VertexMap *new_map = current_layer.units().back().rgba_maps()->getOrCreate(vmap->name);
- for (lwo2::FORM::VMAP::Mapping_list::const_iterator i=vmap->mapping.begin(); i!=vmap->mapping.end(); ++i) {
-- (*new_map)[i->vert.index] = osg::Vec4(i->value.at(0), i->value.at(1), i->value.at(2), i->value.at(3));
-+ (*new_map)[i->vert.index] = osg::Vec4(i->value[0], i->value[1], i->value[2], i->value[3]);
- }
- }
- if (type == "MORF") {
-@@ -185,7 +185,7 @@
- }
- VertexMap *new_map = current_layer.units().back().displacement_maps()->getOrCreate(vmap->name);
- for (lwo2::FORM::VMAP::Mapping_list::const_iterator i=vmap->mapping.begin(); i!=vmap->mapping.end(); ++i) {
-- (*new_map)[i->vert.index] = osg::Vec4(i->value.at(0), i->value.at(1), i->value.at(2), 0);
-+ (*new_map)[i->vert.index] = osg::Vec4(i->value[0], i->value[1], i->value[2], 0);
- }
- }
- if (type == "SPOT") {
-@@ -195,7 +195,7 @@
- }
- VertexMap *new_map = current_layer.units().back().spot_maps()->getOrCreate(vmap->name);
- for (lwo2::FORM::VMAP::Mapping_list::const_iterator i=vmap->mapping.begin(); i!=vmap->mapping.end(); ++i) {
-- (*new_map)[i->vert.index] = osg::Vec4(csf_->fix_point(osg::Vec3(i->value.at(0), i->value.at(1), i->value.at(2))), 0);
-+ (*new_map)[i->vert.index] = osg::Vec4(csf_->fix_point(osg::Vec3(i->value[0], i->value[1], i->value[2])), 0);
- }
- }
- }
-@@ -223,15 +223,15 @@
-
- if (must_invert_winding) {
- for (unsigned j=0; j<i->numvert; ++j) {
-- int index = i->vert.at((i->numvert-j)%i->numvert).index;
-+ int index = i->vert[(i->numvert-j)%i->numvert].index;
- polygon.indices().push_back(index);
-- current_layer.units().back().shares().at(index).push_back(current_layer.units().back().polygons().size());
-+ current_layer.units().back().shares()[index].push_back(current_layer.units().back().polygons().size());
- }
- } else {
- for (unsigned j=0; j<i->numvert; ++j) {
-- int index = i->vert.at(j).index;
-+ int index = i->vert[j].index;
- polygon.indices().push_back(index);
-- current_layer.units().back().shares().at(index).push_back(current_layer.units().back().polygons().size());
-+ current_layer.units().back().shares()[index].push_back(current_layer.units().back().polygons().size());
- }
- }
- current_layer.units().back().polygons().push_back(polygon);
-@@ -248,17 +248,17 @@
- std::string type(ptag->type.id, 4);
- if (type == "SURF") {
- for (lwo2::FORM::PTAG::Mapping_list::const_iterator i=ptag->mapping.begin(); i!=ptag->mapping.end(); ++i) {
-- current_layer.units().back().polygons().at(i->poly.index).set_surface(&surfaces_[tag_strings.at(i->tag)]);
-+ current_layer.units().back().polygons()[i->poly.index].set_surface(&surfaces_[tag_strings[i->tag]]);
- }
- }
- if (type == "PART") {
- for (lwo2::FORM::PTAG::Mapping_list::const_iterator i=ptag->mapping.begin(); i!=ptag->mapping.end(); ++i) {
-- current_layer.units().back().polygons().at(i->poly.index).set_part_name(tag_strings.at(i->tag));
-+ current_layer.units().back().polygons()[i->poly.index].set_part_name(tag_strings[i->tag]);
- }
- }
- if (type == "SMGP") {
- for (lwo2::FORM::PTAG::Mapping_list::const_iterator i=ptag->mapping.begin(); i!=ptag->mapping.end(); ++i) {
-- current_layer.units().back().polygons().at(i->poly.index).set_smoothing_group(tag_strings.at(i->tag));
-+ current_layer.units().back().polygons()[i->poly.index].set_smoothing_group(tag_strings[i->tag]);
- }
- }
- }
-@@ -272,8 +272,8 @@
- continue;
- }
- for (lwo2::FORM::VMAD::Mapping_list::const_iterator i=vmad->mapping.begin(); i!=vmad->mapping.end(); ++i) {
-- VertexMap *this_map = current_layer.units().back().polygons().at(i->poly.index).weight_maps()->getOrCreate(vmad->name);
-- (*this_map)[i->vert.index] = osg::Vec4(i->value.at(0), 0, 0, 0);
-+ VertexMap *this_map = current_layer.units().back().polygons()[i->poly.index].weight_maps()->getOrCreate(vmad->name);
-+ (*this_map)[i->vert.index] = osg::Vec4(i->value[0], 0, 0, 0);
- }
- }
- if (type == "TXUV") {
-@@ -282,8 +282,8 @@
- continue;
- }
- for (lwo2::FORM::VMAD::Mapping_list::const_iterator i=vmad->mapping.begin(); i!=vmad->mapping.end(); ++i) {
-- VertexMap *this_map = current_layer.units().back().polygons().at(i->poly.index).texture_maps()->getOrCreate(vmad->name);
-- (*this_map)[i->vert.index] = osg::Vec4(i->value.at(0), i->value.at(1), 0, 0);
-+ VertexMap *this_map = current_layer.units().back().polygons()[i->poly.index].texture_maps()->getOrCreate(vmad->name);
-+ (*this_map)[i->vert.index] = osg::Vec4(i->value[0], i->value[1], 0, 0);
- }
- }
- if (type == "RGB ") {
-@@ -292,8 +292,8 @@
- continue;
- }
- for (lwo2::FORM::VMAD::Mapping_list::const_iterator i=vmad->mapping.begin(); i!=vmad->mapping.end(); ++i) {
-- VertexMap *this_map = current_layer.units().back().polygons().at(i->poly.index).rgb_maps()->getOrCreate(vmad->name);
-- (*this_map)[i->vert.index] = osg::Vec4(i->value.at(0), i->value.at(1), i->value.at(2), 1);
-+ VertexMap *this_map = current_layer.units().back().polygons()[i->poly.index].rgb_maps()->getOrCreate(vmad->name);
-+ (*this_map)[i->vert.index] = osg::Vec4(i->value[0], i->value[1], i->value[2], 1);
- }
- }
- if (type == "RGBA") {
-@@ -302,8 +302,8 @@
- continue;
- }
- for (lwo2::FORM::VMAD::Mapping_list::const_iterator i=vmad->mapping.begin(); i!=vmad->mapping.end(); ++i) {
-- VertexMap *this_map = current_layer.units().back().polygons().at(i->poly.index).rgba_maps()->getOrCreate(vmad->name);
-- (*this_map)[i->vert.index] = osg::Vec4(i->value.at(0), i->value.at(1), i->value.at(2), i->value.at(3));
-+ VertexMap *this_map = current_layer.units().back().polygons()[i->poly.index].rgba_maps()->getOrCreate(vmad->name);
-+ (*this_map)[i->vert.index] = osg::Vec4(i->value[0], i->value[1], i->value[2], i->value[3]);
- }
- }
- }
-diff -urN ../OpenSceneGraph.orig/src/osgPlugins/lwo/Polygon.h ./src/osgPlugins/lwo/Polygon.h
---- ../OpenSceneGraph.orig/src/osgPlugins/lwo/Polygon.h Sat Jan 3 15:20:32 2004
-+++ ./src/osgPlugins/lwo/Polygon.h Tue Feb 8 01:28:23 2005
-@@ -95,9 +95,9 @@
- if (last_used_points_ != points) {
- normal_.set(0, 0, 0);
- if (indices_.size() >= 3) {
-- const osg::Vec3 &A = points->at(indices_.front());
-- const osg::Vec3 &B = points->at(indices_[1]);
-- const osg::Vec3 &C = points->at(indices_.back());
-+ const osg::Vec3 &A = (*points)[indices_.front()];
-+ const osg::Vec3 &B = (*points)[indices_[1]];
-+ const osg::Vec3 &C = (*points)[indices_.back()];
- if (invert_normal_) {
- normal_ = (C - A) ^ (B - A);
- } else {
-diff -urN ../OpenSceneGraph.orig/src/osgPlugins/lwo/ReaderWriterLWO.cpp ./src/osgPlugins/lwo/ReaderWriterLWO.cpp
---- ../OpenSceneGraph.orig/src/osgPlugins/lwo/ReaderWriterLWO.cpp Tue Nov 23 15:29:51 2004
-+++ ./src/osgPlugins/lwo/ReaderWriterLWO.cpp Tue Feb 8 01:28:23 2005
-@@ -18,6 +18,7 @@
- #include <string>
- #include <sstream>
- #include <algorithm>
-+#include <memory>
-
- #include <osg/Notify>
- #include <osg/Node>
-diff -urN ../OpenSceneGraph.orig/src/osgPlugins/lwo/Unit.cpp ./src/osgPlugins/lwo/Unit.cpp
---- ../OpenSceneGraph.orig/src/osgPlugins/lwo/Unit.cpp Sat Jan 3 15:20:32 2004
-+++ ./src/osgPlugins/lwo/Unit.cpp Tue Feb 8 01:28:23 2005
-@@ -75,11 +75,11 @@
- osg::Vec4 N(poly.face_normal(points_.get()), 0);
- unsigned num_smoothed = 1;
-
-- const Index_list &shared_polys = shares_.at(*j);
-+ const Index_list &shared_polys = shares_[*j];
-
- for (unsigned k=0; k<shared_polys.size(); ++k) {
- if (shared_polys[k] != pn) {
-- const Polygon &shared_poly = polygons_.at(shared_polys[k]);
-+ const Polygon &shared_poly = polygons_[shared_polys[k]];
- float angle = angle_between_polygons(poly, shared_poly);
- if (angle <= max_smoothing_angle && (poly.get_smoothing_group() == shared_poly.get_smoothing_group())) {
- N += osg::Vec4(shared_poly.face_normal(points_.get()), 0);
-@@ -157,7 +157,7 @@
- if (poly.dup_vertices()[j] == 0) {
-
- // duplicate point
-- points_->push_back(points_->at(*i));
-+ points_->push_back((*points_)[*i]);
-
- int new_index = static_cast<int>(points_->size())-1;
-
-@@ -165,7 +165,7 @@
- (*normals_.get())[new_index] = (*normals_.get())[*i];
-
- // duplicate share
-- shares_.push_back(shares_.at(*i));
-+ shares_.push_back(shares_[*i]);
-
- VertexMap_map::iterator vm;
-
-diff -urN ../OpenSceneGraph.orig/src/osgPlugins/lwo/VertexMap.cpp ./src/osgPlugins/lwo/VertexMap.cpp
---- ../OpenSceneGraph.orig/src/osgPlugins/lwo/VertexMap.cpp Sat Jan 3 15:20:32 2004
-+++ ./src/osgPlugins/lwo/VertexMap.cpp Tue Feb 8 01:28:23 2005
-@@ -21,7 +21,7 @@
- value.y() *= modulator.y();
- value.z() *= modulator.z();
- value.w() *= modulator.w();
-- array->at(i->first) = value;
-+ (*array)[i->first] = value;
- }
- return array.take();
- }
-@@ -34,7 +34,7 @@
- osg::Vec4 value = i->second;
- value.x() *= modulator.x();
- value.y() *= modulator.y();
-- array->at(i->first) = osg::Vec2(value.x(), value.y());
-+ (*array)[i->first] = osg::Vec2(value.x(), value.y());
- }
- return array.take();
- }
-@@ -48,7 +48,7 @@
- value.x() *= modulator.x();
- value.y() *= modulator.y();
- value.z() *= modulator.z();
-- array->at(i->first) = osg::Vec3(value.x(), value.y(), value.z());
-+ (*array)[i->first] = osg::Vec3(value.x(), value.y(), value.z());
- }
- return array.take();
- }
-diff -urN ../OpenSceneGraph.orig/src/osgPlugins/lwo/iffparser.h ./src/osgPlugins/lwo/iffparser.h
---- ../OpenSceneGraph.orig/src/osgPlugins/lwo/iffparser.h Wed Jun 9 16:28:51 2004
-+++ ./src/osgPlugins/lwo/iffparser.h Tue Feb 8 01:28:23 2005
-@@ -10,6 +10,7 @@
-
- #include <vector>
- #include <iostream>
-+#include <string>
-
- namespace iff
- {
-diff -urN ../OpenSceneGraph.orig/src/osgPlugins/obj/obj.cpp ./src/osgPlugins/obj/obj.cpp
---- ../OpenSceneGraph.orig/src/osgPlugins/obj/obj.cpp Mon Nov 22 23:54:45 2004
-+++ ./src/osgPlugins/obj/obj.cpp Tue Feb 8 01:28:23 2005
-@@ -15,6 +15,8 @@
-
- #include "obj.h"
-
-+#include <cstdio>
-+
- #include <osg/Notify>
-
- #include <osgDB/FileUtils>
-@@ -75,7 +77,7 @@
- // need to keep return;
- skipNewline = true;
- }
-- else if (c!=std::ifstream::traits_type::eof()) // don't copy eof.
-+ else if (c!=EOF) // don't copy eof.
- {
- skipNewline = false;
-
-diff -urN ../OpenSceneGraph.orig/src/osgPlugins/obj/obj.h ./src/osgPlugins/obj/obj.h
---- ../OpenSceneGraph.orig/src/osgPlugins/obj/obj.h Mon Nov 22 23:54:45 2004
-+++ ./src/osgPlugins/obj/obj.h Tue Feb 8 01:28:24 2005
-@@ -17,7 +17,7 @@
- #include <string>
- #include <vector>
- #include <map>
--#include <istream>
-+#include <istream.h>
-
- #include <osg/ref_ptr>
- #include <osg/Referenced>
-diff -urN ../OpenSceneGraph.orig/src/osgPlugins/osga/OSGA_Archive.cpp ./src/osgPlugins/osga/OSGA_Archive.cpp
---- ../OpenSceneGraph.orig/src/osgPlugins/osga/OSGA_Archive.cpp Tue Nov 23 15:29:52 2004
-+++ ./src/osgPlugins/osga/OSGA_Archive.cpp Tue Feb 8 01:28:23 2005
-@@ -235,7 +235,7 @@
- if (status==READ)
- {
- _status = status;
-- _input.open(filename.c_str(), std::ios_base::binary | std::ios_base::in);
-+ _input.open(filename.c_str(), std::ios::binary | std::ios::in);
-
- return _open(_input);
- }
-@@ -246,7 +246,7 @@
- _input.close();
- _status = WRITE;
-
-- _output.open(filename.c_str(), std::ios_base::binary | std::ios_base::in | std::ios_base::out);
-+ _output.open(filename.c_str(), std::ios::binary | std::ios::in | std::ios::out);
-
- osg::notify(osg::INFO)<<"File position after open = "<<(int)_output.tellp()<<" is_open "<<_output.is_open()<<std::endl;
-
-@@ -264,7 +264,7 @@
- osg::notify(osg::INFO)<<"OSGA_Archive::open("<<filename<<"), archive being created."<<std::endl;
-
- _status = WRITE;
-- _output.open(filename.c_str(), std::ios_base::out | std::ios_base::binary | std::ios_base::trunc);
-+ _output.open(filename.c_str(), std::ios::out | std::ios::binary | std::ios::trunc);
- _output<<"osga";
- _output.write(reinterpret_cast<const char*>(&ENDIAN_TEST_NUMBER),4);
- _output.write(reinterpret_cast<char*>(&s_currentSupportedVersion),sizeof(float));
-@@ -475,6 +475,7 @@
- class proxy_streambuf : public std::streambuf
- {
- public:
-+ typedef int int_type;
-
- proxy_streambuf(std::streambuf* streambuf, unsigned int numChars):
- _streambuf(streambuf),
diff --git a/graphics/osg-devel/files/patch-Make::makedefs b/graphics/osg-devel/files/patch-Make::makedefs
deleted file mode 100644
index d3d7dc6d4be3..000000000000
--- a/graphics/osg-devel/files/patch-Make::makedefs
+++ /dev/null
@@ -1,43 +0,0 @@
---- Make/makedefs.orig Sun Dec 5 11:03:43 2004
-+++ Make/makedefs Mon Feb 7 10:59:22 2005
-@@ -402,24 +402,35 @@
-
- #### FreeBSD specific definitions
- ifeq ($(OS),FreeBSD)
-- C++ = g++
-+ C++ = ${CXX}
- DEPARG = -MM
-- INC += -I/usr/local/include -I/usr/X11R6/include
-+ INC += -I${LOCALBASE}/include -I${X11BASE}/include
- DEF += -W -Wall
-- OPTF = -O2
-+ OPTF ?= -O2
- DBGF = -g -DOSG_COMPILE_UNIT_TESTS
- SHARED = -shared
- ARCH =
- ARCHINST =
- ARCHARGS =
-- LINKARGS = -L/usr/X11R6/lib -L/usr/local/lib -rpath /usr/local/lib -pthread
-+ LINKARGS = -L${X11BASE}/lib -L${LOCALBASE}/lib -rpath ${LOCALBASE}/lib -rpath ${X11BASE}/lib -pthread
- DYNAMICLIBRARYLIB =
- OSG_LIBS = -losgGA -losgDB -losgUtil -losg
- GL_LIBS = -lGLU -lGL
- X_INC = -I/usr/X11R6/include
- X_LIBS = -lXmu -lX11
- SOCKET_LIBS =
-- OTHER_LIBS = -lOpenThreads
-+ OTHER_LIBS = -lOpenThreads ${PTHREAD_LIBS}
-+ # PREFIX, EXAMPLESDIR, DOCSDIR, and DATADIR are defined by the port
-+ INST_LOCATION = ${PREFIX}
-+ INST_SHARE = ${PREFIX}/share
-+ INST_EXAMPLES = ${EXAMPLESDIR}/bin
-+ INST_EXAMPLE_SRC = ${EXAMPLESDIR}/src
-+ INST_DOC = ${DOCSDIR}
-+ INST_SRC = ${EXAMPLESDIR}/src
-+ INST_DATA = ${DATADIR}
-+ INSTBINCMD = ${BSD_INSTALL_PROGRAM}
-+ INSTDEVCMD = ${BSD_INSTALL_DATA}
-+ LIBXML2_INCLUDE = -I${LOCALBASE}/include/libxml2
- PNG_LIBS = -lpng
- JPEG_LIBS = -ljpeg
- TIFF_LIB = -ltiff
diff --git a/graphics/osg-devel/files/patch-Make::makedirdefs b/graphics/osg-devel/files/patch-Make::makedirdefs
deleted file mode 100644
index 9ae35e729f60..000000000000
--- a/graphics/osg-devel/files/patch-Make::makedirdefs
+++ /dev/null
@@ -1,14 +0,0 @@
---- Make/makedirdefs.orig Tue Jul 22 21:12:55 2003
-+++ Make/makedirdefs Tue Jul 22 21:13:50 2003
-@@ -58,9 +58,11 @@
- ifneq ($(OS),Darwin)
- ifneq ($(OS),SunOS)
- ifneq ($(OS),IRIX)
-+ifneq ($(OS),FreeBSD)
-
- PLUGIN_DIRS += geo
-
-+endif
- endif
- endif
- endif
diff --git a/graphics/osg-devel/files/patch-Make::makerules b/graphics/osg-devel/files/patch-Make::makerules
deleted file mode 100644
index 4a349995a93c..000000000000
--- a/graphics/osg-devel/files/patch-Make::makerules
+++ /dev/null
@@ -1,29 +0,0 @@
---- Make/makerules.orig Fri Aug 8 22:41:37 2003
-+++ Make/makerules Sat Oct 18 01:42:58 2003
-@@ -110,7 +110,7 @@
- $(EXEC:=.opt) :
- @[ -d $(OPTDIR) ] || mkdir $(OPTDIR)
- @cd $(OPTDIR); \
-- $(MAKE) -f ../GNUmakefile DOF=$(OPTF) TOPDIR=../${TOPDIR} \
-+ $(MAKE) -f ../GNUmakefile "DOF=$(OPTF)" TOPDIR=../${TOPDIR} \
- THISDIR=../$(THISDIR)\
- MAKEDEPEND=Makedepend $(EXEC)
- @$(MAKE) LNSRC=$(OPTDIR)/$(EXEC) LNDEST=$(BININST)/$(OS)$(ARCH)/$(EXEC) __link
-@@ -119,7 +119,7 @@
- $(LIB:=.opt) :
- @[ -d $(OPTDIR) ] || mkdir -p $(OPTDIR)
- @cd $(OPTDIR);\
-- $(MAKE) -f ../GNUmakefile DOF=$(OPTF) TOPDIR=../${TOPDIR} \
-+ $(MAKE) -f ../GNUmakefile "DOF=$(OPTF)" TOPDIR=../${TOPDIR} \
- THISDIR=../$(THISDIR)\
- MAKEDEPEND=Makedepend $(LIB)
- @$(MAKE) LNSRC=$(OPTDIR)/$(LIB) LNDEST=$(LIBINST)/$(OS)$(ARCH)/$(LIB) __link
-@@ -127,7 +127,7 @@
- $(PLUGIN:=.opt) :
- @[ -d $(OPTDIR) ] || mkdir -p $(OPTDIR)
- @cd $(OPTDIR); \
-- $(MAKE) -f ../GNUmakefile DOF=$(OPTF) TOPDIR=../${TOPDIR} \
-+ $(MAKE) -f ../GNUmakefile "DOF=$(OPTF)" TOPDIR=../${TOPDIR} \
- THISDIR=../$(THISDIR)\
- MAKEDEPEND=Makedepend $(PLUGIN)
- @$(MAKE) LNSRC=$(OPTDIR)/$(PLUGIN) LNDEST=$(PLUGININST)/$(PLUGIN) __link
diff --git a/graphics/osg-devel/pkg-descr b/graphics/osg-devel/pkg-descr
deleted file mode 100644
index 614609091396..000000000000
--- a/graphics/osg-devel/pkg-descr
+++ /dev/null
@@ -1,6 +0,0 @@
-The Open Scene Graph is a cross-platform C++ OpenGL library for the
-real-time, photo-realistic rendering of large 3D models. Uses range from
-visual simulation, to scientific modelling, to games, to whatever you can
-think of!
-
-WWW: http://www.openscenegraph.org/
diff --git a/graphics/osg-devel/pkg-plist b/graphics/osg-devel/pkg-plist
deleted file mode 100644
index 3211299129f7..000000000000
--- a/graphics/osg-devel/pkg-plist
+++ /dev/null
@@ -1,640 +0,0 @@
-include/osg/AlphaFunc
-include/osg/AnimationPath
-include/osg/ApplicationUsage
-include/osg/ArgumentParser
-include/osg/Array
-include/osg/AutoTransform
-include/osg/Billboard
-include/osg/BlendColor
-include/osg/BlendFunc
-include/osg/BoundingBox
-include/osg/BoundingSphere
-include/osg/BoundsChecking
-include/osg/ClearNode
-include/osg/ClipNode
-include/osg/ClipPlane
-include/osg/ClusterCullingCallback
-include/osg/CollectOccludersVisitor
-include/osg/ColorMask
-include/osg/ColorMatrix
-include/osg/ConvexPlanarOccluder
-include/osg/ConvexPlanarPolygon
-include/osg/CoordinateSystemNode
-include/osg/CopyOp
-include/osg/CullFace
-include/osg/CullSettings
-include/osg/CullStack
-include/osg/CullingSet
-include/osg/Depth
-include/osg/DisplaySettings
-include/osg/DrawPixels
-include/osg/Drawable
-include/osg/Endian
-include/osg/Export
-include/osg/Fog
-include/osg/FragmentProgram
-include/osg/FrameStamp
-include/osg/FrontFace
-include/osg/GL
-include/osg/GLExtensions
-include/osg/GLU
-include/osg/Geode
-include/osg/Geometry
-include/osg/Group
-include/osg/Image
-include/osg/ImageStream
-include/osg/Impostor
-include/osg/ImpostorSprite
-include/osg/LOD
-include/osg/Light
-include/osg/LightModel
-include/osg/LightSource
-include/osg/LineSegment
-include/osg/LineStipple
-include/osg/LineWidth
-include/osg/Material
-include/osg/Math
-include/osg/Matrix
-include/osg/MatrixTransform
-include/osg/Matrixd
-include/osg/Matrixf
-include/osg/Multisample
-include/osg/Node
-include/osg/NodeCallback
-include/osg/NodeVisitor
-include/osg/Notify
-include/osg/Object
-include/osg/OccluderNode
-include/osg/PagedLOD
-include/osg/Plane
-include/osg/Point
-include/osg/PointSprite
-include/osg/PolygonMode
-include/osg/PolygonOffset
-include/osg/PolygonStipple
-include/osg/Polytope
-include/osg/PositionAttitudeTransform
-include/osg/PrimitiveSet
-include/osg/Projection
-include/osg/Quat
-include/osg/RefNodePath
-include/osg/Referenced
-include/osg/Sequence
-include/osg/ShadeModel
-include/osg/ShadowVolumeOccluder
-include/osg/Shape
-include/osg/ShapeDrawable
-include/osg/State
-include/osg/StateAttribute
-include/osg/StateSet
-include/osg/Stencil
-include/osg/Switch
-include/osg/TexEnv
-include/osg/TexEnvCombine
-include/osg/TexEnvFilter
-include/osg/TexGen
-include/osg/TexGenNode
-include/osg/TexMat
-include/osg/Texture
-include/osg/Texture1D
-include/osg/Texture2D
-include/osg/Texture3D
-include/osg/TextureCubeMap
-include/osg/TextureRectangle
-include/osg/Timer
-include/osg/Transform
-include/osg/TriangleFunctor
-include/osg/TriangleIndexFunctor
-include/osg/UByte4
-include/osg/UnitTestFramework
-include/osg/Vec2
-include/osg/Vec2d
-include/osg/Vec2f
-include/osg/Vec3
-include/osg/Vec3d
-include/osg/Vec3f
-include/osg/Vec4
-include/osg/Vec4d
-include/osg/Vec4f
-include/osg/Version
-include/osg/VertexProgram
-include/osg/Viewport
-include/osg/buffered_value
-include/osg/fast_back_stack
-include/osg/ref_ptr
-include/osgDB/Archive
-include/osgDB/DatabasePager
-include/osgDB/DotOsgWrapper
-include/osgDB/DynamicLibrary
-include/osgDB/Export
-include/osgDB/Field
-include/osgDB/FieldReader
-include/osgDB/FieldReaderIterator
-include/osgDB/FileNameUtils
-include/osgDB/FileUtils
-include/osgDB/ImageOptions
-include/osgDB/Input
-include/osgDB/Output
-include/osgDB/ParameterOutput
-include/osgDB/ReadFile
-include/osgDB/ReaderWriter
-include/osgDB/ReentrantMutex
-include/osgDB/Registry
-include/osgDB/SharedStateManager
-include/osgDB/Version
-include/osgDB/WriteFile
-include/osgFX/AnisotropicLighting
-include/osgFX/BumpMapping
-include/osgFX/Cartoon
-include/osgFX/Effect
-include/osgFX/Export
-include/osgFX/Registry
-include/osgFX/Scribe
-include/osgFX/SpecularHighlights
-include/osgFX/Technique
-include/osgFX/Validator
-include/osgGA/AnimationPathManipulator
-include/osgGA/DriveManipulator
-include/osgGA/Export
-include/osgGA/FlightManipulator
-include/osgGA/GUIActionAdapter
-include/osgGA/GUIEventAdapter
-include/osgGA/GUIEventHandler
-include/osgGA/GUIEventHandlerVisitor
-include/osgGA/KeySwitchMatrixManipulator
-include/osgGA/MatrixManipulator
-include/osgGA/NodeTrackerManipulator
-include/osgGA/SetSceneViewVisitor
-include/osgGA/StateSetManipulator
-include/osgGA/TerrainManipulator
-include/osgGA/TrackballManipulator
-include/osgGA/Version
-include/osgGL2/Export
-include/osgGL2/Extensions
-include/osgGL2/ProgramObject
-include/osgGL2/UniformValue
-include/osgGL2/Version
-include/osgParticle/AccelOperator
-include/osgParticle/AngularAccelOperator
-include/osgParticle/CenteredPlacer
-include/osgParticle/Counter
-include/osgParticle/Emitter
-include/osgParticle/ExplosionEffect
-include/osgParticle/Export
-include/osgParticle/FireEffect
-include/osgParticle/FluidFrictionOperator
-include/osgParticle/ForceOperator
-include/osgParticle/Interpolator
-include/osgParticle/LinearInterpolator
-include/osgParticle/ModularEmitter
-include/osgParticle/ModularProgram
-include/osgParticle/MultiSegmentPlacer
-include/osgParticle/Operator
-include/osgParticle/Particle
-include/osgParticle/ParticleEffect
-include/osgParticle/ParticleProcessor
-include/osgParticle/ParticleSystem
-include/osgParticle/ParticleSystemUpdater
-include/osgParticle/Placer
-include/osgParticle/PointPlacer
-include/osgParticle/Program
-include/osgParticle/RadialShooter
-include/osgParticle/RandomRateCounter
-include/osgParticle/SectorPlacer
-include/osgParticle/SegmentPlacer
-include/osgParticle/Shooter
-include/osgParticle/SmokeEffect
-include/osgParticle/VariableRateCounter
-include/osgParticle/Version
-include/osgParticle/range
-include/osgProducer/EventAdapter
-include/osgProducer/Export
-include/osgProducer/KeyboardMouseCallback
-include/osgProducer/OsgCameraGroup
-include/osgProducer/OsgSceneHandler
-include/osgProducer/Version
-include/osgProducer/Viewer
-include/osgProducer/ViewerEventHandler
-include/osgSim/BlinkSequence
-include/osgSim/ColorRange
-include/osgSim/DOFTransform
-include/osgSim/Export
-include/osgSim/GeographicLocation
-include/osgSim/LightPoint
-include/osgSim/LightPointNode
-include/osgSim/LightPointSystem
-include/osgSim/MultiSwitch
-include/osgSim/ScalarBar
-include/osgSim/ScalarsToColors
-include/osgSim/Sector
-include/osgSim/SphereSegment
-include/osgSim/Version
-include/osgSim/VisibilityGroup
-include/osgTerrain/DataSet
-include/osgTerrain/Export
-include/osgTerrain/HeightFieldNode
-include/osgTerrain/HeightFieldRenderer
-include/osgTerrain/Version
-include/osgText/Export
-include/osgText/Font
-include/osgText/String
-include/osgText/Text
-include/osgText/Version
-include/osgUtil/CubeMapGenerator
-include/osgUtil/CullVisitor
-include/osgUtil/DelaunayTriangulator
-include/osgUtil/DisplayRequirementsVisitor
-include/osgUtil/Export
-include/osgUtil/GLObjectsVisitor
-include/osgUtil/HalfWayMapGenerator
-include/osgUtil/HighlightMapGenerator
-include/osgUtil/InsertImpostorsVisitor
-include/osgUtil/IntersectVisitor
-include/osgUtil/Optimizer
-include/osgUtil/ReflectionMapGenerator
-include/osgUtil/RenderBin
-include/osgUtil/RenderGraph
-include/osgUtil/RenderLeaf
-include/osgUtil/RenderStage
-include/osgUtil/RenderStageLighting
-include/osgUtil/RenderToTextureStage
-include/osgUtil/SceneView
-include/osgUtil/Simplifier
-include/osgUtil/SmoothingVisitor
-include/osgUtil/Statistics
-include/osgUtil/TangentSpaceGenerator
-include/osgUtil/Tesselator
-include/osgUtil/TransformAttributeFunctor
-include/osgUtil/TransformCallback
-include/osgUtil/TriStripVisitor
-include/osgUtil/UpdateVisitor
-include/osgUtil/Version
-lib/libosg.so
-lib/libosgDB.so
-lib/libosgFX.so
-lib/libosgGA.so
-lib/libosgGL2.so
-lib/libosgParticle.so
-lib/libosgProducer.so
-lib/libosgSim.so
-lib/libosgText.so
-lib/libosgUtil.so
-lib/osgPlugins/osgdb_3dc.so
-lib/osgPlugins/osgdb_3ds.so
-lib/osgPlugins/osgdb_ac.so
-lib/osgPlugins/osgdb_bmp.so
-lib/osgPlugins/osgdb_dds.so
-lib/osgPlugins/osgdb_dw.so
-lib/osgPlugins/osgdb_flt.so
-lib/osgPlugins/osgdb_freetype.so
-lib/osgPlugins/osgdb_gif.so
-lib/osgPlugins/osgdb_ive.so
-lib/osgPlugins/osgdb_jpeg.so
-lib/osgPlugins/osgdb_logo.so
-lib/osgPlugins/osgdb_lwo.so
-lib/osgPlugins/osgdb_lws.so
-lib/osgPlugins/osgdb_md2.so
-lib/osgPlugins/osgdb_net.so
-lib/osgPlugins/osgdb_obj.so
-lib/osgPlugins/osgdb_osg.so
-lib/osgPlugins/osgdb_osgFX.so
-lib/osgPlugins/osgdb_osgParticle.so
-lib/osgPlugins/osgdb_osgSim.so
-lib/osgPlugins/osgdb_osgText.so
-lib/osgPlugins/osgdb_osga.so
-lib/osgPlugins/osgdb_osgtgz.so
-lib/osgPlugins/osgdb_pic.so
-lib/osgPlugins/osgdb_png.so
-lib/osgPlugins/osgdb_pnm.so
-lib/osgPlugins/osgdb_rgb.so
-lib/osgPlugins/osgdb_rot.so
-lib/osgPlugins/osgdb_scale.so
-lib/osgPlugins/osgdb_stl.so
-lib/osgPlugins/osgdb_tga.so
-lib/osgPlugins/osgdb_tgz.so
-lib/osgPlugins/osgdb_tiff.so
-lib/osgPlugins/osgdb_trans.so
-lib/osgPlugins/osgdb_txp.so
-lib/osgPlugins/osgdb_x.so
-lib/osgPlugins/osgdb_zip.so
-@dirrm include/osg
-@dirrm include/osgDB
-@dirrm include/osgFX
-@dirrm include/osgGA
-@dirrm include/osgGL2
-@dirrm include/osgParticle
-@dirrm include/osgProducer
-@dirrm include/osgSim
-@dirrm include/osgTerrain
-@dirrm include/osgText
-@dirrm include/osgUtil
-@dirrm lib/osgPlugins
-%%EXAMPLESDIR%%/bin/osganimate
-%%EXAMPLESDIR%%/bin/osgarchive
-%%EXAMPLESDIR%%/bin/osgautotransform
-%%EXAMPLESDIR%%/bin/osgbillboard
-%%EXAMPLESDIR%%/bin/osgcallback
-%%EXAMPLESDIR%%/bin/osgcameragroup
-%%EXAMPLESDIR%%/bin/osgclip
-%%EXAMPLESDIR%%/bin/osgcluster
-%%EXAMPLESDIR%%/bin/osgconv
-%%EXAMPLESDIR%%/bin/osgcopy
-%%EXAMPLESDIR%%/bin/osgcubemap
-%%EXAMPLESDIR%%/bin/osgdepthshadow
-%%EXAMPLESDIR%%/bin/osgdistortion
-%%EXAMPLESDIR%%/bin/osgforest
-%%EXAMPLESDIR%%/bin/osgfxbrowser
-%%EXAMPLESDIR%%/bin/osggeodemo
-%%EXAMPLESDIR%%/bin/osggeometry
-%%EXAMPLESDIR%%/bin/osghangglide
-%%EXAMPLESDIR%%/bin/osghud
-%%EXAMPLESDIR%%/bin/osgimpostor
-%%EXAMPLESDIR%%/bin/osgkeyboard
-%%EXAMPLESDIR%%/bin/osgkeyboardmouse
-%%EXAMPLESDIR%%/bin/osglauncher
-%%EXAMPLESDIR%%/bin/osglight
-%%EXAMPLESDIR%%/bin/osglightpoint
-%%EXAMPLESDIR%%/bin/osglogo
-%%EXAMPLESDIR%%/bin/osgmotionblur
-%%EXAMPLESDIR%%/bin/osgmovie
-%%EXAMPLESDIR%%/bin/osgmultitexture
-%%EXAMPLESDIR%%/bin/osgoccluder
-%%EXAMPLESDIR%%/bin/osgpagedlod
-%%EXAMPLESDIR%%/bin/osgparticle
-%%EXAMPLESDIR%%/bin/osgpick
-%%EXAMPLESDIR%%/bin/osgplanets
-%%EXAMPLESDIR%%/bin/osgpoints
-%%EXAMPLESDIR%%/bin/osgpointsprite
-%%EXAMPLESDIR%%/bin/osgprerender
-%%EXAMPLESDIR%%/bin/osgprerendercubemap
-%%EXAMPLESDIR%%/bin/osgreflect
-%%EXAMPLESDIR%%/bin/osgscalarbar
-%%EXAMPLESDIR%%/bin/osgscribe
-%%EXAMPLESDIR%%/bin/osgsequence
-%%EXAMPLESDIR%%/bin/osgshaders
-%%EXAMPLESDIR%%/bin/osgshadowtexture
-%%EXAMPLESDIR%%/bin/osgshape
-%%EXAMPLESDIR%%/bin/osgsimple
-%%EXAMPLESDIR%%/bin/osgsimplepager
-%%EXAMPLESDIR%%/bin/osgsimplifier
-%%EXAMPLESDIR%%/bin/osgspacewarp
-%%EXAMPLESDIR%%/bin/osgspheresegment
-%%EXAMPLESDIR%%/bin/osgspotlight
-%%EXAMPLESDIR%%/bin/osgstereoimage
-%%EXAMPLESDIR%%/bin/osgteapot
-%%EXAMPLESDIR%%/bin/osgtesselate
-%%EXAMPLESDIR%%/bin/osgtext
-%%EXAMPLESDIR%%/bin/osgtexture1D
-%%EXAMPLESDIR%%/bin/osgtexture2D
-%%EXAMPLESDIR%%/bin/osgtexture3D
-%%EXAMPLESDIR%%/bin/osgtexturerectangle
-%%EXAMPLESDIR%%/bin/osgunittests
-%%EXAMPLESDIR%%/bin/osgversion
-%%EXAMPLESDIR%%/bin/osgvertexprogram
-%%EXAMPLESDIR%%/bin/osgviewer
-%%EXAMPLESDIR%%/bin/osgvolume
-%%EXAMPLESDIR%%/bin/osgwindows
-%%EXAMPLESDIR%%/src/Make/makedefs
-%%EXAMPLESDIR%%/src/Make/makerules
-%%EXAMPLESDIR%%/src/osganimate/GNUmakefile
-%%EXAMPLESDIR%%/src/osganimate/osganimate.cpp
-%%EXAMPLESDIR%%/src/osgarchive/GNUmakefile
-%%EXAMPLESDIR%%/src/osgarchive/osgarchive.cpp
-%%EXAMPLESDIR%%/src/osgautotransform/GNUmakefile
-%%EXAMPLESDIR%%/src/osgautotransform/osgautotransform.cpp
-%%EXAMPLESDIR%%/src/osgbillboard/GNUmakefile
-%%EXAMPLESDIR%%/src/osgbillboard/osgbillboard.cpp
-%%EXAMPLESDIR%%/src/osgbluemarble/GNUmakefile
-%%EXAMPLESDIR%%/src/osgbluemarble/osgbluemarble.cpp
-%%EXAMPLESDIR%%/src/osgcallback/GNUmakefile
-%%EXAMPLESDIR%%/src/osgcallback/osgcallback.cpp
-%%EXAMPLESDIR%%/src/osgcameragroup/GNUmakefile
-%%EXAMPLESDIR%%/src/osgcameragroup/osgcameragroup.cpp
-%%EXAMPLESDIR%%/src/osgclip/GNUmakefile
-%%EXAMPLESDIR%%/src/osgclip/osgclip.cpp
-%%EXAMPLESDIR%%/src/osgcluster/GNUmakefile
-%%EXAMPLESDIR%%/src/osgcluster/broadcaster.cpp
-%%EXAMPLESDIR%%/src/osgcluster/broadcaster.h
-%%EXAMPLESDIR%%/src/osgcluster/osgcluster.cpp
-%%EXAMPLESDIR%%/src/osgcluster/receiver.cpp
-%%EXAMPLESDIR%%/src/osgcluster/receiver.h
-%%EXAMPLESDIR%%/src/osgconv/GNUmakefile
-%%EXAMPLESDIR%%/src/osgconv/GeoSet.cpp
-%%EXAMPLESDIR%%/src/osgconv/IO_GeoSet.cpp
-%%EXAMPLESDIR%%/src/osgconv/OrientationConverter.cpp
-%%EXAMPLESDIR%%/src/osgconv/OrientationConverter.h
-%%EXAMPLESDIR%%/src/osgconv/osgconv.cpp
-%%EXAMPLESDIR%%/src/osgcopy/GNUmakefile
-%%EXAMPLESDIR%%/src/osgcopy/osgcopy.cpp
-%%EXAMPLESDIR%%/src/osgcubemap/GNUmakefile
-%%EXAMPLESDIR%%/src/osgcubemap/osgcubemap.cpp
-%%EXAMPLESDIR%%/src/osgdem/GNUmakefile
-%%EXAMPLESDIR%%/src/osgdem/osgdem.cpp
-%%EXAMPLESDIR%%/src/osgdemeter/GNUmakefile
-%%EXAMPLESDIR%%/src/osgdemeter/osgdemeter.cpp
-%%EXAMPLESDIR%%/src/osgdepthshadow/GNUmakefile
-%%EXAMPLESDIR%%/src/osgdepthshadow/osgdepthshadow.cpp
-%%EXAMPLESDIR%%/src/osgdistortion/GNUmakefile
-%%EXAMPLESDIR%%/src/osgdistortion/osgdistortion.cpp
-%%EXAMPLESDIR%%/src/osgforest/GNUmakefile
-%%EXAMPLESDIR%%/src/osgforest/osgforest.cpp
-%%EXAMPLESDIR%%/src/osgfxbrowser/Frame.cpp
-%%EXAMPLESDIR%%/src/osgfxbrowser/GNUmakefile
-%%EXAMPLESDIR%%/src/osgfxbrowser/osgfxbrowser.cpp
-%%EXAMPLESDIR%%/src/osggeodemo/GNUmakefile
-%%EXAMPLESDIR%%/src/osggeodemo/osggeodemo.cpp
-%%EXAMPLESDIR%%/src/osggeometry/GNUmakefile
-%%EXAMPLESDIR%%/src/osggeometry/osggeometry.cpp
-%%EXAMPLESDIR%%/src/osghangglide/GNUmakefile
-%%EXAMPLESDIR%%/src/osghangglide/GliderManipulator.cpp
-%%EXAMPLESDIR%%/src/osghangglide/GliderManipulator.h
-%%EXAMPLESDIR%%/src/osghangglide/base.cpp
-%%EXAMPLESDIR%%/src/osghangglide/hat.cpp
-%%EXAMPLESDIR%%/src/osghangglide/hat.h
-%%EXAMPLESDIR%%/src/osghangglide/osghangglide.cpp
-%%EXAMPLESDIR%%/src/osghangglide/sky.cpp
-%%EXAMPLESDIR%%/src/osghangglide/tank.cpp
-%%EXAMPLESDIR%%/src/osghangglide/terrain.cpp
-%%EXAMPLESDIR%%/src/osghangglide/terrain_coords.h
-%%EXAMPLESDIR%%/src/osghangglide/terrain_normals.h
-%%EXAMPLESDIR%%/src/osghangglide/terrain_texcoords.h
-%%EXAMPLESDIR%%/src/osghangglide/trees.cpp
-%%EXAMPLESDIR%%/src/osghud/GNUmakefile
-%%EXAMPLESDIR%%/src/osghud/osghud.cpp
-%%EXAMPLESDIR%%/src/osgimpostor/GNUmakefile
-%%EXAMPLESDIR%%/src/osgimpostor/TestManipulator.cpp
-%%EXAMPLESDIR%%/src/osgimpostor/osgimpostor.cpp
-%%EXAMPLESDIR%%/src/osgkeyboard/GNUmakefile
-%%EXAMPLESDIR%%/src/osgkeyboard/osgkeyboard.cpp
-%%EXAMPLESDIR%%/src/osgkeyboardmouse/GNUmakefile
-%%EXAMPLESDIR%%/src/osgkeyboardmouse/osgkeyboardmouse.cpp
-%%EXAMPLESDIR%%/src/osglauncher/GNUmakefile
-%%EXAMPLESDIR%%/src/osglauncher/osglauncher.cpp
-%%EXAMPLESDIR%%/src/osglight/GNUmakefile
-%%EXAMPLESDIR%%/src/osglight/osglight.cpp
-%%EXAMPLESDIR%%/src/osglightpoint/GNUmakefile
-%%EXAMPLESDIR%%/src/osglightpoint/osglightpoint.cpp
-%%EXAMPLESDIR%%/src/osglogo/GNUmakefile
-%%EXAMPLESDIR%%/src/osglogo/osglogo.cpp
-%%EXAMPLESDIR%%/src/osgmotionblur/GNUmakefile
-%%EXAMPLESDIR%%/src/osgmotionblur/osgmotionblur.cpp
-%%EXAMPLESDIR%%/src/osgmovie/GNUmakefile
-%%EXAMPLESDIR%%/src/osgmovie/osgmovie.cpp
-%%EXAMPLESDIR%%/src/osgmultitexture/GNUmakefile
-%%EXAMPLESDIR%%/src/osgmultitexture/osgmultitexture.cpp
-%%EXAMPLESDIR%%/src/osgoccluder/GNUmakefile
-%%EXAMPLESDIR%%/src/osgoccluder/osgoccluder.cpp
-%%EXAMPLESDIR%%/src/osgpagedlod/GNUmakefile
-%%EXAMPLESDIR%%/src/osgpagedlod/osgpagedlod.cpp
-%%EXAMPLESDIR%%/src/osgparticle/GNUmakefile
-%%EXAMPLESDIR%%/src/osgparticle/osgparticle.cpp
-%%EXAMPLESDIR%%/src/osgphotoalbum/GNUmakefile
-%%EXAMPLESDIR%%/src/osgphotoalbum/ImageReaderWriter.cpp
-%%EXAMPLESDIR%%/src/osgphotoalbum/PhotoArchive.cpp
-%%EXAMPLESDIR%%/src/osgphotoalbum/osgphotoalbum.cpp
-%%EXAMPLESDIR%%/src/osgpick/GNUmakefile
-%%EXAMPLESDIR%%/src/osgpick/osgpick.cpp
-%%EXAMPLESDIR%%/src/osgplanets/GNUmakefile
-%%EXAMPLESDIR%%/src/osgplanets/osgplanets.cpp
-%%EXAMPLESDIR%%/src/osgpoints/GNUmakefile
-%%EXAMPLESDIR%%/src/osgpoints/osgpoints.cpp
-%%EXAMPLESDIR%%/src/osgpointsprite/GNUmakefile
-%%EXAMPLESDIR%%/src/osgpointsprite/osgpointsprite.cpp
-%%EXAMPLESDIR%%/src/osgprerender/GNUmakefile
-%%EXAMPLESDIR%%/src/osgprerender/osgprerender.cpp
-%%EXAMPLESDIR%%/src/osgprerendercubemap/GNUmakefile
-%%EXAMPLESDIR%%/src/osgprerendercubemap/osgprerendercubemap.cpp
-%%EXAMPLESDIR%%/src/osgreflect/GNUmakefile
-%%EXAMPLESDIR%%/src/osgreflect/osgreflect.cpp
-%%EXAMPLESDIR%%/src/osgscalarbar/GNUmakefile
-%%EXAMPLESDIR%%/src/osgscalarbar/osgscalarbar.cpp
-%%EXAMPLESDIR%%/src/osgscribe/GNUmakefile
-%%EXAMPLESDIR%%/src/osgscribe/osgscribe.cpp
-%%EXAMPLESDIR%%/src/osgsequence/GNUmakefile
-%%EXAMPLESDIR%%/src/osgsequence/osgsequence.cpp
-%%EXAMPLESDIR%%/src/osgshaders/GL2Scene.cpp
-%%EXAMPLESDIR%%/src/osgshaders/GNUmakefile
-%%EXAMPLESDIR%%/src/osgshaders/Noise.cpp
-%%EXAMPLESDIR%%/src/osgshaders/osgshaders.cpp
-%%EXAMPLESDIR%%/src/osgshadowtexture/CreateShadowedScene.cpp
-%%EXAMPLESDIR%%/src/osgshadowtexture/GNUmakefile
-%%EXAMPLESDIR%%/src/osgshadowtexture/osgshadowtexture.cpp
-%%EXAMPLESDIR%%/src/osgshape/GNUmakefile
-%%EXAMPLESDIR%%/src/osgshape/osgshape.cpp
-%%EXAMPLESDIR%%/src/osgsimple/GNUmakefile
-%%EXAMPLESDIR%%/src/osgsimple/osgsimple.cpp
-%%EXAMPLESDIR%%/src/osgsimplepager/GNUmakefile
-%%EXAMPLESDIR%%/src/osgsimplepager/osgsimplepager.cpp
-%%EXAMPLESDIR%%/src/osgsimplifier/GNUmakefile
-%%EXAMPLESDIR%%/src/osgsimplifier/osgsimplifier.cpp
-%%EXAMPLESDIR%%/src/osgsimulation/GNUmakefile
-%%EXAMPLESDIR%%/src/osgsimulation/osgsimulation.cpp
-%%EXAMPLESDIR%%/src/osgspacewarp/GNUmakefile
-%%EXAMPLESDIR%%/src/osgspacewarp/osgspacewarp.cpp
-%%EXAMPLESDIR%%/src/osgspheresegment/GNUmakefile
-%%EXAMPLESDIR%%/src/osgspheresegment/osgspheresegment.cpp
-%%EXAMPLESDIR%%/src/osgspotlight/GNUmakefile
-%%EXAMPLESDIR%%/src/osgspotlight/osgspotlight.cpp
-%%EXAMPLESDIR%%/src/osgstereoimage/GNUmakefile
-%%EXAMPLESDIR%%/src/osgstereoimage/osgstereoimage.cpp
-%%EXAMPLESDIR%%/src/osgteapot/GNUmakefile
-%%EXAMPLESDIR%%/src/osgteapot/osgteapot.cpp
-%%EXAMPLESDIR%%/src/osgtesselate/GNUmakefile
-%%EXAMPLESDIR%%/src/osgtesselate/osgtesselate.cpp
-%%EXAMPLESDIR%%/src/osgtext/GNUmakefile
-%%EXAMPLESDIR%%/src/osgtext/osgtext.cpp
-%%EXAMPLESDIR%%/src/osgtexture1D/GNUmakefile
-%%EXAMPLESDIR%%/src/osgtexture1D/osgtexture1D.cpp
-%%EXAMPLESDIR%%/src/osgtexture2D/GNUmakefile
-%%EXAMPLESDIR%%/src/osgtexture2D/osgtexture2D.cpp
-%%EXAMPLESDIR%%/src/osgtexture3D/GNUmakefile
-%%EXAMPLESDIR%%/src/osgtexture3D/osgtexture3D.cpp
-%%EXAMPLESDIR%%/src/osgtexturerectangle/GNUmakefile
-%%EXAMPLESDIR%%/src/osgtexturerectangle/osgtexturerectangle.cpp
-%%EXAMPLESDIR%%/src/osgunittests/GNUmakefile
-%%EXAMPLESDIR%%/src/osgunittests/osgunittests.cpp
-%%EXAMPLESDIR%%/src/osgversion/GNUmakefile
-%%EXAMPLESDIR%%/src/osgversion/osgversion.cpp
-%%EXAMPLESDIR%%/src/osgvertexprogram/GNUmakefile
-%%EXAMPLESDIR%%/src/osgvertexprogram/osgvertexprogram.cpp
-%%EXAMPLESDIR%%/src/osgviewer/GNUmakefile
-%%EXAMPLESDIR%%/src/osgviewer/osgviewer.cpp
-%%EXAMPLESDIR%%/src/osgvolume/GNUmakefile
-%%EXAMPLESDIR%%/src/osgvolume/osgvolume.cpp
-%%EXAMPLESDIR%%/src/osgwindows/GNUmakefile
-%%EXAMPLESDIR%%/src/osgwindows/osgwindows.cpp
-@dirrm %%EXAMPLESDIR%%/bin
-@dirrm %%EXAMPLESDIR%%/src/Make
-@dirrm %%EXAMPLESDIR%%/src/osganimate
-@dirrm %%EXAMPLESDIR%%/src/osgarchive
-@dirrm %%EXAMPLESDIR%%/src/osgautotransform
-@dirrm %%EXAMPLESDIR%%/src/osgbillboard
-@dirrm %%EXAMPLESDIR%%/src/osgbluemarble
-@dirrm %%EXAMPLESDIR%%/src/osgcallback
-@dirrm %%EXAMPLESDIR%%/src/osgcameragroup
-@dirrm %%EXAMPLESDIR%%/src/osgclip
-@dirrm %%EXAMPLESDIR%%/src/osgcluster
-@dirrm %%EXAMPLESDIR%%/src/osgconv
-@dirrm %%EXAMPLESDIR%%/src/osgcopy
-@dirrm %%EXAMPLESDIR%%/src/osgcubemap
-@dirrm %%EXAMPLESDIR%%/src/osgdem
-@dirrm %%EXAMPLESDIR%%/src/osgdemeter
-@dirrm %%EXAMPLESDIR%%/src/osgdepthshadow
-@dirrm %%EXAMPLESDIR%%/src/osgdistortion
-@dirrm %%EXAMPLESDIR%%/src/osgforest
-@dirrm %%EXAMPLESDIR%%/src/osgfxbrowser
-@dirrm %%EXAMPLESDIR%%/src/osggeodemo
-@dirrm %%EXAMPLESDIR%%/src/osggeometry
-@dirrm %%EXAMPLESDIR%%/src/osghangglide
-@dirrm %%EXAMPLESDIR%%/src/osghud
-@dirrm %%EXAMPLESDIR%%/src/osgimpostor
-@dirrm %%EXAMPLESDIR%%/src/osgkeyboard
-@dirrm %%EXAMPLESDIR%%/src/osgkeyboardmouse
-@dirrm %%EXAMPLESDIR%%/src/osglauncher
-@dirrm %%EXAMPLESDIR%%/src/osglight
-@dirrm %%EXAMPLESDIR%%/src/osglightpoint
-@dirrm %%EXAMPLESDIR%%/src/osglogo
-@dirrm %%EXAMPLESDIR%%/src/osgmotionblur
-@dirrm %%EXAMPLESDIR%%/src/osgmovie
-@dirrm %%EXAMPLESDIR%%/src/osgmultitexture
-@dirrm %%EXAMPLESDIR%%/src/osgoccluder
-@dirrm %%EXAMPLESDIR%%/src/osgpagedlod
-@dirrm %%EXAMPLESDIR%%/src/osgparticle
-@dirrm %%EXAMPLESDIR%%/src/osgpbuffer
-@dirrm %%EXAMPLESDIR%%/src/osgphotoalbum
-@dirrm %%EXAMPLESDIR%%/src/osgpick
-@dirrm %%EXAMPLESDIR%%/src/osgplanets
-@dirrm %%EXAMPLESDIR%%/src/osgpoints
-@dirrm %%EXAMPLESDIR%%/src/osgpointsprite
-@dirrm %%EXAMPLESDIR%%/src/osgprerender
-@dirrm %%EXAMPLESDIR%%/src/osgprerendercubemap
-@dirrm %%EXAMPLESDIR%%/src/osgreflect
-@dirrm %%EXAMPLESDIR%%/src/osgscalarbar
-@dirrm %%EXAMPLESDIR%%/src/osgscribe
-@dirrm %%EXAMPLESDIR%%/src/osgsequence
-@dirrm %%EXAMPLESDIR%%/src/osgshaders
-@dirrm %%EXAMPLESDIR%%/src/osgshadowtexture
-@dirrm %%EXAMPLESDIR%%/src/osgshape
-@dirrm %%EXAMPLESDIR%%/src/osgsimple
-@dirrm %%EXAMPLESDIR%%/src/osgsimplepager
-@dirrm %%EXAMPLESDIR%%/src/osgsimplifier
-@dirrm %%EXAMPLESDIR%%/src/osgsimulation
-@dirrm %%EXAMPLESDIR%%/src/osgspacewarp
-@dirrm %%EXAMPLESDIR%%/src/osgspheresegment
-@dirrm %%EXAMPLESDIR%%/src/osgspotlight
-@dirrm %%EXAMPLESDIR%%/src/osgstereoimage
-@dirrm %%EXAMPLESDIR%%/src/osgteapot
-@dirrm %%EXAMPLESDIR%%/src/osgtesselate
-@dirrm %%EXAMPLESDIR%%/src/osgtext
-@dirrm %%EXAMPLESDIR%%/src/osgtexture1D
-@dirrm %%EXAMPLESDIR%%/src/osgtexture2D
-@dirrm %%EXAMPLESDIR%%/src/osgtexture3D
-@dirrm %%EXAMPLESDIR%%/src/osgtexturerectangle
-@dirrm %%EXAMPLESDIR%%/src/osgunittests
-@dirrm %%EXAMPLESDIR%%/src/osgversion
-@dirrm %%EXAMPLESDIR%%/src/osgvertexprogram
-@dirrm %%EXAMPLESDIR%%/src/osgviewer
-@dirrm %%EXAMPLESDIR%%/src/osgvolume
-@dirrm %%EXAMPLESDIR%%/src/osgwindows
-@dirrm %%EXAMPLESDIR%%/src
-@dirrm %%EXAMPLESDIR%%