mirror of
https://git.freebsd.org/ports.git
synced 2025-06-18 11:10:32 -04:00
Add libmorph - a library for loading (and saving) 3d models (3d modeller object
files).
This commit is contained in:
parent
f7d1f7ef24
commit
427a2fcdb9
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=32601
7 changed files with 65 additions and 0 deletions
|
@ -93,6 +93,7 @@
|
||||||
SUBDIR += libdjvu++
|
SUBDIR += libdjvu++
|
||||||
SUBDIR += libggi
|
SUBDIR += libggi
|
||||||
SUBDIR += libimg
|
SUBDIR += libimg
|
||||||
|
SUBDIR += libmorph
|
||||||
SUBDIR += libungif
|
SUBDIR += libungif
|
||||||
SUBDIR += libwmf
|
SUBDIR += libwmf
|
||||||
SUBDIR += linux-bmrt
|
SUBDIR += linux-bmrt
|
||||||
|
|
18
graphics/libmorph/Makefile
Normal file
18
graphics/libmorph/Makefile
Normal file
|
@ -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>
|
1
graphics/libmorph/distinfo
Normal file
1
graphics/libmorph/distinfo
Normal file
|
@ -0,0 +1 @@
|
||||||
|
MD5 (libmorph-0.1.2.tar.gz) = d7df93c012418ec16ed6773bb5cb926f
|
11
graphics/libmorph/files/patch-aa
Normal file
11
graphics/libmorph/files/patch-aa
Normal file
|
@ -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
|
1
graphics/libmorph/pkg-comment
Normal file
1
graphics/libmorph/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
||||||
|
A library for loading (and saving) 3d models (3d modeller object files)
|
22
graphics/libmorph/pkg-descr
Normal file
22
graphics/libmorph/pkg-descr
Normal file
|
@ -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/
|
11
graphics/libmorph/pkg-plist
Normal file
11
graphics/libmorph/pkg-plist
Normal file
|
@ -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
|
Loading…
Add table
Reference in a new issue