summaryrefslogtreecommitdiffstats
path: root/docs/Ubuntu-LTS.txt
diff options
context:
space:
mode:
Diffstat (limited to 'docs/Ubuntu-LTS.txt')
-rw-r--r--docs/Ubuntu-LTS.txt55
1 files changed, 0 insertions, 55 deletions
diff --git a/docs/Ubuntu-LTS.txt b/docs/Ubuntu-LTS.txt
deleted file mode 100644
index 632b38a..0000000
--- a/docs/Ubuntu-LTS.txt
+++ /dev/null
@@ -1,55 +0,0 @@
-Install Ubuntu LTS 12
-
-For core functionality without fancy plugins:
-
-$ sudo apt-get install cmake build-essential libxml2-dev libcurl4-openssl-dev
-
-For OpenSceneGraph invoker (version in repositories lacks vrml plugin):
-
-$ sudo apt-get install libpng12-dev libjpeg-dev libboost-all-dev libltdl-dev
-$ sudo apt-get install libopenscenegraph-dev # just for the dependencies
-$ sudo apt-get remove libopenscenegraph-dev
-
-$ wget http://sourceforge.net/projects/openvrml/files/latest/download
-$ tar xvjf openvrml*
-$ cd openvrml*
-$ ./configure --disable-render-text-node --disable-script-node-javascript --disable-script-node-java --disable-gl-renderer --disable-xembed --disable-player --disable-examples --disable-mozilla-plugin
-$ sudo make install
-$ cd ..
-
-for mavericks:
-PNG_CFLAGS="-I/opt/local/include" PNG_LIBS="-L/opt/local/lib" XML_CFLAGS="-I`xcrun --show-sdk-path`/usr/include/libxml2" XML_LIBS="-L`xcrun --show-sdk-path`/usr/lib" CPPFLAGS="--sysroot=`xcrun --show-sdk-path` -I/opt/local/include -I`xcrun --show-sdk-path`/usr/include/libxml2" LDFLAGS="--sysroot=`xcrun --show-sdk-path` -L/opt/local/lib -lboost_system-mt -lxml2 -lpng" ./configure --disable-render-text-node --disable-script-node-javascript --disable-script-node-java --disable-gl-renderer --disable-xembed --disable-player --disable-examples --disable-mozilla-plugin
-
-
-$ sudo apt-get install git
-$ git clone https://github.com/openscenegraph/osg
-$ cd osg
-$ nano src/osgPlugins/vrml/IndexedFaceSet.cpp # Edit line 207 and remove the else block
-
-$ mkdir build && cd build
-$ cmake ..
-$ make -j4
-$ sudo make install
-
-For ffmpeg invoker:
-
-Follow http://ffmpeg.org/trac/ffmpeg/wiki/UbuntuCompilationGuide for a version of recent version of ffmpeg
-on ubuntu. The various libav* packages that come with the distribution are inadequate.
-
-Install uscxml:
-$ git clone https://github.com/tklab-tud/uscxml.git
-$ cd uscxml
-$ mkdir build && cd build
-$ cmake ..
-$ make
-
-Now, to run the VRML server make sure there is an X-Server running for OpenGL to create contexts or run a virtual
-X-Server in a framebuffer:
-
-XVFB_RUNNING=`ps ax |grep 'Xvfb :7' |grep -v grep`
-if [ ! "${XVFB_RUNNING}" ]; then
- Xvfb :7 -screen 0 800x600x24 &
-fi
-export DISPLAY=":7"
-
-$ bin/uscxml-browser -v -t8086 ../apps/samples/vrml/vrml-server.scxml --vrml-path=/scratch/vrml --tmp-path=/scratch/vrml-processed \ No newline at end of file