- Remove leading, undefined article from COMMENT - Add graphics/ImageMagick to RUN_DEPENDS - Enable garbage collection via devel/boehm-gc-threaded [1] - Sort variables - Use autotools [1] - Use texlive, and don't install files already installed by it [1] - Use options helpers - Add option OFFSCREEN (default off) to enable offscreen rendering using OSMesa library - Add support for stage dir [1] - Strip binary file asy - Add files/patch-configure.ac and files/patch-settings.cc - Remove Author field, and use a single space after WWW in pkg-descr [1] Release Notes: http://sourceforge.net/projects/asymptote/files/2.32/ PR: ports/190196 [1] Submitted by: Shin-ya Murakami <murashin@gfd-dennou.org>
16 lines
513 B
C++
16 lines
513 B
C++
--- ./settings.cc.orig 2014-05-22 18:11:31.000000000 +0200
|
|
+++ ./settings.cc 2014-05-27 05:26:36.000000000 +0200
|
|
@@ -94,10 +94,10 @@
|
|
#ifdef __APPLE__
|
|
string defaultPDFViewer="open";
|
|
#else
|
|
-string defaultPDFViewer="acroread";
|
|
+string defaultPDFViewer="gv";
|
|
#endif
|
|
string defaultGhostscript="gs";
|
|
-string defaultGhostscriptLibrary="/usr/lib/libgs.so";
|
|
+string defaultGhostscriptLibrary="/usr/local/lib/libgs.so";
|
|
string defaultDisplay="display";
|
|
string defaultAnimate="animate";
|
|
void queryRegistry() {}
|