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

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/90ce7b634af5fa5822443c421dbd2e2027d3de32">https://github.com/macports/macports-ports/commit/90ce7b634af5fa5822443c421dbd2e2027d3de32</a></p>
<pre style="white-space: pre; background: #F8F8F8"><span style='display:block; white-space:pre;color:#808000;'>commit 90ce7b634af5fa5822443c421dbd2e2027d3de32
</span>Author: Nicklas Larsson <n_larsson@yahoo.com>
AuthorDate: Wed Nov 22 11:15:47 2023 +0100

<span style='display:block; white-space:pre;color:#404040;'>    postgis3: set config args and avoid opportunistic build
</span>---
 databases/postgis3/Portfile | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/databases/postgis3/Portfile b/databases/postgis3/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 2d4edb2e94a..c625eb32e13 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/databases/postgis3/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/databases/postgis3/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -43,6 +43,12 @@ conflicts           postgis postgis2
</span> 
 compiler.thread_local_storage yes
 
<span style='display:block; white-space:pre;background:#e0ffe0;'>+configure.args-append \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                    --without-address-standardizer \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                    --without-raster \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                    --without-sfcgal \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                    --without-topology
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span> configure.cflags-append \
                     -Diconv=libiconv -Diconv_open=libiconv_open -Diconv_close=libiconv_close
 
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -106,17 +112,17 @@ foreach s ${pg_suffixes} {
</span> 
 variant raster description {Build raster support} {
     depends_lib-append      port:gdal
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    configure.args-append   --with-raster
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    configure.args-replace  --without-raster --with-raster
</span>     configure.args-append   --with-gdalconfig=${prefix}/bin/gdal-config
 }
 
 variant sfcgal description {Uses SFCGAL for 3D queries} {
     depends_lib-append      port:sfcgal
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    configure.args-append   --with-sfcgal=${prefix}/bin/sfcgal-config
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    configure.args-replace  --without-sfcgal --with-sfcgal=${prefix}/bin/sfcgal-config
</span> }
 
 variant topology description {Build topology support} {
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    configure.args-append   --with-topology
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    configure.args-replace  --without-topology --with-topology
</span> }
 
 default_variants    +raster +topology
</pre><pre style='margin:0'>

</pre>