302f01d1a6
Configuration - Libtool version number is changed to 8.0.0 because there are API changes. See below for details. - Mac OS X 10.7 (Lion) and 10.8 (Mountain Lion) uses clang/clang++ as the default C and C++ compilers. - CMake minimum is now 2.8.10. - A new tool, cmakehdf5, which is a build command script similar to buildhdf5 is added and is available in the bin directory. Library - The library can load filter libraries dynamically during runtime. Users can set the search path through environment variable HDF5_PLUGIN_PATH and call H5Pset_filter to enable a dynamic filter. - Added new API functions H5Dscatter and H5Dgather to scatter data to and and gather data from a selection within a memory buffer. - The library now supports the data conversion from enumeration to numeric (integer and floating-point number) datatypes. See Issue HDFFV-8221. Tools - h5dump: added new option -O or -ddl to output the ddl text to a file. This is a complement to the -o or --output option, which redirects the data to a file.
24 lines
715 B
Makefile
24 lines
715 B
Makefile
# $NetBSD: Makefile,v 1.47 2013/09/01 09:56:41 adam Exp $
|
|
|
|
COMMENT= Hierarchical Data Format (new generation)
|
|
|
|
INSTALLATION_DIRS= bin lib include
|
|
INSTALLATION_DIRS+= share/doc/hdf5
|
|
INSTALLATION_DIRS+= share/examples/hdf5/c
|
|
|
|
post-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/tools/misc/h5cc \
|
|
${DESTDIR}${PREFIX}/bin/
|
|
${INSTALL_SCRIPT} ${WRKSRC}/tools/misc/h5redeploy.in \
|
|
${DESTDIR}${PREFIX}/bin/h5redeploy
|
|
cd ${WRKSRC} && ${INSTALL_DATA} COPYING \
|
|
release_docs/RELEASE.txt \
|
|
release_docs/HISTORY-1_8.txt \
|
|
release_docs/HISTORY-1_0-1_8_0_rc3.txt \
|
|
${DESTDIR}${PREFIX}/share/doc/hdf5/
|
|
|
|
.include "Makefile.common"
|
|
.include "options.mk"
|
|
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|