mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-26 05:02:18 +00:00
e0ee3df12d
Fix build with clang [2] Change WWW in pkg-descr and pkg-message to point to current web side [3] PR: ports/169925 [1] Submitted by: Jason Bacon <jwbacon@tds.net> (maintainer) [1], kwm [2], [3] Approved by: maintainer, kwm (mentor)
84 lines
1.9 KiB
Makefile
84 lines
1.9 KiB
Makefile
############################################################################
|
|
# New ports collection Makefile for: minc 1.x (Medical Imaging NetCDF)
|
|
# Date created: 21 Dec 2005
|
|
# Whom: jbacon
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
############################################################################
|
|
# http://www.bic.mni.mcgill.ca/software/minc/
|
|
# is the ultimate source for MINC, and will always contain the latest
|
|
# source release. If this port is not up to date enough for you,
|
|
# you can download the latest sources and build manually. On FreeBSD,
|
|
# you must configure with the environment variable LDFLAGS set to
|
|
# ${LOCALBASE}/lib so that the configure script will find libnetcdf.
|
|
# Of course, the netcdf port must be installed first.
|
|
|
|
PORTNAME= minc
|
|
PORTVERSION= 2.0.18
|
|
CATEGORIES= science biology
|
|
MASTER_SITES= http://www.nitrc.org/frs/download.php/801/
|
|
|
|
MAINTAINER= jwbacon@tds.net
|
|
COMMENT= Medical Imaging NetCDF
|
|
|
|
LIB_DEPENDS= netcdf.4:${PORTSDIR}/science/netcdf \
|
|
hdf5:${PORTSDIR}/science/hdf5
|
|
|
|
USE_AUTOTOOLS= libtool
|
|
USE_LDCONFIG= yes
|
|
CPPFLAGS+= ${PTHREAD_CFLAGS} -I${LOCALBASE}/include -DH5_USE_16_API
|
|
LDFLAGS+= -L${LOCALBASE}/lib ${PTHREAD_LIBS}
|
|
CONFIGURE_ARGS= --enable-shared=yes --enable-static=yes
|
|
|
|
CONFLICTS= minc-1* zh-tk-[0-9]*
|
|
LATEST_LINK= minc2
|
|
|
|
MAN1= dcm2mnc.1 \
|
|
ecattominc.1 \
|
|
invert_raw_image.1 \
|
|
minc_modify_header.1 \
|
|
mincaverage.1 \
|
|
minccalc.1 \
|
|
mincconcat.1 \
|
|
mincconvert.1 \
|
|
minccopy.1 \
|
|
mincdiff.1 \
|
|
mincedit.1 \
|
|
mincexpand.1 \
|
|
mincextract.1 \
|
|
mincgen.1 \
|
|
mincheader.1 \
|
|
minchistory.1 \
|
|
mincinfo.1 \
|
|
minclookup.1 \
|
|
mincmakescalar.1 \
|
|
mincmakevector.1 \
|
|
mincmath.1 \
|
|
mincpik.1 \
|
|
mincresample.1 \
|
|
mincreshape.1 \
|
|
mincstats.1 \
|
|
minctoecat.1 \
|
|
minctoraw.1 \
|
|
mincview.1 \
|
|
mincwindow.1 \
|
|
mnc2nii.1 \
|
|
nii2mnc.1 \
|
|
rawtominc.1 \
|
|
transformtags.1 \
|
|
upet2mnc.1 \
|
|
vff2mnc.1 \
|
|
voxeltoworld.1 \
|
|
xfmconcat.1 \
|
|
xfmflip.1 \
|
|
xfminvert.1
|
|
|
|
MAN3= ParseArgv.3
|
|
|
|
post-install:
|
|
${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|