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

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/8e2f54847de6bef47b90b91ea862b4ba6e0719d6">https://github.com/macports/macports-ports/commit/8e2f54847de6bef47b90b91ea862b4ba6e0719d6</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 8e2f54847de openssl10: add a compatability dir
</span>8e2f54847de is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 8e2f54847de6bef47b90b91ea862b4ba6e0719d6
</span>Author: Ken Cunningham <ken.cunningham.webuse@gmail.com>
AuthorDate: Fri Oct 1 22:50:52 2021 -0700

<span style='display:block; white-space:pre;color:#404040;'>    openssl10: add a compatability dir
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    some software expects openssl to
</span><span style='display:block; white-space:pre;color:#404040;'>    be installed all in one directory
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    our existing openssl10 and the new openssl11 that
</span><span style='display:block; white-space:pre;color:#404040;'>    followed openssl10 do things slightly differently
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    add a compatability directory in ${prefix}/libexec that
</span><span style='display:block; white-space:pre;color:#404040;'>    makes a typicsl openssl install directory to support
</span><span style='display:block; white-space:pre;color:#404040;'>    software that wants that
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    see: https://trac.macports.org/ticket/63550
</span>---
 devel/openssl10/Portfile | 9 +++++++++
 1 file changed, 9 insertions(+)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/devel/openssl10/Portfile b/devel/openssl10/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 894a846d3da..e88c57b9917 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/devel/openssl10/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/devel/openssl10/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -5,6 +5,7 @@ PortGroup           muniversal 1.0
</span> 
 name                openssl10
 version             1.0.2u
<span style='display:block; white-space:pre;background:#e0ffe0;'>+revision            1
</span> 
 categories          devel security
 platforms           darwin
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -114,6 +115,14 @@ post-destroot {
</span> 
     file delete -force ${destroot}${prefix}/etc
     file delete ${destroot}${prefix}/bin/c_rehash
<span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    # make a typical isolated library install dir for ports that require that
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    xinstall -d ${destroot}${prefix}/libexec/openssl-1.0
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    xinstall -d ${destroot}${prefix}/libexec/openssl-1.0/include
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    xinstall -d ${destroot}${prefix}/libexec/openssl-1.0/bin
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    ln -s ${prefix}/include/openssl-1.0/openssl ${destroot}${prefix}/libexec/openssl-1.0/include
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    ln -s ${prefix}/lib/openssl-1.0             ${destroot}${prefix}/libexec/openssl-1.0/lib
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    ln -s ${prefix}/bin/openssl-1.0             ${destroot}${prefix}/libexec/openssl-1.0/bin/openssl
</span> }
 
 destroot.destdir    INSTALL_PREFIX=${destroot}
</pre><pre style='margin:0'>

</pre>