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

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/5717522fa8ab969b71e7625cfe8478e5d165c065">https://github.com/macports/macports-ports/commit/5717522fa8ab969b71e7625cfe8478e5d165c065</a></p>
<pre style="white-space: pre; background: #F8F8F8"><span style='display:block; white-space:pre;color:#808000;'>commit 5717522fa8ab969b71e7625cfe8478e5d165c065
</span>Author: Ryan Schmidt <ryandesign@macports.org>
AuthorDate: Wed Jun 20 21:11:09 2018 -0500

<span style='display:block; white-space:pre;color:#404040;'>    minivmac*: Rename my_mnvm_dat variable to mnvm_data_dir
</span>---
 emulators/minivmac-devel/Portfile | 14 +++++++-------
 emulators/minivmac/Portfile       | 14 +++++++-------
 2 files changed, 14 insertions(+), 14 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/emulators/minivmac-devel/Portfile b/emulators/minivmac-devel/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 4648eba..56b5b36 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/emulators/minivmac-devel/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/emulators/minivmac-devel/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -174,7 +174,7 @@ if {${my_subport} eq ${my_name}} {
</span>     worksrcdir                  configure
     build.dir                   ${workpath}/build
     extract.mkdir               yes
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    set my_mnvm_dat             "${worksrcpath}/${my_bootstrap_app}/Contents/mnvm_dat"
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    set mnvm_data_dir           ${worksrcpath}/${my_bootstrap_app}/Contents/mnvm_dat
</span>     set mnvm_output_dir         ${worksrcpath}
 
     post-extract {
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -207,10 +207,10 @@ if {${my_subport} eq ${my_name}} {
</span>         delete ${worksrcpath}/${my_system_disk_container_decompressed}
 
         # Make the data directory, where Mini vMac looks for the files it needs.
<span style='display:block; white-space:pre;background:#ffe0e0;'>-        file mkdir ${my_mnvm_dat}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        file mkdir ${mnvm_data_dir}
</span> 
         # Symlink the ROM file into the data directory.
<span style='display:block; white-space:pre;background:#ffe0e0;'>-        ln -s [my_real_rom_file] ${my_mnvm_dat}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        ln -s [my_real_rom_file] ${mnvm_data_dir}
</span> 
         # Use the prettier icon on the bootstrap app.
         copy -force ${worksrcpath}/${my_icons}/icons//AppIcon.icns ${worksrcpath}/${my_bootstrap_app}/Contents/Resources/
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -237,8 +237,8 @@ if {${my_subport} eq ${my_name}} {
</span> 
         # Copy the disk images into the data directory with sequentially-numbered
         # names so Mini vMac will find them and automatically mount them.
<span style='display:block; white-space:pre;background:#ffe0e0;'>-        copy -force "${worksrcpath}/Disk Tools.image" "${my_mnvm_dat}/disk1.dsk"
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-        copy -force ${worksrcpath}/${my_src}/${my_src}.dsk "${my_mnvm_dat}/disk3.dsk"
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        copy -force "${worksrcpath}/Disk Tools.image" ${mnvm_data_dir}/disk1.dsk
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        copy -force ${worksrcpath}/${my_src}/${my_src}.dsk ${mnvm_data_dir}/disk3.dsk
</span> 
         # Configure all variations.
         foreach my_arch [get_canonical_archs] {
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -261,8 +261,8 @@ if {${my_subport} eq ${my_name}} {
</span>                 }
 
                 # Write the configure args into the "doc" file on the AutQuit7 disk image.
<span style='display:block; white-space:pre;background:#ffe0e0;'>-                copy -force ${worksrcpath}/${my_autoquit}/${my_autoquit}.dsk ${my_mnvm_dat}/disk2.dsk
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-                reinplace -locale C "s|@START@\[ .\]*@END@|${padded_configure_args}|" ${my_mnvm_dat}/disk2.dsk
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                copy -force ${worksrcpath}/${my_autoquit}/${my_autoquit}.dsk ${mnvm_data_dir}/disk2.dsk
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                reinplace -locale C "s|@START@\[ .\]*@END@|${padded_configure_args}|" ${mnvm_data_dir}/disk2.dsk
</span> 
                 # Launch the bootstrap Mini vMac to run the configuration. When it's done
                 # it should automatically quit, but if not, we time out after awhile.
<span style='display:block; white-space:pre;color:#808080;'>diff --git a/emulators/minivmac/Portfile b/emulators/minivmac/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 75205f8..4c19baf 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/emulators/minivmac/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/emulators/minivmac/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -168,7 +168,7 @@ if {${my_subport} eq ${my_name}} {
</span>     worksrcdir                  configure
     build.dir                   ${workpath}/build
     extract.mkdir               yes
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    set my_mnvm_dat             "${worksrcpath}/${my_bootstrap_app}/Contents/mnvm_dat"
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    set mnvm_data_dir           ${worksrcpath}/${my_bootstrap_app}/Contents/mnvm_dat
</span>     set mnvm_output_dir         ${worksrcpath}
 
     post-extract {
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -201,10 +201,10 @@ if {${my_subport} eq ${my_name}} {
</span>         delete ${worksrcpath}/${my_system_disk_container_decompressed}
 
         # Make the data directory, where Mini vMac looks for the files it needs.
<span style='display:block; white-space:pre;background:#ffe0e0;'>-        file mkdir ${my_mnvm_dat}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        file mkdir ${mnvm_data_dir}
</span> 
         # Symlink the ROM file into the data directory.
<span style='display:block; white-space:pre;background:#ffe0e0;'>-        ln -s [my_real_rom_file] ${my_mnvm_dat}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        ln -s [my_real_rom_file] ${mnvm_data_dir}
</span> 
         # Use the prettier icon on the bootstrap app.
         copy -force ${worksrcpath}/${my_icons}/icons//AppIcon.icns ${worksrcpath}/${my_bootstrap_app}/Contents/Resources/
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -231,8 +231,8 @@ if {${my_subport} eq ${my_name}} {
</span> 
         # Copy the disk images into the data directory with sequentially-numbered
         # names so Mini vMac will find them and automatically mount them.
<span style='display:block; white-space:pre;background:#ffe0e0;'>-        copy -force "${worksrcpath}/Disk Tools.image" "${my_mnvm_dat}/disk1.dsk"
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-        copy -force ${worksrcpath}/${my_src}/${my_src}.dsk "${my_mnvm_dat}/disk3.dsk"
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        copy -force "${worksrcpath}/Disk Tools.image" ${mnvm_data_dir}/disk1.dsk
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        copy -force ${worksrcpath}/${my_src}/${my_src}.dsk ${mnvm_data_dir}/disk3.dsk
</span> 
         # Configure all variations.
         foreach my_arch [get_canonical_archs] {
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -254,8 +254,8 @@ if {${my_subport} eq ${my_name}} {
</span>                 }
 
                 # Write the configure args into the "doc" file on the AutQuit7 disk image.
<span style='display:block; white-space:pre;background:#ffe0e0;'>-                copy -force ${worksrcpath}/${my_autoquit}/${my_autoquit}.dsk ${my_mnvm_dat}/disk2.dsk
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-                reinplace -locale C "s|@START@\[ .\]*@END@|${padded_configure_args}|" ${my_mnvm_dat}/disk2.dsk
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                copy -force ${worksrcpath}/${my_autoquit}/${my_autoquit}.dsk ${mnvm_data_dir}/disk2.dsk
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                reinplace -locale C "s|@START@\[ .\]*@END@|${padded_configure_args}|" ${mnvm_data_dir}/disk2.dsk
</span> 
                 # Launch the bootstrap Mini vMac to run the configuration. When it's done
                 # it should automatically quit, but if not, we time out after awhile.
</pre><pre style='margin:0'>

</pre>