Date: Mon, 27 May 2019 07:24:06 +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: r502772 - in head/math: . exprtk Message-ID: <201905270724.x4R7O6bR079388@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Mon May 27 07:24:05 2019 New Revision: 502772 URL: https://svnweb.freebsd.org/changeset/ports/502772 Log: New port: math/exprtk: C++ mathematical expression library Added: head/math/exprtk/ head/math/exprtk/Makefile (contents, props changed) head/math/exprtk/distinfo (contents, props changed) head/math/exprtk/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Mon May 27 07:19:30 2019 (r502771) +++ head/math/Makefile Mon May 27 07:24:05 2019 (r502772) @@ -210,6 +210,7 @@ SUBDIR += ess SUBDIR += eukleides SUBDIR += eval + SUBDIR += exprtk SUBDIR += facile SUBDIR += fann SUBDIR += fcl Added: head/math/exprtk/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/exprtk/Makefile Mon May 27 07:24:05 2019 (r502772) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= exprtk +DISTVERSION= g20190519 +CATEGORIES= math + +MAINTAINER= yuri@FreeBSD.org +COMMENT= C++ mathematical expression library + +LICENSE= MIT + +USE_GITHUB= yes +GH_ACCOUNT= ArashPartow +GH_TAGNAME= 12fc5df + +NO_BUILD= yes +NO_ARCH= yes + +PLIST_FILES= include/exprtk.hpp + +do-install: + ${INSTALL_DATA} ${WRKSRC}/exprtk.hpp ${STAGEDIR}${PREFIX}/include + +.include <bsd.port.mk> Added: head/math/exprtk/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/exprtk/distinfo Mon May 27 07:24:05 2019 (r502772) @@ -0,0 +1,3 @@ +TIMESTAMP = 1558941442 +SHA256 (ArashPartow-exprtk-g20190519-12fc5df_GH0.tar.gz) = 14a147441142c5ef237afbc01aab0346ca70bf76c58509a9ecf75685c15aefb0 +SIZE (ArashPartow-exprtk-g20190519-12fc5df_GH0.tar.gz) = 1313333 Added: head/math/exprtk/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/exprtk/pkg-descr Mon May 27 07:24:05 2019 (r502772) @@ -0,0 +1,6 @@ +The C++ Mathematical Expression Toolkit Library (ExprTk) is a simple to use, +easy to integrate and extremely efficient run-time mathematical expression +parser and evaluation engine. ExprTk supports numerous forms of functional, +logical and vector processing semantics and is very easily extendible. + +WWW: http://www.partow.net/programming/exprtk/index.html
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905270724.x4R7O6bR079388>