mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
2cab66bb35
Makes the qhull library (www.qhull.org) available in R, in a similar manner as in Octave and MATLAB. Qhull computes convex hulls, Delaunay triangulations, halfspace intersections about a point, Voronoi diagrams, furthest-site Delaunay triangulations, and furthest-site Voronoi diagrams. It runs in 2-d, 3-d, 4-d, and higher dimensions. It implements the Quickhull algorithm for computing the convex hull. Qhull does not support constrained Delaunay triangulations, or mesh generation of non-convex objects, but the package does include some R functions that allow for this. Currently the package only gives access to Delaunay triangulation and convex hull computation. WWW: https://cran.r-project.org/web/packages/geometry/
22 lines
447 B
Makefile
22 lines
447 B
Makefile
# Created by: TAKATSU Tomonari <tota@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= geometry
|
|
DISTVERSION= 0.3-6
|
|
CATEGORIES= math
|
|
DISTNAME= ${PORTNAME}_${DISTVERSION}
|
|
|
|
MAINTAINER= tota@FreeBSD.org
|
|
COMMENT= Mesh Generation and Surface Tesselation
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= cran:auto-plist,compiles
|
|
|
|
CRAN_DEPENDS= R-cran-magic>0:math/R-cran-magic
|
|
BUILD_DEPENDS= ${CRAN_DEPENDS}
|
|
RUN_DEPENDS= ${CRAN_DEPENDS}
|
|
|
|
.include <bsd.port.mk>
|