<pre style='margin:0'>
MarcusCalhoun-Lopez pushed a commit to branch master
in repository macports-ports.

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/974dce11afa3af6a9544501ff692d3fde34ec819">https://github.com/macports/macports-ports/commit/974dce11afa3af6a9544501ff692d3fde34ec819</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 974dce1  gnuplot: use C++11, required by latest Qt versions
</span>974dce1 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 974dce11afa3af6a9544501ff692d3fde34ec819
</span>Author: Marcus Calhoun-Lopez <mcalhoun@macports.org>
AuthorDate: Sun Jul 9 10:51:13 2017 -0700

<span style='display:block; white-space:pre;color:#404040;'>    gnuplot: use C++11, required by latest Qt versions
</span>---
 math/gnuplot/Portfile | 14 ++++++++------
 1 file changed, 8 insertions(+), 6 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 9f8c3c3..761615c 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;'>@@ -108,13 +108,15 @@ variant qt conflicts qt5 description "Enable qt terminal with Qt 4" {
</span> }
 
 variant qt5 conflicts qt description "Enable qt terminal with Qt 5" {
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    if { ${configure.cxx_stdlib} ne "libc++" } {
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-        ui_warn "Gnuplot should be compiled against libc++ if you want to use Qt 5."
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-    }
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    # Latest versions of Qt require C++11
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    PortGroup qt5   1.0
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    PortGroup cxx11 1.0
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    configure.cxxflags-append   -std=c++11
</span> 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    depends_lib-append          port:qt5-qtbase \
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-                                port:qt5-qtsvg \
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-                                port:qt5-qttools
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    qt5.depends_component       qtbase   \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                                qtsvg    \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                                qttools
</span> 
     configure.args-replace      --without-qt --with-qt=qt5
 }
</pre><pre style='margin:0'>

</pre>