<pre style='margin:0'>
Aaron Madlon-Kay (amake) pushed a commit to branch master
in repository macports-ports.

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/ca569403edbfe68092994423f8390b35f7598ba8">https://github.com/macports/macports-ports/commit/ca569403edbfe68092994423f8390b35f7598ba8</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 ca569403edb otfcc: use the right compiler, specify supported archs
</span>ca569403edb is described below

<span style='display:block; white-space:pre;color:#808000;'>commit ca569403edbfe68092994423f8390b35f7598ba8
</span>Author: Aaron Madlon-Kay <amake@macports.org>
AuthorDate: Tue Sep 29 18:18:30 2020 +0900

<span style='display:block; white-space:pre;color:#404040;'>    otfcc: use the right compiler, specify supported archs
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    Also
</span><span style='display:block; white-space:pre;color:#404040;'>    - Disable universal variant
</span><span style='display:block; white-space:pre;color:#404040;'>    - Fix categories
</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/61077
</span>---
 print/otfcc/Portfile | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/print/otfcc/Portfile b/print/otfcc/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 9dfc7fd0e36..c1a2bd6217c 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/print/otfcc/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/print/otfcc/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -2,10 +2,11 @@
</span> 
 PortSystem          1.0
 PortGroup           github 1.0
<span style='display:block; white-space:pre;background:#e0ffe0;'>+PortGroup           makefile 1.0
</span> 
 github.setup        caryll otfcc 0.10.4 v
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-categories          devel
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+categories          print devel
</span> maintainers         {amake @amake} openmaintainer
 description         Optimized OpenType builder and inspector
 long_description    A C library and utility used for parsing and writing \
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -21,10 +22,16 @@ checksums           sha256  41d5ddba898757b7a4883d47fa0e9e8d19fa80d61ca3bc1770c6
</span> depends_build-append \
                     port:premake5
 
<span style='display:block; white-space:pre;background:#e0ffe0;'>+use_configure       yes
</span> configure.cmd       ${prefix}/bin/premake5
 configure.pre_args
 configure.args      gmake
 
<span style='display:block; white-space:pre;background:#e0ffe0;'>+# The Makefile produced by premake5 understands "release_x64" and "release_x86"
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+# configurations; if there is a way to support other architectures or universal
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+# builds, I don't know how
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+universal_variant   no
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+supported_archs     i386 x86_64
</span> 
 if {${build_arch} eq "i386"} {
     set short_arch x86
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -33,7 +40,7 @@ if {${build_arch} eq "i386"} {
</span> }
 
 build.dir           ${worksrcpath}/build/gmake
<span style='display:block; white-space:pre;background:#ffe0e0;'>-build.args-append   config=release_${short_arch}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+build.args-append   config=release_${short_arch} verbose=true
</span> 
 destroot       {
     xinstall -m 0755 -W ${worksrcpath}/bin/release-${short_arch} otfccbuild otfccdump \
</pre><pre style='margin:0'>

</pre>