Hello, I added two new ports. The first one is a POSIX compliant GNU regex library. The other one is a scientific visualization tool, popular in atmosphere and oceanic sciences. The latter requires the former. Ticket #11555: GNU rx --- Oops, I forgot to set it as ``enhancement''. Ticket #11556: GrADS Takeshi
Thank you for commiting GrADS. However, there are a few loose ends. 1. a few ports required for GrADS are not yet commited. #11543 netcdf: nomaintainer. I submitted netcdf-3.6.2 and I can maintain this. #11542 udunits #11515 libnc-dap 2. I understand the use of Tcl, but I need a link to not-yet existing file (${prefix}/bin/${name}) at the destroot time. Tcl's file does not allow it. That was why I used "system". post-destroot { xinstall -d -m 755 ${destroot}${prefix}/share/${name}/ foreach file [glob -directory ${workpath} *.dat *res] { file rename ${file} ${destroot}${prefix}/share/${name}/ file link -symbolic ${destroot}${prefix}/bin/${name} $ {prefix}/bin/${name}dods } } should be: post-destroot { xinstall -d -m 755 ${destroot}${prefix}/share/${name}/ foreach file [glob -directory ${workpath} *.dat *res] { file rename ${file} ${destroot}${prefix}/share/${name}/ } system "ln -s ${prefix}/bin/${name}dods ${prefix}/bin/${name}" }
On Mar 16, 2007, at 11:17 AM, Takeshi Enomoto wrote:
post-destroot { xinstall -d -m 755 ${destroot}${prefix}/share/${name}/ foreach file [glob -directory ${workpath} *.dat *res] { file rename ${file} ${destroot}${prefix}/share/${name}/ file link -symbolic ${destroot}${prefix}/bin/${name} ${prefix}/bin/${name}dods } }
should be:
post-destroot { xinstall -d -m 755 ${destroot}${prefix}/share/${name}/ foreach file [glob -directory ${workpath} *.dat *res] { file rename ${file} ${destroot}${prefix}/share/${name}/ } system "ln -s ${prefix}/bin/${name}dods ${prefix}/bin/${name}" }
I fixed this in r22950, please let me know if now the Portfile looks as you expected it or if there are any problems, I'm happy to chime in and help with my commit bit ;-) Regards,... -jmpp
participants (2)
-
Juan Manuel Palacios
-
Takeshi Enomoto