<pre style='margin:0'>
Joshua Root (jmroot) pushed a commit to branch master
in repository macports-ports.

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/9f48f14da1d6ac2594850c801f888d7e52bb931d">https://github.com/macports/macports-ports/commit/9f48f14da1d6ac2594850c801f888d7e52bb931d</a></p>
<pre style="white-space: pre; background: #F8F8F8">The following commit(s) were added to refs/heads/master by this push:
<span style='display:block; white-space:pre;color:#404040;'>     new 9f48f14da1d gnuplot: default to +qt5 on platforms where it works
</span>9f48f14da1d is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 9f48f14da1d6ac2594850c801f888d7e52bb931d
</span>Author: Joshua Root <jmr@macports.org>
AuthorDate: Fri Sep 20 07:35:43 2024 +1000

<span style='display:block; white-space:pre;color:#404040;'>    gnuplot: default to +qt5 on platforms where it works
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    See: https://trac.macports.org/ticket/70357
</span>---
 math/gnuplot/Portfile | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/math/gnuplot/Portfile b/math/gnuplot/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 290979552a6..24542a71eef 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/math/gnuplot/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/math/gnuplot/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -118,8 +118,7 @@ variant qt5 conflicts qt description "Enable qt terminal with Qt 5" {
</span>     compiler.cxx_standard       2011
     configure.cxxflags-append   -std=c++11
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    qt5.depends_component       qtbase   \
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-                                qtsvg    \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    qt5.depends_component       qtsvg    \
</span>                                 qttools
 
     configure.args-replace      --without-qt --with-qt=qt5
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -132,7 +131,14 @@ variant old_bitmap_terminals description "Enable PBM (Portable Bit Map) and othe
</span>     configure.args-replace      --without-bitmap-terminals --with-bitmap-terminals
 }
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-default_variants                +luaterm +pangocairo +qt
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+default_variants                +luaterm +pangocairo
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+if {![variant_isset qt] && ![variant_isset qt5]} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    if {${os.platform} eq "darwin" && ${os.major} < 19} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        default_variants-append +qt
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    } else {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        default_variants-append +qt5
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    }
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+}
</span> 
 # aquaterm is currently not building on 10.4
 if {${os.platform} eq "darwin" && ${os.major} > 8} {
</pre><pre style='margin:0'>

</pre>