Added hooks to the Tcl code in magic for schematic-to-layout
conversion, adding an "Import SPICE" menu item to the magic setup
when the PDK is installed.  Only lightly tested, and needs some
additional development.
diff --git a/common/netlist_to_layout.py b/common/netlist_to_layout.py
index 0130340..f371cbb 100755
--- a/common/netlist_to_layout.py
+++ b/common/netlist_to_layout.py
@@ -217,7 +217,7 @@
     print('writeall force', file=ofile)
     print('quit -noprompt', file=ofile)
 
-def parse_layout(topname, lines, ofile):
+def parse_layout(topname, lines, library, ofile):
     global debugmode
 
     subrex = re.compile('.subckt[ \t]+(.*)$', re.IGNORECASE)
@@ -356,7 +356,7 @@
 
     with open(scriptpath, 'w') as ofile:
         generate_layout_start(library, ofile)
-        parse_layout(topname, spicelines, ofile)
+        parse_layout(topname, spicelines, library, ofile)
         generate_layout_end(ofile)
 
     myenv = os.environ.copy()