summaryrefslogtreecommitdiff
path: root/cad
diff options
context:
space:
mode:
authorDmitry Marakasov <amdmi3@FreeBSD.org>2010-08-24 17:47:47 +0000
committerDmitry Marakasov <amdmi3@FreeBSD.org>2010-08-24 17:47:47 +0000
commit511b7bd219935d94d79faa583ad9598ba2fe068a (patch)
treeaeeb762b82ccb30795e7d461bb175ec01306d3fa /cad
parent- Add a patch to keep away from egg generation when setuptools is installed (diff)
- Update to 37
PR: 149027 Submitted by: Sven Esbjerg <esbjerg@xbsd.net> (maintainer)
Notes
Notes: svn path=/head/; revision=259922
Diffstat (limited to 'cad')
-rw-r--r--cad/pythoncad/Makefile16
-rw-r--r--cad/pythoncad/distinfo6
-rw-r--r--cad/pythoncad/files/patch-PythonCAD_Generic_preferences.py11
-rw-r--r--cad/pythoncad/files/patch-PythonCAD_Interface_Gtk_gtkimage.py11
-rw-r--r--cad/pythoncad/pkg-descr11
-rw-r--r--cad/pythoncad/pkg-plist511
6 files changed, 309 insertions, 257 deletions
diff --git a/cad/pythoncad/Makefile b/cad/pythoncad/Makefile
index a2c2d01dd846..237eef7895bd 100644
--- a/cad/pythoncad/Makefile
+++ b/cad/pythoncad/Makefile
@@ -7,10 +7,9 @@
#
PORTNAME= pythoncad
-PORTVERSION= 36
-PORTREVISION= 5
+PORTVERSION= 37
CATEGORIES= cad
-MASTER_SITES= http://www.pythoncad.org/releases/
+MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/R${PORTVERSION}/Source
DISTNAME= PythonCAD-DS1-R${PORTVERSION}
MAINTAINER= fbsd-ports@xbsd.net
@@ -18,12 +17,23 @@ COMMENT= An open-source CAD package built designed around Python
RUN_DEPENDS= ${PYTHON_SITELIBDIR}/gtk-2.0/gtk/__init__.py:${PORTSDIR}/x11-toolkits/py-gtk2
+LICENSE= GPLv2
+LICENSE_FILE= ${WRKSRC}/COPYING
+
USE_PYTHON= 2.2+
USE_PYDISTUTILS= yes
PYDISTUTILS_PKGNAME= PythonCAD
PYDISTUTILS_PKGVERSION= DS1-R${PORTVERSION}
+post-patch:
+ @${REINPLACE_CMD} -e 's|/usr/local|${PREFIX}|' \
+ ${WRKSRC}/PythonCAD/Generic/preferences.py \
+ ${WRKSRC}/PythonCAD/Interface/Gtk/gtkimage.py
+
post-install:
${INSTALL_SCRIPT} ${WRKSRC}/gtkpycad.py ${PREFIX}/bin/gtkpycad
+ ${INSTALL_DATA} ${WRKSRC}/gtkpycad.png ${PREFIX}/share/pixmaps
+ ${MKDIR} ${PREFIX}/etc/pythoncad
+ ${INSTALL_DATA} ${WRKSRC}/prefs.py ${PREFIX}/etc/pythoncad/prefs.py.sample
.include <bsd.port.mk>
diff --git a/cad/pythoncad/distinfo b/cad/pythoncad/distinfo
index d7c3b50937d2..937ec161608a 100644
--- a/cad/pythoncad/distinfo
+++ b/cad/pythoncad/distinfo
@@ -1,3 +1,3 @@
-MD5 (PythonCAD-DS1-R36.tar.gz) = 4e5222d164ffb25af3074b45cca661ef
-SHA256 (PythonCAD-DS1-R36.tar.gz) = 173f034545025ae3782873696b65622d205c07f994f9d187dd429e708c1be453
-SIZE (PythonCAD-DS1-R36.tar.gz) = 492320
+MD5 (PythonCAD-DS1-R37.tar.gz) = f0515b53cd5a1a65ec32e74d715e1438
+SHA256 (PythonCAD-DS1-R37.tar.gz) = 74222bd43af1e66ab31a45782ed7bd94d54ccbbdb7a58046ec2775f27f806031
+SIZE (PythonCAD-DS1-R37.tar.gz) = 504053
diff --git a/cad/pythoncad/files/patch-PythonCAD_Generic_preferences.py b/cad/pythoncad/files/patch-PythonCAD_Generic_preferences.py
new file mode 100644
index 000000000000..c8f67ce1cd01
--- /dev/null
+++ b/cad/pythoncad/files/patch-PythonCAD_Generic_preferences.py
@@ -0,0 +1,11 @@
+--- PythonCAD/Generic/preferences.py.orig 2010-07-25 18:10:27.707308605 +0200
++++ PythonCAD/Generic/preferences.py 2010-07-25 18:10:46.194466051 +0200
+@@ -41,7 +41,7 @@
+ # global variables
+ #
+
+-pref_file = '/etc/pythoncad/prefs.py'
++pref_file = '/usr/local/etc/pythoncad/prefs.py'
+
+ #
+
diff --git a/cad/pythoncad/files/patch-PythonCAD_Interface_Gtk_gtkimage.py b/cad/pythoncad/files/patch-PythonCAD_Interface_Gtk_gtkimage.py
new file mode 100644
index 000000000000..66f230420a5a
--- /dev/null
+++ b/cad/pythoncad/files/patch-PythonCAD_Interface_Gtk_gtkimage.py
@@ -0,0 +1,11 @@
+--- PythonCAD/Interface/Gtk/gtkimage.py.orig 2009-12-09 10:28:58.000000000 +0100
++++ PythonCAD/Interface/Gtk/gtkimage.py 2010-07-25 17:57:46.000000000 +0200
+@@ -154,7 +154,7 @@
+ self.__image = image
+ self.__window = gtk.Window()
+ self.__window.set_title(image.filename)
+- self.__window.set_icon_from_file("gtkpycad.png")
++ self.__window.set_icon_from_file("/usr/local/share/pixmaps/gtkpycad.png")
+ self.__window.connect("destroy", self.__destroyEvent)
+ self.__window.connect("event", self.__windowEvent)
+ self.__window.connect("key_press_event", self.__keyPressEvent)
diff --git a/cad/pythoncad/pkg-descr b/cad/pythoncad/pkg-descr
index 331602d0ed28..4411ed0f620a 100644
--- a/cad/pythoncad/pkg-descr
+++ b/cad/pythoncad/pkg-descr
@@ -1,6 +1,9 @@
PythonCAD is a CAD package written, surprisingly enough, in Python. The
-PythonCAD project aims to produce a scriptable, open-source, easy to use
-CAD package for Linux, the various flavors of BSD Unix, commercial Unix,
-and other platforms to which someone who is interested ports the program.
+PythonCAD project aims to produce a scriptable, open-source, easy to use CAD
+package for Linux, the various flavors of BSD Unix, commercial Unix, and
+other platforms to which someone who is interested ports the program. Work
+began on PythonCAD in July, 2002, and the first public release was on
+December 21, 2002.The firs developer team stop to develop PythonCad In the
+2007.In May 2009 A new developer team star to develop Pythoncad since now.
-WWW: http://www.pythoncad.org/
+WWW: http://pythoncad.sourceforge.net/
diff --git a/cad/pythoncad/pkg-plist b/cad/pythoncad/pkg-plist
index 41d355a5a724..3c543f9cfcec 100644
--- a/cad/pythoncad/pkg-plist
+++ b/cad/pythoncad/pkg-plist
@@ -1,289 +1,306 @@
bin/gtkpycad
-%%PYTHON_SITELIBDIR%%/PythonCAD/__init__.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/__init__.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/acline.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/arc.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/baseobject.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/bindump.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/ccircle.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/circle.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/cline.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/color.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/conobject.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/delete.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/dimension.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/dimtrees.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/dwg12.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/dwg1314.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/dwg15.py
+share/pixmaps/gtkpycad.png
+etc/pythoncad/prefs.py.sample
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/split.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/quadtree.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/maptree.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/conobject.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/leader.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/color.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/units.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/dwg15.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/segjoint.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/transfer.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/layer.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/polyline.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/dwg12.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/ellipse.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/tolerance.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/delete.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/vcline.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/cline.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/hcline.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/tree.pyo
%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/dwgbase.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/dwgutil.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/dxf.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/ellipse.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/entity.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/fileio.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/globals.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/hatch.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/graphicobject.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/pyGeoLib.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/text.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/transfer.pyc
%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/hcline.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/image.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/imageio.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/intersections.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/keywords.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/keywords.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/globals.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/extFormat.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/prompt.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/dxf.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/quadtree.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/ccircle.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/nurbs.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/delete.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/arc.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/mirror.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/point.pyo
%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/layer.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/leader.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/leader.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/linetype.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/dwg1314.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/units.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/hatch.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/text.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/move.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/snap.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/util.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/segjoint.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/tools.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/imageio.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/baseobject.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/acline.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/entity.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/image.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/dxf.pyc
%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/logger.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/maptree.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/message.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/mirror.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/move.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/nurbs.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/options.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/dwg1314.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/preferences.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/rotate.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/tangent.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/imageio.pyo
%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/plotfile.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/point.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/logger.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/rotate.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/fileio.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/globals.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/intersections.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/printing.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/dimtrees.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/linetype.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/circle.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/ellipse.py
%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/polyline.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/preferences.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/printing.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/prompt.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/quadtree.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/rotate.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/segjoint.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/text.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/segment.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/selections.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/split.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/style.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/options.py
%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/tangent.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/tolerance.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/tools.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/transfer.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/tree.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/units.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/util.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/vcline.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/__init__.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/acline.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/arc.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/baseobject.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/pyGeoLib.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/dwgutil.pyc
%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/bindump.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/ccircle.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/circle.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/cline.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/color.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/conobject.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/delete.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/dimension.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/acline.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/baseobject.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/ccircle.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/image.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/style.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/selections.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/__init__.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/dwgbase.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/plotfile.pyc
%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/dimension.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/dwg12.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/dimtrees.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/dwg1314.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/dwg15.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/dwgbase.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/dwgutil.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/dxf.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/ellipse.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/entity.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/fileio.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/globals.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/hatch.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/graphicobject.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/hcline.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/image.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/imageio.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/intersections.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/keywords.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/linetype.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/logger.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/maptree.pyc
%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/message.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/mirror.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/move.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/nurbs.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/options.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/plotfile.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/point.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/graphicobject.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/options.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/util.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/segment.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/graphicobject.pyo
%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/polyline.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/preferences.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/printing.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/prompt.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/quadtree.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/rotate.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/segjoint.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/text.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/segment.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/selections.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/layer.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/dwg12.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/ellipse.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/tolerance.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/dwg15.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/segjoint.pyo
%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/split.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/style.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/tangent.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/conobject.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/maptree.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/leader.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/color.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/snap.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/nurbs.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/style.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/pyGeoLib.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/text.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/tree.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/dimtrees.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/leader.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/cline.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/vcline.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/color.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/hcline.pyo
%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/tolerance.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/delete.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/prompt.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/quadtree.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/__init__.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/ccircle.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/nurbs.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/preferences.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/extFormat.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/keywords.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/conobject.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/transfer.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/point.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/move.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/intersections.py
%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/tools.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/transfer.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/tree.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/units.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/circle.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/linetype.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/message.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/hatch.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/snap.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/move.pyo
%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/util.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/arc.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/vcline.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/__init__.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/acline.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/baseobject.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/bindump.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/ccircle.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/circle.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/cline.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/color.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/conobject.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/delete.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/dimension.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/dimtrees.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/dwg12.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/mirror.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/point.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/fileio.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/dwg12.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/units.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/arc.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/mirror.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/rotate.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/entity.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/logger.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/imageio.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/tree.py
%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/dwg1314.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/dwg15.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/dwgbase.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/dwgutil.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/dxf.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/ellipse.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/cline.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/preferences.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/tangent.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/printing.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/segment.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/baseobject.pyc
%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/entity.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/fileio.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/image.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/dxf.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/linetype.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/circle.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/split.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/dimtrees.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/fileio.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/tools.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/arc.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/prompt.py
%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/globals.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/hatch.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/graphicobject.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/hcline.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/image.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/imageio.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/intersections.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/keywords.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/leader.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/linetype.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/logger.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/maptree.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/message.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/mirror.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/move.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/nurbs.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/options.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/printing.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/intersections.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/acline.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/vcline.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/hatch.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/selections.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/bindump.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/maptree.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/bindump.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/dwgutil.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/dwg15.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/keywords.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/segment.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/extFormat.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/graphicobject.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/options.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/dwgbase.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/dwgutil.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/dimension.pyo
%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/plotfile.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/point.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/polyline.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/preferences.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/printing.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/prompt.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/quadtree.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/rotate.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/segjoint.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/text.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/segment.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/message.pyo
%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/selections.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/split.pyo
%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/style.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/tangent.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/tolerance.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/tools.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/transfer.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/tree.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/units.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/util.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/vcline.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/__init__.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/AppController.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/CADView.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/CocoaConobjs.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/CocoaDimensions.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/CocoaEntities.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/CocoaModify.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/CocoaPrompt.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/CocoaText.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/Globals.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/ImageDocument.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/ImageWindowController.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/LayerView.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/__init__.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/AppController.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/CADView.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/CocoaConobjs.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/CocoaDimensions.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/CocoaEntities.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/CocoaModify.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/CocoaPrompt.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/CocoaText.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/Globals.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/ImageDocument.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/ImageWindowController.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/LayerView.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/__init__.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/AppController.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/CADView.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/CocoaConobjs.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/CocoaDimensions.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/CocoaEntities.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/CocoaModify.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/CocoaPrompt.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/CocoaText.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/Globals.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/ImageDocument.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/ImageWindowController.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/LayerView.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/__init__.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/__init__.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkactions.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkconobjs.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkdimension.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Generic/__init__.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/__init__.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/__init__.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/__init__.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkentities.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtktextprefs.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkDialog.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtktext.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkmirror.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkprefs.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkmirror.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkmodify.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkprefs.py
%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkdimprefs.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkedit.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkentities.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkimage.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkinit.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/__init__.pyo
%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkmenus.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkmirror.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkactions.pyc
%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkmodify.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkprefs.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkprinting.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkshell.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkshell.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkdimension.py
%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkstyleprefs.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtktext.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtktextprefs.py
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/__init__.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkactions.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkconobjs.py
%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkconobjs.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkdimension.pyc
%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkdimprefs.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkedit.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkentities.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkdimension.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkinit.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkstyleprefs.pyo
%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkimage.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkDialog.pyo
%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkinit.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkmenus.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkmirror.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkmodify.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkimage.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkprinting.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkedit.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkmenus.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkactions.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtktextprefs.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkentities.pyo
%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkprefs.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkprinting.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkshell.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkstyleprefs.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtktext.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtktextprefs.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/__init__.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtktext.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtktext.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkshell.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/__init__.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkentities.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkmirror.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkmodify.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkshell.pyo
%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkactions.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkedit.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/__init__.pyc
%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkconobjs.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkdimension.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkprinting.py
%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkdimprefs.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkedit.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkentities.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkimage.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkdimension.pyo
%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkinit.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkmenus.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkmirror.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkmodify.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkprefs.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkprinting.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkshell.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkstyleprefs.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtktext.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtktextprefs.pyo
-%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/__init__.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkDialog.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkstyleprefs.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkimage.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkedit.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkmenus.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtkprinting.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk/gtktextprefs.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/__init__.py
%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/__init__.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/LayerView.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/CocoaConobjs.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/__init__.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/AppController.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/CocoaModify.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/ImageWindowController.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/CocoaConobjs.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/ImageDocument.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/CocoaDimensions.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/AppController.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/CocoaText.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/CADView.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/CocoaEntities.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/CocoaModify.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/CocoaPrompt.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/ImageWindowController.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/CocoaPrompt.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/CADView.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/CocoaEntities.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/Globals.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/LayerView.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/__init__.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/CocoaConobjs.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/CocoaText.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/ImageDocument.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/ImageWindowController.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/__init__.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/Globals.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/CocoaDimensions.py
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/CocoaText.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/CocoaDimensions.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/AppController.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/CocoaModify.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/CocoaPrompt.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/CocoaEntities.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/CADView.pyo
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/LayerView.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/Globals.pyc
+%%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa/ImageDocument.py
%%PYTHON_SITELIBDIR%%/PythonCAD/__init__.pyc
-%%PYTHON_SITELIBDIR%%/PythonCAD/__init__.pyo
@dirrm %%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Gtk
@dirrm %%PYTHON_SITELIBDIR%%/PythonCAD/Interface/Cocoa
@dirrm %%PYTHON_SITELIBDIR%%/PythonCAD/Interface
@dirrm %%PYTHON_SITELIBDIR%%/PythonCAD/Generic
@dirrm %%PYTHON_SITELIBDIR%%/PythonCAD
+@dirrmtry etc/pythoncad