1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-02 06:03:50 +00:00
freebsd-ports/science/hdf5/Makefile

48 lines
1.3 KiB
Makefile
Raw Normal View History

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