Date: Sun, 8 Dec 2019 17:18:46 +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: r519466 - in head/math: . sisl sisl/files Message-ID: <201912081718.xB8HIk80089971@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Sun Dec 8 17:18:46 2019 New Revision: 519466 URL: https://svnweb.freebsd.org/changeset/ports/519466 Log: New port: math/sisl: Spline library Added: head/math/sisl/ head/math/sisl/Makefile (contents, props changed) head/math/sisl/distinfo (contents, props changed) head/math/sisl/files/ head/math/sisl/files/patch-CMakeLists.txt (contents, props changed) head/math/sisl/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Sun Dec 8 17:18:46 2019 (r519465) +++ head/math/Makefile Sun Dec 8 17:18:46 2019 (r519466) @@ -845,6 +845,7 @@ SUBDIR += sfst SUBDIR += simd-viterbi SUBDIR += singular + SUBDIR += sisl SUBDIR += slatec SUBDIR += sleef SUBDIR += slepc Added: head/math/sisl/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/sisl/Makefile Sun Dec 8 17:18:46 2019 (r519466) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= sisl +DISTVERSIONPREFIX= SISL- +DISTVERSION= 4.6.0-44 +DISTVERSIONSUFFIX= -g9114631 +CATEGORIES= math + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Spline library + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/COPYING + +USES= cmake +USE_GITHUB= yes +GH_ACCOUNT= SINTEF-Geometry +GH_PROJECT= SISL +USE_LDCONFIG= yes + +PLIST_FILES= include/sisl-copyright.h \ + include/sisl.h \ + include/sislP.h \ + lib/libsisl.so + +.include <bsd.port.mk> Added: head/math/sisl/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/sisl/distinfo Sun Dec 8 17:18:46 2019 (r519466) @@ -0,0 +1,3 @@ +TIMESTAMP = 1575824945 +SHA256 (SINTEF-Geometry-SISL-SISL-4.6.0-44-g9114631_GH0.tar.gz) = 19ca46f5ffb4555160fef749ae5a596279cfdfe775b5ab894a818d79f447eba6 +SIZE (SINTEF-Geometry-SISL-SISL-4.6.0-44-g9114631_GH0.tar.gz) = 2995448 Added: head/math/sisl/files/patch-CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/sisl/files/patch-CMakeLists.txt Sun Dec 8 17:18:46 2019 (r519466) @@ -0,0 +1,11 @@ +--- CMakeLists.txt.orig 2019-12-08 17:10:19 UTC ++++ CMakeLists.txt +@@ -16,7 +16,7 @@ INCLUDE_DIRECTORIES( + # Make the sisl library + + FILE(GLOB sisl_SRCS src/*.c include/*.h) +-ADD_LIBRARY(sisl ${sisl_SRCS}) ++ADD_LIBRARY(sisl SHARED ${sisl_SRCS}) + IF(CMAKE_COMPILER_IS_GNUCC) + TARGET_LINK_LIBRARIES(sisl m) + ENDIF(CMAKE_COMPILER_IS_GNUCC) Added: head/math/sisl/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/sisl/pkg-descr Sun Dec 8 17:18:46 2019 (r519466) @@ -0,0 +1,7 @@ +SISL is a comprehensive NURBS library for the modeling and +interrogation of curves and surfaces. It is implemented in C. + +This software was written by the Geometry Group at SINTEF ICT, +Department of Applied Mathematics. + +WWW: https://github.com/SINTEF-Geometry/SISL
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201912081718.xB8HIk80089971>