<pre style='margin:0'>
Chris Jones (cjones051073) pushed a commit to branch master
in repository macports-ports.

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/7659cb144f60b8e996cc30f6e946e199a21d7500">https://github.com/macports/macports-ports/commit/7659cb144f60b8e996cc30f6e946e199a21d7500</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 7659cb1  root6: check for active variants when declaring x11/cocoa as default Closes: https://trac.macports.org/ticket/58953
</span>7659cb1 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 7659cb144f60b8e996cc30f6e946e199a21d7500
</span>Author: Chris Jones <jonesc@macports.org>
AuthorDate: Tue Nov 12 10:30:31 2019 +0000

<span style='display:block; white-space:pre;color:#404040;'>    root6: check for active variants when declaring x11/cocoa as default
</span><span style='display:block; white-space:pre;color:#404040;'>    Closes: https://trac.macports.org/ticket/58953
</span>---
 science/root6/Portfile | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/science/root6/Portfile b/science/root6/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 1a53bbc..1e2db81 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/science/root6/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/science/root6/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -216,9 +216,13 @@ if { ${configure.cxx_stdlib} ne "libc++" } {
</span> 
 # Configure the graphics backend. cocoa on OSX10.8 and newer. X11 otherwise
 if { ${os.major} >= 12 } {
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    default_variants-append +cocoa
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    if {![variant_isset x11]} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        default_variants-append +cocoa
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    }
</span> } else {
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    default_variants-append +x11
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    if {![variant_isset cocoa]} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        default_variants-append +x11
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    }
</span> }
 
 # Enable xrootd support by default
</pre><pre style='margin:0'>

</pre>