OK - I would stick to gfortran if you can. Indeed you seem to have problem with incompatibility between metis, mpi, gfortran (or intel). And indeed, by default a compilation of METIS will produce:
CMake Error at /home/HR/sbo/opentelemac/libs/metis-5.0.2/build/Linux-x86_64/include/cmake_install.cmake:36 (FILE):
file INSTALL cannot copy file
"/home/HR/sbo/opentelemac/libs/metis-5.0.2/include/metis.h" to
"/usr/local/include/metis.h".
Call Stack (most recent call first):
cmake_install.cmake:37 (INCLUDE)
In order to change that if you do not have access to /usr, you can do as follows:
make config prefix=~/opentelemac/libs/
(after having created ~/opentelemac/libs/)
and then
With that, it should create a bin, a include and a lib directory, and the lib includes libmetis.a which you can point to in your TELEMAC config file.
Note, you can probably install metis with intel as well.
Hope this helps,
Sébastien.