diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2001-05-31 10:10:36 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2001-05-31 10:10:36 +0000 |
commit | 3a4d8afb6b8fccd3bbd6f1d0fcc0be8af931889a (patch) | |
tree | f3cf86aa0cecf34edcd1431dec16b3de58b1d5ba /graphics/osg | |
parent | 12b723faf5fdf09452b82416f8ef8c8e236def36 (diff) | |
download | ports-3a4d8afb6b8fccd3bbd6f1d0fcc0be8af931889a.tar.gz ports-3a4d8afb6b8fccd3bbd6f1d0fcc0be8af931889a.zip |
Notes
Diffstat (limited to 'graphics/osg')
-rw-r--r-- | graphics/osg/Makefile | 50 | ||||
-rw-r--r-- | graphics/osg/distinfo | 1 | ||||
-rw-r--r-- | graphics/osg/files/patch-aa | 25 | ||||
-rw-r--r-- | graphics/osg/files/patch-ab | 111 | ||||
-rw-r--r-- | graphics/osg/files/patch-ac | 11 | ||||
-rw-r--r-- | graphics/osg/files/patch-ad | 37 | ||||
-rw-r--r-- | graphics/osg/files/patch-ae | 46 | ||||
-rw-r--r-- | graphics/osg/files/patch-af | 11 | ||||
-rw-r--r-- | graphics/osg/files/patch-ag | 47 | ||||
-rw-r--r-- | graphics/osg/files/patch-ah | 11 | ||||
-rw-r--r-- | graphics/osg/files/patch-ai | 42 | ||||
-rw-r--r-- | graphics/osg/files/patch-aj | 11 | ||||
-rw-r--r-- | graphics/osg/files/patch-ak | 11 | ||||
-rw-r--r-- | graphics/osg/files/patch-al | 11 | ||||
-rw-r--r-- | graphics/osg/files/patch-am | 11 | ||||
-rw-r--r-- | graphics/osg/files/patch-an | 22 | ||||
-rw-r--r-- | graphics/osg/pkg-comment | 1 | ||||
-rw-r--r-- | graphics/osg/pkg-descr | 6 | ||||
-rw-r--r-- | graphics/osg/pkg-plist | 258 |
19 files changed, 723 insertions, 0 deletions
diff --git a/graphics/osg/Makefile b/graphics/osg/Makefile new file mode 100644 index 000000000000..0aafc12f3be7 --- /dev/null +++ b/graphics/osg/Makefile @@ -0,0 +1,50 @@ +# 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 + +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/distinfo b/graphics/osg/distinfo new file mode 100644 index 000000000000..fe8d9cf0f06b --- /dev/null +++ b/graphics/osg/distinfo @@ -0,0 +1 @@ +MD5 (osg_src-0.8-38.tar.gz) = e99ed48b6c36399a54cdd345319e8d89 diff --git a/graphics/osg/files/patch-aa b/graphics/osg/files/patch-aa new file mode 100644 index 000000000000..c4c74fb265c2 --- /dev/null +++ b/graphics/osg/files/patch-aa @@ -0,0 +1,25 @@ + +$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/files/patch-ab b/graphics/osg/files/patch-ab new file mode 100644 index 000000000000..6cb9496aea29 --- /dev/null +++ b/graphics/osg/files/patch-ab @@ -0,0 +1,111 @@ +--- 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/files/patch-ac b/graphics/osg/files/patch-ac new file mode 100644 index 000000000000..007d3ac9544b --- /dev/null +++ b/graphics/osg/files/patch-ac @@ -0,0 +1,11 @@ +--- 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/files/patch-ad b/graphics/osg/files/patch-ad new file mode 100644 index 000000000000..1fdb2bf33578 --- /dev/null +++ b/graphics/osg/files/patch-ad @@ -0,0 +1,37 @@ +--- 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/files/patch-ae b/graphics/osg/files/patch-ae new file mode 100644 index 000000000000..7fbd21607bf4 --- /dev/null +++ b/graphics/osg/files/patch-ae @@ -0,0 +1,46 @@ +--- 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/files/patch-af b/graphics/osg/files/patch-af new file mode 100644 index 000000000000..572a4349190e --- /dev/null +++ b/graphics/osg/files/patch-af @@ -0,0 +1,11 @@ +--- 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/files/patch-ag b/graphics/osg/files/patch-ag new file mode 100644 index 000000000000..f98f5c72fd26 --- /dev/null +++ b/graphics/osg/files/patch-ag @@ -0,0 +1,47 @@ +--- 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/files/patch-ah b/graphics/osg/files/patch-ah new file mode 100644 index 000000000000..28b3d3b90548 --- /dev/null +++ b/graphics/osg/files/patch-ah @@ -0,0 +1,11 @@ +--- 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/files/patch-ai b/graphics/osg/files/patch-ai new file mode 100644 index 000000000000..de1b91fbdbbc --- /dev/null +++ b/graphics/osg/files/patch-ai @@ -0,0 +1,42 @@ +--- 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/files/patch-aj b/graphics/osg/files/patch-aj new file mode 100644 index 000000000000..39fa9a2400df --- /dev/null +++ b/graphics/osg/files/patch-aj @@ -0,0 +1,11 @@ +--- 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/usr/local/lib -rpath /usr/local/lib + + include ../../../Make/makerules + diff --git a/graphics/osg/files/patch-ak b/graphics/osg/files/patch-ak new file mode 100644 index 000000000000..b1d954892e94 --- /dev/null +++ b/graphics/osg/files/patch-ak @@ -0,0 +1,11 @@ +--- 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/usr/local/lib -rpath /usr/local/lib + C++FLAGS += -I. -I../../../include + LDFLAGS += -L../../../lib + diff --git a/graphics/osg/files/patch-al b/graphics/osg/files/patch-al new file mode 100644 index 000000000000..df3c993bd312 --- /dev/null +++ b/graphics/osg/files/patch-al @@ -0,0 +1,11 @@ +--- 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/usr/local/lib -rpath /usr/local/lib + + include ../../../Make/makerules + diff --git a/graphics/osg/files/patch-am b/graphics/osg/files/patch-am new file mode 100644 index 000000000000..61d898634df4 --- /dev/null +++ b/graphics/osg/files/patch-am @@ -0,0 +1,11 @@ +--- 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/files/patch-an b/graphics/osg/files/patch-an new file mode 100644 index 000000000000..a1555d7c9e14 --- /dev/null +++ b/graphics/osg/files/patch-an @@ -0,0 +1,22 @@ + +$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/pkg-comment b/graphics/osg/pkg-comment new file mode 100644 index 000000000000..508b732593a7 --- /dev/null +++ b/graphics/osg/pkg-comment @@ -0,0 +1 @@ +A C++/OpenGL scene graph library for real-time rendering diff --git a/graphics/osg/pkg-descr b/graphics/osg/pkg-descr new file mode 100644 index 000000000000..b4438f7b9746 --- /dev/null +++ b/graphics/osg/pkg-descr @@ -0,0 +1,6 @@ +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/pkg-plist b/graphics/osg/pkg-plist new file mode 100644 index 000000000000..4c1b911eecf9 --- /dev/null +++ b/graphics/osg/pkg-plist @@ -0,0 +1,258 @@ +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 |