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.
32 lines
910 B
Text
32 lines
910 B
Text
# $NetBSD: Makefile.common,v 1.7 2013/09/01 09:56:41 adam Exp $
|
|
# used by devel/hdf5/Makefile
|
|
# used by devel/hdf5-c++/Makefile
|
|
|
|
DISTNAME= hdf5-1.8.11
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ftp://ftp.hdfgroup.org/HDF5/current/src/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= alnsn@NetBSD.org
|
|
HOMEPAGE= http://www.hdfgroup.org/HDF5/
|
|
LICENSE= original-bsd
|
|
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= pax tr
|
|
GNU_CONFIGURE= yes
|
|
TEST_TARGET= check
|
|
|
|
CFLAGS.SunOS+= -std=c99 -D_XOPEN_SOURCE=600 -D__EXTENSIONS__
|
|
|
|
DISTINFO_FILE= ${.CURDIR}/../../devel/hdf5/distinfo
|
|
PATCHDIR= ${.CURDIR}/../../devel/hdf5/patches
|
|
|
|
# it appears that this file is informative only and is not actually
|
|
# used by any installed tools
|
|
CHECK_WRKREF_SKIP= ${PREFIX}/lib/libhdf5.settings
|
|
|
|
INSTALL_ENV+= INSTALL_SCRIPT=${INSTALL_SCRIPT:Q}
|
|
|
|
post-extract:
|
|
${CP} ${WRKSRC}/config/freebsd ${WRKSRC}/config/netbsd
|
|
${CP} ${WRKSRC}/config/freebsd ${WRKSRC}/config/netbsdelf
|