diff options
author | adam <adam@pkgsrc.org> | 2005-02-25 09:10:18 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2005-02-25 09:10:18 +0000 |
commit | 67147114d1fdaf1f29850e25eb3adb349b5ea28a (patch) | |
tree | b37d64a1576f83be45e3b7474ecdfc1cb8c3d963 /devel/hdf5 | |
parent | 06c58c12e993d595dc704d61b6ad6df0254a85dc (diff) | |
download | pkgsrc-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')
-rw-r--r-- | devel/hdf5/DESCR | 20 | ||||
-rw-r--r-- | devel/hdf5/Makefile | 29 | ||||
-rw-r--r-- | devel/hdf5/PLIST | 239 | ||||
-rw-r--r-- | devel/hdf5/distinfo | 10 | ||||
-rw-r--r-- | devel/hdf5/patches/patch-aa | 8 |
5 files changed, 269 insertions, 37 deletions
diff --git a/devel/hdf5/DESCR b/devel/hdf5/DESCR index 242da8dd71b..da456103514 100644 --- a/devel/hdf5/DESCR +++ b/devel/hdf5/DESCR @@ -9,12 +9,14 @@ number of limitations in the older HDF format and library. HDF5 includes the following improvements over HDF4 - o A new file format designed to address some of the deficiencies of - HDF4.x, particularly the need to store larger files and more - objects per file. - o A simpler, more comprehensive data model that includes only two - basic structures: a multidimensional array of record structures, - and a grouping structure. - o A simpler, better-engineered library and API, with improved - support for parallel I/O, threads, and other requirements imposed - by modern systems and applications. +* A new file format designed to address some of the deficiencies of + HDF4.x, particularly the need to store larger files and more + objects per file. + +* A simpler, more comprehensive data model that includes only two + basic structures: a multidimensional array of record structures, + and a grouping structure. + +* A simpler, better-engineered library and API, with improved + support for parallel I/O, threads, and other requirements imposed + by modern systems and applications. 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" diff --git a/devel/hdf5/PLIST b/devel/hdf5/PLIST index 57defe0a884..fcc9c95eb6d 100644 --- a/devel/hdf5/PLIST +++ b/devel/hdf5/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.8 2004/09/22 08:09:26 jlam Exp $ +@comment $NetBSD: PLIST,v 1.9 2005/02/25 09:10:18 adam Exp $ bin/gif2h5 bin/h52gif bin/h5cc @@ -8,6 +8,7 @@ bin/h5dump bin/h5import bin/h5ls bin/h5redeploy +bin/h5repack bin/h5repart include/H5ACpublic.h include/H5Apublic.h @@ -16,9 +17,9 @@ include/H5Dpublic.h include/H5Epublic.h include/H5FDcore.h include/H5FDfamily.h -include/H5FDfphdf5.h include/H5FDgass.h include/H5FDlog.h +include/H5FDmpi.h include/H5FDmpio.h include/H5FDmpiposix.h include/H5FDmulti.h @@ -27,7 +28,6 @@ include/H5FDsec2.h include/H5FDsrb.h include/H5FDstdio.h include/H5FDstream.h -include/H5FPpublic.h include/H5Fpublic.h include/H5Gpublic.h include/H5HGpublic.h @@ -162,6 +162,7 @@ share/doc/html/hdf5/TechNotes/MoveDStruct.html share/doc/html/hdf5/TechNotes/NamingScheme.html share/doc/html/hdf5/TechNotes/ObjectHeader.html share/doc/html/hdf5/TechNotes/RawDStorage.html +share/doc/html/hdf5/TechNotes/ReservedFileSpace.html share/doc/html/hdf5/TechNotes/SWControls.html share/doc/html/hdf5/TechNotes/SymbolTables.html share/doc/html/hdf5/TechNotes/TestReview.html @@ -346,6 +347,236 @@ share/doc/html/hdf5/cpplus/CppUserNotes.pdf share/doc/html/hdf5/cpplus/Dependencies share/doc/html/hdf5/cpplus/Makefile share/doc/html/hdf5/cpplus/Makefile.in +share/doc/html/hdf5/cpplus_RM/Dependencies +share/doc/html/hdf5/cpplus_RM/H5AbstractDs_8cpp.html +share/doc/html/hdf5/cpplus_RM/H5AbstractDs_8h-source.html +share/doc/html/hdf5/cpplus_RM/H5AbstractDs_8h.html +share/doc/html/hdf5/cpplus_RM/H5Alltypes_8h-source.html +share/doc/html/hdf5/cpplus_RM/H5Alltypes_8h.html +share/doc/html/hdf5/cpplus_RM/H5AtomType_8cpp.html +share/doc/html/hdf5/cpplus_RM/H5AtomType_8h-source.html +share/doc/html/hdf5/cpplus_RM/H5AtomType_8h.html +share/doc/html/hdf5/cpplus_RM/H5Attribute_8cpp.html +share/doc/html/hdf5/cpplus_RM/H5Attribute_8h-source.html +share/doc/html/hdf5/cpplus_RM/H5Attribute_8h.html +share/doc/html/hdf5/cpplus_RM/H5Classes_8h-source.html +share/doc/html/hdf5/cpplus_RM/H5Classes_8h.html +share/doc/html/hdf5/cpplus_RM/H5CommonFG_8cpp.html +share/doc/html/hdf5/cpplus_RM/H5CommonFG_8h-source.html +share/doc/html/hdf5/cpplus_RM/H5CommonFG_8h.html +share/doc/html/hdf5/cpplus_RM/H5CompType_8cpp.html +share/doc/html/hdf5/cpplus_RM/H5CompType_8h-source.html +share/doc/html/hdf5/cpplus_RM/H5CompType_8h.html +share/doc/html/hdf5/cpplus_RM/H5CppDoc_8h-source.html +share/doc/html/hdf5/cpplus_RM/H5CppDoc_8h.html +share/doc/html/hdf5/cpplus_RM/H5Cpp_8h-source.html +share/doc/html/hdf5/cpplus_RM/H5Cpp_8h.html +share/doc/html/hdf5/cpplus_RM/H5DataSet_8cpp.html +share/doc/html/hdf5/cpplus_RM/H5DataSet_8h-source.html +share/doc/html/hdf5/cpplus_RM/H5DataSet_8h.html +share/doc/html/hdf5/cpplus_RM/H5DataSpace_8cpp.html +share/doc/html/hdf5/cpplus_RM/H5DataSpace_8h-source.html +share/doc/html/hdf5/cpplus_RM/H5DataSpace_8h.html +share/doc/html/hdf5/cpplus_RM/H5DataType_8cpp.html +share/doc/html/hdf5/cpplus_RM/H5DataType_8h-source.html +share/doc/html/hdf5/cpplus_RM/H5DataType_8h.html +share/doc/html/hdf5/cpplus_RM/H5DcreatProp_8cpp.html +share/doc/html/hdf5/cpplus_RM/H5DcreatProp_8h-source.html +share/doc/html/hdf5/cpplus_RM/H5DcreatProp_8h.html +share/doc/html/hdf5/cpplus_RM/H5DxferProp_8cpp.html +share/doc/html/hdf5/cpplus_RM/H5DxferProp_8h-source.html +share/doc/html/hdf5/cpplus_RM/H5DxferProp_8h.html +share/doc/html/hdf5/cpplus_RM/H5EnumType_8cpp.html +share/doc/html/hdf5/cpplus_RM/H5EnumType_8h-source.html +share/doc/html/hdf5/cpplus_RM/H5EnumType_8h.html +share/doc/html/hdf5/cpplus_RM/H5Exception_8cpp.html +share/doc/html/hdf5/cpplus_RM/H5Exception_8h-source.html +share/doc/html/hdf5/cpplus_RM/H5Exception_8h.html +share/doc/html/hdf5/cpplus_RM/H5FaccProp_8cpp.html +share/doc/html/hdf5/cpplus_RM/H5FaccProp_8h-source.html +share/doc/html/hdf5/cpplus_RM/H5FaccProp_8h.html +share/doc/html/hdf5/cpplus_RM/H5FcreatProp_8cpp.html +share/doc/html/hdf5/cpplus_RM/H5FcreatProp_8h-source.html +share/doc/html/hdf5/cpplus_RM/H5FcreatProp_8h.html +share/doc/html/hdf5/cpplus_RM/H5File_8cpp.html +share/doc/html/hdf5/cpplus_RM/H5File_8h-source.html +share/doc/html/hdf5/cpplus_RM/H5File_8h.html +share/doc/html/hdf5/cpplus_RM/H5FloatType_8cpp.html +share/doc/html/hdf5/cpplus_RM/H5FloatType_8h-source.html +share/doc/html/hdf5/cpplus_RM/H5FloatType_8h.html +share/doc/html/hdf5/cpplus_RM/H5Group_8cpp.html +share/doc/html/hdf5/cpplus_RM/H5Group_8h-source.html +share/doc/html/hdf5/cpplus_RM/H5Group_8h.html +share/doc/html/hdf5/cpplus_RM/H5IdComponent_8cpp.html +share/doc/html/hdf5/cpplus_RM/H5IdComponent_8h-source.html +share/doc/html/hdf5/cpplus_RM/H5IdComponent_8h.html +share/doc/html/hdf5/cpplus_RM/H5Idtemplates_8h-source.html +share/doc/html/hdf5/cpplus_RM/H5Idtemplates_8h.html +share/doc/html/hdf5/cpplus_RM/H5Include_8h-source.html +share/doc/html/hdf5/cpplus_RM/H5Include_8h.html +share/doc/html/hdf5/cpplus_RM/H5IntType_8cpp.html +share/doc/html/hdf5/cpplus_RM/H5IntType_8h-source.html +share/doc/html/hdf5/cpplus_RM/H5IntType_8h.html +share/doc/html/hdf5/cpplus_RM/H5Library_8cpp.html +share/doc/html/hdf5/cpplus_RM/H5Library_8h-source.html +share/doc/html/hdf5/cpplus_RM/H5Library_8h.html +share/doc/html/hdf5/cpplus_RM/H5Object_8cpp.html +share/doc/html/hdf5/cpplus_RM/H5Object_8h-source.html +share/doc/html/hdf5/cpplus_RM/H5Object_8h.html +share/doc/html/hdf5/cpplus_RM/H5PredType_8cpp.html +share/doc/html/hdf5/cpplus_RM/H5PredType_8h-source.html +share/doc/html/hdf5/cpplus_RM/H5PredType_8h.html +share/doc/html/hdf5/cpplus_RM/H5PropList_8cpp.html +share/doc/html/hdf5/cpplus_RM/H5PropList_8h-source.html +share/doc/html/hdf5/cpplus_RM/H5PropList_8h.html +share/doc/html/hdf5/cpplus_RM/H5RefCounter_8cpp.html +share/doc/html/hdf5/cpplus_RM/H5RefCounter_8h-source.html +share/doc/html/hdf5/cpplus_RM/H5RefCounter_8h.html +share/doc/html/hdf5/cpplus_RM/H5StrType_8cpp.html +share/doc/html/hdf5/cpplus_RM/H5StrType_8h-source.html +share/doc/html/hdf5/cpplus_RM/H5StrType_8h.html +share/doc/html/hdf5/cpplus_RM/Makefile +share/doc/html/hdf5/cpplus_RM/Makefile.in +share/doc/html/hdf5/cpplus_RM/NCSAlogo.jpg +share/doc/html/hdf5/cpplus_RM/annotated.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1AbstractDs-members.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1AbstractDs.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1AbstractDs.png +share/doc/html/hdf5/cpplus_RM/classH5_1_1AtomType-members.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1AtomType.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1AtomType.png +share/doc/html/hdf5/cpplus_RM/classH5_1_1Attribute-members.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1Attribute.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1Attribute.png +share/doc/html/hdf5/cpplus_RM/classH5_1_1AttributeIException-members.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1AttributeIException.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1AttributeIException.png +share/doc/html/hdf5/cpplus_RM/classH5_1_1CommonFG-members.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1CommonFG.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1CommonFG.png +share/doc/html/hdf5/cpplus_RM/classH5_1_1CompType-members.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1CompType.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1CompType.png +share/doc/html/hdf5/cpplus_RM/classH5_1_1DSetCreatPropList-members.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1DSetCreatPropList.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1DSetCreatPropList.png +share/doc/html/hdf5/cpplus_RM/classH5_1_1DSetMemXferPropList-members.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1DSetMemXferPropList.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1DSetMemXferPropList.png +share/doc/html/hdf5/cpplus_RM/classH5_1_1DataSet-members.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1DataSet.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1DataSet.png +share/doc/html/hdf5/cpplus_RM/classH5_1_1DataSetIException-members.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1DataSetIException.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1DataSetIException.png +share/doc/html/hdf5/cpplus_RM/classH5_1_1DataSpace-members.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1DataSpace.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1DataSpace.png +share/doc/html/hdf5/cpplus_RM/classH5_1_1DataSpaceIException-members.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1DataSpaceIException.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1DataSpaceIException.png +share/doc/html/hdf5/cpplus_RM/classH5_1_1DataType-members.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1DataType.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1DataType.png +share/doc/html/hdf5/cpplus_RM/classH5_1_1DataTypeIException-members.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1DataTypeIException.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1DataTypeIException.png +share/doc/html/hdf5/cpplus_RM/classH5_1_1EnumType-members.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1EnumType.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1EnumType.png +share/doc/html/hdf5/cpplus_RM/classH5_1_1Exception-members.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1Exception.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1Exception.png +share/doc/html/hdf5/cpplus_RM/classH5_1_1FileAccPropList-members.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1FileAccPropList.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1FileAccPropList.png +share/doc/html/hdf5/cpplus_RM/classH5_1_1FileCreatPropList-members.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1FileCreatPropList.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1FileCreatPropList.png +share/doc/html/hdf5/cpplus_RM/classH5_1_1FileIException-members.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1FileIException.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1FileIException.png +share/doc/html/hdf5/cpplus_RM/classH5_1_1FloatType-members.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1FloatType.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1FloatType.png +share/doc/html/hdf5/cpplus_RM/classH5_1_1Group-members.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1Group.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1Group.png +share/doc/html/hdf5/cpplus_RM/classH5_1_1GroupIException-members.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1GroupIException.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1GroupIException.png +share/doc/html/hdf5/cpplus_RM/classH5_1_1H5File-members.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1H5File.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1H5File.png +share/doc/html/hdf5/cpplus_RM/classH5_1_1H5Library-members.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1H5Library.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1H5Object-members.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1H5Object.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1H5Object.png +share/doc/html/hdf5/cpplus_RM/classH5_1_1IdComponent-members.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1IdComponent.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1IdComponent.png +share/doc/html/hdf5/cpplus_RM/classH5_1_1IdComponentException-members.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1IdComponentException.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1IdComponentException.png +share/doc/html/hdf5/cpplus_RM/classH5_1_1IntType-members.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1IntType.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1IntType.png +share/doc/html/hdf5/cpplus_RM/classH5_1_1LibraryIException-members.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1LibraryIException.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1LibraryIException.png +share/doc/html/hdf5/cpplus_RM/classH5_1_1PredType-members.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1PredType.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1PredType.png +share/doc/html/hdf5/cpplus_RM/classH5_1_1PropList-members.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1PropList.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1PropList.png +share/doc/html/hdf5/cpplus_RM/classH5_1_1PropListIException-members.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1PropListIException.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1PropListIException.png +share/doc/html/hdf5/cpplus_RM/classH5_1_1RefCounter-members.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1RefCounter.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1RefCounter_1_1RefCounter.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1RefCounter_1_1abc.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1ReferenceException-members.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1ReferenceException.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1ReferenceException.png +share/doc/html/hdf5/cpplus_RM/classH5_1_1StrType-members.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1StrType.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1StrType.png +share/doc/html/hdf5/cpplus_RM/classH5_1_1UserData4Aiterate-members.html +share/doc/html/hdf5/cpplus_RM/classH5_1_1UserData4Aiterate.html +share/doc/html/hdf5/cpplus_RM/create_8cpp-example.html +share/doc/html/hdf5/cpplus_RM/doxygen.css +share/doc/html/hdf5/cpplus_RM/doxygen.png +share/doc/html/hdf5/cpplus_RM/dsets_8cpp-example.html +share/doc/html/hdf5/cpplus_RM/examples.html +share/doc/html/hdf5/cpplus_RM/files.html +share/doc/html/hdf5/cpplus_RM/functions.html +share/doc/html/hdf5/cpplus_RM/functions_func.html +share/doc/html/hdf5/cpplus_RM/functions_vars.html +share/doc/html/hdf5/cpplus_RM/globals.html +share/doc/html/hdf5/cpplus_RM/globals_defs.html +share/doc/html/hdf5/cpplus_RM/globals_func.html +share/doc/html/hdf5/cpplus_RM/globals_type.html +share/doc/html/hdf5/cpplus_RM/globals_vars.html +share/doc/html/hdf5/cpplus_RM/header.html +share/doc/html/hdf5/cpplus_RM/header_files/Dependencies +share/doc/html/hdf5/cpplus_RM/header_files/Makefile +share/doc/html/hdf5/cpplus_RM/header_files/Makefile.in +share/doc/html/hdf5/cpplus_RM/header_files/filelist.xml +share/doc/html/hdf5/cpplus_RM/header_files/image001.jpg +share/doc/html/hdf5/cpplus_RM/header_files/image002.jpg +share/doc/html/hdf5/cpplus_RM/hierarchy.html +share/doc/html/hdf5/cpplus_RM/index.html +share/doc/html/hdf5/cpplus_RM/namespaceH5.html +share/doc/html/hdf5/cpplus_RM/namespacemembers.html +share/doc/html/hdf5/cpplus_RM/namespacemembers_func.html +share/doc/html/hdf5/cpplus_RM/namespacemembers_type.html +share/doc/html/hdf5/cpplus_RM/namespacemembers_vars.html +share/doc/html/hdf5/cpplus_RM/namespaces.html +share/doc/html/hdf5/cpplus_RM/namespacestd.html +share/doc/html/hdf5/cpplus_RM/writedata_8cpp-example.html share/doc/html/hdf5/dataset_p1.gif share/doc/html/hdf5/ddl.html share/doc/html/hdf5/ed_libs/Dependencies @@ -418,6 +649,8 @@ share/examples/hdf5/c/ph5example.c @dirrm share/doc/html/hdf5/fortran @dirrm share/doc/html/hdf5/ed_styles @dirrm share/doc/html/hdf5/ed_libs +@dirrm share/doc/html/hdf5/cpplus_RM/header_files +@dirrm share/doc/html/hdf5/cpplus_RM @dirrm share/doc/html/hdf5/cpplus @dirrm share/doc/html/hdf5/Tutor/examples/java @dirrm share/doc/html/hdf5/Tutor/examples diff --git a/devel/hdf5/distinfo b/devel/hdf5/distinfo index 2da60c4d2aa..765448543b6 100644 --- a/devel/hdf5/distinfo +++ b/devel/hdf5/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.10 2005/02/23 22:24:16 agc Exp $ +$NetBSD: distinfo,v 1.11 2005/02/25 09:10:18 adam Exp $ -SHA1 (hdf5-1.6.2.tar.gz) = 1afa977b371c01e53dd6e0bd3a0d879a3f2ae5a2 -RMD160 (hdf5-1.6.2.tar.gz) = 75678e8859e783dbb274cdabee3d916724c46780 -Size (hdf5-1.6.2.tar.gz) = 3879147 bytes -SHA1 (patch-aa) = 1638df4bf53fb0c326ba7aaa2f2a01f8e03f9d56 +SHA1 (hdf5-1.6.3.tar.gz) = cf46b9f47f8991f324630f9c627fb82af27b5458 +RMD160 (hdf5-1.6.3.tar.gz) = 3c1a4b03492f7445dae7e105f4bca9dc9ba3bcd3 +Size (hdf5-1.6.3.tar.gz) = 4733419 bytes +SHA1 (patch-aa) = 187f8f866e0ba43cc704995f782828b35eebbbe5 diff --git a/devel/hdf5/patches/patch-aa b/devel/hdf5/patches/patch-aa index 0877a1db7c7..d530469b8c8 100644 --- a/devel/hdf5/patches/patch-aa +++ b/devel/hdf5/patches/patch-aa @@ -1,8 +1,8 @@ -$NetBSD: patch-aa,v 1.6 2003/08/04 17:27:01 jtb Exp $ +$NetBSD: patch-aa,v 1.7 2005/02/25 09:10:18 adam Exp $ ---- config/commence.in.orig 2003-08-04 17:55:43.000000000 +0100 -+++ config/commence.in 2003-08-04 17:56:24.000000000 +0100 -@@ -59,7 +59,7 @@ +--- config/commence.in.orig 2004-01-07 18:45:06.000000000 +0000 ++++ config/commence.in +@@ -60,7 +60,7 @@ LT_UNINSTALL=$(LT) --mode=uninstall $(RM ## defined. The main makefile is free to redefine these to something else. DOCDIR=$(docdir) SUBDOCDIR= |