Different settings of CMAKE_INSTALL_NAME_DIR & CMAKE_INSTALL_LIBDIR => broken libraries

2016-03-25 Thread Mojca Miklavec
Hi, In Geant4 I'm using -DCMAKE_INSTALL_LIBDIR=${prefix}/lib/Geant4/Geant${version} to allow side-by-side installation of multiple versions of the software. However the latest release broke the behaviour and the libraries now point to a different path than where they are installed: > otool

Re: multiple distfiles from multiple sources and with multiple compression types

2016-03-25 Thread René J . V . Bertin
On Friday March 25 2016 20:59:47 Ian Rees wrote: Hi Ian, > for ccs, and a .tgz for spooles. As far as I could figure out, the fetch > step can handle multiple files, but the extract step can not.-Ian- That's what I figured would happen indeed. A related observation: you can only use one

Re: multiple distfiles from multiple sources and with multiple compression types

2016-03-25 Thread Ian Rees
Hi René, I had a similar situation recently making the Portfile for ccx: https://trac.macports.org/ticket/50810 . There is one .tar.bz2 download for ccs, and a .tgz for spooles. As far as I could figure out, the fetch step can handle multiple files, but the extract step can not.-Ian-

multiple distfiles from multiple sources and with multiple compression types

2016-03-25 Thread René J . V . Bertin
Hi, I have a case where I'd need to grab an xz'ed source tarball from one location, and a gzip'ed tarball from another (github's snapshot generator, to be exact). Is that possible with "base" or do I need to fetch the 2nd one manually in the post-fetch? R.