<pre style='margin:0'>
Renee Otten (reneeotten) pushed a commit to branch master
in repository macports-ports.

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/f544ed2b255f312cab69d0670e82c040b091a527">https://github.com/macports/macports-ports/commit/f544ed2b255f312cab69d0670e82c040b091a527</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 f544ed2b255 xaos: use `${build.dir}` for convenience
</span>f544ed2b255 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit f544ed2b255f312cab69d0670e82c040b091a527
</span>Author: Szabolcs Horvát <szhorvat@gmail.com>
AuthorDate: Sun Nov 3 20:29:51 2024 +0000

<span style='display:block; white-space:pre;color:#404040;'>    xaos: use `${build.dir}` for convenience
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>     - Use `${build.dir}` for convenience
</span><span style='display:block; white-space:pre;color:#404040;'>     - Use remove unnecessary platform line
</span>---
 graphics/xaos/Portfile | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/graphics/xaos/Portfile b/graphics/xaos/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 4ab347443be..e32b99bd56a 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/graphics/xaos/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/graphics/xaos/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -12,7 +12,6 @@ github.tarball_from     archive
</span> 
 name                    xaos
 categories              graphics math
<span style='display:block; white-space:pre;background:#ffe0e0;'>-platforms               darwin
</span> license                 GPL-2+
 maintainers             nomaintainer
 
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -53,10 +52,10 @@ cmake.module_path-append \
</span> 
 destroot {
     # See tools/deploy-mac for the origin of the following four steps:
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    file mkdir ${workpath}/build/XaoS.app/Contents/Resources/examples/
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-    copy {*}[glob ${worksrcpath}/examples/*/*] ${workpath}/build/XaoS.app/Contents/Resources/examples/
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-    copy ${worksrcpath}/catalogs ${workpath}/build/XaoS.app/Contents/Resources/
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-    copy ${worksrcpath}/tutorial ${workpath}/build/XaoS.app/Contents/Resources/
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    file mkdir ${build.dir}/XaoS.app/Contents/Resources/examples/
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    copy {*}[glob ${worksrcpath}/examples/*/*] ${build.dir}/XaoS.app/Contents/Resources/examples/
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    copy ${worksrcpath}/catalogs ${build.dir}/XaoS.app/Contents/Resources/
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    copy ${worksrcpath}/tutorial ${build.dir}/XaoS.app/Contents/Resources/
</span> 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    move ${workpath}/build/XaoS.app ${destroot}${applications_dir}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    move ${build.dir}/XaoS.app ${destroot}${applications_dir}
</span> }
</pre><pre style='margin:0'>

</pre>