aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTAKATSU Tomonari <tota@FreeBSD.org>2016-04-29 07:04:54 +0000
committerTAKATSU Tomonari <tota@FreeBSD.org>2016-04-29 07:04:54 +0000
commit6df5d514374e92e245d229111992917061b45446 (patch)
tree5d6f9d42739ec850fa89fd71f57899268c47c97a
parentd69db65a06caf581eef1539f4a8ccb85c0fbbb48 (diff)
downloadports-6df5d514374e92e245d229111992917061b45446.tar.gz
ports-6df5d514374e92e245d229111992917061b45446.zip
- Add new port: math/R-cran-Rmpfr
Arithmetic (via S4 classes and methods) for arbitrary precision floating point numbers, including transcendental ("special") functions. To this end, Rmpfr interfaces to the LGPL'ed MPFR (Multiple Precision Floating-Point Reliable) Library which itself is based on the GMP (GNU Multiple Precision) Library. WWW: https://cran.r-project.org/web/packages/Rmpfr/ Submitted by: Jukka A. Ukkonen <jau_AT_iki_DOT_fi> (via private e-mail)
Notes
Notes: svn path=/head/; revision=414259
-rw-r--r--math/Makefile1
-rw-r--r--math/R-cran-Rmpfr/Makefile20
-rw-r--r--math/R-cran-Rmpfr/distinfo2
-rw-r--r--math/R-cran-Rmpfr/pkg-descr7
4 files changed, 30 insertions, 0 deletions
diff --git a/math/Makefile b/math/Makefile
index bc3bfeb26d17..b344ab91342d 100644
--- a/math/Makefile
+++ b/math/Makefile
@@ -20,6 +20,7 @@
SUBDIR += R-cran-RSvgDevice
SUBDIR += R-cran-RcppArmadillo
SUBDIR += R-cran-RcppEigen
+ SUBDIR += R-cran-Rmpfr
SUBDIR += R-cran-SparseM
SUBDIR += R-cran-SuppDists
SUBDIR += R-cran-VGAM
diff --git a/math/R-cran-Rmpfr/Makefile b/math/R-cran-Rmpfr/Makefile
new file mode 100644
index 000000000000..dcec5dcef227
--- /dev/null
+++ b/math/R-cran-Rmpfr/Makefile
@@ -0,0 +1,20 @@
+# Created by: Jukka A. Ukkonen <jau@iki.fi>
+# $FreeBSD$
+
+PORTNAME= Rmpfr
+DISTVERSION= 0.6-0
+CATEGORIES= math
+DISTNAME= ${PORTNAME}_${DISTVERSION}
+
+MAINTAINER= tota@FreeBSD.org
+COMMENT= R wrapper for the mpfr multiple precision library
+
+LICENSE= GPLv2+
+
+LIB_DEPENDS= libgmp.so:math/gmp \
+ libmpfr.so:math/mpfr
+RUN_DEPENDS= R-cran-gmp>=0.5.8:math/R-cran-gmp
+
+USES= cran:auto-plist
+
+.include <bsd.port.mk>
diff --git a/math/R-cran-Rmpfr/distinfo b/math/R-cran-Rmpfr/distinfo
new file mode 100644
index 000000000000..1201c13ad74e
--- /dev/null
+++ b/math/R-cran-Rmpfr/distinfo
@@ -0,0 +1,2 @@
+SHA256 (Rmpfr_0.6-0.tar.gz) = 43a1df2244014d76bb7fce1b6b143d57a64126dd26504c9060d6efd6f497251a
+SIZE (Rmpfr_0.6-0.tar.gz) = 582729
diff --git a/math/R-cran-Rmpfr/pkg-descr b/math/R-cran-Rmpfr/pkg-descr
new file mode 100644
index 000000000000..047dc11d0f49
--- /dev/null
+++ b/math/R-cran-Rmpfr/pkg-descr
@@ -0,0 +1,7 @@
+Arithmetic (via S4 classes and methods) for arbitrary precision
+floating point numbers, including transcendental ("special")
+functions. To this end, Rmpfr interfaces to the LGPL'ed MPFR (Multiple
+Precision Floating-Point Reliable) Library which itself is based
+on the GMP (GNU Multiple Precision) Library.
+
+WWW: https://cran.r-project.org/web/packages/Rmpfr/