summaryrefslogtreecommitdiff
path: root/devel/hdf5/Makefile
diff options
context:
space:
mode:
authoradam <adam@pkgsrc.org>2005-02-25 09:10:18 +0000
committeradam <adam@pkgsrc.org>2005-02-25 09:10:18 +0000
commit67147114d1fdaf1f29850e25eb3adb349b5ea28a (patch)
treeb37d64a1576f83be45e3b7474ecdfc1cb8c3d963 /devel/hdf5/Makefile
parent06c58c12e993d595dc704d61b6ad6df0254a85dc (diff)
downloadpkgsrc-67147114d1fdaf1f29850e25eb3adb349b5ea28a.tar.gz
Changes 1.6.3:
New Features Configuration: - Added some initial support for making purify (or similar memory checking products) happier by initializing buffers to zero and disabling the internal free list code. To take advantage of this, define 'H5_USING_PURIFY' in your CFLAGS when building the library. - WINDOWS building,testing and installing improvements - On Windows, FORTRAN,C++ and C projects are merged into one zip file, users can choose an option to build either FORTRAN or C++ or both with basic C library.For detailed information, please read INSTALL_Windows.txt. - On Windows, szip compression library with or without encoder can be easily turned off or on when building HDF5. For detailed information, please read INSTALL_Windows.txt, especially section V. - On Windows, an optional procedure for building,testing and installing HDF5 from command line is provided. This procedure is supposed to be convenient for experienced users, please read INSTALL_windows_From_Command_Line.txt for details. - On Windows, an alternative short instruction document for building, testing and installing HDF5 is provided. This instruction is supposed to be convenient for general users, please read INSTALL_Windows_Short.txt for details. - On Windows, h5repack,h5diff,h5ls and h5import tool tests have been added. Library: - Modified the way how HDF5 calculates 'pixels_per_scanline' parameter for SZIP compression. Now there is no restriction on the size and shape of the chunk except that the total number of elements in the chunk cannot be bigger than 'pixels_per_block' parameter provided by the user. - HDF5 can now link to SZIP with or without szip's encoder. The new API function H5Zget_filter_info can be used to check szip's status. Attempting to assign szip to a dataset property list or attempting to write with szip will generate an error if szip's encoder is disabled. JL/NF - 2004/6/30 - SZIP always uses K13 compression. This flag no longer needs to be set when calling H5Pset_szip. If the flag for CHIP compression is set, it will be ignored (since the two are mutually exclusive). JL/NF - 2004/6/30 - A new API function H5Fget_name was added. It returns the name of the file by object(file, group, data set, named data type, attribute) ID. SLU - 2004/06/29 - A new API function H5Fget_filesize was added. It returns the actual file size of the opened file. SLU - 2004/06/24 - Added option that if $HDF5_DISABLE_VERSION_CHECK is set to 2, will suppress all library version mismatch warning messages. Tools: - h5repack was added to the tools suite. h5repack regenerates an HDF5 file from another HDF5 file, optionally applying HDF5 filters (compression) and/or chunking to the copied file. The filters options are read from the command line. See /doc/html/Tools.html for more details. PVN - 2004/9/13 - h5dump includes new features: 1) Printing of dataset filters, storage layout and fill value information. 2) Print a list of the file contents. 3) Escape non printing characters. 4) Print the content of the boot block. 5) Print array indices with the data (the default).
Diffstat (limited to 'devel/hdf5/Makefile')
-rw-r--r--devel/hdf5/Makefile29
1 files changed, 13 insertions, 16 deletions
diff --git a/devel/hdf5/Makefile b/devel/hdf5/Makefile
index a3ea77f9370..af3e39b5ebc 100644
--- a/devel/hdf5/Makefile
+++ b/devel/hdf5/Makefile
@@ -1,21 +1,19 @@
-# $NetBSD: Makefile,v 1.24 2004/11/13 21:28:28 jlam Exp $
+# $NetBSD: Makefile,v 1.25 2005/02/25 09:10:18 adam Exp $
-DISTNAME= hdf5-1.6.2
-PKGREVISION= 1
-CATEGORIES= devel
-MASTER_SITES= ftp://hdf.ncsa.uiuc.edu/HDF5/hdf5-1.6.2/src/ \
- ftp://sunsite.doc.ic.ac.uk/packages/HDF/HDF5/hdf5-1.6.2/src/ \
- http://www.go.dlr.de/fresh/unix/src/misc/
+DISTNAME= hdf5-1.6.3
+CATEGORIES= devel
+MASTER_SITES= ftp://hdf.ncsa.uiuc.edu/HDF5/hdf5-1.6.3/src/ \
+ ftp://sunsite.doc.ic.ac.uk/packages/HDF/HDF5/hdf5-1.6.3/src/ \
+ http://www.go.dlr.de/fresh/unix/src/misc/
-MAINTAINER= tech-pkg@NetBSD.org
-HOMEPAGE= http://hdf.ncsa.uiuc.edu/HDF5/
-COMMENT= Hierarchical Data Format (new generation)
+MAINTAINER= tech-pkg@NetBSD.org
+HOMEPAGE= http://hdf.ncsa.uiuc.edu/HDF5/
+COMMENT= Hierarchical Data Format (new generation)
-GNU_CONFIGURE= # defined
-# XXX can't enable this until we have a shared libsz
-#CONFIGURE_ARGS+= --with-szlib
USE_BUILDLINK3= yes
-USE_LIBTOOL= # defined
+USE_LIBTOOL= yes
+GNU_CONFIGURE= yes
+CONFIGURE_ARGS+= --with-szlib
TEST_TARGET= check
post-install:
@@ -28,7 +26,6 @@ post-install:
cd ${WRKSRC}/doc/html && ${PAX} -rw . ${PREFIX}/share/doc/html/hdf5
${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/share/doc/html/hdf5
+.include "../../archivers/szip/buildlink3.mk"
.include "../../devel/zlib/buildlink3.mk"
-# XXX see above
-#.include "../../archivers/szip/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"