Re: help installing gnuplot

Juan Manuel Palacios <[email protected]> Fri, 25 Aug 2006 01:25:36 -0400
Newsgroups gmane.os.opendarwin.darwinports
Message-ID <[email protected]>
On Aug 24, 2006, at 9:51 PM, Anthony Agelastos wrote:

> On Aug 23, 2006, at 10:10 PM, Joyce E. Noah wrote:
>>
>> Thanks Adam for the heads up. I thought that xcode came installed.
>>
>> I managed to install gnuplot and all dependencies successfully. The 
>> command line
>> part of gnuplot seems functional, but I do not see the aquaTerm with 
>> the actual
>> graph. Any ideas?
> AquaTerm is not a dependency for gnuplot.
>


	It is, just not on the main body of the Portfile:

platform darwin {
         depends_lib-append      lib:libaquaterm.1:aquaterm
}

	A limitation of our base tools is that deps added by 
platforms/variants are not reported, but surely are acted upon, so 
building gnuplot on a darwin system (99% the likelihood if you're using 
*mac*ports ;-) will definitely call AquaTerm in.

	To use it as the gnuplot terminal the env variables can be used (nice 
hint!), but also:

set terminal aqua

	at the gnuplot prompt. HTH!


-jmpp