--- science/hdf5-112/Makefile (revision 557833) +++ science/hdf5-112/Makefile (working copy) @@ -2,59 +2,104 @@ # $FreeBSD$ PORTNAME= hdf5 -PORTVERSION= 1.10.6 -PORTEPOCH= 1 +PORTVERSION= 1.12.0 CATEGORIES= science archivers graphics -MASTER_SITES= https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-${PORTVERSION:R}/${DISTNAME}/src/ \ - LOCAL/sunpoet +MASTER_SITES= https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-${PORTVERSION:R}/${PORTNAME}-${PORTVERSION}/src/ +PKGNAMESUFFIX= -112 +DISTNAME= CMake-${PORTNAME}-${PORTVERSION} MAINTAINER= sunpoet@FreeBSD.org -COMMENT= Hierarchical Data Format library (from NCSA) +COMMENT= Hierarchical Data Format library (from NCSA) (latest) LICENSE= BSD4CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING -CONFLICTS_INSTALL= hdf-4.[0-9]* hdf5-1.6.[0-9]* +USES= cmake compiler:c11 localbase perl5 +USE_PERL5= build OPTIONS_DEFINE= DEBUG EXAMPLES FORTRAN SZIP OPTIONS_RADIO= SUPPORT OPTIONS_RADIO_SUPPORT= CXX PARALLEL -OPTIONS_DEFAULT=CXX SZIP +OPTIONS_DEFAULT=CXX FORTRAN SZIP OPTIONS_SUB= yes PARALLEL_DESC= Parallel support -USES= compiler:c11 libtool localbase tar:bzip2 - -CONFIGURE_ARGS= --enable-hl \ - --enable-instrument \ - --enable-strict-format-checks -GNU_CONFIGURE= yes -INSTALL_TARGET= install-strip -MAKE_JOBS_UNSAFE= yes -TEST_TARGET= check +PORTSUFF= ${PORTNAME}${PKGNAMESUFFIX} +WRKSRC_SUBDIR= ${PORTNAME}-${PORTVERSION} +CMAKE_ON= HDF5_BUILD_HL_LIB \ + HDF5_ENABLE_INSTRUMENT \ + HDF5_BUILD_TOOLS \ + HDF5_STRICT_FORMAT_CHECKS +CMAKE_ARGS= -DHDF5_INSTALL_INCLUDE_DIR:PATH=${PREFIX}/include/${PORTSUFF} \ + -DDEFAULT_API_VERSION="v110" +EXAMPLESDIR= ${PREFIX}/share/examples/${PORTSUFF} +DATADIR= ${PREFIX}/share/${PORTSUFF} +EXAMPLESVER= 1.12.6 +#MAKE_JOBS_UNSAFE= yes +TEST_TARGET= test USE_LDCONFIG= yes +PLIST_SUB+= VER=${PORTVERSION} SUFF=${PKGNAMESUFFIX} +DATASTUFF= RELEASE.txt \ + USING_HDF5_CMake.txt +DATASTUFFEX= CTestScript.cmake \ + HDF5_Examples.cmake \ + HDF5_Examples_options.cmake \ + USING_CMake_Examples.txt +PKGCFGDIR= ${PREFIX}/libdata/pkgconfig +PKGCFG= hdf5.pc hdf5_hl.pc +PKGCFGCXX= hdf5_cpp.pc hdf5_hl_cpp.pc +PKGCFGFC= hdf5_fortran.pc + PORTEXAMPLES= * -CXX_CONFIGURE_ENABLE= cxx -DEBUG_CONFIGURE_OFF= --enable-build-mode=production -DEBUG_CONFIGURE_ON= --enable-build-mode=debug -FORTRAN_CONFIGURE_ENABLE= fortran +CXX_CMAKE_BOOL= HDF5_BUILD_CPP_LIB +CXX_VARS= PKGCFG+="${PKGCFGCXX}" +EXAMPLES_CMAKE_BOOL= HDF5_BUILD_EXAMPLES HDF5_TEST_EXAMPLES HDF5_PACK_EXAMPLES +EXAMPLES_VARS= DATASTUFF+="${DATASTUFFEX}" +FORTRAN_CMAKE_BOOL= HDF5_BUILD_FORTRAN FORTRAN_CONFIGURE_ENV= F9X=${FC} FORTRAN_USES= fortran -PARALLEL_CONFIGURE_ENABLE= parallel -PARALLEL_LDFLAGS= -L${LOCALBASE}/lib -lmpi +FORTRAN_VARS= PKGCFG+="${PKGCFGFC}" +PARALLEL_IMPLIES= FORTRAN +PARALLEL_CMAKE_BOOL= HDF5_ENABLE_PARALLEL +PARALLEL_VARS= FCFLAGS+=-I${LOCALBASE}/include +PARALLEL_LDFLAGS= -L${LOCALBASE}/lib -lmpifort -lmpi PARALLEL_LIB_DEPENDS= libmpi.so:net/mpich -SZIP_CONFIGURE_ON= --with-szlib=${LOCALBASE} +SZIP_CMAKE_BOOL= HDF5_ENABLE_SZIP_SUPPORT SZIP_LIB_DEPENDS= libsz.so:science/szip -post-patch: - @${REINPLACE_CMD} -e 's|-O3||g' ${WRKSRC}/config/gnu-flags - @${REINPLACE_CMD} \ - -e '/LD_LIBRARY_PATH/ s|^|#|' \ - -e 's|/share/hdf5_examples|/${EXAMPLESDIR_REL}|' \ - -e 's|(INSTALL)|(INSTALL_DATA)|' \ - `${FIND} ${WRKSRC} -regex '.*/examples/Makefile.in'` - @${REINPLACE_CMD} -e 's|\[ -a|\[ -f|g' `${FIND} ${WRKSRC} -name \*.sh\*` +.include +post-extract-EXAMPLES-on: + (cd ${WRKSRC} && ${TAR} xfz ../HDF5Examples-${EXAMPLESVER}-Source.tar.gz) + +pre-configure: + ${REINPLACE_CMD} -e '/_LIB_CORENAME/s|hdf5|hdf5${PKGNAMESUFFIX}|' \ + ${WRKSRC}/CMakeLists.txt + ${REINPLACE_CMD} -e 's|FOLDER examples|FOLDER examples/${PORTSUFF}|' \ + ${WRKSRC}/examples/CMakeLists.txt + +pre-build-EXAMPLES-on: + ${MKDIR} ${WRKDIR}/.build + ${CP} -R ${WRKSRC}/HDF5Examples ${WRKDIR}/.build + +post-stage: + ${FIND} ${STAGEDIR}${PREFIX}/bin -type f -exec ${MV} {} {}${PKGNAMESUFFIX} \; + ${MV} ${STAGEDIR}${PREFIX}/lib/libhdf5.settings \ + ${STAGEDIR}${PREFIX}/lib/libhdf5${PKGNAMESUFFIX}.setting + ${RM} ${STAGEDIR}${PREFIX}/share/COPYING + ${MKDIR} ${STAGEDIR}${DATADIR} + (cd ${STAGEDIR}${PREFIX}/share && ${MV} ${DATASTUFF} ${STAGEDIR}${DATADIR}/) +.for pk in ${PKGCFG} + ${LN} -sf ${pk:C/5/5${PKGNAMESUFFIX}/:C/.pc/-${PORTVERSION}.pc/} \ + ${STAGEDIR}${PKGCFGDIR}/${pk} +.endfor + ${REINPLACE_CMD} -e 's|/include|/include/${PORTSUFF}|' \ + ${STAGEDIR}${PKGCFGDIR}/*${PORTVERSION}.pc + ${RM} ${STAGEDIR}${PKGCFGDIR}/*.bak + +post-stage-EXAMPLES-on: + ${MV} ${STAGEDIR}${PREFIX}/share/HDF5Examples ${STAGEDIR}${EXAMPLESDIR} + .include --- science/hdf5-112/distinfo (revision 557833) +++ science/hdf5-112/distinfo (working copy) @@ -1,3 +1,3 @@ -TIMESTAMP = 1577693899 -SHA256 (hdf5-1.10.6.tar.bz2) = 09d6301901685201bb272a73e21c98f2bf7e044765107200b01089104a47c3bd -SIZE (hdf5-1.10.6.tar.bz2) = 8813699 +TIMESTAMP = 1608044656 +SHA256 (CMake-hdf5-1.12.0.tar.gz) = 01b9c01c45cc8c66da86e69c510e17f3cff0706a65d8683cd86af405eaf75397 +SIZE (CMake-hdf5-1.12.0.tar.gz) = 13950636 --- science/hdf5-112/pkg-descr (revision 557833) +++ science/hdf5-112/pkg-descr (working copy) @@ -1,3 +1,5 @@ +This port is for the latest release. + HDF5 is a completely new Hierarchical Data Format product consisting of a data format specification and a supporting library implementation. HDF5 is designed to address some of the limitations of the older HDF product and to address --- science/hdf5-112/pkg-plist (revision 557833) +++ science/hdf5-112/pkg-plist (working copy) @@ -1,161 +1,246 @@ -bin/gif2h5 -bin/h52gif -%%CXX%%bin/h5c++ -%%CXX%%bin/h5cc -bin/h5clear -bin/h5copy -bin/h5debug -bin/h5diff -bin/h5dump -%%FORTRAN%%bin/h5fc -bin/h5format_convert -bin/h5import -bin/h5jam -bin/h5ls -bin/h5mkgrp -%%PARALLEL%%bin/h5pcc -%%PARALLEL%%bin/h5perf -bin/h5perf_serial -bin/h5redeploy -bin/h5repack -bin/h5repart -bin/h5stat -bin/h5unjam -bin/h5watch -%%PARALLEL%%bin/ph5diff -include/H5ACpublic.h -%%CXX%%include/H5AbstractDs.h -include/H5Apublic.h -%%CXX%%include/H5ArrayType.h -%%CXX%%include/H5AtomType.h -%%CXX%%include/H5Attribute.h -%%CXX%%include/H5Classes.h -%%CXX%%include/H5CommonFG.h -%%CXX%%include/H5CompType.h -%%CXX%%include/H5Cpp.h -%%CXX%%include/H5CppDoc.h -include/H5Cpublic.h -include/H5DOpublic.h -include/H5DSpublic.h -%%CXX%%include/H5DaccProp.h -%%CXX%%include/H5DataSet.h -%%CXX%%include/H5DataSpace.h -%%CXX%%include/H5DataType.h -%%CXX%%include/H5DcreatProp.h -include/H5Dpublic.h -%%CXX%%include/H5DxferProp.h -%%CXX%%include/H5EnumType.h -include/H5Epubgen.h -include/H5Epublic.h -%%CXX%%include/H5Exception.h -include/H5FDcore.h -include/H5FDdirect.h -include/H5FDfamily.h -include/H5FDhdfs.h -include/H5FDlog.h -include/H5FDmpi.h -include/H5FDmpio.h -include/H5FDmulti.h -include/H5FDpublic.h -include/H5FDros3.h -include/H5FDsec2.h -include/H5FDstdio.h -include/H5FDwindows.h -%%CXX%%include/H5FaccProp.h -%%CXX%%include/H5FcreatProp.h -%%CXX%%include/H5File.h -%%CXX%%include/H5FloatType.h -include/H5Fpublic.h -include/H5Gpublic.h -%%CXX%%include/H5Group.h -include/H5IMpublic.h -%%CXX%%include/H5IdComponent.h -%%CXX%%include/H5Include.h -%%CXX%%include/H5IntType.h -include/H5Ipublic.h -include/H5LDpublic.h -include/H5LTpublic.h -%%CXX%%include/H5LaccProp.h -%%CXX%%include/H5LcreatProp.h -%%CXX%%include/H5Library.h -%%CXX%%include/H5Location.h -include/H5Lpublic.h -include/H5MMpublic.h -%%CXX%%include/H5Object.h -%%CXX%%include/H5OcreatProp.h -include/H5Opublic.h -include/H5PLextern.h -include/H5PLpublic.h -include/H5PTpublic.h -%%CXX%%include/H5PacketTable.h -include/H5Ppublic.h -%%CXX%%include/H5PredType.h -%%CXX%%include/H5PropList.h -include/H5Rpublic.h -include/H5Spublic.h -%%CXX%%include/H5StrType.h -include/H5TBpublic.h -include/H5Tpublic.h -%%CXX%%include/H5VarLenType.h -include/H5Zpublic.h -include/H5api_adpt.h -%%FORTRAN%%include/H5f90i.h -%%FORTRAN%%include/H5f90i_gen.h -include/H5overflow.h -include/H5pubconf.h -include/H5public.h -include/H5version.h -%%FORTRAN%%include/h5_gen.mod -%%FORTRAN%%include/h5a.mod -%%FORTRAN%%include/h5d.mod -%%FORTRAN%%include/h5ds.mod -%%FORTRAN%%include/h5e.mod -%%FORTRAN%%include/h5f.mod -%%FORTRAN%%include/h5fortkit.mod -%%FORTRAN%%include/h5fortran_types.mod -%%FORTRAN%%include/h5g.mod -%%FORTRAN%%include/h5global.mod -%%FORTRAN%%include/h5i.mod -%%FORTRAN%%include/h5im.mod -%%FORTRAN%%include/h5l.mod -%%FORTRAN%%include/h5lib.mod -%%FORTRAN%%include/h5lt.mod -%%FORTRAN%%include/h5lt_const.mod -%%FORTRAN%%include/h5o.mod -%%FORTRAN%%include/h5p.mod -%%FORTRAN%%include/h5r.mod -%%FORTRAN%%include/h5s.mod -%%FORTRAN%%include/h5t.mod -%%FORTRAN%%include/h5tb.mod -%%FORTRAN%%include/h5tb_const.mod -%%FORTRAN%%include/h5z.mod -include/hdf5.h -%%FORTRAN%%include/hdf5.mod -include/hdf5_hl.h -lib/libhdf5.a -lib/libhdf5.settings -lib/libhdf5.so -lib/libhdf5.so.103 -lib/libhdf5.so.103.2.0 -%%CXX%%lib/libhdf5_cpp.a -%%CXX%%lib/libhdf5_cpp.so -%%CXX%%lib/libhdf5_cpp.so.103 -%%CXX%%lib/libhdf5_cpp.so.103.2.0 -%%FORTRAN%%lib/libhdf5_fortran.a -%%FORTRAN%%lib/libhdf5_fortran.so -%%FORTRAN%%lib/libhdf5_fortran.so.102 -%%FORTRAN%%lib/libhdf5_fortran.so.102.0.1 -lib/libhdf5_hl.a -lib/libhdf5_hl.so -lib/libhdf5_hl.so.100 -lib/libhdf5_hl.so.100.1.3 -%%CXX%%lib/libhdf5_hl_cpp.a -%%CXX%%lib/libhdf5_hl_cpp.so -%%CXX%%lib/libhdf5_hl_cpp.so.100 -%%CXX%%lib/libhdf5_hl_cpp.so.100.1.4 -%%FORTRAN%%lib/libhdf5_hl_fortran.a -%%FORTRAN%%lib/libhdf5_hl_fortran.so -%%FORTRAN%%lib/libhdf5hl_fortran.a -%%FORTRAN%%lib/libhdf5hl_fortran.so -%%FORTRAN%%lib/libhdf5hl_fortran.so.100 -%%FORTRAN%%lib/libhdf5hl_fortran.so.100.0.5 +bin/gif2h5-112 +bin/gif2h5-shared-112 +bin/h52gif-112 +bin/h52gif-shared-112 +%%CXX%%bin/h5c++-112 +%%CXX%%bin/h5cc-112 +bin/h5clear-112 +bin/h5clear-shared-112 +bin/h5copy-112 +bin/h5copy-shared-112 +bin/h5debug-112 +bin/h5debug-shared-112 +bin/h5diff-112 +bin/h5diff-shared-112 +bin/h5dump-112 +bin/h5dump-shared-112 +%%NO_PARALLEL%%%%FORTRAN%%bin/h5fc-112 +bin/h5format_convert-112 +bin/h5format_convert-shared-112 +%%CXX%%bin/h5hlc++-112 +bin/h5hlcc-112 +bin/h5import-112 +bin/h5import-shared-112 +bin/h5jam-112 +bin/h5jam-shared-112 +bin/h5ls-112 +bin/h5ls-shared-112 +bin/h5mkgrp-112 +bin/h5mkgrp-shared-112 +bin/h5repack-112 +bin/h5repack-shared-112 +bin/h5repart-112 +bin/h5repart-shared-112 +bin/h5stat-112 +bin/h5stat-shared-112 +bin/h5unjam-112 +bin/h5unjam-shared-112 +bin/h5watch-112 +bin/h5watch-shared-112 +%%PARALLEL%%bin/ph5diff-112 +%%PARALLEL%%bin/ph5diff-shared-112 +include/hdf5-112/H5ACpublic.h +%%CXX%%include/hdf5-112/H5AbstractDs.h +%%CXX%%include/hdf5-112/H5Alltypes.h +include/hdf5-112/H5Apublic.h +%%CXX%%include/hdf5-112/H5ArrayType.h +%%CXX%%include/hdf5-112/H5AtomType.h +%%CXX%%include/hdf5-112/H5Attribute.h +%%CXX%%include/hdf5-112/H5Classes.h +%%CXX%%include/hdf5-112/H5CommonFG.h +%%CXX%%include/hdf5-112/H5CompType.h +%%CXX%%include/hdf5-112/H5Cpp.h +%%CXX%%include/hdf5-112/H5CppDoc.h +include/hdf5-112/H5Cpublic.h +include/hdf5-112/H5DOpublic.h +include/hdf5-112/H5DSpublic.h +%%CXX%%include/hdf5-112/H5DaccProp.h +%%CXX%%include/hdf5-112/H5DataSet.h +%%CXX%%include/hdf5-112/H5DataSpace.h +%%CXX%%include/hdf5-112/H5DataType.h +%%CXX%%include/hdf5-112/H5DcreatProp.h +include/hdf5-112/H5Dpublic.h +%%CXX%%include/hdf5-112/H5DxferProp.h +include/hdf5-112/H5ESpublic.h +%%CXX%%include/hdf5-112/H5EnumType.h +include/hdf5-112/H5Epubgen.h +include/hdf5-112/H5Epublic.h +%%CXX%%include/hdf5-112/H5Exception.h +include/hdf5-112/H5FDcore.h +include/hdf5-112/H5FDdirect.h +include/hdf5-112/H5FDfamily.h +include/hdf5-112/H5FDhdfs.h +include/hdf5-112/H5FDlog.h +include/hdf5-112/H5FDmpi.h +include/hdf5-112/H5FDmpio.h +include/hdf5-112/H5FDmulti.h +include/hdf5-112/H5FDpublic.h +include/hdf5-112/H5FDros3.h +include/hdf5-112/H5FDs3comms.h +include/hdf5-112/H5FDsec2.h +include/hdf5-112/H5FDstdio.h +include/hdf5-112/H5FDwindows.h +%%CXX%%include/hdf5-112/H5FaccProp.h +%%CXX%%include/hdf5-112/H5FcreatProp.h +%%CXX%%include/hdf5-112/H5File.h +%%CXX%%include/hdf5-112/H5FloatType.h +include/hdf5-112/H5Fpublic.h +include/hdf5-112/H5Gpublic.h +%%CXX%%include/hdf5-112/H5Group.h +include/hdf5-112/H5IMpublic.h +%%CXX%%include/hdf5-112/H5IdComponent.h +%%CXX%%include/hdf5-112/H5Include.h +%%CXX%%include/hdf5-112/H5IntType.h +include/hdf5-112/H5Ipublic.h +include/hdf5-112/H5LDpublic.h +include/hdf5-112/H5LTpublic.h +%%CXX%%include/hdf5-112/H5LaccProp.h +%%CXX%%include/hdf5-112/H5LcreatProp.h +%%CXX%%include/hdf5-112/H5Library.h +%%CXX%%include/hdf5-112/H5Location.h +include/hdf5-112/H5Lpublic.h +include/hdf5-112/H5MMpublic.h +include/hdf5-112/H5Mpublic.h +%%CXX%%include/hdf5-112/H5Object.h +%%CXX%%include/hdf5-112/H5OcreatProp.h +include/hdf5-112/H5Opublic.h +include/hdf5-112/H5PLextern.h +include/hdf5-112/H5PLpublic.h +include/hdf5-112/H5PTpublic.h +%%CXX%%include/hdf5-112/H5PacketTable.h +include/hdf5-112/H5Ppublic.h +%%CXX%%include/hdf5-112/H5PredType.h +%%CXX%%include/hdf5-112/H5PropList.h +include/hdf5-112/H5Rpublic.h +include/hdf5-112/H5Spublic.h +%%CXX%%include/hdf5-112/H5StrType.h +include/hdf5-112/H5TBpublic.h +include/hdf5-112/H5Tpublic.h +include/hdf5-112/H5VLconnector.h +include/hdf5-112/H5VLconnector_passthru.h +include/hdf5-112/H5VLnative.h +include/hdf5-112/H5VLpassthru.h +include/hdf5-112/H5VLpublic.h +%%CXX%%include/hdf5-112/H5VarLenType.h +include/hdf5-112/H5Zpublic.h +include/hdf5-112/H5api_adpt.h +%%FORTRAN%%include/hdf5-112/H5f90.h +%%FORTRAN%%include/hdf5-112/H5f90i.h +%%FORTRAN%%include/hdf5-112/H5f90i_gen.h +%%FORTRAN%%include/hdf5-112/H5f90proto.h +%%FORTRAN%%include/hdf5-112/H5fortran_types.F90 +include/hdf5-112/H5overflow.h +include/hdf5-112/H5pubconf.h +include/hdf5-112/H5public.h +include/hdf5-112/H5version.h +include/hdf5-112/hdf5.h +include/hdf5-112/hdf5_hl.h +%%FORTRAN%%include/hdf5-112/shared/h5_gen.mod +%%FORTRAN%%include/hdf5-112/shared/h5a.mod +%%FORTRAN%%include/hdf5-112/shared/h5d.mod +%%FORTRAN%%include/hdf5-112/shared/h5ds.mod +%%FORTRAN%%include/hdf5-112/shared/h5e.mod +%%FORTRAN%%include/hdf5-112/shared/h5f.mod +%%FORTRAN%%include/hdf5-112/shared/h5fortkit.mod +%%FORTRAN%%include/hdf5-112/shared/h5fortran_types.mod +%%FORTRAN%%include/hdf5-112/shared/h5g.mod +%%FORTRAN%%include/hdf5-112/shared/h5global.mod +%%FORTRAN%%include/hdf5-112/shared/h5i.mod +%%FORTRAN%%include/hdf5-112/shared/h5im.mod +%%FORTRAN%%include/hdf5-112/shared/h5l.mod +%%FORTRAN%%include/hdf5-112/shared/h5lib.mod +%%FORTRAN%%include/hdf5-112/shared/h5lt.mod +%%FORTRAN%%include/hdf5-112/shared/h5lt_const.mod +%%FORTRAN%%include/hdf5-112/shared/h5o.mod +%%FORTRAN%%include/hdf5-112/shared/h5p.mod +%%FORTRAN%%include/hdf5-112/shared/h5r.mod +%%FORTRAN%%include/hdf5-112/shared/h5s.mod +%%FORTRAN%%include/hdf5-112/shared/h5t.mod +%%FORTRAN%%include/hdf5-112/shared/h5tb.mod +%%FORTRAN%%include/hdf5-112/shared/h5tb_const.mod +%%FORTRAN%%include/hdf5-112/shared/h5vl.mod +%%FORTRAN%%include/hdf5-112/shared/h5z.mod +%%FORTRAN%%include/hdf5-112/shared/hdf5.mod +%%FORTRAN%%include/hdf5-112/static/h5_gen.mod +%%FORTRAN%%include/hdf5-112/static/h5a.mod +%%FORTRAN%%include/hdf5-112/static/h5d.mod +%%FORTRAN%%include/hdf5-112/static/h5ds.mod +%%FORTRAN%%include/hdf5-112/static/h5e.mod +%%FORTRAN%%include/hdf5-112/static/h5f.mod +%%FORTRAN%%include/hdf5-112/static/h5fortkit.mod +%%FORTRAN%%include/hdf5-112/static/h5fortran_types.mod +%%FORTRAN%%include/hdf5-112/static/h5g.mod +%%FORTRAN%%include/hdf5-112/static/h5global.mod +%%FORTRAN%%include/hdf5-112/static/h5i.mod +%%FORTRAN%%include/hdf5-112/static/h5im.mod +%%FORTRAN%%include/hdf5-112/static/h5l.mod +%%FORTRAN%%include/hdf5-112/static/h5lib.mod +%%FORTRAN%%include/hdf5-112/static/h5lt.mod +%%FORTRAN%%include/hdf5-112/static/h5lt_const.mod +%%FORTRAN%%include/hdf5-112/static/h5o.mod +%%FORTRAN%%include/hdf5-112/static/h5p.mod +%%FORTRAN%%include/hdf5-112/static/h5r.mod +%%FORTRAN%%include/hdf5-112/static/h5s.mod +%%FORTRAN%%include/hdf5-112/static/h5t.mod +%%FORTRAN%%include/hdf5-112/static/h5tb.mod +%%FORTRAN%%include/hdf5-112/static/h5tb_const.mod +%%FORTRAN%%include/hdf5-112/static/h5vl.mod +%%FORTRAN%%include/hdf5-112/static/h5z.mod +%%FORTRAN%%include/hdf5-112/static/hdf5.mod +lib/libhdf5-112.a +lib/libhdf5-112.so +lib/libhdf5-112.so.200 +lib/libhdf5-112.so.200.0.0 +%%CXX%%lib/libhdf5-112_cpp.a +%%CXX%%lib/libhdf5-112_cpp.so +%%CXX%%lib/libhdf5-112_cpp.so.200 +%%CXX%%lib/libhdf5-112_cpp.so.200.0.0 +%%FORTRAN%%lib/libhdf5-112_f90cstub.a +%%FORTRAN%%lib/libhdf5-112_f90cstub.so +%%FORTRAN%%lib/libhdf5-112_f90cstub.so.200 +%%FORTRAN%%lib/libhdf5-112_f90cstub.so.200.0.0 +%%FORTRAN%%lib/libhdf5-112_fortran.a +%%FORTRAN%%lib/libhdf5-112_fortran.so +%%FORTRAN%%lib/libhdf5-112_fortran.so.200 +%%FORTRAN%%lib/libhdf5-112_fortran.so.200.0.0 +lib/libhdf5-112_hl.a +lib/libhdf5-112_hl.so +lib/libhdf5-112_hl.so.200 +lib/libhdf5-112_hl.so.200.0.0 +%%CXX%%lib/libhdf5-112_hl_cpp.a +%%CXX%%lib/libhdf5-112_hl_cpp.so +%%CXX%%lib/libhdf5-112_hl_cpp.so.200 +%%CXX%%lib/libhdf5-112_hl_cpp.so.200.0.0 +%%FORTRAN%%lib/libhdf5-112_hl_f90cstub.a +%%FORTRAN%%lib/libhdf5-112_hl_f90cstub.so +%%FORTRAN%%lib/libhdf5-112_hl_f90cstub.so.200 +%%FORTRAN%%lib/libhdf5-112_hl_f90cstub.so.200.0.0 +%%FORTRAN%%lib/libhdf5-112_hl_fortran.a +%%FORTRAN%%lib/libhdf5-112_hl_fortran.so +%%FORTRAN%%lib/libhdf5-112_hl_fortran.so.200 +%%FORTRAN%%lib/libhdf5-112_hl_fortran.so.200.0.0 +lib/libhdf5-112_tools.a +lib/libhdf5-112_tools.so +lib/libhdf5-112_tools.so.200 +lib/libhdf5-112_tools.so.200.0.0 +lib/libhdf5-112.setting +%%CXX%%libdata/pkgconfig/hdf5_cpp.pc +%%FORTRAN%%libdata/pkgconfig/hdf5_fortran.pc +%%CXX%%libdata/pkgconfig/hdf5_hl_cpp.pc +libdata/pkgconfig/hdf5_hl.pc +%%CXX%%libdata/pkgconfig/hdf5-112_cpp-1.12.0.pc +%%FORTRAN%%libdata/pkgconfig/hdf5-112_fortran-1.12.0.pc +%%CXX%%libdata/pkgconfig/hdf5-112_hl_cpp-1.12.0.pc +libdata/pkgconfig/hdf5-112_hl-1.12.0.pc +libdata/pkgconfig/hdf5-112-1.12.0.pc +libdata/pkgconfig/hdf5.pc +share/cmake/hdf5/hdf5-config-version.cmake +share/cmake/hdf5/hdf5-config.cmake +share/cmake/hdf5/hdf5-targets-%%CMAKE_BUILD_TYPE%%.cmake +share/cmake/hdf5/hdf5-targets.cmake +%%PORTEXAMPLES%%%%DATADIR%%/CTestScript.cmake +%%PORTEXAMPLES%%%%DATADIR%%/HDF5_Examples.cmake +%%PORTEXAMPLES%%%%DATADIR%%/HDF5_Examples_options.cmake +%%DATADIR%%/RELEASE.txt +%%PORTEXAMPLES%%%%DATADIR%%/USING_CMake_Examples.txt +%%DATADIR%%/USING_HDF5_CMake.txt