diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2000-09-14 08:18:50 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2000-09-14 08:18:50 +0000 |
commit | 427a2fcdb9f72ef0fe6b8348162dd16b5150302c (patch) | |
tree | 4ba57b2adc41bd00c679ef47ca45a0d72e0f7823 /graphics/libmorph | |
parent | Update to 0.4. (diff) |
Add libmorph - a library for loading (and saving) 3d models (3d modeller object
files).
Notes
Notes:
svn path=/head/; revision=32601
Diffstat (limited to 'graphics/libmorph')
-rw-r--r-- | graphics/libmorph/Makefile | 18 | ||||
-rw-r--r-- | graphics/libmorph/distinfo | 1 | ||||
-rw-r--r-- | graphics/libmorph/files/patch-aa | 11 | ||||
-rw-r--r-- | graphics/libmorph/pkg-comment | 1 | ||||
-rw-r--r-- | graphics/libmorph/pkg-descr | 22 | ||||
-rw-r--r-- | graphics/libmorph/pkg-plist | 11 |
6 files changed, 64 insertions, 0 deletions
diff --git a/graphics/libmorph/Makefile b/graphics/libmorph/Makefile new file mode 100644 index 000000000000..af2dda1faeca --- /dev/null +++ b/graphics/libmorph/Makefile @@ -0,0 +1,18 @@ +# New ports collection makefile for: libmorph +# Date Created: 14 September 2000 +# Whom: Maxim Sobolev <sobomax@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= libmorph +PORTVERSION= 0.1.2 +CATEGORIES= graphics +MASTER_SITES= http://wine.sexcity.pl/morpheus/ + +MAINTAINER= sobomax@FreeBSD.org + +USE_LIBTOOL= yes +INSTALLS_SHLIB= yes + +.include <bsd.port.mk> diff --git a/graphics/libmorph/distinfo b/graphics/libmorph/distinfo new file mode 100644 index 000000000000..bc9290cee46a --- /dev/null +++ b/graphics/libmorph/distinfo @@ -0,0 +1 @@ +MD5 (libmorph-0.1.2.tar.gz) = d7df93c012418ec16ed6773bb5cb926f diff --git a/graphics/libmorph/files/patch-aa b/graphics/libmorph/files/patch-aa new file mode 100644 index 000000000000..e0a3b69d7b33 --- /dev/null +++ b/graphics/libmorph/files/patch-aa @@ -0,0 +1,11 @@ +--- Makefile.in.orig Mon Dec 6 16:23:50 1999 ++++ Makefile.in Thu Sep 14 10:32:13 2000 +@@ -77,7 +77,7 @@ + VERSION = @VERSION@ + + SUBDIRS = src +-confexecdir = $(libdir) ++confexecdir = $(sysconfdir) + confexec_DATA = libmorphConf.sh + + EXTRA_DIST = configure acconfig.h libmorphConf.sh.in diff --git a/graphics/libmorph/pkg-comment b/graphics/libmorph/pkg-comment new file mode 100644 index 000000000000..23c640b58537 --- /dev/null +++ b/graphics/libmorph/pkg-comment @@ -0,0 +1 @@ +A library for loading (and saving) 3d models (3d modeller object files) diff --git a/graphics/libmorph/pkg-descr b/graphics/libmorph/pkg-descr new file mode 100644 index 000000000000..0b519b75bb35 --- /dev/null +++ b/graphics/libmorph/pkg-descr @@ -0,0 +1,22 @@ +The main purpose of LibMorph is loading (and saving) 3d models (3d modeller +object files). Given loader is dynamically linked when format of requested file +is recognized. + +The library is very young piece of software, so chances are high that some +things don't work yet as they should or at all. If you have need for some +particular feature, drop me a mail, I'll try to reprioritize my TODO list. + +LibMorph currently supports following formats (only loading at the moment): + LWOB -- LightWave[TM], + 3DS -- 3D Studio[TM], + +In future hopefully it'll support: + ? -- Alias Wavefront[TM] + MAX -- 3D Studio Max[TM] + DXF -- CAD? + ? -- Maya[TM] + ? -- Soft Image[TM] + SVG -- XML, 2d Vector files converted to 3d (via libart?) + and more + +WWW: http://wine.sexcity.pl/morpheus/ diff --git a/graphics/libmorph/pkg-plist b/graphics/libmorph/pkg-plist new file mode 100644 index 000000000000..f13b5f138e2a --- /dev/null +++ b/graphics/libmorph/pkg-plist @@ -0,0 +1,11 @@ +etc/libmorphConf.sh +include/morph/morph-io.h +include/morph/morph.h +lib/libmorph.a +lib/libmorph.so +lib/libmorph.so.0 +lib/morph/loaders/libmorph-a3ds.so +lib/morph/loaders/libmorph-lwob.so +@dirrm lib/morph/loaders +@dirrm lib/morph +@dirrm include/morph |