#36010: ghostscript upgrade failing ------------------------------+--------------------------------------------- Reporter: bpabbott@… | Owner: takanori@… Type: defect | Status: new Priority: Normal | Milestone: Component: ports | Version: 2.1.2 Keywords: | Port: ghostscript ------------------------------+--------------------------------------------- Comment(by bpabbott@…): Jon, Run gnuplot and try some tests. {{{ $ gnuplot gnuplot> set term x11 Terminal type set to 'x11' Options are ' nopersist' gnuplot> plot sin(x) gnuplot> set term aqua Terminal type set to 'aqua' Options are '0 title "Figure 0" size 846,594 font "Times-Roman,14" noenhanced solid' gnuplot> plot sin(x) gnuplot> quit }}} If everything works, then run the MacPorts version of Octave and type ... {{{ system ("which gnuplot") }}} ... and tell us what it returns. If it finds /opt/local/bin/gnuplot, try running gnuplot from Octave. {{{ setenv GNUTERM aqua [status, output] = system ('gnuplot -e "plot sin(x)" --persist') status = 0 output = }}} That should produce a plot and return "status" and "output". Tell us what "status" and "output" return. Next try x11 ... {{{ setenv GNUTERM x11 [status, output] = system ('gnuplot -e "plot sin(x)" --persist') status = 0 output = }}} ... and tell us what "status" and "output" return. -- Ticket URL: <https://trac.macports.org/ticket/36010#comment:9> MacPorts <http://www.macports.org/> Ports system for Mac OS