svn commit: r425086 - in head/math: . amath

Joseph Mingrone jrm at FreeBSD.org
Tue Nov 1 20:26:51 UTC 2016


Author: jrm
Date: Tue Nov  1 20:26:49 2016
New Revision: 425086
URL: https://svnweb.freebsd.org/changeset/ports/425086

Log:
  New port, math/amath: simple command line calculator
  
  https://gitlab.com/rnger/amath/
  
  Features a case sensitive command line interface, internal IEEE 754
  calculations with 15 significant digits, calculations with real and complex
  numbers, variables and user defined functions, logarithmic and exponential
  functions, trigonometric and hyperbolic function and selected mathematical
  constants and rounding functions.
  
  PR:		209905
  Submitted by:	cs at innolan.dk (maintainer)
  Reviewed by:	mat
  Approved by:	swills (mentor)
  Differential Revision:	https://reviews.freebsd.org/D8386

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

Modified: head/math/Makefile
==============================================================================
--- head/math/Makefile	Tue Nov  1 20:25:32 2016	(r425085)
+++ head/math/Makefile	Tue Nov  1 20:26:49 2016	(r425086)
@@ -79,6 +79,7 @@
     SUBDIR += algae
     SUBDIR += algotutor
     SUBDIR += alt-ergo
+    SUBDIR += amath
     SUBDIR += analitza
     SUBDIR += ann
     SUBDIR += apc

Added: head/math/amath/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/amath/Makefile	Tue Nov  1 20:26:49 2016	(r425086)
@@ -0,0 +1,25 @@
+# $FreeBSD$
+
+PORTNAME=	amath
+PORTVERSION=	1.6.0
+CATEGORIES=	math
+MASTER_SITES=	http://suyai.innolan.net/
+
+MAINTAINER=	cs at innolan.dk
+COMMENT=	Simple command line calculator
+
+LICENSE=	BSD2CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+HAS_CONFIGURE=	yes
+MAKE_ARGS=	CC=${CC}
+PLIST_FILES=	bin/${PORTNAME}
+USE_GCC=	yes
+
+do-install:
+	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
+
+do-test:
+	${WRKSRC}/${PORTNAME} test
+
+.include <bsd.port.mk>

Added: head/math/amath/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/amath/distinfo	Tue Nov  1 20:26:49 2016	(r425086)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1468439952
+SHA256 (amath-1.6.0.tar.gz) = 82caf96dd59a72bf165892c9b8ec429c8f1bf6cecbaa4e9bbfc33b31537f3dbb
+SIZE (amath-1.6.0.tar.gz) = 1073583

Added: head/math/amath/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/amath/pkg-descr	Tue Nov  1 20:26:49 2016	(r425086)
@@ -0,0 +1,7 @@
+Features a case sensitive command line interface, internal IEEE 754
+calculations with 15 significant digits, calculations with real and
+complex numbers, variables and user defined functions, logarithmic
+and exponential functions, trigonometric and hyperbolic function
+and selected mathematical constants and rounding functions.
+
+WWW: https://gitlab.com/rnger/amath/


More information about the svn-ports-all mailing list