diff options
Diffstat (limited to 'www/openvrml/files')
-rw-r--r-- | www/openvrml/files/lookat.sh.in | 4 | ||||
-rw-r--r-- | www/openvrml/files/patch-030_freetype_prototypes | 50 | ||||
-rw-r--r-- | www/openvrml/files/patch-Makefile.in | 11 | ||||
-rw-r--r-- | www/openvrml/files/patch-ltmain.sh | 15 | ||||
-rw-r--r-- | www/openvrml/files/patch-mozilla-plugin_src_openvrml-player_player.cpp | 19 |
5 files changed, 0 insertions, 99 deletions
diff --git a/www/openvrml/files/lookat.sh.in b/www/openvrml/files/lookat.sh.in deleted file mode 100644 index 0f3d2f823..000000000 --- a/www/openvrml/files/lookat.sh.in +++ /dev/null @@ -1,4 +0,0 @@ -#! /bin/sh -# $FreeBSD$ - -LD_LIBRARY_PATH=%%LOCALBASE%%/lib/mozilla %%PREFIX%%/bin/lookat $1 diff --git a/www/openvrml/files/patch-030_freetype_prototypes b/www/openvrml/files/patch-030_freetype_prototypes deleted file mode 100644 index 5f6dc6700..000000000 --- a/www/openvrml/files/patch-030_freetype_prototypes +++ /dev/null @@ -1,50 +0,0 @@ -Index: openvrml-0.15.10/src/libopenvrml/openvrml/vrml97node.cpp -=================================================================== ---- src/libopenvrml/openvrml/vrml97node.cpp.orig 2006-06-11 14:23:00.000000000 +0200 -+++ src/libopenvrml/openvrml/vrml97node.cpp 2006-06-11 15:12:02.000000000 +0200 -@@ -16604,7 +16604,7 @@ - - const float stepSize_ = 0.2; - -- int moveTo_(FT_Vector * const to, void * const user) throw () -+ int moveTo_(const FT_Vector * to, void * user) - { - using std::vector; - assert(user); -@@ -16620,7 +16620,7 @@ - return 0; - } - -- int lineTo_(FT_Vector * const to, void * const user) throw () -+ int lineTo_(const FT_Vector * to, void * user) - { - assert(user); - GlyphContours_ & c = *static_cast<GlyphContours_ *>(user); -@@ -16682,10 +16682,9 @@ - } - } - -- int conicTo_(FT_Vector * const control, -- FT_Vector * const to, -+ int conicTo_(const FT_Vector * control, -+ const FT_Vector * to, - void * const user) -- throw () - { - using std::vector; - -@@ -16716,11 +16715,10 @@ - return 0; - } - -- int cubicTo_(FT_Vector * const control1, -- FT_Vector * const control2, -- FT_Vector * const to, -+ int cubicTo_(const FT_Vector * control1, -+ const FT_Vector * control2, -+ const FT_Vector * to, - void * const user) -- throw () - { - using std::vector; - diff --git a/www/openvrml/files/patch-Makefile.in b/www/openvrml/files/patch-Makefile.in deleted file mode 100644 index 8386629f5..000000000 --- a/www/openvrml/files/patch-Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.in.orig Mon Jul 4 01:29:49 2005 -+++ Makefile.in Fri Jul 22 16:32:32 2005 -@@ -236,7 +236,7 @@ - target_cpu = @target_cpu@ - target_os = @target_os@ - target_vendor = @target_vendor@ --SUBDIRS = doc ide-projects m4 models lib java src mozilla-plugin tests -+SUBDIRS = ide-projects m4 models lib java src mozilla-plugin tests - ACLOCAL_AMFLAGS = -I m4 - EXTRA_DIST = \ - openvrml.pc.in \ diff --git a/www/openvrml/files/patch-ltmain.sh b/www/openvrml/files/patch-ltmain.sh deleted file mode 100644 index e7be8dd9a..000000000 --- a/www/openvrml/files/patch-ltmain.sh +++ /dev/null @@ -1,15 +0,0 @@ ---- ltmain.sh.orig Wed Apr 7 12:00:09 2004 -+++ ltmain.sh Wed Apr 7 12:00:20 2004 -@@ -5428,10 +5428,12 @@ - fi - - # Install the pseudo-library for information purposes. -+ if /usr/bin/false ; then - name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` - instname="$dir/$name"i - $show "$install_prog $instname $destdir/$name" - $run eval "$install_prog $instname $destdir/$name" || exit $? -+ fi - - # Maybe install the static library, too. - test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" diff --git a/www/openvrml/files/patch-mozilla-plugin_src_openvrml-player_player.cpp b/www/openvrml/files/patch-mozilla-plugin_src_openvrml-player_player.cpp deleted file mode 100644 index 6bc8559c9..000000000 --- a/www/openvrml/files/patch-mozilla-plugin_src_openvrml-player_player.cpp +++ /dev/null @@ -1,19 +0,0 @@ ---- mozilla-plugin/src/openvrml-player/player.cpp.orig Tue Nov 15 00:16:02 2005 -+++ mozilla-plugin/src/openvrml-player/player.cpp Tue Nov 15 00:21:07 2005 -@@ -22,14 +22,14 @@ - # include <boost/lexical_cast.hpp> - # include <boost/spirit.hpp> - # include <boost/spirit/phoenix.hpp> -+# include <openvrml/browser.h> -+# include <openvrml/gl/viewer.h> - # include <unistd.h> - # include <argp.h> - # include <X11/keysym.h> - # include <gdk/gdkx.h> - # include <gtk/gtk.h> - # include <gtk/gtkgl.h> --# include <openvrml/browser.h> --# include <openvrml/gl/viewer.h> - - namespace { - |