<pre style='margin:0'>
Christopher Nielsen (mascguy) pushed a commit to branch master
in repository macports-ports.
</pre>
<p><a href="https://github.com/macports/macports-ports/commit/ec31015818f6392564f025f5a93dc150833dffc5">https://github.com/macports/macports-ports/commit/ec31015818f6392564f025f5a93dc150833dffc5</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 ec31015818f supertux: fix allowing use of boost 1.76 * supertux's version file clashes with boost's, on case-insensitive filesystems * Thanks to Rene Otten for providing this
</span>ec31015818f is described below
<span style='display:block; white-space:pre;color:#808000;'>commit ec31015818f6392564f025f5a93dc150833dffc5
</span>Author: Christopher Nielsen <mascguy@github.com>
AuthorDate: Sun Jun 13 12:00:42 2021 -0400
<span style='display:block; white-space:pre;color:#404040;'> supertux: fix allowing use of boost 1.76
</span><span style='display:block; white-space:pre;color:#404040;'> * supertux's version file clashes with boost's, on case-insensitive filesystems
</span><span style='display:block; white-space:pre;color:#404040;'> * Thanks to Rene Otten for providing this
</span>---
games/supertux/Portfile | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
<span style='display:block; white-space:pre;color:#808080;'>diff --git a/games/supertux/Portfile b/games/supertux/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 72269fab7c9..93db8b87d4d 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/games/supertux/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/games/supertux/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -6,7 +6,7 @@ PortGroup github 1.0
</span> PortGroup boost 1.0
github.setup SuperTux supertux 0.6.2 v
<span style='display:block; white-space:pre;background:#ffe0e0;'>-revision 5
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+revision 6
</span>
github.tarball_from releases
distname SuperTux-v${version}-Source
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -36,8 +36,6 @@ compiler.cxx_standard 2014
</span> # don't use cpack -- this works better with MacPorts
configure.args-append -DDISABLE_CPACK_BUNDLING=ON
<span style='display:block; white-space:pre;background:#ffe0e0;'>-boost.version 1.71
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-
</span> depends_build-append port:pkgconfig
# also uses libsdl2_ttf, but insists on building it's own copy
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -58,6 +56,12 @@ depends_lib-append port:curl \
</span> port:physfs \
port:zlib
<span style='display:block; white-space:pre;background:#e0ffe0;'>+post-patch {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ # fix clash with boost's version file, on case-insensitive filesystems
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ set ver_file ${worksrcpath}/external/findlocale/VERSION
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ move ${ver_file} ${ver_file}.txt
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span> post-destroot {
# fix case of icons file -- use the system command as much shorter
system -W ${destroot}${applications_dir}/SuperTux.app/Contents/Resources "mv supertux.icns SuperTux.icns"
</pre><pre style='margin:0'>
</pre>