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

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/f578df0c2a5e1479fa834624b11e487ed79b23cb">https://github.com/macports/macports-ports/commit/f578df0c2a5e1479fa834624b11e487ed79b23cb</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 f578df0  scidavis: remove unnecessary reinplace instructions in case of standard prefix
</span>f578df0 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit f578df0c2a5e1479fa834624b11e487ed79b23cb
</span>Author: Nicolas Pavillon <nicos@macports.org>
AuthorDate: Tue May 8 22:49:58 2018 +0900

<span style='display:block; white-space:pre;color:#404040;'>    scidavis: remove unnecessary reinplace instructions in case of standard prefix
</span>---
 science/scidavis/Portfile | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/science/scidavis/Portfile b/science/scidavis/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 7dc8a01..f6696db 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/science/scidavis/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/science/scidavis/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -41,15 +41,17 @@ configure.pre_args-append   "'CONFIG+=osx_dist noassistant'"
</span> 
 pre-configure {
     reinplace "s|/usr|${prefix}|g" ${worksrcpath}/config.pri
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    reinplace "s|/opt/local|${prefix}|g" ${worksrcpath}/config.pri
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-    reinplace "s|/opt/local|${prefix}|g" ${worksrcpath}/mkMacDist.sh
</span>     reinplace "s|/usr|${prefix}|g" ${worksrcpath}/fitPlugins/exp_saturation/exp_saturation.pro
     reinplace "s|/usr|${prefix}|g" ${worksrcpath}/fitPlugins/explin/explin.pro
     reinplace "s|/usr|${prefix}|g" ${worksrcpath}/fitPlugins/fitRational0/fitRational0.pro
     reinplace "s|/usr|${prefix}|g" ${worksrcpath}/fitPlugins/fitRational1/fitRational1.pro
     reinplace "s|/usr|${prefix}|g" ${worksrcpath}/fitPlugins/planck_wavelength/planck_wavelength.pro
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    reinplace "s|@PREFIX@|${prefix}|g" ${worksrcpath}/3rdparty/liborigin/CMakeLists.txt
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    if {${prefix} ne "/opt/local"} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        reinplace "s|/opt/local|${prefix}|g" ${worksrcpath}/config.pri
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        reinplace "s|/opt/local|${prefix}|g" ${worksrcpath}/mkMacDist.sh
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        reinplace "s|@PREFIX@|${prefix}|g" ${worksrcpath}/3rdparty/liborigin/CMakeLists.txt
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    }
</span> 
     if {![variant_isset python27]} {
         reinplace "s|CONFIG+=python| |g" \
</pre><pre style='margin:0'>

</pre>