diff options
author | tota <tota@FreeBSD.org> | 2016-04-29 15:04:54 +0800 |
---|---|---|
committer | tota <tota@FreeBSD.org> | 2016-04-29 15:04:54 +0800 |
commit | e119091c6f0d29fe968360ec8f53a12574ca3982 (patch) | |
tree | 5d6f9d42739ec850fa89fd71f57899268c47c97a | |
parent | e56e8977f2b0d0a0c4bebd495653a0355ffbb647 (diff) | |
download | freebsd-ports-gnome-e119091c6f0d29fe968360ec8f53a12574ca3982.tar.gz freebsd-ports-gnome-e119091c6f0d29fe968360ec8f53a12574ca3982.tar.zst freebsd-ports-gnome-e119091c6f0d29fe968360ec8f53a12574ca3982.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)
-rw-r--r-- | math/Makefile | 1 | ||||
-rw-r--r-- | math/R-cran-Rmpfr/Makefile | 20 | ||||
-rw-r--r-- | math/R-cran-Rmpfr/distinfo | 2 | ||||
-rw-r--r-- | math/R-cran-Rmpfr/pkg-descr | 7 |
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/ |