ed334abe90
Voro++ is a software library for carrying out three-dimensional computations of the Voronoi tessellation. A distinguishing feature of the Voro++ library is that it carries out cell-based calculations, computing the Voronoi cell for each particle individually. It is particularly well-suited for applications that rely on cell-based statistics, where features of Voronoi cells (eg. volume, centroid, number of faces) can be used to analyze a system of particles. WWW: http://math.lbl.gov/voro++/ PR: 177678 Submitted by: jwbacon@tds.net Feature safe: yes
25 lines
466 B
Makefile
25 lines
466 B
Makefile
# Created by: Jason Bacon
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= voro++
|
|
PORTVERSION= 0.4.5
|
|
CATEGORIES= science
|
|
MASTER_SITES= http://math.lbl.gov/voro++/download/dir/
|
|
|
|
MAINTAINER= jwbacon@tds.net
|
|
COMMENT= Three-dimensional computations of the Voronoi tessellation
|
|
|
|
LICENSE= BSD
|
|
|
|
USE_GMAKE= yes
|
|
|
|
MAN1= voro++.1
|
|
|
|
post-patch-script:
|
|
${REINPLACE_CMD} \
|
|
-e 's|CC=|CC?=|g' \
|
|
-e 's|CFLAGS=|CFLAGS?=|g' \
|
|
-e "s|/usr/local|${PREFIX}|g" \
|
|
${WRKSRC}/config.mk
|
|
|
|
.include <bsd.port.mk>
|