<pre style='margin:0'>
Perry E. Metzger (pmetzger) pushed a commit to branch master
in repository macports-ports.

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/dc82b431b880e9a146929e17c5516cd5854a6e06">https://github.com/macports/macports-ports/commit/dc82b431b880e9a146929e17c5516cd5854a6e06</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 dc82b43  BGHUDAppKit: fix build with XCode 10
</span>dc82b43 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit dc82b431b880e9a146929e17c5516cd5854a6e06
</span>Author: Michael Lass <michael.lass@uni-paderborn.de>
AuthorDate: Fri Oct 5 13:15:32 2018 +0200

<span style='display:block; white-space:pre;color:#404040;'>    BGHUDAppKit: fix build with XCode 10
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    XCode's new build system does not work for this port for reasons
</span><span style='display:block; white-space:pre;color:#404040;'>    not yet understood. As a workaround, switch to the old build system.
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    This issue was discussed under
</span><span style='display:block; white-space:pre;color:#404040;'>    https://lists.macports.org/pipermail/macports-dev/2018-October/039438.html
</span><span style='display:block; white-space:pre;color:#404040;'>    and is tracked for several ports as #57234.
</span>---
 aqua/BGHUDAppKit/Portfile | 8 ++++++++
 1 file changed, 8 insertions(+)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/aqua/BGHUDAppKit/Portfile b/aqua/BGHUDAppKit/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 5a55e5e..2c8d6c8 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/aqua/BGHUDAppKit/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/aqua/BGHUDAppKit/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -25,6 +25,14 @@ if {[vercmp $xcodeversion 5] >=0} {
</span>     patchfiles-append xcode5.patch
 }
 
<span style='display:block; white-space:pre;background:#e0ffe0;'>+# This is a temporary kludge. The new Xcode build system fails to
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+# build and destroot this for reasons that are poorly understood.
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+# Remove this when a better fix is known.
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+if {[vercmp ${xcodeversion} 10.0] >= 0} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    build.pre_args      -UseNewBuildSystem=NO
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    destroot.pre_args   -UseNewBuildSystem=NO
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span> post-destroot {
     move ${destroot}${frameworks_dir}/BGHUDAppKitPlugin.ibplugin ${destroot}${frameworks_dir}/BGHUDAppKit.framework/Resources
 }
</pre><pre style='margin:0'>

</pre>