<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/bebf7a673f8dbf63870cf3c2055f159ce30ec9d4">https://github.com/macports/macports-ports/commit/bebf7a673f8dbf63870cf3c2055f159ce30ec9d4</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 bebf7a6  seqan-apps: Fix build on older operating systems
</span>bebf7a6 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit bebf7a673f8dbf63870cf3c2055f159ce30ec9d4
</span>Author: rrahn <rene.rahn@fu-berlin.de>
AuthorDate: Tue Feb 5 15:00:55 2019 +0100

<span style='display:block; white-space:pre;color:#404040;'>    seqan-apps: Fix build on older operating systems
</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/55850
</span>---
 science/seqan-apps/Portfile | 15 ++++++++++-----
 1 file changed, 10 insertions(+), 5 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/science/seqan-apps/Portfile b/science/seqan-apps/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 5f1982c..d7e1290 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/science/seqan-apps/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/science/seqan-apps/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -2,6 +2,7 @@
</span> 
 PortSystem          1.0
 PortGroup           cmake 1.0
<span style='display:block; white-space:pre;background:#e0ffe0;'>+PortGroup           cxx11 1.1
</span> 
 name                seqan-apps
 version             2.2.0
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -29,12 +30,16 @@ distname            seqan-seqan-v${version}
</span> checksums           rmd160  c8f7ba426d96339bfa96ae735f0a2cae219e0020 \
                     sha256  6add074932c2723ef1fb658c88f906bdd6ced1fc34cb16a7410251ffc4cb8cc8
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-# llvm-gcc42 is broken and won't be fixed anymore, see: https://trac.macports.org/ticket/40713
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-# For OpenMP only the apple clang version really needs to be blacklisted.
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-# Macports clang-3.8 and higher fully support OpenMP 3.1, so we make them the default fallback option and remove gcc from this list.
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+# Update the compiler blacklist from cxx11 1.1 PortGroup.
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+# Minimum requirement is gcc>=4.9 and clang>=3.5
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+# Apple clang (provided by Xcode) does not support OpenMP
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+# Macports clang-3.8 and higher fully support OpenMP 3.1, so we make them the default fallback option in case gcc
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+# is blacklisted by cxx11 1.1 PortGroup
</span> 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-compiler.blacklist  *gcc* *clang-3.7 *clang-3.6 *clang-3.5 *clang-3.4 *clang-3.3 *dragonegg*
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-compiler.fallback   macports-clang-3.9 macports-clang-3.8
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+compiler.blacklist-append  macports-gcc-4.6 macports-gcc-4.7 macports-gcc-4.8  \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                           clang *clang-3.7 *clang-3.6 *clang-3.5 *clang-3.4 *clang-3.3 \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                           *dragonegg*
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+compiler.fallback-append   macports-clang-6.0 macports-clang-5.0 macports-clang-4.0 macports-clang-3.9 macports-clang-3.8
</span> 
 configure.args-append   -DSEQAN_BUILD_SYSTEM=SEQAN_RELEASE_APPS
 
</pre><pre style='margin:0'>

</pre>