<pre style='margin:0'>
Frank Schima (mf2k) pushed a commit to branch master
in repository macports-ports.

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/7ec5110be2cd0c5f659c36d7721243558458b1e4">https://github.com/macports/macports-ports/commit/7ec5110be2cd0c5f659c36d7721243558458b1e4</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 7ec5110  coreutils: Prevent conflict with gegl  - Rename gcut to gnucut
</span>7ec5110 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 7ec5110be2cd0c5f659c36d7721243558458b1e4
</span>Author: Frank Schima <mf2k@macports.org>
AuthorDate: Tue Dec 26 13:07:29 2017 -0700

<span style='display:block; white-space:pre;color:#404040;'>    coreutils: Prevent conflict with gegl
</span><span style='display:block; white-space:pre;color:#404040;'>     - Rename gcut to gnucut
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    Fixes: https://trac.macports.org/ticket/55327
</span>---
 sysutils/coreutils/Portfile | 10 ++++++++++
 1 file changed, 10 insertions(+)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/sysutils/coreutils/Portfile b/sysutils/coreutils/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 58e8172..0b4d704 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/sysutils/coreutils/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/sysutils/coreutils/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -5,6 +5,7 @@ PortSystem      1.0
</span> name            coreutils
 conflicts       gexpr
 version         8.28
<span style='display:block; white-space:pre;background:#e0ffe0;'>+revision        1
</span> categories      sysutils
 platforms       darwin
 license         GPL-3+
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -56,14 +57,23 @@ post-destroot {
</span>     xinstall -m 0644 -W ${worksrcpath} AUTHORS COPYING ChangeLog NEWS README \
         THANKS THANKS-to-translators TODO ${destroot}${docdir}
 
<span style='display:block; white-space:pre;background:#e0ffe0;'>+    # Prevent conflict with gegl
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    # See https://trac.macports.org/ticket/55327
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    move ${destroot}${prefix}/bin/gcut ${destroot}${prefix}/bin/gnucut
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span>     xinstall -m 755 -d ${destroot}${prefix}/libexec/gnubin
     foreach binary [glob -tails -directory ${destroot}${prefix}/bin g*] {
         ln -s ${prefix}/bin/${binary} ${destroot}${prefix}/libexec/gnubin/[string range $binary 1 end]
     }
<span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+   # Fix symlink to gnucut
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+   move ${destroot}${prefix}/libexec/gnubin/nucut ${destroot}${prefix}/libexec/gnubin/gnucut
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span>     xinstall -m 755 -d ${destroot}${prefix}/libexec/gnubin/man/man1
     foreach manpage [glob -tails -directory ${destroot}${prefix}/share/man/man1 g*] {
         ln -s ${prefix}/share/man/man1/${manpage}.gz ${destroot}${prefix}/libexec/gnubin/man/man1/[string range $manpage 1 end].gz
     }
<span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span> }
 
 # Set the RUN_EXPENSIVE_TESTS environmental variable to 'yes' to run more
</pre><pre style='margin:0'>

</pre>