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. Voro++ is a prerequisite for the coming LAMMPS port. Fix: Patch attached with submission follows:
Responsible Changed From-To: freebsd-ports-bugs->jgh I'll take it.
Author: jgh Date: Tue Apr 16 22:46:18 2013 New Revision: 315916 URL: http://svnweb.freebsd.org/changeset/ports/315916 Log: - add new port: science/voro++ 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 Added: head/science/voro++/ head/science/voro++/Makefile (contents, props changed) head/science/voro++/distinfo (contents, props changed) head/science/voro++/pkg-descr (contents, props changed) head/science/voro++/pkg-plist (contents, props changed) Modified: head/science/Makefile Modified: head/science/Makefile ============================================================================== --- head/science/Makefile Tue Apr 16 22:37:32 2013 (r315915) +++ head/science/Makefile Tue Apr 16 22:46:18 2013 (r315916) @@ -193,6 +193,7 @@ SUBDIR += v_sim SUBDIR += veusz SUBDIR += vmd + SUBDIR += voro++ SUBDIR += x11iraf SUBDIR += xmakemol SUBDIR += xmds Added: head/science/voro++/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/voro++/Makefile Tue Apr 16 22:46:18 2013 (r315916) @@ -0,0 +1,25 @@ +# 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> Added: head/science/voro++/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/voro++/distinfo Tue Apr 16 22:46:18 2013 (r315916) @@ -0,0 +1,2 @@ +SHA256 (voro++-0.4.5.tar.gz) = 9e67e2392ae027cf51d3487038848dc980c6c3e86f1447053efac9309bcee5f5 +SIZE (voro++-0.4.5.tar.gz) = 737883 Added: head/science/voro++/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/voro++/pkg-descr Tue Apr 16 22:46:18 2013 (r315916) @@ -0,0 +1,9 @@ +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++/ Added: head/science/voro++/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/voro++/pkg-plist Tue Apr 16 22:46:18 2013 (r315916) @@ -0,0 +1,17 @@ +bin/voro++ +include/voro++/c_loops.hh +include/voro++/cell.hh +include/voro++/common.hh +include/voro++/config.hh +include/voro++/container.hh +include/voro++/container_prd.hh +include/voro++/pre_container.hh +include/voro++/rad_option.hh +include/voro++/unitcell.hh +include/voro++/v_base.hh +include/voro++/v_compute.hh +include/voro++/voro++.hh +include/voro++/wall.hh +include/voro++/worklist.hh +lib/libvoro++.a +@dirrm include/voro++ _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed New port added, with minor changes. Thanks!