gnuplot disables X11 by default
Reported by: |
mdales@… |
Owned by: |
rshaw@… |
Priority:
|
Normal
|
Milestone:
|
|
Component:
|
ports
|
Version:
|
1.0
|
Keywords:
|
|
Cc:
|
jpm@…
|
Port:
|
gnuplot
|
|
|
the default configure arguments in the gnuplot Portfile disables X11 support. I'd venture that this
should be on by default, given that a lot of other ports require X11, and that it ships with Panther.
As requested by felix, I've submitted a patch for the portfile below, fixing the configuration line
and altering the maintainer to myself. Here's the diff:
--- Portfile.old Mon Oct 6 13:30:12 2003
+++ Portfile Mon Oct 6 13:53:30 2003
@@ -5,7 +5,7 @@
version 3.8h.0
revision 0
categories math science
-maintainers jpm@opendarwin.org
+maintainers mdales@opendarwin.org
description A command-driven interactive function plotting program
long_description Gnuplot is a command-driven interactive function \
plotting program. Plots any number of functions, built up of C \
@@ -19,7 +19,7 @@
patchfiles patch-term.h
configure.env LDFLAGS="-L${prefix}/lib" \
CPPFLAGS="-I${prefix}/include -no-cpp-precomp"
-configure.args --with-readline=gnu --with-gd --without-x
+configure.args --with-readline=gnu --with-gd
destroot.destdir prefix=${destroot}${prefix}
variant x11 {
diff between old portfile and changed portfile