Date: Thu, 11 Mar 2021 20:55:59 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r568132 - in head/multimedia: . tinyobjloader Message-ID: <202103112055.12BKtxpV030987@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Thu Mar 11 20:55:59 2021 New Revision: 568132 URL: https://svnweb.freebsd.org/changeset/ports/568132 Log: New port: multimedia/tinyobjloader: C++ single file wavefront obj loader Added: head/multimedia/tinyobjloader/ head/multimedia/tinyobjloader/Makefile (contents, props changed) head/multimedia/tinyobjloader/distinfo (contents, props changed) head/multimedia/tinyobjloader/pkg-descr (contents, props changed) head/multimedia/tinyobjloader/pkg-plist (contents, props changed) Modified: head/multimedia/Makefile Modified: head/multimedia/Makefile ============================================================================== --- head/multimedia/Makefile Thu Mar 11 20:55:47 2021 (r568131) +++ head/multimedia/Makefile Thu Mar 11 20:55:59 2021 (r568132) @@ -378,6 +378,7 @@ SUBDIR += tautulli SUBDIR += tcmplex-panteltje SUBDIR += termplay + SUBDIR += tinyobjloader SUBDIR += tivodecode SUBDIR += totem SUBDIR += totem-pl-parser Added: head/multimedia/tinyobjloader/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/tinyobjloader/Makefile Thu Mar 11 20:55:59 2021 (r568132) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= tinyobjloader +DISTVERSIONPREFIX= v +DISTVERSION= 2.0.0rc8-3 +DISTVERSIONSUFFIX= -g7ba4b65 +CATEGORIES= multimedia + +MAINTAINER= yuri@FreeBSD.org +COMMENT= C++ single file wavefront obj loader + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= cmake +USE_LDCONFIG= yes +USE_GITHUB= yes + +CMAKE_ON= BUILD_SHARED_LIBS + +post-install: + ${RM} ${STAGEDIR}${DOCSDIR}/LICENSE + +.include <bsd.port.mk> Added: head/multimedia/tinyobjloader/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/tinyobjloader/distinfo Thu Mar 11 20:55:59 2021 (r568132) @@ -0,0 +1,3 @@ +TIMESTAMP = 1615495382 +SHA256 (tinyobjloader-tinyobjloader-v2.0.0rc8-3-g7ba4b65_GH0.tar.gz) = 4cbd1ca5bea6aa027f2c5a65d4b3d2c218f3450296ec8f60bf396b5c2caedcaf +SIZE (tinyobjloader-tinyobjloader-v2.0.0rc8-3-g7ba4b65_GH0.tar.gz) = 950104 Added: head/multimedia/tinyobjloader/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/tinyobjloader/pkg-descr Thu Mar 11 20:55:59 2021 (r568132) @@ -0,0 +1,5 @@ +Tiny but powerful single file wavefront obj loader written in C++03. No +dependency except for C++ STL. It can parse over 10M polygons with moderate +memory and time. + +WWW: https://github.com/tinyobjloader/tinyobjloader Added: head/multimedia/tinyobjloader/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/tinyobjloader/pkg-plist Thu Mar 11 20:55:59 2021 (r568132) @@ -0,0 +1,9 @@ +include/tiny_obj_loader.h +lib/libtinyobjloader.so +lib/libtinyobjloader.so.2 +lib/libtinyobjloader.so.2.0.0-rc.8 +lib/tinyobjloader/cmake/tinyobjloader-config-version.cmake +lib/tinyobjloader/cmake/tinyobjloader-config.cmake +lib/tinyobjloader/cmake/tinyobjloader-targets-%%CMAKE_BUILD_TYPE%%.cmake +lib/tinyobjloader/cmake/tinyobjloader-targets.cmake +libdata/pkgconfig/tinyobjloader.pc
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202103112055.12BKtxpV030987>