Date: Wed, 17 Jun 2020 04:51:49 +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: r539403 - in head/misc: . ezc3d Message-ID: <202006170451.05H4pn1T068131@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Wed Jun 17 04:51:49 2020 New Revision: 539403 URL: https://svnweb.freebsd.org/changeset/ports/539403 Log: New port: misc/ezc3d: C3D (biomechanics data format) reader/writer for C++ Added: head/misc/ezc3d/ head/misc/ezc3d/Makefile (contents, props changed) head/misc/ezc3d/distinfo (contents, props changed) head/misc/ezc3d/pkg-descr (contents, props changed) head/misc/ezc3d/pkg-plist (contents, props changed) Modified: head/misc/Makefile Modified: head/misc/Makefile ============================================================================== --- head/misc/Makefile Wed Jun 17 04:44:50 2020 (r539402) +++ head/misc/Makefile Wed Jun 17 04:51:49 2020 (r539403) @@ -92,6 +92,7 @@ SUBDIR += excel-writer SUBDIR += exercism SUBDIR += explosions + SUBDIR += ezc3d SUBDIR += felis SUBDIR += figlet SUBDIR += figlet-fonts Added: head/misc/ezc3d/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/ezc3d/Makefile Wed Jun 17 04:51:49 2020 (r539403) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= ezc3d +DISTVERSIONPREFIX= Release_ +DISTVERSION= 1.3.3 +CATEGORIES= misc + +MAINTAINER= yuri@FreeBSD.org +COMMENT= C3D (biomechanics data format) reader/writer for C++ + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= cmake compiler:c++11-lang +USE_GITHUB= yes +GH_ACCOUNT= pyomeca +USE_LDCONFIG= yes + +.include <bsd.port.mk> Added: head/misc/ezc3d/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/ezc3d/distinfo Wed Jun 17 04:51:49 2020 (r539403) @@ -0,0 +1,3 @@ +TIMESTAMP = 1592369224 +SHA256 (pyomeca-ezc3d-Release_1.3.3_GH0.tar.gz) = 15e3381a8622811da9ac7ae44207a8cbf45261c588ba09d9fdabbdb6e4e9032c +SIZE (pyomeca-ezc3d-Release_1.3.3_GH0.tar.gz) = 602957 Added: head/misc/ezc3d/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/ezc3d/pkg-descr Wed Jun 17 04:51:49 2020 (r539403) @@ -0,0 +1,10 @@ +EZC3D is an easy to use reader, modifier and writer for C3D format files. It is +written en C++ with proper binders for Python and MATLAB scripting langages. + +C3D (http://c3d.org) is a format specifically designed to store biomechanics +data. Hence many biomechanics softwares can produce C3D files in order to share +data. However, there is a lack in the biomechanics community of an easy to use, +free and open source library to read, modify and write them as needed when it +gets to the data analysis. + +WWW: https://github.com/pyomeca/ezc3d Added: head/misc/ezc3d/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/ezc3d/pkg-plist Wed Jun 17 04:51:49 2020 (r539403) @@ -0,0 +1,25 @@ +include/ezc3d/Analogs.h +include/ezc3d/Channel.h +include/ezc3d/Data.h +include/ezc3d/Frame.h +include/ezc3d/Group.h +include/ezc3d/Header.h +include/ezc3d/Parameter.h +include/ezc3d/Parameters.h +include/ezc3d/Point.h +include/ezc3d/Points.h +include/ezc3d/Subframe.h +include/ezc3d/ezc3d.h +include/ezc3d/ezc3dConfig.h +include/ezc3d/ezc3d_all.h +include/ezc3d/math/Matrix.h +include/ezc3d/math/Matrix33.h +include/ezc3d/math/Matrix66.h +include/ezc3d/math/Vector3d.h +include/ezc3d/math/Vector6d.h +include/ezc3d/math/ezc3dMath.h +include/ezc3d/modules/ForcePlatforms.h +lib/ezc3d/cmake/ezc3dConfig.cmake +lib/ezc3d/cmake/ezc3dTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/ezc3d/cmake/ezc3dTargets.cmake +lib/ezc3d/libezc3d.so
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202006170451.05H4pn1T068131>