diff --git a/math/Makefile b/math/Makefile index 6c88f362cd94..b5af2c6b55b9 100644 --- a/math/Makefile +++ b/math/Makefile @@ -155,6 +155,7 @@ SUBDIR += p5-Math-Random-MT SUBDIR += p5-Math-Round SUBDIR += p5-Math-SimpleVariable + SUBDIR += p5-Math-Spline SUBDIR += p5-Math-TrulyRandom SUBDIR += p5-MatrixReal SUBDIR += p5-NetCDF diff --git a/math/p5-Math-Spline/Makefile b/math/p5-Math-Spline/Makefile new file mode 100644 index 000000000000..e55d8f9461fc --- /dev/null +++ b/math/p5-Math-Spline/Makefile @@ -0,0 +1,25 @@ +# vim:ts=8 +# New ports collection makefile for: p5-Math-Spline +# Date created: 25 November 2004 +# Whom: Fernan Aguero +# +# $FreeBSD$ +# + +PORTNAME= Math-Spline +PORTVERSION= 0.01 +CATEGORIES= math perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN} +MASTER_SITE_SUBDIR= Math +PKGNAMEPREFIX= p5- + +MAINTAINER= fernan@iib.unsam.edu.ar +COMMENT= Cubic Spline Interpolation of data + +RUN_DEPENDS= ${SITE_PERL}/Math/Derivative.pm:${PORTSDIR}/math/p5-Math-Derivative + +PERL_CONFIGURE= yes + +MAN3= Math::Spline.3 + +.include diff --git a/math/p5-Math-Spline/distinfo b/math/p5-Math-Spline/distinfo new file mode 100644 index 000000000000..03d3cfcc8ea3 --- /dev/null +++ b/math/p5-Math-Spline/distinfo @@ -0,0 +1,2 @@ +MD5 (Math-Spline-0.01.tar.gz) = a9ebe29ba1794d1dca60aa0c44178197 +SIZE (Math-Spline-0.01.tar.gz) = 2667 diff --git a/math/p5-Math-Spline/pkg-descr b/math/p5-Math-Spline/pkg-descr new file mode 100644 index 000000000000..7ea5e2218630 --- /dev/null +++ b/math/p5-Math-Spline/pkg-descr @@ -0,0 +1,4 @@ +This package provides cubic spline interpolation of numeric data. The +data is passed as references to two arrays containing the x and y +ordinates. It may be used as an exporter of the numerical functions or, +more easily as a class module. diff --git a/math/p5-Math-Spline/pkg-plist b/math/p5-Math-Spline/pkg-plist new file mode 100644 index 000000000000..4933e93b8f13 --- /dev/null +++ b/math/p5-Math-Spline/pkg-plist @@ -0,0 +1,5 @@ +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Math/Spline/.packlist +%%SITE_PERL%%/Math/Spline.pm +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Math/Spline +@unexec rmdir %D/%SITE_PERL%%/%%PERL_ARCH%%/auto/Math 2>/dev/null || true +@unexec rmdir %D/%SITE_PERL%%/Math 2>/dev/null || true