Re: openbrowser

2016-04-02 Thread Mark Brethen
The plist format has also changed, I think. > On Apr 2, 2016, at 6:36 PM, Ryan Schmidt wrote: > > On Apr 2, 2016, at 2:16 PM, Mark Brethen wrote: >> >> Ryan, >> >> I received an error message from openbrowser: >> >> starting help:

Re: openbrowser

2016-04-02 Thread Ryan Schmidt
On Apr 2, 2016, at 2:16 PM, Mark Brethen wrote: > > Ryan, > > I received an error message from openbrowser: > > starting help: openbrowser /opt/local/share/doc/CalculiX/cgx_2.10/cgx/cgx.html > parse_plist_file: file >

openbrowser

2016-04-02 Thread Mark Brethen
Ryan, I received an error message from openbrowser: starting help: openbrowser /opt/local/share/doc/CalculiX/cgx_2.10/cgx/cgx.html parse_plist_file: file [/Users/marbre/Library/Preferences/com.apple.LaunchServices.plist] does not exist! at /opt/local/bin/openbrowser line 19. I looked in my

Re: PortGroup directory hierarchy/priority

2016-04-02 Thread Christopher Jones
> On 2 Apr 2016, at 7:48 pm, René J.V. Bertin wrote: > > On Saturday April 02 2016 19:27:38 Rainer Müller wrote: > >> This is not in any way slower than rsync. With no actual changes, a > > Maybe not if you do it very regularly. That quickly changes once you start >

Re: PortGroup directory hierarchy/priority

2016-04-02 Thread René J . V . Bertin
On Saturday April 02 2016 19:27:38 Rainer Müller wrote: > This is not in any way slower than rsync. With no actual changes, a Maybe not if you do it very regularly. That quickly changes once you start increasing the intervals, in my experience. > > It seems to me that it is above all

Re: destroot

2016-04-02 Thread Rainer Müller
On 2016-04-02 18:17, Mark Brethen wrote: > I have to manually move an examples directory to destroot. xinstall > will let you either create directories or copy files, not both. Is > there a simpler method to copy the entire directory? post-destroot { copy ${worksrcpath}/examples

Re: PortGroup directory hierarchy/priority

2016-04-02 Thread Rainer Müller
On 2016-04-01 17:20, René J.V. Bertin wrote: > On Friday April 01 2016 15:18:08 Rainer Müller wrote: >> On 2016-03-31 22:36, René J. V. Bertin wrote: > >> Just use a subversion checkout, replace the file and leave it in >> modified, uncommitted state. You will still get all other changes with >>

Re: destroot

2016-04-02 Thread Jeremy Lavergne
Check out fs-traverse. On 04/02/2016 12:17 PM, Mark Brethen wrote: > I have to manually move an examples directory to destroot. xinstall will let > you either create directories or copy files, not both. Is there a simpler > method to copy the entire directory?

destroot

2016-04-02 Thread Mark Brethen
I have to manually move an examples directory to destroot. xinstall will let you either create directories or copy files, not both. Is there a simpler method to copy the entire directory? mark ___ macports-dev mailing list

Re: html and postscript viewer

2016-04-02 Thread Mark Brethen
After reviewing: https://trac.macports.org/wiki/PortfileRecipes#compiler I tried: compiler.blacklist *clang* *llvm-gcc-4.2 compiler.whitelist macports-gcc-4.9 pre-build { build.args CC=${configure.cc} \ CXX=${configure.cxx} } This builds with

Re: html and postscript viewer

2016-04-02 Thread Mark Brethen
It fails in a similar fashion, which is why I don’t think my first attempt actually used gcc 4.9. What are the commands to set a default compiler? > On Apr 2, 2016, at 4:45 AM, Joshua Root wrote: > > Sounds like they could use some help with their code. If you want to make

Re: html and postscript viewer

2016-04-02 Thread Joshua Root
BTW, the author of that guide also seems to be under the mistaken impression that Xcode includes GCC 5.1... - Josh On 2016-4-2 20:45 , Joshua Root wrote: Sounds like they could use some help with their code. If you want to make your own version of a function like abs that behaves differently

Re: html and postscript viewer

2016-04-02 Thread Joshua Root
Sounds like they could use some help with their code. If you want to make your own version of a function like abs that behaves differently to the stdlib one, defining a macro with the same name is not the way to go about it. It's likely to misbehave regardless of which compiler you use, just

Re: html and postscript viewer

2016-04-02 Thread Mark Brethen
From their installation guide: For the compilation of cgx, therefore, the unmodified GCC 4.9 is required because the modified (by Apple) GCC for several reasons is not suitable for the compilation of cgx … The modified GCC includes the individual compilers: gcc (GNU c compiler), g++ and clang.