summaryrefslogtreecommitdiff
path: root/graphics/osg-devel
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2001-09-16 01:02:46 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2001-09-16 01:02:46 +0000
commitdb3dca6dbd32fe6ea3d51bc037e6f9cdc66c343b (patch)
tree29d590ca0bc9e66d81bc3218a0684c2daf9d4a68 /graphics/osg-devel
parentFix compilation problems. (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_4_4_0'.release/4.4.0
Notes
Notes: svn path=/head/; revision=47856 svn path=/tags/RELEASE_4_4_0/; revision=47857; tag=release/4.4.0
Diffstat (limited to 'graphics/osg-devel')
-rw-r--r--graphics/osg-devel/Makefile53
-rw-r--r--graphics/osg-devel/distinfo1
-rw-r--r--graphics/osg-devel/files/patch-aa25
-rw-r--r--graphics/osg-devel/files/patch-ab111
-rw-r--r--graphics/osg-devel/files/patch-ac11
-rw-r--r--graphics/osg-devel/files/patch-ad37
-rw-r--r--graphics/osg-devel/files/patch-ae46
-rw-r--r--graphics/osg-devel/files/patch-af11
-rw-r--r--graphics/osg-devel/files/patch-ag47
-rw-r--r--graphics/osg-devel/files/patch-ah11
-rw-r--r--graphics/osg-devel/files/patch-ai42
-rw-r--r--graphics/osg-devel/files/patch-aj11
-rw-r--r--graphics/osg-devel/files/patch-ak11
-rw-r--r--graphics/osg-devel/files/patch-al11
-rw-r--r--graphics/osg-devel/files/patch-am11
-rw-r--r--graphics/osg-devel/files/patch-an22
-rw-r--r--graphics/osg-devel/pkg-comment1
-rw-r--r--graphics/osg-devel/pkg-descr6
-rw-r--r--graphics/osg-devel/pkg-plist258
19 files changed, 0 insertions, 726 deletions
diff --git a/graphics/osg-devel/Makefile b/graphics/osg-devel/Makefile
deleted file mode 100644
index d2a52dce24ac..000000000000
--- a/graphics/osg-devel/Makefile
+++ /dev/null
@@ -1,53 +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.8.38
-CATEGORIES= graphics
-MASTER_SITES= http://www.openscenegraph.org/download/snapshots/
-DISTNAME= ${PORTNAME}_src-0.8-38
-
-MAINTAINER= aa8vb@nc.rr.com
-
-LIB_DEPENDS= png.5:${PORTSDIR}/graphics/png \
- jpeg.9:${PORTSDIR}/graphics/jpeg
-
-WRKSRC= ${WRKDIR}/OpenSceneGraph-0.8
-
-USE_X_PREFIX= yes
-USE_MESA= yes
-INSTALLS_SHLIB= yes
-USE_GMAKE= yes
-MAKE_ENV= CXX="${CXX}" \
- PTHREAD_LIBS="${PTHREAD_LIBS}" \
- PTHREAD_CFLAGS="${PTHREAD_CFLAGS}"
-
-ALL_TARGET= freebsd
-
-post-patch:
-.for suf in defs rules
- @${LN} -sf ${WRKSRC}/Make/make${suf}.linux \
- ${WRKSRC}/Make/make${suf}.freebsd
-.endfor
-
-do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/bin/* ${PREFIX}/bin
- ${TAR} -C ${WRKSRC}/include -c -f - . | \
- ${TAR} -C ${PREFIX}/include --unlink -x -f -
-.for lib in osg osgUtil osgGLUT
- ${INSTALL_PROGRAM} ${WRKSRC}/lib/lib${lib}.so \
- ${PREFIX}/lib/lib${lib}.so.1
- ${LN} -sf lib${lib}.so.1 ${PREFIX}/lib/lib${lib}.so
-.endfor
- ${MKDIR} ${PREFIX}/lib/osgPlugins
- ${INSTALL_PROGRAM} ${WRKSRC}/lib/osgPlugins/*.so \
- ${PREFIX}/lib/osgPlugins
- ${MKDIR} ${PREFIX}/share/doc/osg
- ${TAR} -C ${WRKSRC}/doc -c -f - . | \
- ${TAR} -C ${PREFIX}/share/doc/osg --unlink -x -f -
-
-.include <bsd.port.mk>
diff --git a/graphics/osg-devel/distinfo b/graphics/osg-devel/distinfo
deleted file mode 100644
index fe8d9cf0f06b..000000000000
--- a/graphics/osg-devel/distinfo
+++ /dev/null
@@ -1 +0,0 @@
-MD5 (osg_src-0.8-38.tar.gz) = e99ed48b6c36399a54cdd345319e8d89
diff --git a/graphics/osg-devel/files/patch-aa b/graphics/osg-devel/files/patch-aa
deleted file mode 100644
index c4c74fb265c2..000000000000
--- a/graphics/osg-devel/files/patch-aa
+++ /dev/null
@@ -1,25 +0,0 @@
-
-$FreeBSD$
-
---- Make/makedefs.linux.orig Sun Feb 11 23:38:32 2001
-+++ Make/makedefs.linux Thu May 31 12:46:57 2001
-@@ -6,15 +6,15 @@
- DEPFILES = $(OBJS:.o=.d)
-
-
--C++ = g++
-+C++ = $(CXX)
- YFLAGS = -d
--LCINCS += -I/usr/X11R6/include
-+LCINCS += -I$(LOCALBASE)/include -I$(X11BASE)/include
- LC++INCS += ${LCINCS}
--CFLAGS = -O2 -W -Wall $(LCINCS)
-+CFLAGS += -W -Wall $(LCINCS) $(PTHREAD_CFLAGS)
- C++FLAGS = ${CFLAGS}
- CPPFLAGS = ${CFLAGS}
-
--LDFLAGS = -O2 -W -Wall
-+LDFLAGS = -L$(LOCALBASE)/lib -L$(X11BASE)/lib $(PTHREAD_LIBS)
-
- PFLIBS = -lpfdu -lpfutil -lpf -ldl
-
diff --git a/graphics/osg-devel/files/patch-ab b/graphics/osg-devel/files/patch-ab
deleted file mode 100644
index 6cb9496aea29..000000000000
--- a/graphics/osg-devel/files/patch-ab
+++ /dev/null
@@ -1,111 +0,0 @@
---- work/OpenSceneGraph-0.8/Makefile Thu Jan 25 15:16:28 2001
-+++ Makefile Thu Apr 26 20:46:54 2001
-@@ -6,10 +6,10 @@
-
-
- all : $(MAKE_PREP)
-- for f in $(DIRS) ; do cd $$f; make; cd ..; done
-+ for f in $(DIRS) ; do cd $$f; $(MAKE) || exit 1; cd ..; done
-
- docs :
-- cd src; make docs;
-+ cd src; $(MAKE) docs;
-
-
- Make/makedefs :
-@@ -34,65 +34,71 @@
- cd Make;\
- ln -sf makedefs.linux makedefs;\
- ln -sf makerules.linux makerules
-- make
-+ $(MAKE)
-+
-+freebsd:
-+ cd Make;\
-+ ln -sf makedefs.freebsd makedefs;\
-+ ln -sf makerules.freebsd makerules
-+ $(MAKE)
-
- irix:
- cd Make;\
- ln -sf makedefs.irix.nonstd makedefs ;\
- ln -sf makerules.irix makerules
-- make
-+ $(MAKE)
-
- irix.std:
- cd Make;\
- ln -sf makedefs.irix.std makedefs ;\
- ln -sf makerules.irix makerules
-- make
-+ $(MAKE)
-
- help :
- @echo Usage :
-- @echo \ make
-- @echo \ make linux
-- @echo \ make irix.std
-- @echo \ make irix.nonstd
-- @echo \ make depend
-- @echo \ make clean
-- @echo \ make clobber
-- @echo \ make doc
-- @echo \ make snapshot
-- @echo \ make install
-- @echo \ make instlinks
-- @echo \ make instclean
-+ @echo \ $(MAKE)
-+ @echo \ $(MAKE) linux
-+ @echo \ $(MAKE) irix.std
-+ @echo \ $(MAKE) irix.nonstd
-+ @echo \ $(MAKE) depend
-+ @echo \ $(MAKE) clean
-+ @echo \ $(MAKE) clobber
-+ @echo \ $(MAKE) doc
-+ @echo \ $(MAKE) snapshot
-+ @echo \ $(MAKE) install
-+ @echo \ $(MAKE) instlinks
-+ @echo \ $(MAKE) instclean
-
-
- clean : $(MAKE_PREP)
-- for f in $(DIRS) ; do cd $$f; make clean; cd ..; done
-+ for f in $(DIRS) ; do cd $$f; $(MAKE) clean; cd ..; done
- find lib -type f -exec rm {} \;
- rm -f bin/*
-
- clobber : $(MAKE_PREP) clean
-- for f in $(DIRS) ; do cd $$f; make clobber; cd ..; done
-+ for f in $(DIRS) ; do cd $$f; $(MAKE) clobber; cd ..; done
- rm -f $(MAKE_PREP)
-
- depend : $(MAKE_PREP)
-- for f in $(DIRS) ; do cd $$f; make depend; cd ..; done
-+ for f in $(DIRS) ; do cd $$f; $(MAKE) depend; cd ..; done
-
- to_unix :
- for f in $(DIRS) ; do cd $$f; to_unix Makefile Makefile; cd ..; done
-- for f in $(DIRS) ; do cd $$f; make to_unix; cd ..; done
-+ for f in $(DIRS) ; do cd $$f; $(MAKE) to_unix; cd ..; done
- cd include/OSG; for f in *.h ; do to_unix $$f $$f; done
-
- snapshot:
-- make docs;
-- make clobber;
-+ $(MAKE) docs;
-+ $(MAKE) clobber;
- (cd ..; tar cvf - OpenSceneGraph-0.8 | gzip > osg_src-`date "+%Y%m%d"`.tar.gz)
-
-
- install :
-- for f in $(DIRS) ; do cd $$f; make install; cd ..; done
-+ for f in $(DIRS) ; do cd $$f; $(MAKE) install; cd ..; done
-
- instlinks :
-- for f in $(DIRS) ; do cd $$f; make instlinks; cd ..; done
-+ for f in $(DIRS) ; do cd $$f; $(MAKE) instlinks; cd ..; done
-
- instclean :
-- for f in $(DIRS) ; do cd $$f; make instclean; cd ..; done
-+ for f in $(DIRS) ; do cd $$f; $(MAKE) instclean; cd ..; done
-
diff --git a/graphics/osg-devel/files/patch-ac b/graphics/osg-devel/files/patch-ac
deleted file mode 100644
index 007d3ac9544b..000000000000
--- a/graphics/osg-devel/files/patch-ac
+++ /dev/null
@@ -1,11 +0,0 @@
---- work/OpenSceneGraph-0.8/include/osg/Timer Wed Jan 24 09:42:44 2001
-+++ include/osg/Timer Mon Apr 23 18:58:17 2001
-@@ -43,7 +43,7 @@
- }
- #pragma optimize("",on)
- #endif
--#ifdef __linux
-+#if defined(__linux) || defined(__FreeBSD__)
- #define CLK(x) __asm__ volatile (".byte 0x0f, 0x31" : "=A" (x))
- inline Timer_t tick( void ) {Timer_t x;CLK(x);return x;}
- #endif
diff --git a/graphics/osg-devel/files/patch-ad b/graphics/osg-devel/files/patch-ad
deleted file mode 100644
index 1fdb2bf33578..000000000000
--- a/graphics/osg-devel/files/patch-ad
+++ /dev/null
@@ -1,37 +0,0 @@
---- work/OpenSceneGraph-0.8/src/Demos/Makefile Mon Feb 12 07:32:11 2001
-+++ src/Demos/Makefile Mon Apr 23 19:14:55 2001
-@@ -4,26 +4,26 @@
- DIRS = sgv osgconv osgcube hangglide
-
- all :
-- for f in $(DIRS) ; do cd $$f; make ; cd ..; done
-+ for f in $(DIRS) ; do cd $$f; $(MAKE) || exit 1; cd ..; done
-
- clean :
-- for f in $(DIRS) ; do cd $$f; make clean; cd ..; done
-+ for f in $(DIRS) ; do cd $$f; $(MAKE) clean; cd ..; done
-
- clobber :
-- for f in $(DIRS) ; do cd $$f; make clobber; cd ..; done
-+ for f in $(DIRS) ; do cd $$f; $(MAKE) clobber; cd ..; done
-
- depend :
-- for f in $(DIRS) ; do cd $$f; make depend; cd ..; done
-+ for f in $(DIRS) ; do cd $$f; $(MAKE) depend; cd ..; done
-
- to_unix :
- for f in $(DIRS) ; do cd $$f; to_unix Makefile Makefile; cd ..; done
-- for f in $(DIRS) ; do cd $$f; make to_unix; cd ..; done
-+ for f in $(DIRS) ; do cd $$f; $(MAKE) to_unix; cd ..; done
-
- install :
-- for f in $(DIRS) ; do cd $$f; make install; cd ..; done
-+ for f in $(DIRS) ; do cd $$f; $(MAKE) install; cd ..; done
-
- instlinks :
-- for f in $(DIRS) ; do cd $$f; make instlinks; cd ..; done
-+ for f in $(DIRS) ; do cd $$f; $(MAKE) instlinks; cd ..; done
-
- instclean :
-- for f in $(DIRS) ; do cd $$f; make instclean; cd ..; done
-+ for f in $(DIRS) ; do cd $$f; $(MAKE) instclean; cd ..; done
diff --git a/graphics/osg-devel/files/patch-ae b/graphics/osg-devel/files/patch-ae
deleted file mode 100644
index 7fbd21607bf4..000000000000
--- a/graphics/osg-devel/files/patch-ae
+++ /dev/null
@@ -1,46 +0,0 @@
---- work/OpenSceneGraph-0.8/src/Makefile Fri Jan 5 05:31:49 2001
-+++ src/Makefile Mon Apr 23 19:13:58 2001
-@@ -5,32 +5,32 @@
- DIRS = osg osgUtil osgGLUT Demos osgPlugins
-
- all :
-- for f in $(DIRS) ; do cd $$f; make ; cd ..; done
-+ for f in $(DIRS) ; do cd $$f; $(MAKE) || exit 1; cd ..; done
-
- clean :
-- for f in $(DIRS) ; do cd $$f; make clean; cd ..; done
-+ for f in $(DIRS) ; do cd $$f; $(MAKE) clean; cd ..; done
-
- clobber :
-- for f in $(DIRS) ; do cd $$f; make clobber; cd ..; done
-+ for f in $(DIRS) ; do cd $$f; $(MAKE) clobber; cd ..; done
-
- depend :
-- for f in $(DIRS) ; do cd $$f; make depend; cd ..; done
-+ for f in $(DIRS) ; do cd $$f; $(MAKE) depend; cd ..; done
-
- docs :
-- (cd osg; make docs;)
-- (cd osgUtil; make docs; )
-- (cd osgGLUT; make docs; )
-+ (cd osg; $(MAKE) docs;)
-+ (cd osgUtil; $(MAKE) docs; )
-+ (cd osgGLUT; $(MAKE) docs; )
-
- to_unix :
- for f in $(DIRS) ; do cd $$f; to_unix Makefile Makefile; cd ..; done
-- for f in $(DIRS) ; do cd $$f; make to_unix; cd ..; done
-+ for f in $(DIRS) ; do cd $$f; $(MAKE) to_unix; cd ..; done
-
-
- install :
-- for f in $(DIRS) ; do cd $$f; make install; cd ..; done
-+ for f in $(DIRS) ; do cd $$f; $(MAKE) install; cd ..; done
-
- instlinks :
-- for f in $(DIRS) ; do cd $$f; make instlinks; cd ..; done
-+ for f in $(DIRS) ; do cd $$f; $(MAKE) instlinks; cd ..; done
-
- instclean :
-- for f in $(DIRS) ; do cd $$f; make instclean; cd ..; done
-+ for f in $(DIRS) ; do cd $$f; $(MAKE) instclean; cd ..; done
diff --git a/graphics/osg-devel/files/patch-af b/graphics/osg-devel/files/patch-af
deleted file mode 100644
index 572a4349190e..000000000000
--- a/graphics/osg-devel/files/patch-af
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/osg/Makefile.orig Sun Jan 21 17:25:46 2001
-+++ src/osg/Makefile Thu Apr 26 21:44:14 2001
-@@ -140,7 +140,7 @@
- Images/white.rgb\
-
-
--LIBS = -ldl
-+LIBS = -lGLU -lGL -lm
-
- LIB = ../../lib/lib$(TARGET_BASENAME).so
- #LIB = ../../lib/lib$(TARGET_BASENAME).a
diff --git a/graphics/osg-devel/files/patch-ag b/graphics/osg-devel/files/patch-ag
deleted file mode 100644
index f98f5c72fd26..000000000000
--- a/graphics/osg-devel/files/patch-ag
+++ /dev/null
@@ -1,47 +0,0 @@
---- work/OpenSceneGraph-0.8/src/osg/Timer.cpp Thu Dec 7 15:50:51 2000
-+++ src/osg/Timer.cpp Mon Apr 23 19:04:58 2001
-@@ -59,15 +59,33 @@
-
- #endif // ]
-
--#ifdef __linux // [
--#include <unistd.h>
--#include <sys/mman.h>
-+#if defined(__linux) || defined(__FreeBSD__) // [
-+
-+# include <unistd.h>
-+# if defined(__linux)
-+# include <sys/mman.h>
-+# elif defined(__FreeBSD__)
-+# include <sys/types.h>
-+# include <sys/sysctl.h>
-+# endif
-
- int Timer::inited = 0;
- double Timer::cpu_mhz = 0.0;
-
- void Timer::init( void )
- {
-+# if defined(__FreeBSD__)
-+ int cpuspeed;
-+ size_t len;
-+
-+ len = sizeof(cpuspeed);
-+ if (sysctlbyname("machdep.tsc_freq", &cpuspeed, &len, NULL, NULL) == -1) {
-+ perror("sysctlbyname(machdep.tsc_freq)");
-+ return;
-+ }
-+ cpu_mhz = cpuspeed / 1e6;
-+
-+# elif defined(__linux)
- char buff[128];
- FILE *fp = fopen( "/proc/cpuinfo", "r" );
-
-@@ -87,6 +105,7 @@
- }
- }
- fclose( fp );
-+# endif
- inited = 1;
- }
-
diff --git a/graphics/osg-devel/files/patch-ah b/graphics/osg-devel/files/patch-ah
deleted file mode 100644
index 28b3d3b90548..000000000000
--- a/graphics/osg-devel/files/patch-ah
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/osgGLUT/Makefile.orig Sat Jan 6 15:20:47 2001
-+++ src/osgGLUT/Makefile Thu Apr 26 22:00:20 2001
-@@ -9,7 +9,7 @@
- TARGET_BASENAME = osgGLUT
-
-
--LIBS = -ldl
-+LIBS = -L../../lib -losgUtil -losg -lglut -lGLU -lGL -lm
-
- LIB = ../../lib/lib$(TARGET_BASENAME).so
- #LIB = ../../lib/lib$(TARGET_BASENAME).a
diff --git a/graphics/osg-devel/files/patch-ai b/graphics/osg-devel/files/patch-ai
deleted file mode 100644
index de1b91fbdbbc..000000000000
--- a/graphics/osg-devel/files/patch-ai
+++ /dev/null
@@ -1,42 +0,0 @@
---- work/OpenSceneGraph-0.8/src/osgPlugins/Makefile Fri Feb 16 15:47:05 2001
-+++ src/osgPlugins/Makefile Mon Apr 23 19:17:42 2001
-@@ -1,29 +1,30 @@
- #!smake
- SHELL=/bin/sh
-
--DIRS = lib3ds flt pfb osgtgz tgz zip pic png jpeg tga tiff png gif
-+#DIRS = lib3ds flt pfb osgtgz tgz zip pic png jpeg tga tiff png gif
-+DIRS = lib3ds flt osgtgz tgz zip pic png jpeg tga tiff png gif
-
- all :
-- for f in $(DIRS) ; do cd $$f; make ; cd ..; done
-+ for f in $(DIRS) ; do cd $$f; $(MAKE) || exit 1; cd ..; done
-
- clean :
-- for f in $(DIRS) ; do cd $$f; make clean; cd ..; done
-+ for f in $(DIRS) ; do cd $$f; $(MAKE) clean; cd ..; done
-
- clobber :
-- for f in $(DIRS) ; do cd $$f; make clobber; cd ..; done
-+ for f in $(DIRS) ; do cd $$f; $(MAKE) clobber; cd ..; done
-
- depend :
-- for f in $(DIRS) ; do cd $$f; make depend; cd ..; done
-+ for f in $(DIRS) ; do cd $$f; $(MAKE) depend; cd ..; done
-
- to_unix :
- for f in $(DIRS) ; do cd $$f; to_unix Makefile Makefile; cd ..; done
-- for f in $(DIRS) ; do cd $$f; make to_unix; cd ..; done
-+ for f in $(DIRS) ; do cd $$f; $(MAKE) to_unix; cd ..; done
-
- install :
-- for f in $(DIRS) ; do cd $$f; make install; cd ..; done
-+ for f in $(DIRS) ; do cd $$f; $(MAKE) install; cd ..; done
-
- instlinks :
-- for f in $(DIRS) ; do cd $$f; make instlinks; cd ..; done
-+ for f in $(DIRS) ; do cd $$f; $(MAKE) instlinks; cd ..; done
-
- instclean :
-- for f in $(DIRS) ; do cd $$f; make instclean; cd ..; done
-+ for f in $(DIRS) ; do cd $$f; $(MAKE) instclean; cd ..; done
diff --git a/graphics/osg-devel/files/patch-aj b/graphics/osg-devel/files/patch-aj
deleted file mode 100644
index 25a79ec5e994..000000000000
--- a/graphics/osg-devel/files/patch-aj
+++ /dev/null
@@ -1,11 +0,0 @@
---- work/OpenSceneGraph-0.8/src/osgPlugins/gif/Makefile Wed Dec 20 17:11:05 2000
-+++ src/osgPlugins/gif/Makefile Mon Apr 23 19:21:47 2001
-@@ -11,7 +11,7 @@
- LIBS = -lungif
-
- C++FLAGS += -I. -I../../../include
--LDFLAGS += -L../../../lib
-+LDFLAGS += -L../../../lib -L$(LOCALBASE)/lib -rpath $(LOCALBASE)/lib
-
- include ../../../Make/makerules
-
diff --git a/graphics/osg-devel/files/patch-ak b/graphics/osg-devel/files/patch-ak
deleted file mode 100644
index 8dc32ca3f993..000000000000
--- a/graphics/osg-devel/files/patch-ak
+++ /dev/null
@@ -1,11 +0,0 @@
---- work/OpenSceneGraph-0.8/src/osgPlugins/jpeg/Makefile Wed Dec 20 17:36:16 2000
-+++ src/osgPlugins/jpeg/Makefile Mon Apr 23 19:20:33 2001
-@@ -8,7 +8,7 @@
-
- TARGET_LOADER_FILES = osgPlugins/osgdb_jpg.so
-
--LIBS = -ljpeg
-+LIBS = -ljpeg -L$(LOCALBASE)/lib -rpath $(LOCALBASE)/lib
- C++FLAGS += -I. -I../../../include
- LDFLAGS += -L../../../lib
-
diff --git a/graphics/osg-devel/files/patch-al b/graphics/osg-devel/files/patch-al
deleted file mode 100644
index e04592e71abe..000000000000
--- a/graphics/osg-devel/files/patch-al
+++ /dev/null
@@ -1,11 +0,0 @@
---- work/OpenSceneGraph-0.8/src/osgPlugins/tiff/Makefile Wed Dec 20 17:35:46 2000
-+++ src/osgPlugins/tiff/Makefile Mon Apr 23 19:21:20 2001
-@@ -10,7 +10,7 @@
-
- LIBS = -ltiff
- C++FLAGS += -I. -I../../../include
--LDFLAGS += -L../../../lib
-+LDFLAGS += -L../../../lib -L$(LOCALBASE)/lib -rpath $(LOCALBASE)/lib
-
- include ../../../Make/makerules
-
diff --git a/graphics/osg-devel/files/patch-am b/graphics/osg-devel/files/patch-am
deleted file mode 100644
index 61d898634df4..000000000000
--- a/graphics/osg-devel/files/patch-am
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/osgUtil/Makefile.orig Wed Jan 24 11:02:59 2001
-+++ src/osgUtil/Makefile Thu Apr 26 21:59:12 2001
-@@ -17,7 +17,7 @@
- TARGET_BASENAME = osgUtil
-
-
--LIBS = -ldl
-+LIBS = -L../../lib -losg -lGLU -lGL -lm
-
- LIB = ../../lib/lib$(TARGET_BASENAME).so
- #LIB = ../../lib/lib$(TARGET_BASENAME).a
diff --git a/graphics/osg-devel/files/patch-an b/graphics/osg-devel/files/patch-an
deleted file mode 100644
index a1555d7c9e14..000000000000
--- a/graphics/osg-devel/files/patch-an
+++ /dev/null
@@ -1,22 +0,0 @@
-
-$FreeBSD$
-
---- Make/makerules.linux 2001/05/31 09:25:34 1.1
-+++ Make/makerules.linux 2001/05/31 09:26:08
-@@ -38,13 +38,13 @@
- echo $(TARGET_BASENAME) HTML documentation created in ../../doc/doc++/$(TARGET_BASENAME)
-
- install : home
-- @ make __install
-+ @ $(MAKE) __install
-
- instlinks : home
-- @ make __instlinks
-+ @ $(MAKE) __instlinks
-
- instclean : home
-- @ make __instclean
-+ @ $(MAKE) __instclean
-
-
- home :
diff --git a/graphics/osg-devel/pkg-comment b/graphics/osg-devel/pkg-comment
deleted file mode 100644
index 508b732593a7..000000000000
--- a/graphics/osg-devel/pkg-comment
+++ /dev/null
@@ -1 +0,0 @@
-A C++/OpenGL scene graph library for real-time rendering
diff --git a/graphics/osg-devel/pkg-descr b/graphics/osg-devel/pkg-descr
deleted file mode 100644
index b4438f7b9746..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 4c1b911eecf9..000000000000
--- a/graphics/osg-devel/pkg-plist
+++ /dev/null
@@ -1,258 +0,0 @@
-bin/hangglide
-bin/osgconv
-bin/osgcube
-bin/sgv
-include/osg/AlphaFunc
-include/osg/Billboard
-include/osg/BoundingBox
-include/osg/BoundingSphere
-include/osg/Camera
-include/osg/CullFace
-include/osg/DCS
-include/osg/DynamicLibrary
-include/osg/Export
-include/osg/Field
-include/osg/FieldReader
-include/osg/FieldReaderIterator
-include/osg/FileNameUtils
-include/osg/FileUtils
-include/osg/Fog
-include/osg/GL
-include/osg/GLExtensions
-include/osg/GeoSet
-include/osg/GeoState
-include/osg/Geode
-include/osg/Group
-include/osg/Image
-include/osg/Input
-include/osg/LOD
-include/osg/Light
-include/osg/LightSource
-include/osg/Lighting
-include/osg/Material
-include/osg/Matrix
-include/osg/MemoryAdapter
-include/osg/Node
-include/osg/NodeVisitor
-include/osg/Notify
-include/osg/Object
-include/osg/Output
-include/osg/Point
-include/osg/PolygonOffset
-include/osg/Quat
-include/osg/ReaderWriter
-include/osg/Referenced
-include/osg/Registry
-include/osg/Scene
-include/osg/Seg
-include/osg/Sequence
-include/osg/State
-include/osg/Switch
-include/osg/TexEnv
-include/osg/TexGen
-include/osg/TexMat
-include/osg/Texture
-include/osg/Timer
-include/osg/Timer.orig
-include/osg/Transparency
-include/osg/Types
-include/osg/Vec2
-include/osg/Vec3
-include/osg/Vec4
-include/osg/Version
-include/osg/mem_ptr
-include/osg/ref_ptr
-include/osgGLUT/Export
-include/osgGLUT/GLUTEventAdapter
-include/osgGLUT/Version
-include/osgGLUT/Viewer
-include/osgUtil/CameraManipulator
-include/osgUtil/DisplayListVisitor
-include/osgUtil/DriveManipulator
-include/osgUtil/Export
-include/osgUtil/FlightManipulator
-include/osgUtil/GUIActionAdapter
-include/osgUtil/GUIEventAdapter
-include/osgUtil/IntersectVisitor
-include/osgUtil/RenderVisitor
-include/osgUtil/SceneView
-include/osgUtil/SmoothingVisitor
-include/osgUtil/TrackballManipulator
-include/osgUtil/Version
-lib/libosg.so
-lib/libosg.so.1
-lib/libosgGLUT.so
-lib/libosgGLUT.so.1
-lib/libosgUtil.so
-lib/libosgUtil.so.1
-lib/osgPlugins/osgdb_3ds.so
-lib/osgPlugins/osgdb_flt.so
-lib/osgPlugins/osgdb_gif.so
-lib/osgPlugins/osgdb_jpg.so
-lib/osgPlugins/osgdb_osgtgz.so
-lib/osgPlugins/osgdb_pic.so
-lib/osgPlugins/osgdb_png.so
-lib/osgPlugins/osgdb_tga.so
-lib/osgPlugins/osgdb_tgz.so
-lib/osgPlugins/osgdb_tif.so
-lib/osgPlugins/osgdb_zip.so
-share/doc/osg/Doxyfiles/Doxyfile_all
-share/doc/osg/Doxyfiles/Doxyfile_all_mainpage
-share/doc/osg/Doxyfiles/Doxyfile_footer
-share/doc/osg/MindMaps/DesignPatterns.mmp
-share/doc/osg/MindMaps/DesignPatterns/DesignPatterns.gif
-share/doc/osg/MindMaps/DesignPatterns/DesignPatterns.html
-share/doc/osg/MindMaps/Mission.mmp
-share/doc/osg/MindMaps/Mission/Mission.gif
-share/doc/osg/MindMaps/Mission/Mission.html
-share/doc/osg/UML/osg.png
-share/doc/osg/UML/osgutils.png
-share/doc/osg/doc++/osg/AlphaFunc.html
-share/doc/osg/doc++/osg/Billboard.html
-share/doc/osg/doc++/osg/BoundingBox.html
-share/doc/osg/doc++/osg/BoundingSphere.html
-share/doc/osg/doc++/osg/Camera.html
-share/doc/osg/doc++/osg/ClassGraph.class
-share/doc/osg/doc++/osg/ClassGraphPanel.class
-share/doc/osg/doc++/osg/ClassLayout.class
-share/doc/osg/doc++/osg/CppMemoryAdapter.html
-share/doc/osg/doc++/osg/CullFace.html
-share/doc/osg/doc++/osg/DCS.html
-share/doc/osg/doc++/osg/DirectoryContents.html
-share/doc/osg/doc++/osg/DynamicLibrary.html
-share/doc/osg/doc++/osg/Field.html
-share/doc/osg/doc++/osg/FieldReader.html
-share/doc/osg/doc++/osg/FieldReaderIterator.html
-share/doc/osg/doc++/osg/Fog.html
-share/doc/osg/doc++/osg/General.html
-share/doc/osg/doc++/osg/GeoSet.html
-share/doc/osg/doc++/osg/GeoState.html
-share/doc/osg/doc++/osg/Geode.html
-share/doc/osg/doc++/osg/Group.html
-share/doc/osg/doc++/osg/HIER.html
-share/doc/osg/doc++/osg/HIERjava.html
-share/doc/osg/doc++/osg/Image.html
-share/doc/osg/doc++/osg/Input.html
-share/doc/osg/doc++/osg/LOD.html
-share/doc/osg/doc++/osg/Light.html
-share/doc/osg/doc++/osg/LightSource.html
-share/doc/osg/doc++/osg/Lighting.html
-share/doc/osg/doc++/osg/Material.html
-share/doc/osg/doc++/osg/Matrix.html
-share/doc/osg/doc++/osg/Matrixoperator.html
-share/doc/osg/doc++/osg/MemoryAdapter.html
-share/doc/osg/doc++/osg/NavigatorButton.class
-share/doc/osg/doc++/osg/NewMemoryAdapter.html
-share/doc/osg/doc++/osg/Node.html
-share/doc/osg/doc++/osg/NodeAcceptOp.html
-share/doc/osg/doc++/osg/NodePath.html
-share/doc/osg/doc++/osg/NodeVisitor.html
-share/doc/osg/doc++/osg/NotifySeverity.html
-share/doc/osg/doc++/osg/Object.html
-share/doc/osg/doc++/osg/Output.html
-share/doc/osg/doc++/osg/Point.html
-share/doc/osg/doc++/osg/PolygonOffset.html
-share/doc/osg/doc++/osg/Quat.html
-share/doc/osg/doc++/osg/ReaderWriter.html
-share/doc/osg/doc++/osg/Referenced.html
-share/doc/osg/doc++/osg/RegisterObjectProxy.html
-share/doc/osg/doc++/osg/RegisterReaderWriterProxy.html
-share/doc/osg/doc++/osg/Registry.html
-share/doc/osg/doc++/osg/Scene.html
-share/doc/osg/doc++/osg/Seg.html
-share/doc/osg/doc++/osg/Sequence.html
-share/doc/osg/doc++/osg/State.html
-share/doc/osg/doc++/osg/Switch.html
-share/doc/osg/doc++/osg/TexEnv.html
-share/doc/osg/doc++/osg/TexGen.html
-share/doc/osg/doc++/osg/TexMat.html
-share/doc/osg/doc++/osg/Texture.html
-share/doc/osg/doc++/osg/Timer.html
-share/doc/osg/doc++/osg/Transparency.html
-share/doc/osg/doc++/osg/Vec2.html
-share/doc/osg/doc++/osg/Vec3.html
-share/doc/osg/doc++/osg/Vec4.html
-share/doc/osg/doc++/osg/createGeodeForImage.2.html
-share/doc/osg/doc++/osg/createGeodeForImage.html
-share/doc/osg/doc++/osg/findDSO.html
-share/doc/osg/doc++/osg/findFile.html
-share/doc/osg/doc++/osg/findFileInDirectory.html
-share/doc/osg/doc++/osg/for_each_triangle.html
-share/doc/osg/doc++/osg/g_NotifyLevel.html
-share/doc/osg/doc++/osg/getDirectoryContents.html
-share/doc/osg/doc++/osg/getFilePath.html
-share/doc/osg/doc++/osg/getGLExtensionFuncPtr.html
-share/doc/osg/doc++/osg/getNotifyLevel.html
-share/doc/osg/doc++/osg/icon1.gif
-share/doc/osg/doc++/osg/icon2.gif
-share/doc/osg/doc++/osg/index.html
-share/doc/osg/doc++/osg/initFilePath.html
-share/doc/osg/doc++/osg/initNotifyLevel.html
-share/doc/osg/doc++/osg/isGLExtensionSupported.html
-share/doc/osg/doc++/osg/mem_ptr.html
-share/doc/osg/doc++/osg/newMemoryAdapter.2.html
-share/doc/osg/doc++/osg/notify.html
-share/doc/osg/doc++/osg/operator.html
-share/doc/osg/doc++/osg/osg.html
-share/doc/osg/doc++/osg/osgGetLibraryName.html
-share/doc/osg/doc++/osg/osgGetVersion.html
-share/doc/osg/doc++/osg/ref_ptr.html
-share/doc/osg/doc++/osg/setFilePath.html
-share/doc/osg/doc++/osg/setNotifyLevel.html
-share/doc/osg/doc++/osgGLUT/ClassGraph.class
-share/doc/osg/doc++/osgGLUT/ClassGraphPanel.class
-share/doc/osg/doc++/osgGLUT/ClassLayout.class
-share/doc/osg/doc++/osgGLUT/GLUTEventAdapter.html
-share/doc/osg/doc++/osgGLUT/General.html
-share/doc/osg/doc++/osgGLUT/HIER.html
-share/doc/osg/doc++/osgGLUT/HIERjava.html
-share/doc/osg/doc++/osgGLUT/NavigatorButton.class
-share/doc/osg/doc++/osgGLUT/Viewer.html
-share/doc/osg/doc++/osgGLUT/icon1.gif
-share/doc/osg/doc++/osgGLUT/icon2.gif
-share/doc/osg/doc++/osgGLUT/index.html
-share/doc/osg/doc++/osgGLUT/osgGLUT.html
-share/doc/osg/doc++/osgGLUT/osgGLUTGetLibraryName.html
-share/doc/osg/doc++/osgGLUT/osgGLUTGetVersion.html
-share/doc/osg/doc++/osgUtil/CameraManipulator.html
-share/doc/osg/doc++/osgUtil/ClassGraph.class
-share/doc/osg/doc++/osgUtil/ClassGraphPanel.class
-share/doc/osg/doc++/osgUtil/ClassLayout.class
-share/doc/osg/doc++/osgUtil/DisplayListVisitor.html
-share/doc/osg/doc++/osgUtil/DriveManipulator.html
-share/doc/osg/doc++/osgUtil/FlightManipulator.html
-share/doc/osg/doc++/osgUtil/GUIActionAdapter.html
-share/doc/osg/doc++/osgUtil/GUIEventAdapter.html
-share/doc/osg/doc++/osgUtil/General.html
-share/doc/osg/doc++/osgUtil/HIER.html
-share/doc/osg/doc++/osgUtil/HIERjava.html
-share/doc/osg/doc++/osgUtil/Hit.html
-share/doc/osg/doc++/osgUtil/IntersectState.html
-share/doc/osg/doc++/osgUtil/IntersectVisitor.html
-share/doc/osg/doc++/osgUtil/NavigatorButton.class
-share/doc/osg/doc++/osgUtil/RenderVisitor.html
-share/doc/osg/doc++/osgUtil/SceneView.html
-share/doc/osg/doc++/osgUtil/SmoothingVisitor.html
-share/doc/osg/doc++/osgUtil/TrackballManipulator.html
-share/doc/osg/doc++/osgUtil/ViewState.html
-share/doc/osg/doc++/osgUtil/icon1.gif
-share/doc/osg/doc++/osgUtil/icon2.gif
-share/doc/osg/doc++/osgUtil/index.html
-share/doc/osg/doc++/osgUtil/osgUtil.html
-share/doc/osg/doc++/osgUtil/osgUtilGetLibraryName.html
-share/doc/osg/doc++/osgUtil/osgUtilGetVersion.html
-share/doc/osg/index.html
-@dirrm share/doc/osg/doc++/osgUtil
-@dirrm share/doc/osg/doc++/osgGLUT
-@dirrm share/doc/osg/doc++/osg
-@dirrm share/doc/osg/doc++
-@dirrm share/doc/osg/UML
-@dirrm share/doc/osg/MindMaps/Mission
-@dirrm share/doc/osg/MindMaps/DesignPatterns
-@dirrm share/doc/osg/MindMaps
-@dirrm share/doc/osg/Doxyfiles
-@dirrm share/doc/osg
-@dirrm lib/osgPlugins
-@dirrm include/osgUtil
-@dirrm include/osgGLUT
-@dirrm include/osg