diff options
author | tota <tota@FreeBSD.org> | 2011-09-18 07:47:40 +0800 |
---|---|---|
committer | tota <tota@FreeBSD.org> | 2011-09-18 07:47:40 +0800 |
commit | d7255970d83e14a830c2adc077a7106f422f42e7 (patch) | |
tree | 9bf0d6fe2a1601aa6024fdee7fa9ab5e1291034e /math | |
parent | 4f99ccfa26ee2715292cdcf297815f35caf083d7 (diff) | |
download | freebsd-ports-gnome-d7255970d83e14a830c2adc077a7106f422f42e7.tar.gz freebsd-ports-gnome-d7255970d83e14a830c2adc077a7106f422f42e7.tar.zst freebsd-ports-gnome-d7255970d83e14a830c2adc077a7106f422f42e7.zip |
- Add a new port: math/R-cran-deldir
Calculates the Delaunay triangulation and the Dirichlet or Voronoi
tessellation (with respect to the entire plane) of a planar point
set.
WWW: http://www.math.unb.ca/~rolf/
Diffstat (limited to 'math')
-rw-r--r-- | math/Makefile | 1 | ||||
-rw-r--r-- | math/R-cran-deldir/Makefile | 22 | ||||
-rw-r--r-- | math/R-cran-deldir/distinfo | 2 | ||||
-rw-r--r-- | math/R-cran-deldir/pkg-descr | 5 |
4 files changed, 30 insertions, 0 deletions
diff --git a/math/Makefile b/math/Makefile index 77cff833018c..e8c916649027 100644 --- a/math/Makefile +++ b/math/Makefile @@ -11,6 +11,7 @@ SUBDIR += R-cran-Zelig SUBDIR += R-cran-car SUBDIR += R-cran-coda + SUBDIR += R-cran-deldir SUBDIR += R-cran-gpclib SUBDIR += R-cran-inline SUBDIR += R-cran-mvtnorm diff --git a/math/R-cran-deldir/Makefile b/math/R-cran-deldir/Makefile new file mode 100644 index 000000000000..05a09664b112 --- /dev/null +++ b/math/R-cran-deldir/Makefile @@ -0,0 +1,22 @@ +# New ports collection makefile for: R-cran-deldir +# Date created: 2011-08-16 +# Whom: TAKATSU Tomonari <tota@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= deldir +DISTVERSION= 0.0-15 +CATEGORIES= math +PKGNAMEPREFIX= R-cran- +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Delaunay Triangulation and Dirichlet (Voronoi) Tessellation + +LICENSE= GPLv2 + +USE_R_MOD= yes +R_MOD_AUTOPLIST= yes + +.include <bsd.port.mk> diff --git a/math/R-cran-deldir/distinfo b/math/R-cran-deldir/distinfo new file mode 100644 index 000000000000..b9cfa503b7e7 --- /dev/null +++ b/math/R-cran-deldir/distinfo @@ -0,0 +1,2 @@ +SHA256 (deldir_0.0-15.tar.gz) = 676c195f4d6e494afa15cdb6065bdda556abd33aef17812c3889ecf50f85547f +SIZE (deldir_0.0-15.tar.gz) = 49092 diff --git a/math/R-cran-deldir/pkg-descr b/math/R-cran-deldir/pkg-descr new file mode 100644 index 000000000000..72a151ab7298 --- /dev/null +++ b/math/R-cran-deldir/pkg-descr @@ -0,0 +1,5 @@ +Calculates the Delaunay triangulation and the Dirichlet or Voronoi +tessellation (with respect to the entire plane) of a planar point +set. + +WWW: http://www.math.unb.ca/~rolf/ |