2002-07-07 12:34:37 +00:00
|
|
|
# ex:ts=8
|
|
|
|
# New ports collection makefile for: HDF5
|
|
|
|
# Date created: Jul 7, 2002
|
|
|
|
# Whom: ijliao
|
1997-11-03 12:10:43 +00:00
|
|
|
#
|
1999-08-25 06:16:32 +00:00
|
|
|
# $FreeBSD$
|
1997-11-03 12:10:43 +00:00
|
|
|
#
|
|
|
|
|
2002-07-07 12:34:37 +00:00
|
|
|
PORTNAME= hdf5
|
2004-02-25 22:53:22 +00:00
|
|
|
PORTVERSION= 1.6.2
|
2004-03-08 22:52:17 +00:00
|
|
|
PORTREVISION= 1
|
2004-02-25 22:53:22 +00:00
|
|
|
CATEGORIES= science archivers graphics
|
|
|
|
MASTER_SITES= ftp://hdf.ncsa.uiuc.edu/pub/outgoing/hdf5/snapshots/
|
2004-03-08 22:52:17 +00:00
|
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}-post2
|
1997-11-03 12:10:43 +00:00
|
|
|
|
2004-02-25 22:53:22 +00:00
|
|
|
MAINTAINER= koziol@ncsa.uiuc.edu
|
2003-02-20 18:08:19 +00:00
|
|
|
COMMENT= Hierarchical Data Format library (from NCSA)
|
1997-11-03 12:10:43 +00:00
|
|
|
|
2004-02-25 22:53:22 +00:00
|
|
|
USE_BZIP2= yes
|
2002-07-07 12:34:37 +00:00
|
|
|
USE_REINPLACE= yes
|
2004-03-14 06:17:56 +00:00
|
|
|
USE_LIBTOOL_VER=13
|
2002-07-13 17:25:05 +00:00
|
|
|
LIBTOOLFILES= configure c++/configure
|
|
|
|
CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL}
|
2002-07-07 12:34:37 +00:00
|
|
|
CONFIGURE_ARGS= --enable-cxx --enable-production \
|
|
|
|
--enable-threadsafe --disable-debug \
|
2004-02-25 22:53:22 +00:00
|
|
|
--with-pthread
|
|
|
|
ALL_TARGET= lib progs
|
2002-07-07 12:34:37 +00:00
|
|
|
INSTALLS_SHLIB= yes
|
1997-11-03 12:10:43 +00:00
|
|
|
|
2004-03-06 23:26:19 +00:00
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
1999-11-14 02:32:21 +00:00
|
|
|
post-patch:
|
2002-07-13 17:25:05 +00:00
|
|
|
@${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/configure
|
2004-02-25 22:53:22 +00:00
|
|
|
@${REINPLACE_CMD} -e 's|-D_THREAD_SAFE|${PTHREAD_CFLAGS}|g ; \
|
|
|
|
s|[\$$]LDFLAGS -pthread|\$$LDFLAGS ${PTHREAD_LIBS}|g' \
|
2002-07-13 17:25:05 +00:00
|
|
|
${WRKSRC}/config/freebsd
|
2004-02-25 22:53:22 +00:00
|
|
|
@${REINPLACE_CMD} -e 's|-D_THREAD_SAFE|${PTHREAD_CFLAGS}|g ; \
|
|
|
|
s|[\$$]LDFLAGS -pthread|\$$LDFLAGS ${PTHREAD_LIBS}|g' \
|
|
|
|
${WRKSRC}/c++/config/freebsd
|
2003-11-13 05:33:55 +00:00
|
|
|
@${REINPLACE_CMD} -e 's|-O3||g' ${WRKSRC}/config/gnu-flags
|
2002-07-13 17:25:05 +00:00
|
|
|
|
|
|
|
post-install:
|
2004-02-25 22:53:22 +00:00
|
|
|
.for i in gif2h5 h52gif h5debug h5diff h5dump h5import h5ls h5repart
|
2003-11-13 05:33:55 +00:00
|
|
|
@${STRIP_CMD} ${PREFIX}/bin/${i}
|
2002-07-13 17:25:05 +00:00
|
|
|
.endfor
|
1997-11-03 12:10:43 +00:00
|
|
|
|
2004-03-06 23:26:19 +00:00
|
|
|
.include <bsd.port.post.mk>
|