mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-08 06:48:28 +00:00
cae009169c
scientific data in the free, portable HDF5 format. Besides providing a simple tool for batch visualization as PNG images, h5utils also includes programs to convert HDF5 datasets into the formats required by other free visualization software (e.g. plain text, Vis5d, and VTK). WWW: http://ab-initio.mit.edu/wiki/index.php/H5utils PR: ports/155482 Submitted by: Klaus Aehlig <aehlig at linta.de>
29 lines
761 B
Makefile
29 lines
761 B
Makefile
# New ports collection makefile for: h5utils
|
|
# Date created: Mar 11, 2011
|
|
# Whom: Klaus Aehlig <aehlig@linta.de>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= h5utils
|
|
PORTVERSION= 1.12.1
|
|
CATEGORIES= science
|
|
MASTER_SITES= http://ab-initio.mit.edu/${PORTNAME}/
|
|
|
|
MAINTAINER= aehlig@linta.de
|
|
COMMENT= A set of utilities for visualization and conversion of HDF5 format
|
|
|
|
LICENSE= MIT GPLv2
|
|
LICENSE_COMB= multi
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
MAN1= h5totxt.1 h5fromtxt.1 h5tovtk.1 h5topng.1 h5math.1
|
|
|
|
GNU_CONFIGURE= YES
|
|
CFLAGS += -L${LOCALBASE}/lib -I${LOCALBASE}/include ${PTHREAD_LIBS}
|
|
|
|
BUILD_DEPENDS+= gawk:${PORTSDIR}/lang/gawk
|
|
LIB_DEPENDS += hdf5:${PORTSDIR}/science/hdf5 \
|
|
png:${PORTSDIR}/graphics/png \
|
|
matheval.1:${PORTSDIR}/devel/libmatheval
|
|
|
|
.include <bsd.port.mk>
|