devel/R-cran-interp: new port

Bivariate data interpolation on regular and irregular grids using linear or
spline methods.

Provides FOSS replacements for ACM-licensed akima and tripack functions with
backward compatibility. Includes linear interpolation, Akima's irregular grid
spline interpolation, partial derivative estimators, and triangulation
algorithms.
This commit is contained in:
Steven Kreuzer 2025-06-01 16:18:47 +00:00
parent 0d65e1ba4c
commit 8db3609608
No known key found for this signature in database
GPG Key ID: 66BAB4B6E0D6F907
4 changed files with 33 additions and 0 deletions

View File

@ -79,6 +79,7 @@
SUBDIR += R-cran-hms SUBDIR += R-cran-hms
SUBDIR += R-cran-ids SUBDIR += R-cran-ids
SUBDIR += R-cran-ini SUBDIR += R-cran-ini
SUBDIR += R-cran-interp
SUBDIR += R-cran-iterators SUBDIR += R-cran-iterators
SUBDIR += R-cran-itertools SUBDIR += R-cran-itertools
SUBDIR += R-cran-kit SUBDIR += R-cran-kit

View File

@ -0,0 +1,22 @@
PORTNAME= interp
DISTVERSION= 1.1-6
CATEGORIES= devel
DISTNAME= ${PORTNAME}_${DISTVERSION}
MAINTAINER= skreuzer@FreeBSD.org
COMMENT= Interpolation methods
WWW= https://cran.r-project.org/web/packages/interp/
LICENSE= GPLv2 GPLv3
LICENSE_COMB= dual
CRAN_DEPENDS= R-cran-deldir>0:math/R-cran-deldir \
R-cran-Rcpp>0:devel/R-cran-Rcpp \
R-cran-RcppEigen>0:math/R-cran-RcppEigen
BUILD_DEPENDS= ${CRAN_DEPENDS}
RUN_DEPENDS= ${CRAN_DEPENDS}
#USES= compiler:c++11-lang cran:auto-plist,compiles
USES= cran:auto-plist,compiles
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1748477745
SHA256 (interp_1.1-6.tar.gz) = 3674044e5334ecdf124054303929c084fc0797d3123e28576a230492ea6ecd34
SIZE (interp_1.1-6.tar.gz) = 1112116

View File

@ -0,0 +1,7 @@
Bivariate data interpolation on regular and irregular grids using linear or
spline methods.
Provides FOSS replacements for ACM-licensed akima and tripack functions with
backward compatibility. Includes linear interpolation, Akima's irregular grid
spline interpolation, partial derivative estimators, and triangulation
algorithms.