head 1.4; access; symbols pkgsrc-2026Q2:1.3.0.2 pkgsrc-2026Q2-base:1.3 pkgsrc-2026Q1:1.2.0.12 pkgsrc-2026Q1-base:1.2 pkgsrc-2025Q4:1.2.0.10 pkgsrc-2025Q4-base:1.2 pkgsrc-2025Q3:1.2.0.8 pkgsrc-2025Q3-base:1.2 pkgsrc-2025Q2:1.2.0.6 pkgsrc-2025Q2-base:1.2 pkgsrc-2025Q1:1.2.0.4 pkgsrc-2025Q1-base:1.2 pkgsrc-2024Q4:1.2.0.2 pkgsrc-2024Q4-base:1.2 pkgsrc-2024Q3:1.1.0.12 pkgsrc-2024Q3-base:1.1 pkgsrc-2024Q2:1.1.0.10 pkgsrc-2024Q2-base:1.1 pkgsrc-2024Q1:1.1.0.8 pkgsrc-2024Q1-base:1.1 pkgsrc-2023Q4:1.1.0.6 pkgsrc-2023Q4-base:1.1 pkgsrc-2023Q3:1.1.0.4 pkgsrc-2023Q3-base:1.1 pkgsrc-2023Q2:1.1.0.2 pkgsrc-2023Q2-base:1.1; locks; strict; comment @# @; 1.4 date 2026.07.05.14.20.55; author mef; state Exp; branches; next 1.3; commitid MQQaqY3noWSSltMG; 1.3 date 2026.06.10.12.49.03; author mef; state Exp; branches; next 1.2; commitid C5QE7OMxX69cEfJG; 1.2 date 2024.12.06.23.57.34; author mef; state Exp; branches; next 1.1; commitid MDBQ04dyaZCC3vAF; 1.1 date 2023.06.15.11.45.30; author mef; state Exp; branches; next ; commitid 9XfAk993LbRDm2tE; desc @@ 1.4 log @(graphics/R-interp) Fix build on Darwin, hopefully @ text @# $NetBSD: Makefile,v 1.3 2026/06/10 12:49:03 mef Exp $ R_PKGNAME= interp R_PKGVER= 1.1-6 CATEGORIES= graphics MAINTAINER= pkgsrc-users@@NetBSD.org COMMENT= Interpolation Methods LICENSE= gnu-gpl-v2 OR gnu-gpl-v3 DEPENDS+= R-deldir>=1.0.6:../../geography/R-deldir # Packages suggested but not available: 'Ryacas', 'scatterplot3d' TEST_DEPENDS+= R-Deriv-[0-9]*:../../math/R-Deriv TEST_DEPENDS+= R-ggplot2-[0-9]*:../../graphics/R-ggplot2 TEST_DEPENDS+= R-gridExtra-[0-9]*:../../graphics/R-gridExtra TEST_DEPENDS+= R-sp-[0-9]*:../../math/R-sp TEST_DEPENDS+= R-stringi-[0-9]*:../../textproc/R-stringi TEST_DEPENDS+= R-stringr-[0-9]*:../../textproc/R-stringr USE_LANGUAGES= c c++ fortran .include "../../mk/bsd.prefs.mk" pre-patch: .if ${OPSYS} != SunOS && ${OPSYS} != Linux && ${OPSYS} != Darwin ${CP} ${FILESDIR}/Makevars ${WRKSRC}/src/ .endif .include "../../devel/R-Rcpp/buildlink3.mk" .include "../../math/R-RcppEigen/buildlink3.mk" .include "../../math/R/Makefile.extension" .include "../../mk/bsd.pkg.mk" @ 1.3 log @(graphics/R-interp) Fix build against R-4.6.0 @ text @d1 1 a1 1 # $NetBSD: Makefile,v 1.2 2024/12/06 23:57:34 mef Exp $ d26 1 a26 1 .if ${OPSYS} != SunOS && ${OPSYS} != Linux @ 1.2 log @(graphics/R-interp) Updated 1.1.4 to 1.1.6, NEWS.md unknown @ text @d1 1 a1 1 # $NetBSD: Makefile,v 1.1 2023/06/15 11:45:30 mef Exp $ d24 6 @ 1.1 log @(graphics/R-interp) import R-interp-1.1.4 Bivariate data interpolation on regular and irregular grids, either linear or using splines are the main part of this package. It is intended to provide FOSS replacement functions for the ACM licensed akima::interp and tripack::tri.mesh functions. Linear interpolation is implemented in interp::interp(..., method="linear"), this corresponds to the call akima::interp(..., linear=TRUE) which is the default setting and covers most of akima::interp use cases in depending packages. A re-implementation of Akimas irregular grid spline interpolation (akima::interp(..., linear=FALSE)) is now also available via interp::interp(..., method="akima"). Estimators for partial derivatives are now also available in interp::locpoly(), these are a prerequisite for the spline interpolation. The basic part is a GPLed triangulation algorithm (sweep hull algorithm by David Sinclair) providing the starting point for the irregular grid interpolator. As side effect this algorithm is also used to provide replacements for almost all functions of the tripack package which also suffers from the same ACM license restrictions. All functions are designed to be backward compatible with their akima / tripack counterparts. @ text @d1 1 a1 1 # $NetBSD$ d4 1 a4 1 R_PKGVER= 1.1-4 d13 9 @