svn commit: r448448 - in head/math: . alglib

Wen Heping wen at FreeBSD.org
Mon Aug 21 02:27:29 UTC 2017


Author: wen
Date: Mon Aug 21 02:27:27 2017
New Revision: 448448
URL: https://svnweb.freebsd.org/changeset/ports/448448

Log:
  A cross-platform numerical analysis and data processing library. It supports
  several programming languages (C++, C#, Pascal, VBA) and several operating
  systems. ALGLIB features include:
  * Data analysis (classification/regression, including neural networks)
  * Optimization and nonlinear solvers
  * Interpolation and linear/nonlinear least-squares fitting
  * Linear algebra (direct algorithms, EVD/SVD), direct and iterative linear
    solvers, Fast Fourier Transform and many other algorithms (numerical
    integration, ODEs, statistics, special functions)
  
  This is a free edition of alglib.
  
  WWW: http://www.alglib.net
  
  PR:		221681
  Submitted by:	yuri at rawbw.com

Added:
  head/math/alglib/
  head/math/alglib/Makefile   (contents, props changed)
  head/math/alglib/distinfo   (contents, props changed)
  head/math/alglib/pkg-descr   (contents, props changed)
  head/math/alglib/pkg-plist   (contents, props changed)
Modified:
  head/math/Makefile

Modified: head/math/Makefile
==============================================================================
--- head/math/Makefile	Mon Aug 21 02:15:13 2017	(r448447)
+++ head/math/Makefile	Mon Aug 21 02:27:27 2017	(r448448)
@@ -86,6 +86,7 @@
     SUBDIR += acalc
     SUBDIR += add
     SUBDIR += algae
+    SUBDIR += alglib
     SUBDIR += algotutor
     SUBDIR += alt-ergo
     SUBDIR += amath

Added: head/math/alglib/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/alglib/Makefile	Mon Aug 21 02:27:27 2017	(r448448)
@@ -0,0 +1,29 @@
+# Created by: Yuri Victorovich <yuri at rawbw.com>
+# $FreeBSD$
+
+PORTNAME=	alglib
+PORTVERSION=	3.11.0
+CATEGORIES=	math science
+MASTER_SITES=	http://www.alglib.net/translator/re/
+EXTRACT_SUFX=	.cpp.gpl.zip
+
+MAINTAINER=	yuri at rawbw.com
+COMMENT=	Numerical analysis and data processing library
+
+LICENSE=	GPLv3
+LICENSE_FILE=	${WRKSRC}/gpl3.txt
+
+USE_LDCONFIG=	yes
+WRKSRC=		${WRKDIR}/cpp
+
+do-build:
+	cd ${WRKSRC}/src && \
+		${CXX} ${CXXFLAGS} -fPIC -Wl,-soname,lib${PORTNAME}.so.3 -shared -o lib${PORTNAME}.so.3 *.cpp
+
+do-install:
+	@${MKDIR} ${STAGEDIR}${PREFIX}/include/lib${PORTNAME}
+	${INSTALL_DATA} ${WRKSRC}/src/*.h ${STAGEDIR}${PREFIX}/include/lib${PORTNAME}
+	${INSTALL_LIB} ${WRKSRC}/src/lib${PORTNAME}.so.3 ${STAGEDIR}${PREFIX}/lib
+	@${LN} -s lib${PORTNAME}.so.3 ${STAGEDIR}${PREFIX}/lib/lib${PORTNAME}.so
+
+.include <bsd.port.mk>

Added: head/math/alglib/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/alglib/distinfo	Mon Aug 21 02:27:27 2017	(r448448)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1503275552
+SHA256 (alglib-3.11.0.cpp.gpl.zip) = 01357d1d3494207bbf38a578f548877a1f7885b8222be6f3fc0fbab5cb192a13
+SIZE (alglib-3.11.0.cpp.gpl.zip) = 2303026

Added: head/math/alglib/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/alglib/pkg-descr	Mon Aug 21 02:27:27 2017	(r448448)
@@ -0,0 +1,13 @@
+A cross-platform numerical analysis and data processing library. It supports
+several programming languages (C++, C#, Pascal, VBA) and several operating
+systems. ALGLIB features include:
+* Data analysis (classification/regression, including neural networks)
+* Optimization and nonlinear solvers
+* Interpolation and linear/nonlinear least-squares fitting
+* Linear algebra (direct algorithms, EVD/SVD), direct and iterative linear
+  solvers, Fast Fourier Transform and many other algorithms (numerical
+  integration, ODEs, statistics, special functions)
+
+This is a free edition of alglib.
+
+WWW: http://www.alglib.net

Added: head/math/alglib/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/alglib/pkg-plist	Mon Aug 21 02:27:27 2017	(r448448)
@@ -0,0 +1,16 @@
+include/libalglib/alglibinternal.h
+include/libalglib/alglibmisc.h
+include/libalglib/ap.h
+include/libalglib/dataanalysis.h
+include/libalglib/diffequations.h
+include/libalglib/fasttransforms.h
+include/libalglib/integration.h
+include/libalglib/interpolation.h
+include/libalglib/linalg.h
+include/libalglib/optimization.h
+include/libalglib/solvers.h
+include/libalglib/specialfunctions.h
+include/libalglib/statistics.h
+include/libalglib/stdafx.h
+lib/libalglib.so
+lib/libalglib.so.3


More information about the svn-ports-head mailing list