Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 10 Aug 2014 00:03:09 +0000 (UTC)
From:      John Marino <marino@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r364488 - in head/science/gromacs: . files
Message-ID:  <53e6b6bd.2dcc.de215ed@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marino
Date: Sun Aug 10 00:03:09 2014
New Revision: 364488
URL: http://svnweb.freebsd.org/changeset/ports/364488
QAT: https://qat.redports.org/buildarchive/r364488/

Log:
  science/gromacs: Upgrade version 4.6.5 => 5.0
  
  PR:		191826
  Submitted by:	Ports Fury

Added:
  head/science/gromacs/files/patch-src__external__thread_mpi__src__atomic.c   (contents, props changed)
Deleted:
  head/science/gromacs/files/patch-CMakeLists.txt
  head/science/gromacs/files/patch-src__gmxlib__thread_mpi__atomic.c
Modified:
  head/science/gromacs/Makefile
  head/science/gromacs/distinfo
  head/science/gromacs/pkg-descr
  head/science/gromacs/pkg-plist

Modified: head/science/gromacs/Makefile
==============================================================================
--- head/science/gromacs/Makefile	Sat Aug  9 23:54:31 2014	(r364487)
+++ head/science/gromacs/Makefile	Sun Aug 10 00:03:09 2014	(r364488)
@@ -2,8 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	gromacs
-PORTVERSION=	4.6.5
-PORTREVISION=	3
+PORTVERSION=	5.0
 CATEGORIES=	science
 MASTER_SITES=	ftp://ftp.gromacs.org/pub/gromacs/
 
@@ -12,86 +11,68 @@ COMMENT=	Compute molecular dynamics
 
 LICENSE=	LGPL21
 
-OPTIONS_DEFINE=	ATLAS FLOAT GSL SIMD X11
-OPTIONS_DEFAULT=	FLOAT GSL X11
-OPTIONS_RADIO=	MPI
-OPTIONS_RADIO_MPI=	MPICH OMPI
-
-OPTIONS_SUB=	yes
-
-ATLAS_DESC=	Use ATLAS for BLAS and LAPACK
-FLOAT_DESC=	Use single instead of double precision
-GSL_DESC=	Extra analysis using math/gsl
-MPICH_DESC=	MPI support using net/mpich2
-OMPI_DESC=	MPI support using net/openmpi
+BUILD_DEPENDS=	boost-libs>=1.44:${PORTSDIR}/devel/boost-libs
 
 USES=		cmake fortran perl5 pkgconfig shebangfix
-SHEBANG_FILES=	admin/*.pl scripts/*.pl scripts/*.sh src/gmxlib/selection/*.sh
+SHEBANG_FILES=	admin/*.sh scripts/*.pl scripts/*.sh src/gromacs/selection/*.sh
 bash_CMD=	${SH}
-CMAKE_ARGS=	-DBLAS_LIBRARIES:FILEPATH="${BLAS_LIBS}" \
-		-DLAPACK_LIBRARIES:FILEPATH="${LAPACK_LIBS}"
+USE_GNOME=	libxml2
+CMAKE_ARGS=	-DGMX_USE_RDTSCP:BOOL=OFF \
+		-DUSE_PYTHON_SCRIPTS:BOOL=OFF
 USE_LDCONFIG=	yes
 
-GSL_LIB_DEPENDS=	libgsl.so:${PORTSDIR}/math/gsl
-GSL_CMAKE_ON=		-DGMX_GSL:BOOL=ON
-GSL_CMAKE_OFF=		-DGMX_GSL:BOOL=OFF
-
-SIMD_CMAKE_OFF=		-DGMX_CPU_ACCELERATION:STRING="None"
+OPTIONS_DEFINE=		ATLAS FLOAT SIMD X11
+OPTIONS_RADIO=		MPI
+OPTIONS_RADIO_MPI=	MPICH OMPI
+OPTIONS_DEFAULT=	FLOAT X11
+OPTIONS_SUB=		yes
 
+ATLAS_DESC=		Use ATLAS for BLAS and LAPACK
+ATLAS_LIB_DEPENDS=	libalapack.so:${PORTSDIR}/math/atlas
+ATLAS_LIB_DEPENDS_OFF=	libblas.so:${PORTSDIR}/math/blas \
+			liblapack.so:${PORTSDIR}/math/lapack
+ATLAS_CMAKE_ON=		-DBLAS_LIBRARIES:FILEPATH="${LOCALBASE}/lib/libcblas.so;${LOCALBASE}/lib/libf77blas.so" \
+			-DLAPACK_LIBRARIES:FILEPATH="${LOCALBASE}/lib/libalapack.so"
+ATLAS_CMAKE_OFF=	-DBLAS_LIBRARIES:FILEPATH="${LOCALBASE}/lib/libblas.so" \
+			-DLAPACK_LIBRARIES:FILEPATH="${LOCALBASE}/lib/liblapack.so"
+FLOAT_DESC=		Use single instead of double precision
+FLOAT_BUILD_DEPENDS=	fftw3>0:${PORTSDIR}/math/fftw3
+FLOAT_LIB_DEPENDS=	libfftw3f.so:${PORTSDIR}/math/fftw3-float
+FLOAT_LIB_DEPENDS_OFF=	libfftw3.so:${PORTSDIR}/math/fftw3
+FLOAT_CMAKE_ON=		-DGMX_DOUBLE:BOOL=OFF
+FLOAT_CMAKE_OFF=	-DGMX_DOUBLE:BOOL=ON
+MPICH_DESC=		MPI support using net/mpich2
+MPICH_LIB_DEPENDS=	libmpich.so:${PORTSDIR}/net/mpich2
+MPICH_CMAKE_ON= 	-DMPI_C_COMPILER:FILEPATH="${LOCALBASE}/bin/mpicc"
+OMPI_DESC=		MPI support using net/openmpi
+OMPI_BUILD_DEPENDS=	openmpi>0:${PORTSDIR}/net/openmpi
+OMPI_RUN_DEPENDS=	openmpi>0:${PORTSDIR}/net/openmpi
+OMPI_CMAKE_ON=		-DMPI_C_COMPILER:FILEPATH="${LOCALBASE}/mpi/openmpi/bin/mpicc"
+SIMD_CMAKE_OFF=		-DGMX_SIMD:STRING="None"
 X11_USE=		XORG=xext,x11
 X11_CMAKE_ON=		-DGMX_X11:BOOL=ON
 X11_CMAKE_OFF=		-DGMX_X11:BOOL=OFF
 
 .include <bsd.port.options.mk>
 
-.if ${PORT_OPTIONS:MATLAS}
-LIB_DEPENDS+=	libalapack.so:${PORTSDIR}/math/atlas
-BLAS_LIBS=	${LOCALBASE}/lib/libcblas.so;${LOCALBASE}/lib/libf77blas.so
-LAPACK_LIBS=	${LOCALBASE}/lib/libalapack.so
-.else
-LIB_DEPENDS+=	libblas.so:${PORTSDIR}/math/blas \
-		liblapack.so:${PORTSDIR}/math/lapack
-BLAS_LIBS=	${LOCALBASE}/lib/libblas.so
-LAPACK_LIBS=	${LOCALBASE}/lib/liblapack.so
-.endif
-
 .if ${PORT_OPTIONS:MFLOAT}
-BUILD_DEPENDS+=	fftw3>0:${PORTSDIR}/math/fftw3
-LIB_DEPENDS+=	libfftw3f.so:${PORTSDIR}/math/fftw3-float
-CMAKE_ARGS+=	-DGMX_DOUBLE:BOOL=OFF
 PLIST_SUB+=	SUFFIX_D=""
 .else
-LIB_DEPENDS+=	libfftw3.so:${PORTSDIR}/math/fftw3
-CMAKE_ARGS+=	-DGMX_DOUBLE:BOOL=ON
 PLIST_SUB+=	SUFFIX_D="_d"
 .endif
 
 .if ${PORT_OPTIONS:MMPICH} || ${PORT_OPTIONS:MOMPI}
-CMAKE_ARGS+=	-DGMX_MPI:BOOL=ON \
-		-DMPI_C_COMPILER:FILEPATH="${MPICC}"
+CMAKE_ARGS+=	-DGMX_MPI:BOOL=ON
 PLIST_SUB+=	SUFFIX_MPI="_mpi"
 .else
 CMAKE_ARGS+=	-DGMX_MPI:BOOL=OFF
 PLIST_SUB+=	SUFFIX_MPI=""
 .endif
 
-.if ${PORT_OPTIONS:MMPICH}
-BUILD_DEPENDS+=	${LOCALBASE}/bin/mpicc:${PORTSDIR}/net/mpich2
-RUN_DEPENDS+=	${LOCALBASE}/bin/mpicc:${PORTSDIR}/net/mpich2
-MPICC=		${LOCALBASE}/bin/mpicc
-.endif
-
-.if ${PORT_OPTIONS:MOMPI}
-BUILD_DEPENDS+=	${LOCALBASE}/mpi/openmpi/bin/mpicc:${PORTSDIR}/net/openmpi
-RUN_DEPENDS+=	${LOCALBASE}/mpi/openmpi/bin/mpicc:${PORTSDIR}/net/openmpi
-MPICC=		${LOCALBASE}/mpi/openmpi/bin/mpicc
-.endif
-
 post-patch:
 	@${FIND} ${WRKSRC} -name "CMakeLists.txt" | ${XARGS} \
 		${REINPLACE_CMD} -e \
 		's|share/man|man| ; \
-		 s|-lpthread|-pthread| ; \
 		 /pkgconfig/s|LIB_INSTALL_DIR}|CMAKE_INSTALL_PREFIX}/libdata|'
 	@${FIND} ${WRKSRC} -name "GMXRC.*" | ${XARGS} ${REINPLACE_CMD} -e \
 		's|LDLIB/pkgconfig|LDLIB/../libdata/pkgconfig| ; \

Modified: head/science/gromacs/distinfo
==============================================================================
--- head/science/gromacs/distinfo	Sat Aug  9 23:54:31 2014	(r364487)
+++ head/science/gromacs/distinfo	Sun Aug 10 00:03:09 2014	(r364488)
@@ -1,2 +1,2 @@
-SHA256 (gromacs-4.6.5.tar.gz) = a7242f315963a111e87fd28795696b1e818ac97479788356c4f73a04e9cdef09
-SIZE (gromacs-4.6.5.tar.gz) = 10991576
+SHA256 (gromacs-5.0.tar.gz) = c2c9b5e75e014785641f39fbbde9829ce200f963344b35fa942f041a0dcfeb20
+SIZE (gromacs-5.0.tar.gz) = 26862408

Added: head/science/gromacs/files/patch-src__external__thread_mpi__src__atomic.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/science/gromacs/files/patch-src__external__thread_mpi__src__atomic.c	Sun Aug 10 00:03:09 2014	(r364488)
@@ -0,0 +1,17 @@
+--- src/external/thread_mpi/src/atomic.c.orig
++++ src/external/thread_mpi/src/atomic.c
+@@ -35,6 +35,14 @@
+    files.
+  */
+ 
++#ifdef HAVE_TMPI_CONFIG_H
++#include "tmpi_config.h"
++#endif
++
++#ifdef HAVE_CONFIG_H
++#include "config.h"
++#endif
++
+ #include "impl.h"
+ 
+ /* This file is only needed when no intrinsic atomic operations are present. */

Modified: head/science/gromacs/pkg-descr
==============================================================================
--- head/science/gromacs/pkg-descr	Sat Aug  9 23:54:31 2014	(r364487)
+++ head/science/gromacs/pkg-descr	Sun Aug 10 00:03:09 2014	(r364488)
@@ -1,5 +1,5 @@
-GROMACS is a versatile package to perform molecular dynamics, i.e. simulate
-the Newtonian equations of motion for systems with hundreds to millions of
-particles.
+GROMACS is a versatile package to perform molecular dynamics, i.e.
+simulate the Newtonian equations of motion for systems with hundreds to
+millions of particles.
 
 WWW: http://www.gromacs.org

Modified: head/science/gromacs/pkg-plist
==============================================================================
--- head/science/gromacs/pkg-plist	Sat Aug  9 23:54:31 2014	(r364487)
+++ head/science/gromacs/pkg-plist	Sun Aug 10 00:03:09 2014	(r364488)
@@ -2,9 +2,6 @@ bin/GMXRC
 bin/GMXRC.bash
 bin/GMXRC.csh
 bin/GMXRC.zsh
-bin/completion.bash
-bin/completion.csh
-bin/completion.zsh
 bin/demux.pl
 bin/do_dssp%%SUFFIX_MPI%%%%SUFFIX_D%%
 bin/editconf%%SUFFIX_MPI%%%%SUFFIX_D%%
@@ -41,11 +38,8 @@ bin/g_hbond%%SUFFIX_MPI%%%%SUFFIX_D%%
 bin/g_helix%%SUFFIX_MPI%%%%SUFFIX_D%%
 bin/g_helixorient%%SUFFIX_MPI%%%%SUFFIX_D%%
 bin/g_hydorder%%SUFFIX_MPI%%%%SUFFIX_D%%
-bin/g_kinetics%%SUFFIX_MPI%%%%SUFFIX_D%%
 bin/g_lie%%SUFFIX_MPI%%%%SUFFIX_D%%
-bin/g_luck%%SUFFIX_MPI%%%%SUFFIX_D%%
 bin/g_mdmat%%SUFFIX_MPI%%%%SUFFIX_D%%
-bin/g_membed%%SUFFIX_MPI%%%%SUFFIX_D%%
 bin/g_mindist%%SUFFIX_MPI%%%%SUFFIX_D%%
 bin/g_morph%%SUFFIX_MPI%%%%SUFFIX_D%%
 bin/g_msd%%SUFFIX_MPI%%%%SUFFIX_D%%
@@ -69,6 +63,7 @@ bin/g_rotmat%%SUFFIX_MPI%%%%SUFFIX_D%%
 bin/g_saltbr%%SUFFIX_MPI%%%%SUFFIX_D%%
 bin/g_sans%%SUFFIX_MPI%%%%SUFFIX_D%%
 bin/g_sas%%SUFFIX_MPI%%%%SUFFIX_D%%
+bin/g_saxs%%SUFFIX_MPI%%%%SUFFIX_D%%
 bin/g_select%%SUFFIX_MPI%%%%SUFFIX_D%%
 bin/g_sgangle%%SUFFIX_MPI%%%%SUFFIX_D%%
 bin/g_sham%%SUFFIX_MPI%%%%SUFFIX_D%%
@@ -84,11 +79,13 @@ bin/g_velacc%%SUFFIX_MPI%%%%SUFFIX_D%%
 bin/g_wham%%SUFFIX_MPI%%%%SUFFIX_D%%
 bin/g_wheel%%SUFFIX_MPI%%%%SUFFIX_D%%
 bin/g_x2top%%SUFFIX_MPI%%%%SUFFIX_D%%
-%%X11%%bin/g_xrama%%SUFFIX_MPI%%%%SUFFIX_D%%
 bin/genbox%%SUFFIX_MPI%%%%SUFFIX_D%%
 bin/genconf%%SUFFIX_MPI%%%%SUFFIX_D%%
 bin/genion%%SUFFIX_MPI%%%%SUFFIX_D%%
 bin/genrestr%%SUFFIX_MPI%%%%SUFFIX_D%%
+bin/gmx%%SUFFIX_MPI%%%%SUFFIX_D%%
+bin/gmx-completion-gmx%%SUFFIX_MPI%%%%SUFFIX_D%%.bash
+bin/gmx-completion.bash
 bin/gmxcheck%%SUFFIX_MPI%%%%SUFFIX_D%%
 bin/gmxdump%%SUFFIX_MPI%%%%SUFFIX_D%%
 bin/grompp%%SUFFIX_MPI%%%%SUFFIX_D%%
@@ -96,7 +93,6 @@ bin/make_edi%%SUFFIX_MPI%%%%SUFFIX_D%%
 bin/make_ndx%%SUFFIX_MPI%%%%SUFFIX_D%%
 bin/mdrun%%SUFFIX_MPI%%%%SUFFIX_D%%
 bin/mk_angndx%%SUFFIX_MPI%%%%SUFFIX_D%%
-%%X11%%bin/ngmx%%SUFFIX_MPI%%%%SUFFIX_D%%
 bin/pdb2gmx%%SUFFIX_MPI%%%%SUFFIX_D%%
 bin/tpbconv%%SUFFIX_MPI%%%%SUFFIX_D%%
 bin/trjcat%%SUFFIX_MPI%%%%SUFFIX_D%%
@@ -104,360 +100,301 @@ bin/trjconv%%SUFFIX_MPI%%%%SUFFIX_D%%
 bin/trjorder%%SUFFIX_MPI%%%%SUFFIX_D%%
 bin/xplor2gmx.pl
 bin/xpm2ps%%SUFFIX_MPI%%%%SUFFIX_D%%
-include/gromacs/3dview.h
-include/gromacs/CTestTestfile.cmake
-include/gromacs/assert.h
-include/gromacs/atomprop.h
-include/gromacs/bondf.h
-include/gromacs/calcgrid.h
-include/gromacs/calch.h
-include/gromacs/calcmu.h
-include/gromacs/centerofmass.h
-include/gromacs/chargegroup.h
-include/gromacs/checkpoint.h
-include/gromacs/confio.h
-include/gromacs/constr.h
-include/gromacs/copyrite.h
-include/gromacs/coulomb.h
-include/gromacs/displacement.h
-include/gromacs/disre.h
-include/gromacs/do_fit.h
-include/gromacs/domdec.h
-include/gromacs/domdec_network.h
-include/gromacs/ebin.h
-include/gromacs/edsam.h
-include/gromacs/enxio.h
-include/gromacs/ffscanf.h
-include/gromacs/filenm.h
-include/gromacs/force.h
-include/gromacs/futil.h
-include/gromacs/gbutil.h
-include/gromacs/gen_ad.h
-include/gromacs/genborn.h
-include/gromacs/gmx_ana.h
-include/gromacs/gmx_avx_double.h
-include/gromacs/gmx_avx_single.h
-include/gromacs/gmx_cpuid.h
-include/gromacs/gmx_cyclecounter.h
-include/gromacs/gmx_detect_hardware.h
-include/gromacs/gmx_fatal.h
-include/gromacs/gmx_fatal_collective.h
-include/gromacs/gmx_fft.h
-include/gromacs/gmx_ga2la.h
-include/gromacs/gmx_hash.h
-include/gromacs/gmx_header_config.h
-include/gromacs/gmx_math_x86_avx_128_fma_double.h
-include/gromacs/gmx_math_x86_avx_128_fma_single.h
-include/gromacs/gmx_math_x86_avx_256_double.h
-include/gromacs/gmx_math_x86_avx_256_single.h
-include/gromacs/gmx_math_x86_sse2_double.h
-include/gromacs/gmx_math_x86_sse2_single.h
-include/gromacs/gmx_math_x86_sse4_1_double.h
-include/gromacs/gmx_math_x86_sse4_1_single.h
-include/gromacs/gmx_matrix.h
-include/gromacs/gmx_omp.h
-include/gromacs/gmx_omp_nthreads.h
-include/gromacs/gmx_parallel_3dfft.h
-include/gromacs/gmx_random.h
-include/gromacs/gmx_simd4_macros.h
-include/gromacs/gmx_simd4_ref.h
-include/gromacs/gmx_simd_macros.h
-include/gromacs/gmx_simd_math_double.h
-include/gromacs/gmx_simd_math_single.h
-include/gromacs/gmx_simd_ref.h
-include/gromacs/gmx_simd_vec.h
-include/gromacs/gmx_sort.h
-include/gromacs/gmx_statistics.h
-include/gromacs/gmx_system_xdr.h
-include/gromacs/gmx_thread_affinity.h
-include/gromacs/gmx_wallcycle.h
-include/gromacs/gmx_x86_avx_128_fma.h
-include/gromacs/gmx_x86_avx_256.h
-include/gromacs/gmx_x86_sse2.h
-include/gromacs/gmx_x86_sse4_1.h
-include/gromacs/gmxcomplex.h
-include/gromacs/gmxcpp.h
-include/gromacs/gmxfio.h
-include/gromacs/gpp_atomtype.h
-include/gromacs/gpp_nextnb.h
-include/gromacs/gpu_utils.h
-include/gromacs/grompp.h
-include/gromacs/gstat.h
-include/gromacs/hackblock.h
-include/gromacs/histogram.h
-include/gromacs/index.h
-include/gromacs/indexutil.h
-include/gromacs/inputrec.h
-include/gromacs/invblock.h
-include/gromacs/macros.h
-include/gromacs/main.h
-include/gromacs/mainpage.h
-include/gromacs/maths.h
-include/gromacs/matio.h
-include/gromacs/md5.h
-include/gromacs/md_logging.h
-include/gromacs/md_support.h
-include/gromacs/mdatoms.h
-include/gromacs/mdebin.h
-include/gromacs/mdrun.h
-include/gromacs/mpelogging.h
-include/gromacs/mshift.h
-include/gromacs/mtop_util.h
-include/gromacs/mtxio.h
-include/gromacs/mvdata.h
-include/gromacs/names.h
-include/gromacs/nbnxn_cuda_data_mgmt.h
-include/gromacs/nbsearch.h
-include/gromacs/network.h
-include/gromacs/nonbonded.h
-include/gromacs/nrama.h
-include/gromacs/nrjac.h
-include/gromacs/nrnb.h
-include/gromacs/ns.h
-include/gromacs/nsgrid.h
-include/gromacs/oenv.h
-include/gromacs/orires.h
-include/gromacs/partdec.h
-include/gromacs/pbc.h
-include/gromacs/pdb2top.h
-include/gromacs/pdbio.h
-include/gromacs/perf_est.h
-include/gromacs/physics.h
-include/gromacs/pmalloc_cuda.h
-include/gromacs/pme.h
-include/gromacs/poscalc.h
-include/gromacs/position.h
-include/gromacs/princ.h
-include/gromacs/pull.h
-include/gromacs/pull_rotation.h
-include/gromacs/qmmm.h
-include/gromacs/random.h
-include/gromacs/rbin.h
-include/gromacs/readinp.h
-include/gromacs/resall.h
-include/gromacs/rmpbc.h
+include/gromacs/analysisdata.h
+include/gromacs/analysisdata/abstractdata.h
+include/gromacs/analysisdata/analysisdata.h
+include/gromacs/analysisdata/arraydata.h
+include/gromacs/analysisdata/dataframe.h
+include/gromacs/analysisdata/datamodule.h
+include/gromacs/analysisdata/modules/average.h
+include/gromacs/analysisdata/modules/displacement.h
+include/gromacs/analysisdata/modules/histogram.h
+include/gromacs/analysisdata/modules/lifetime.h
+include/gromacs/analysisdata/modules/plot.h
+include/gromacs/commandline.h
+include/gromacs/commandline/cmdlinehelpwriter.h
+include/gromacs/commandline/cmdlineinit.h
+include/gromacs/commandline/cmdlinemodule.h
+include/gromacs/commandline/cmdlineparser.h
+include/gromacs/commandline/cmdlineprogramcontext.h
+include/gromacs/commandline/pargs.h
+include/gromacs/fft/fft.h
+include/gromacs/fileio/confio.h
+include/gromacs/fileio/enxio.h
+include/gromacs/fileio/filenm.h
+include/gromacs/fileio/futil.h
+include/gromacs/fileio/gmxfio.h
+include/gromacs/fileio/matio.h
+include/gromacs/fileio/mdoutf.h
+include/gromacs/fileio/pdbio.h
+include/gromacs/fileio/tpxio.h
+include/gromacs/fileio/trajectory_writing.h
+include/gromacs/fileio/trnio.h
+include/gromacs/fileio/trx.h
+include/gromacs/fileio/trxio.h
+include/gromacs/fileio/xdr_datatype.h
+include/gromacs/fileio/xtcio.h
+include/gromacs/gmxana/gstat.h
+include/gromacs/legacyheaders/atomprop.h
+include/gromacs/legacyheaders/bondf.h
+include/gromacs/legacyheaders/calcgrid.h
+include/gromacs/legacyheaders/calch.h
+include/gromacs/legacyheaders/calcmu.h
+include/gromacs/legacyheaders/chargegroup.h
+include/gromacs/legacyheaders/checkpoint.h
+include/gromacs/legacyheaders/constr.h
+include/gromacs/legacyheaders/copyrite.h
+include/gromacs/legacyheaders/coulomb.h
+include/gromacs/legacyheaders/disre.h
+include/gromacs/legacyheaders/domdec.h
+include/gromacs/legacyheaders/domdec_network.h
+include/gromacs/legacyheaders/ebin.h
+include/gromacs/legacyheaders/force.h
+include/gromacs/legacyheaders/genborn.h
+include/gromacs/legacyheaders/gmx_cpuid.h
+include/gromacs/legacyheaders/gmx_detect_hardware.h
+include/gromacs/legacyheaders/gmx_fatal.h
+include/gromacs/legacyheaders/gmx_fatal_collective.h
+include/gromacs/legacyheaders/gmx_omp_nthreads.h
+include/gromacs/legacyheaders/gmx_thread_affinity.h
+include/gromacs/legacyheaders/index.h
+include/gromacs/legacyheaders/inputrec.h
+include/gromacs/legacyheaders/invblock.h
+include/gromacs/legacyheaders/macros.h
+include/gromacs/legacyheaders/main.h
+include/gromacs/legacyheaders/md_logging.h
+include/gromacs/legacyheaders/md_support.h
+include/gromacs/legacyheaders/mdatoms.h
+include/gromacs/legacyheaders/mdebin.h
+include/gromacs/legacyheaders/mdrun.h
+include/gromacs/legacyheaders/mshift.h
+include/gromacs/legacyheaders/mtop_util.h
+include/gromacs/legacyheaders/mvdata.h
+include/gromacs/legacyheaders/names.h
+include/gromacs/legacyheaders/network.h
+include/gromacs/legacyheaders/nonbonded.h
+include/gromacs/legacyheaders/nrnb.h
+include/gromacs/legacyheaders/ns.h
+include/gromacs/legacyheaders/nsgrid.h
+include/gromacs/legacyheaders/oenv.h
+include/gromacs/legacyheaders/orires.h
+include/gromacs/legacyheaders/pbc.h
+include/gromacs/legacyheaders/perf_est.h
+include/gromacs/legacyheaders/physics.h
+include/gromacs/legacyheaders/pme.h
+include/gromacs/legacyheaders/princ.h
+include/gromacs/legacyheaders/qmmm.h
+include/gromacs/legacyheaders/rbin.h
+include/gromacs/legacyheaders/readinp.h
+include/gromacs/legacyheaders/rmpbc.h
+include/gromacs/legacyheaders/sfactor.h
+include/gromacs/legacyheaders/shellfc.h
+include/gromacs/legacyheaders/shift.h
+include/gromacs/legacyheaders/sighandler.h
+include/gromacs/legacyheaders/sim_util.h
+include/gromacs/legacyheaders/splitter.h
+include/gromacs/legacyheaders/symtab.h
+include/gromacs/legacyheaders/sysstuff.h
+include/gromacs/legacyheaders/tables.h
+include/gromacs/legacyheaders/tgroup.h
+include/gromacs/legacyheaders/txtdump.h
+include/gromacs/legacyheaders/typedefs.h
+include/gromacs/legacyheaders/types/atoms.h
+include/gromacs/legacyheaders/types/block.h
+include/gromacs/legacyheaders/types/constr.h
+include/gromacs/legacyheaders/types/energy.h
+include/gromacs/legacyheaders/types/enums.h
+include/gromacs/legacyheaders/types/fcdata.h
+include/gromacs/legacyheaders/types/force_flags.h
+include/gromacs/legacyheaders/types/forcerec.h
+include/gromacs/legacyheaders/types/genborn.h
+include/gromacs/legacyheaders/types/globsig.h
+include/gromacs/legacyheaders/types/graph.h
+include/gromacs/legacyheaders/types/group.h
+include/gromacs/legacyheaders/types/hw_info.h
+include/gromacs/legacyheaders/types/idef.h
+include/gromacs/legacyheaders/types/ifunc.h
+include/gromacs/legacyheaders/types/inputrec.h
+include/gromacs/legacyheaders/types/interaction_const.h
+include/gromacs/legacyheaders/types/ishift.h
+include/gromacs/legacyheaders/types/iteratedconstraints.h
+include/gromacs/legacyheaders/types/matrix.h
+include/gromacs/legacyheaders/types/mdatom.h
+include/gromacs/legacyheaders/types/membedt.h
+include/gromacs/legacyheaders/types/nb_verlet.h
+include/gromacs/legacyheaders/types/nblist.h
+include/gromacs/legacyheaders/types/nbnxn_cuda_types_ext.h
+include/gromacs/legacyheaders/types/nbnxn_pairlist.h
+include/gromacs/legacyheaders/types/nlistheuristics.h
+include/gromacs/legacyheaders/types/nrnb.h
+include/gromacs/legacyheaders/types/ns.h
+include/gromacs/legacyheaders/types/nsgrid.h
+include/gromacs/legacyheaders/types/oenv.h
+include/gromacs/legacyheaders/types/pbc.h
+include/gromacs/legacyheaders/types/qmmmrec.h
+include/gromacs/legacyheaders/types/shellfc.h
+include/gromacs/legacyheaders/types/simple.h
+include/gromacs/legacyheaders/types/state.h
+include/gromacs/legacyheaders/types/symtab.h
+include/gromacs/legacyheaders/types/topology.h
+include/gromacs/legacyheaders/update.h
+include/gromacs/legacyheaders/vcm.h
+include/gromacs/legacyheaders/vec.h
+include/gromacs/legacyheaders/viewit.h
+include/gromacs/legacyheaders/vsite.h
+include/gromacs/legacyheaders/warninp.h
+include/gromacs/legacyheaders/xvgr.h
+include/gromacs/linearalgebra/eigensolver.h
+include/gromacs/linearalgebra/matrix.h
+include/gromacs/linearalgebra/mtxio.h
+include/gromacs/linearalgebra/sparsematrix.h
+include/gromacs/math/3dview.h
+include/gromacs/math/do_fit.h
+include/gromacs/math/gmxcomplex.h
+include/gromacs/math/utilities.h
+include/gromacs/onlinehelp.h
+include/gromacs/onlinehelp/helptopicinterface.h
+include/gromacs/options.h
+include/gromacs/options/abstractoption.h
+include/gromacs/options/basicoptions.h
+include/gromacs/options/filenameoption.h
+include/gromacs/options/optionfiletype.h
+include/gromacs/options/optionflags.h
+include/gromacs/options/options.h
+include/gromacs/options/timeunitmanager.h
 include/gromacs/selection.h
-include/gromacs/selmethod.h
-include/gromacs/selparam.h
-include/gromacs/selvalue.h
-include/gromacs/sfactor.h
-include/gromacs/shellfc.h
-include/gromacs/shift.h
-include/gromacs/sighandler.h
-include/gromacs/sim_util.h
-include/gromacs/smalloc.h
-include/gromacs/sortwater.h
-include/gromacs/sparsematrix.h
-include/gromacs/split.h
-include/gromacs/splitter.h
-include/gromacs/statutil.h
-include/gromacs/strdb.h
-include/gromacs/string2.h
-include/gromacs/symtab.h
-include/gromacs/sysstuff.h
-include/gromacs/tables.h
-include/gromacs/tgroup.h
-include/gromacs/thread_mpi.h
-include/gromacs/thread_mpi/atomic.h
-include/gromacs/thread_mpi/atomic/cycles.h
-include/gromacs/thread_mpi/atomic/derived.h
-include/gromacs/thread_mpi/atomic/fujitsu_sparc64.h
-include/gromacs/thread_mpi/atomic/gcc.h
-include/gromacs/thread_mpi/atomic/gcc_ia64.h
-include/gromacs/thread_mpi/atomic/gcc_intrinsics.h
-include/gromacs/thread_mpi/atomic/gcc_ppc.h
-include/gromacs/thread_mpi/atomic/gcc_spinlock.h
-include/gromacs/thread_mpi/atomic/gcc_x86.h
-include/gromacs/thread_mpi/atomic/msvc.h
-include/gromacs/thread_mpi/atomic/suncc-sparc.h
-include/gromacs/thread_mpi/atomic/xlc_ppc.h
-include/gromacs/thread_mpi/barrier.h
-include/gromacs/thread_mpi/collective.h
-include/gromacs/thread_mpi/event.h
-include/gromacs/thread_mpi/hwinfo.h
-include/gromacs/thread_mpi/list.h
-include/gromacs/thread_mpi/lock.h
-include/gromacs/thread_mpi/mpi_bindings.h
-include/gromacs/thread_mpi/mutex.h
-include/gromacs/thread_mpi/numa_malloc.h
-include/gromacs/thread_mpi/system_error.h
-include/gromacs/thread_mpi/threads.h
-include/gromacs/thread_mpi/tmpi.h
-include/gromacs/thread_mpi/visibility.h
-include/gromacs/thread_mpi/wait.h
-include/gromacs/tmpi.h
-include/gromacs/topsort.h
-include/gromacs/toputil.h
-include/gromacs/tpxio.h
-include/gromacs/trajana.h
-include/gromacs/trnio.h
-include/gromacs/txtdump.h
-include/gromacs/typedefs.h
-include/gromacs/types/atoms.h
-include/gromacs/types/block.h
-include/gromacs/types/commrec.h
-include/gromacs/types/constr.h
-include/gromacs/types/energy.h
-include/gromacs/types/enums.h
-include/gromacs/types/fcdata.h
-include/gromacs/types/filenm.h
-include/gromacs/types/force_flags.h
-include/gromacs/types/forcerec.h
-include/gromacs/types/genborn.h
-include/gromacs/types/globsig.h
-include/gromacs/types/graph.h
-include/gromacs/types/group.h
-include/gromacs/types/hw_info.h
-include/gromacs/types/idef.h
-include/gromacs/types/ifunc.h
-include/gromacs/types/inputrec.h
-include/gromacs/types/interaction_const.h
-include/gromacs/types/ishift.h
-include/gromacs/types/iteratedconstraints.h
-include/gromacs/types/matrix.h
-include/gromacs/types/mdatom.h
-include/gromacs/types/membedt.h
-include/gromacs/types/nb_verlet.h
-include/gromacs/types/nblist.h
-include/gromacs/types/nbnxn_cuda_types_ext.h
-include/gromacs/types/nbnxn_pairlist.h
-include/gromacs/types/nlistheuristics.h
-include/gromacs/types/nrnb.h
-include/gromacs/types/ns.h
-include/gromacs/types/nsgrid.h
-include/gromacs/types/oenv.h
-include/gromacs/types/pbc.h
-include/gromacs/types/qmmmrec.h
-include/gromacs/types/shellfc.h
-include/gromacs/types/simple.h
-include/gromacs/types/state.h
-include/gromacs/types/symtab.h
-include/gromacs/types/topology.h
-include/gromacs/types/trx.h
-include/gromacs/update.h
-include/gromacs/vcm.h
-include/gromacs/vec.h
+include/gromacs/selection/indexutil.h
+include/gromacs/selection/nbsearch.h
+include/gromacs/selection/position.h
+include/gromacs/selection/selection.h
+include/gromacs/selection/selectioncollection.h
+include/gromacs/selection/selectionenums.h
+include/gromacs/selection/selectionoption.h
+include/gromacs/selection/selectionoptionmanager.h
+include/gromacs/swap/enums.h
+include/gromacs/timing/walltime_accounting.h
+include/gromacs/trajectoryanalysis.h
+include/gromacs/trajectoryanalysis/analysismodule.h
+include/gromacs/trajectoryanalysis/analysissettings.h
+include/gromacs/trajectoryanalysis/cmdlinerunner.h
+include/gromacs/utility.h
+include/gromacs/utility/arrayref.h
+include/gromacs/utility/common.h
+include/gromacs/utility/cstringutil.h
+include/gromacs/utility/errorcodes.h
+include/gromacs/utility/exceptions.h
+include/gromacs/utility/file.h
+include/gromacs/utility/flags.h
+include/gromacs/utility/gmx_header_config.h
+include/gromacs/utility/gmx_header_config_gen.h
+include/gromacs/utility/gmxassert.h
+include/gromacs/utility/init.h
+include/gromacs/utility/programcontext.h
+include/gromacs/utility/smalloc.h
+include/gromacs/utility/stringutil.h
+include/gromacs/utility/uniqueptr.h
 include/gromacs/version.h
-include/gromacs/viewit.h
-include/gromacs/visibility.h
-include/gromacs/vsite.h
-include/gromacs/warninp.h
-include/gromacs/wgms.h
-include/gromacs/wman.h
-include/gromacs/writeps.h
-include/gromacs/xdrf.h
-include/gromacs/xtcio.h
-include/gromacs/xvgr.h
-lib/libgmx%%SUFFIX_MPI%%%%SUFFIX_D%%.so
-lib/libgmx%%SUFFIX_MPI%%%%SUFFIX_D%%.so.8
-lib/libgmxana%%SUFFIX_MPI%%%%SUFFIX_D%%.so
-lib/libgmxana%%SUFFIX_MPI%%%%SUFFIX_D%%.so.8
-lib/libgmxpreprocess%%SUFFIX_MPI%%%%SUFFIX_D%%.so
-lib/libgmxpreprocess%%SUFFIX_MPI%%%%SUFFIX_D%%.so.8
-lib/libmd%%SUFFIX_MPI%%%%SUFFIX_D%%.so
-lib/libmd%%SUFFIX_MPI%%%%SUFFIX_D%%.so.8
-libdata/pkgconfig/libgmx%%SUFFIX_MPI%%%%SUFFIX_D%%.pc
-libdata/pkgconfig/libgmxana%%SUFFIX_MPI%%%%SUFFIX_D%%.pc
-libdata/pkgconfig/libgmxpreprocess%%SUFFIX_MPI%%%%SUFFIX_D%%.pc
-libdata/pkgconfig/libmd%%SUFFIX_MPI%%%%SUFFIX_D%%.pc
-man/man1/do_dssp.1.gz
-man/man1/editconf.1.gz
-man/man1/eneconv.1.gz
-man/man1/g_anadock.1.gz
-man/man1/g_anaeig.1.gz
-man/man1/g_analyze.1.gz
-man/man1/g_angle.1.gz
-man/man1/g_bar.1.gz
-man/man1/g_bond.1.gz
-man/man1/g_bundle.1.gz
-man/man1/g_chi.1.gz
-man/man1/g_cluster.1.gz
-man/man1/g_clustsize.1.gz
-man/man1/g_confrms.1.gz
-man/man1/g_covar.1.gz
-man/man1/g_current.1.gz
-man/man1/g_density.1.gz
-man/man1/g_densmap.1.gz
-man/man1/g_densorder.1.gz
-man/man1/g_dielectric.1.gz
-man/man1/g_dipoles.1.gz
-man/man1/g_disre.1.gz
-man/man1/g_dist.1.gz
-man/man1/g_dos.1.gz
-man/man1/g_dyecoupl.1.gz
-man/man1/g_dyndom.1.gz
-man/man1/g_enemat.1.gz
-man/man1/g_energy.1.gz
-man/man1/g_filter.1.gz
-man/man1/g_gyrate.1.gz
-man/man1/g_h2order.1.gz
-man/man1/g_hbond.1.gz
-man/man1/g_helix.1.gz
-man/man1/g_helixorient.1.gz
-man/man1/g_hydorder.1.gz
-man/man1/g_kinetics.1.gz
-man/man1/g_lie.1.gz
-man/man1/g_mdmat.1.gz
-man/man1/g_membed.1.gz
-man/man1/g_mindist.1.gz
-man/man1/g_morph.1.gz
-man/man1/g_msd.1.gz
-man/man1/g_nmeig.1.gz
-man/man1/g_nmens.1.gz
-man/man1/g_nmtraj.1.gz
-man/man1/g_order.1.gz
-man/man1/g_pme_error.1.gz
-man/man1/g_polystat.1.gz
-man/man1/g_potential.1.gz
-man/man1/g_principal.1.gz
-man/man1/g_protonate.1.gz
-man/man1/g_rama.1.gz
-man/man1/g_rdf.1.gz
-man/man1/g_rms.1.gz
-man/man1/g_rmsdist.1.gz
-man/man1/g_rmsf.1.gz
-man/man1/g_rotacf.1.gz
-man/man1/g_rotmat.1.gz
-man/man1/g_saltbr.1.gz
-man/man1/g_sans.1.gz
-man/man1/g_sas.1.gz
-man/man1/g_select.1.gz
-man/man1/g_sgangle.1.gz
-man/man1/g_sham.1.gz
-man/man1/g_sigeps.1.gz
-man/man1/g_sorient.1.gz
-man/man1/g_spatial.1.gz
-man/man1/g_spol.1.gz
-man/man1/g_tcaf.1.gz
-man/man1/g_traj.1.gz
-man/man1/g_tune_pme.1.gz
-man/man1/g_vanhove.1.gz
-man/man1/g_velacc.1.gz
-man/man1/g_wham.1.gz
-man/man1/g_wheel.1.gz
-man/man1/g_x2top.1.gz
-%%X11%%man/man1/g_xrama.1.gz
-man/man1/genbox.1.gz
-man/man1/genconf.1.gz
-man/man1/genion.1.gz
-man/man1/genrestr.1.gz
-man/man1/gmxcheck.1.gz
-man/man1/gmxdump.1.gz
-man/man1/grompp.1.gz
-man/man1/make_edi.1.gz
-man/man1/make_ndx.1.gz
-man/man1/mdrun.1.gz
-man/man1/mk_angndx.1.gz
-%%X11%%man/man1/ngmx.1.gz
-man/man1/pdb2gmx.1.gz
-man/man1/tpbconv.1.gz
-man/man1/trjcat.1.gz
-man/man1/trjconv.1.gz
-man/man1/trjorder.1.gz
-man/man1/xpm2ps.1.gz
+lib/libgromacs%%SUFFIX_MPI%%%%SUFFIX_D%%.so
+lib/libgromacs%%SUFFIX_MPI%%%%SUFFIX_D%%.so.0
+lib/libgromacs%%SUFFIX_MPI%%%%SUFFIX_D%%.so.0.0.0
+libdata/pkgconfig/libgromacs%%SUFFIX_MPI%%%%SUFFIX_D%%.pc
+man/man1/gmx-anadock.1.gz
+man/man1/gmx-anaeig.1.gz
+man/man1/gmx-analyze.1.gz
+man/man1/gmx-angle.1.gz
+man/man1/gmx-bar.1.gz
+man/man1/gmx-bundle.1.gz
+man/man1/gmx-check.1.gz
+man/man1/gmx-chi.1.gz
+man/man1/gmx-cluster.1.gz
+man/man1/gmx-clustsize.1.gz
+man/man1/gmx-confrms.1.gz
+man/man1/gmx-convert-tpr.1.gz
+man/man1/gmx-covar.1.gz
+man/man1/gmx-current.1.gz
+man/man1/gmx-density.1.gz
+man/man1/gmx-densmap.1.gz
+man/man1/gmx-densorder.1.gz
+man/man1/gmx-dielectric.1.gz
+man/man1/gmx-dipoles.1.gz
+man/man1/gmx-disre.1.gz
+man/man1/gmx-distance.1.gz
+man/man1/gmx-do_dssp.1.gz
+man/man1/gmx-dos.1.gz
+man/man1/gmx-dump.1.gz
+man/man1/gmx-dyecoupl.1.gz
+man/man1/gmx-dyndom.1.gz
+man/man1/gmx-editconf.1.gz
+man/man1/gmx-eneconv.1.gz
+man/man1/gmx-enemat.1.gz
+man/man1/gmx-energy.1.gz
+man/man1/gmx-filter.1.gz
+man/man1/gmx-freevolume.1.gz
+man/man1/gmx-gangle.1.gz
+man/man1/gmx-genconf.1.gz
+man/man1/gmx-genion.1.gz
+man/man1/gmx-genrestr.1.gz
+man/man1/gmx-grompp.1.gz
+man/man1/gmx-gyrate.1.gz
+man/man1/gmx-h2order.1.gz
+man/man1/gmx-hbond.1.gz
+man/man1/gmx-helix.1.gz
+man/man1/gmx-helixorient.1.gz
+man/man1/gmx-help.1.gz
+man/man1/gmx-hydorder.1.gz
+man/man1/gmx-insert-molecules.1.gz
+man/man1/gmx-lie.1.gz
+man/man1/gmx-make_edi.1.gz
+man/man1/gmx-make_ndx.1.gz
+man/man1/gmx-mdmat.1.gz
+man/man1/gmx-mdrun.1.gz
+man/man1/gmx-mindist.1.gz
+man/man1/gmx-mk_angndx.1.gz
+man/man1/gmx-morph.1.gz
+man/man1/gmx-msd.1.gz
+man/man1/gmx-nmeig.1.gz
+man/man1/gmx-nmens.1.gz
+man/man1/gmx-nmtraj.1.gz
+man/man1/gmx-order.1.gz
+man/man1/gmx-pdb2gmx.1.gz
+man/man1/gmx-pme_error.1.gz
+man/man1/gmx-polystat.1.gz
+man/man1/gmx-potential.1.gz
+man/man1/gmx-principal.1.gz
+man/man1/gmx-protonate.1.gz
+man/man1/gmx-rama.1.gz
+man/man1/gmx-rdf.1.gz
+man/man1/gmx-rms.1.gz
+man/man1/gmx-rmsdist.1.gz
+man/man1/gmx-rmsf.1.gz
+man/man1/gmx-rotacf.1.gz
+man/man1/gmx-rotmat.1.gz
+man/man1/gmx-saltbr.1.gz
+man/man1/gmx-sans.1.gz
+man/man1/gmx-sasa.1.gz
+man/man1/gmx-saxs.1.gz
+man/man1/gmx-select.1.gz
+man/man1/gmx-sham.1.gz
+man/man1/gmx-sigeps.1.gz
+man/man1/gmx-solvate.1.gz
+man/man1/gmx-sorient.1.gz
+man/man1/gmx-spatial.1.gz
+man/man1/gmx-spol.1.gz
+man/man1/gmx-tcaf.1.gz
+man/man1/gmx-traj.1.gz
+man/man1/gmx-trjcat.1.gz
+man/man1/gmx-trjconv.1.gz
+man/man1/gmx-trjorder.1.gz
+man/man1/gmx-tune_pme.1.gz
+man/man1/gmx-vanhove.1.gz
+man/man1/gmx-velacc.1.gz
+man/man1/gmx-view.1.gz
+man/man1/gmx-wham.1.gz
+man/man1/gmx-wheel.1.gz
+man/man1/gmx-x2top.1.gz
+man/man1/gmx-xpm2ps.1.gz
 man/man7/gromacs.7.gz
 %%DATADIR%%/COPYING
-%%DATADIR%%/CTestTestfile.cmake
 %%DATADIR%%/README.tutor
 %%DATADIR%%/README_FreeEnergyModifications.txt
 %%DATADIR%%/html/images/1ctf-0.2.jpg
@@ -487,7 +424,6 @@ man/man7/gromacs.7.gz
 %%DATADIR%%/html/images/flow_vline.gif
 %%DATADIR%%/html/images/flow_vrule.gif
 %%DATADIR%%/html/images/gmxlogo_small.jpg
-%%DATADIR%%/html/images/gmxlogo_small.png
 %%DATADIR%%/html/images/links.gif
 %%DATADIR%%/html/images/mail.gif
 %%DATADIR%%/html/images/manual.gif
@@ -496,161 +432,147 @@ man/man7/gromacs.7.gz
 %%DATADIR%%/html/images/software.gif
 %%DATADIR%%/html/images/topologies.gif
 %%DATADIR%%/html/images/xvgr.gif
-%%DATADIR%%/html/online/ADD_INCLUDE
+%%DATADIR%%/html/online.html
 %%DATADIR%%/html/online/cpt.html
 %%DATADIR%%/html/online/dat.html
 %%DATADIR%%/html/online/dlg.html
-%%DATADIR%%/html/online/do_dssp.html
 %%DATADIR%%/html/online/edi.html
-%%DATADIR%%/html/online/editconf.html
 %%DATADIR%%/html/online/edo.html
 %%DATADIR%%/html/online/edr.html
 %%DATADIR%%/html/online/ene.html
-%%DATADIR%%/html/online/eneconv.html
 %%DATADIR%%/html/online/eps.html
 %%DATADIR%%/html/online/files.html
 %%DATADIR%%/html/online/flow.html
-%%DATADIR%%/html/online/g87.html
 %%DATADIR%%/html/online/g96.html
-%%DATADIR%%/html/online/g_anadock.html
-%%DATADIR%%/html/online/g_anaeig.html
-%%DATADIR%%/html/online/g_analyze.html
-%%DATADIR%%/html/online/g_angle.html
-%%DATADIR%%/html/online/g_bar.html
-%%DATADIR%%/html/online/g_bond.html
-%%DATADIR%%/html/online/g_bundle.html
-%%DATADIR%%/html/online/g_chi.html
-%%DATADIR%%/html/online/g_cluster.html
-%%DATADIR%%/html/online/g_clustsize.html
-%%DATADIR%%/html/online/g_confrms.html
-%%DATADIR%%/html/online/g_covar.html
-%%DATADIR%%/html/online/g_current.html
-%%DATADIR%%/html/online/g_density.html
-%%DATADIR%%/html/online/g_densmap.html
-%%DATADIR%%/html/online/g_densorder.html
-%%DATADIR%%/html/online/g_dielectric.html
-%%DATADIR%%/html/online/g_dipoles.html
-%%DATADIR%%/html/online/g_disre.html
-%%DATADIR%%/html/online/g_dist.html
-%%DATADIR%%/html/online/g_dos.html
-%%DATADIR%%/html/online/g_dyecoupl.html
-%%DATADIR%%/html/online/g_dyndom.html
-%%DATADIR%%/html/online/g_enemat.html
-%%DATADIR%%/html/online/g_energy.html
-%%DATADIR%%/html/online/g_filter.html
-%%DATADIR%%/html/online/g_gyrate.html
-%%DATADIR%%/html/online/g_h2order.html
-%%DATADIR%%/html/online/g_hbond.html
-%%DATADIR%%/html/online/g_helix.html
-%%DATADIR%%/html/online/g_helixorient.html
-%%DATADIR%%/html/online/g_hydorder.html
-%%DATADIR%%/html/online/g_kinetics.html
-%%DATADIR%%/html/online/g_lie.html
-%%DATADIR%%/html/online/g_mdmat.html
-%%DATADIR%%/html/online/g_membed.html
-%%DATADIR%%/html/online/g_mindist.html
-%%DATADIR%%/html/online/g_morph.html
-%%DATADIR%%/html/online/g_msd.html
-%%DATADIR%%/html/online/g_nmeig.html
-%%DATADIR%%/html/online/g_nmens.html
-%%DATADIR%%/html/online/g_nmtraj.html
-%%DATADIR%%/html/online/g_options.html
-%%DATADIR%%/html/online/g_order.html
-%%DATADIR%%/html/online/g_pme_error.html
-%%DATADIR%%/html/online/g_polystat.html
-%%DATADIR%%/html/online/g_potential.html
-%%DATADIR%%/html/online/g_principal.html
-%%DATADIR%%/html/online/g_protonate.html
-%%DATADIR%%/html/online/g_rama.html
-%%DATADIR%%/html/online/g_rdf.html
-%%DATADIR%%/html/online/g_rms.html
-%%DATADIR%%/html/online/g_rmsdist.html
-%%DATADIR%%/html/online/g_rmsf.html
-%%DATADIR%%/html/online/g_rotacf.html
-%%DATADIR%%/html/online/g_rotmat.html
-%%DATADIR%%/html/online/g_saltbr.html
-%%DATADIR%%/html/online/g_sans.html
-%%DATADIR%%/html/online/g_sas.html
-%%DATADIR%%/html/online/g_select.html
-%%DATADIR%%/html/online/g_sgangle.html
-%%DATADIR%%/html/online/g_sham.html
-%%DATADIR%%/html/online/g_sigeps.html
-%%DATADIR%%/html/online/g_sorient.html
-%%DATADIR%%/html/online/g_spatial.html
-%%DATADIR%%/html/online/g_spol.html
-%%DATADIR%%/html/online/g_tcaf.html
-%%DATADIR%%/html/online/g_traj.html
-%%DATADIR%%/html/online/g_tune_pme.html
-%%DATADIR%%/html/online/g_vanhove.html
-%%DATADIR%%/html/online/g_velacc.html
-%%DATADIR%%/html/online/g_wham.html
-%%DATADIR%%/html/online/g_wheel.html
-%%DATADIR%%/html/online/g_x2top.html
-%%DATADIR%%/html/online/g_xrama.html
-%%DATADIR%%/html/online/genbox.html
-%%DATADIR%%/html/online/genconf.html
-%%DATADIR%%/html/online/genion.html
-%%DATADIR%%/html/online/genpr.html
-%%DATADIR%%/html/online/genrestr.html
 %%DATADIR%%/html/online/getting_started.html
-%%DATADIR%%/html/online/gmxcheck.html
-%%DATADIR%%/html/online/gmxdemo.html
-%%DATADIR%%/html/online/gmxdump.html
 %%DATADIR%%/html/online/gro.html
-%%DATADIR%%/html/online/grompp.html
-%%DATADIR%%/html/online/hat.html
-%%DATADIR%%/html/online/highway.html
-%%DATADIR%%/html/online/include_bot.html
-%%DATADIR%%/html/online/include_top.html
 %%DATADIR%%/html/online/itp.html
 %%DATADIR%%/html/online/log.html
 %%DATADIR%%/html/online/m2p.html
-%%DATADIR%%/html/online/make_edi.html

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?53e6b6bd.2dcc.de215ed>