- Remove graphics/sketch because the project's name was

changed.
- New name is graphics/skencil
This commit is contained in:
Kirill Ponomarev 2004-01-28 19:49:58 +00:00
parent 7850501a10
commit 16b67a433e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=99336
12 changed files with 0 additions and 782 deletions

View File

@ -384,7 +384,6 @@
SUBDIR += showimg
SUBDIR += simage
SUBDIR += skencil
SUBDIR += sketch
SUBDIR += sng
SUBDIR += sodipodi
SUBDIR += springgraph

View File

@ -1,70 +0,0 @@
# New ports collection makefile for: sketch
# Date created: 04 November 1998
# Whom: Thomas Gellekum <tg@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= sketch
PORTVERSION= 0.6.15
CATEGORIES= graphics
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= ports@FreeBSD.org
COMMENT= An interactive drawing program
BUILD_DEPENDS= ${LOCALBASE}/include/${PYTHON_VERSION}/Imaging.h:${PORTSDIR}/graphics/py-imaging
RUN_DEPENDS= ${PYTHON_SITELIBDIR}/_tkinter.so:${PORTSDIR}/x11-toolkits/py-tkinter \
${PYTHON_SITELIBDIR}/PIL/_imaging.so:${PORTSDIR}/graphics/py-imaging \
${PYTHON_SITELIBDIR}/reportlab/__init__.py:${PORTSDIR}/print/py-reportlab \
${PYXML}
USE_PYTHON= yes
USE_PYDISTUTILS= yes
CONFFLAGS= --tk-autoconf --tk-flags="-I${X11BASE}/include -I${LOCALBASE}/include/tcl8.4 -I${LOCALBASE}/include/tk8.4 -L${LOCALBASE}/lib -ltk84 -ltcl84 -L${X11BASE}/lib -lX11"
SKETCHDIR= ${PREFIX}/share/sketch
SKETCHDOCDIR= ${PREFIX}/share/doc/sketch
SKETCHDOCS= BUGS Doc NEWS PROJECTS README TODO
SKETCHEXDIR= ${PREFIX}/share/examples/sketch
SKETCHSCRIPTS= finishinst.py sk2ppm.py sk2ps.py skconvert.py sketch.py \
skshow.py
do-configure:
@(cd ${WRKSRC} && \
${SETENV} ${CONFIGURE_ENV} \
${PYTHON_CMD} setup.py configure ${CONFFLAGS})
do-install:
@${MKDIR} ${SKETCHDIR}
.for dir in Filter Pax Plugins Resources Script Sketch
(cd ${WRKSRC}; ${TAR} -cf - -X ${FILESDIR}/excludelist ${dir}) | \
(cd ${SKETCHDIR}; ${TAR} xf -)
.endfor
(cd ${WRKSRC}; ${INSTALL_SCRIPT} ${SKETCHSCRIPTS} ${SKETCHDIR})
.if !defined(NOPORTDOCS)
@${MKDIR} ${SKETCHDOCDIR}
(cd ${WRKSRC}; ${TAR} cf - ${SKETCHDOCS}) | (cd ${SKETCHDOCDIR}; ${TAR} xf -)
.endif
@${MKDIR} ${SKETCHEXDIR}
(cd ${WRKSRC}/Examples; ${TAR} cf - .) | (cd ${SKETCHEXDIR}; ${TAR} xf -)
(cd ${SKETCHDIR}; ${PYTHON_CMD} finishinst.py)
${SED} -e "s|@PREFIX@|${PREFIX}|g" -e "s|@PYTHON_CMD@|${PYTHON_CMD}|g" \
< ${FILESDIR}/sk2ppm.in > ${PREFIX}/bin/sk2ppm
${CHMOD} ${BINMODE} ${PREFIX}/bin/sk2ppm
${SED} -e "s|@PREFIX@|${PREFIX}|g" -e "s|@PYTHON_CMD@|${PYTHON_CMD}|g" \
< ${FILESDIR}/sk2ps.in > ${PREFIX}/bin/sk2ps
${CHMOD} ${BINMODE} ${PREFIX}/bin/sk2ps
${SED} -e "s|@PREFIX@|${PREFIX}|g" -e "s|@PYTHON_CMD@|${PYTHON_CMD}|g" \
< ${FILESDIR}/skconvert.in > ${PREFIX}/bin/skconvert
${CHMOD} ${BINMODE} ${PREFIX}/bin/skconvert
${SED} -e "s|@PREFIX@|${PREFIX}|g" -e "s|@PYTHON_CMD@|${PYTHON_CMD}|g" \
< ${FILESDIR}/sketch.in > ${PREFIX}/bin/sketch
${CHMOD} ${BINMODE} ${PREFIX}/bin/sketch
${SED} -e "s|@PREFIX@|${PREFIX}|g" -e "s|@PYTHON_CMD@|${PYTHON_CMD}|g" \
< ${FILESDIR}/skshow.in > ${PREFIX}/bin/skshow
${CHMOD} ${BINMODE} ${PREFIX}/bin/skshow
.include <bsd.port.mk>

View File

@ -1 +0,0 @@
MD5 (sketch-0.6.15.tar.gz) = 5659b4251afef12e9c715b02b5e19696

View File

@ -1,13 +0,0 @@
Setup
Setup.config
Setup.in
Makefile
Makefile.pre
Makefile.pre.in
sedscript
COPYING
README
*.c
*.h
*.o
*.orig

View File

@ -1,37 +0,0 @@
$FreeBSD$
*** /tmp/paxtkinter.c210O-r Tue Sep 16 18:14:21 2003
--- Pax/paxtkinter.c Tue Sep 16 18:14:21 2003
***************
*** 1755,1760 ****
--- 1755,1774 ----
}
#endif
+ /* Yet another sketch specific hack: Starting with Python 2.3 Tkinter
+ * calls the wantobjects method, so we provide one that doesn't do
+ * anything.
+ */
+ static PyObject *
+ Tkapp_WantObjects(PyObject *self, PyObject *args)
+ {
+ int wantobjects;
+ if (!PyArg_ParseTuple(args, "i:wantobjects", &wantobjects))
+ return NULL;
+
+ Py_INCREF(Py_None);
+ return Py_None;
+ }
/**** Tkapp Method List ****/
***************
*** 1797,1802 ****
--- 1811,1817 ----
{"interpaddr", Tkapp_InterpAddr, 1},
{"utf8_to_latin1", Tkapp_UTF8_to_Latin1, 1},
{"utf8_to_system", Tkapp_UTF8_to_System, 1},
+ {"wantobjects", Tkapp_WantObjects, METH_VARARGS},
{NULL, NULL}
};

View File

@ -1,3 +0,0 @@
#!/bin/sh
exec @PYTHON_CMD@ @PREFIX@/share/sketch/sk2ppm.py $@

View File

@ -1,3 +0,0 @@
#!/bin/sh
exec @PYTHON_CMD@ @PREFIX@/share/sketch/sk2ps.py $@

View File

@ -1,3 +0,0 @@
#!/bin/sh
exec @PYTHON_CMD@ @PREFIX@/share/sketch/skconvert.py $@

View File

@ -1,3 +0,0 @@
#!/bin/sh
exec @PYTHON_CMD@ @PREFIX@/share/sketch/sketch.py $@

View File

@ -1,3 +0,0 @@
#!/bin/sh
exec @PYTHON_CMD@ @PREFIX@/share/sketch/skshow.py $@

View File

@ -1,14 +0,0 @@
Sketch is an interactive X11 drawing program (similar to xfig or tgif).
It is written almost completely in Python, an object oriented
interpreted programming language. The current version is still
in a somewhat experimental stage and does not have all the features it
should have and may be instable in certain situations.
For up to date information about Sketch, have a look at the Sketch web
page, or contact the author <bernhard@users.sourceforge.net>.
If you want to report a bug, please have a look at the web page to check
whether a newer release is available or your bug has already been
reported.
WWW: http://sketch.sourceforge.net/

View File

@ -1,631 +0,0 @@
bin/sk2ppm
bin/sk2ps
bin/skconvert
bin/sketch
bin/skshow
%%PORTDOCS%%share/doc/sketch/BUGS
%%PORTDOCS%%share/doc/sketch/Doc/Images/CreateCurve.png
%%PORTDOCS%%share/doc/sketch/Doc/Images/CreateEllipse.png
%%PORTDOCS%%share/doc/sketch/Doc/Images/CreatePoly.png
%%PORTDOCS%%share/doc/sketch/Doc/Images/CreateRect.png
%%PORTDOCS%%share/doc/sketch/Doc/Images/Delete.png
%%PORTDOCS%%share/doc/sketch/Doc/Images/Duplicate.png
%%PORTDOCS%%share/doc/sketch/Doc/Images/EditMode.png
%%PORTDOCS%%share/doc/sketch/Doc/Images/FlipHorizontal.png
%%PORTDOCS%%share/doc/sketch/Doc/Images/FlipVertical.png
%%PORTDOCS%%share/doc/sketch/Doc/Images/GridOff.png
%%PORTDOCS%%share/doc/sketch/Doc/Images/GridOn.png
%%PORTDOCS%%share/doc/sketch/Doc/Images/Group.png
%%PORTDOCS%%share/doc/sketch/Doc/Images/Image.png
%%PORTDOCS%%share/doc/sketch/Doc/Images/MiniEyeClosed.png
%%PORTDOCS%%share/doc/sketch/Doc/Images/MiniEyeOpen.png
%%PORTDOCS%%share/doc/sketch/Doc/Images/MiniPrintOff.png
%%PORTDOCS%%share/doc/sketch/Doc/Images/MiniPrintOn.png
%%PORTDOCS%%share/doc/sketch/Doc/Images/MoveOneDown.png
%%PORTDOCS%%share/doc/sketch/Doc/Images/MoveOneUp.png
%%PORTDOCS%%share/doc/sketch/Doc/Images/MoveToBottom.png
%%PORTDOCS%%share/doc/sketch/Doc/Images/MoveToTop.png
%%PORTDOCS%%share/doc/sketch/Doc/Images/NewDocument.png
%%PORTDOCS%%share/doc/sketch/Doc/Images/Open.png
%%PORTDOCS%%share/doc/sketch/Doc/Images/Redo.png
%%PORTDOCS%%share/doc/sketch/Doc/Images/Save.png
%%PORTDOCS%%share/doc/sketch/Doc/Images/SelectionMode.png
%%PORTDOCS%%share/doc/sketch/Doc/Images/Text.png
%%PORTDOCS%%share/doc/sketch/Doc/Images/Undo.png
%%PORTDOCS%%share/doc/sketch/Doc/Images/Ungroup.png
%%PORTDOCS%%share/doc/sketch/Doc/Images/Zoom.png
%%PORTDOCS%%share/doc/sketch/Doc/Images/arrow-left.png
%%PORTDOCS%%share/doc/sketch/Doc/Images/arrow-right.png
%%PORTDOCS%%share/doc/sketch/Doc/Images/arrow-up.png
%%PORTDOCS%%share/doc/sketch/Doc/Images/bullet.png
%%PORTDOCS%%share/doc/sketch/Doc/Images/gradient-conical.png
%%PORTDOCS%%share/doc/sketch/Doc/Images/gradient-linear.png
%%PORTDOCS%%share/doc/sketch/Doc/Images/gradient-radial.png
%%PORTDOCS%%share/doc/sketch/Doc/Images/layers.png
%%PORTDOCS%%share/doc/sketch/Doc/Images/selsize.png
%%PORTDOCS%%share/doc/sketch/Doc/Images/seltrafo.png
%%PORTDOCS%%share/doc/sketch/Doc/Images/sketch-logo.png
%%PORTDOCS%%share/doc/sketch/Doc/Images/textpath.png
%%PORTDOCS%%share/doc/sketch/Doc/Images/textpathrot.png
%%PORTDOCS%%share/doc/sketch/Doc/Images/textpathskew.png
%%PORTDOCS%%share/doc/sketch/Doc/devguide-1.html
%%PORTDOCS%%share/doc/sketch/Doc/devguide-10.html
%%PORTDOCS%%share/doc/sketch/Doc/devguide-11.html
%%PORTDOCS%%share/doc/sketch/Doc/devguide-12.html
%%PORTDOCS%%share/doc/sketch/Doc/devguide-13.html
%%PORTDOCS%%share/doc/sketch/Doc/devguide-14.html
%%PORTDOCS%%share/doc/sketch/Doc/devguide-15.html
%%PORTDOCS%%share/doc/sketch/Doc/devguide-16.html
%%PORTDOCS%%share/doc/sketch/Doc/devguide-17.html
%%PORTDOCS%%share/doc/sketch/Doc/devguide-18.html
%%PORTDOCS%%share/doc/sketch/Doc/devguide-19.html
%%PORTDOCS%%share/doc/sketch/Doc/devguide-2.html
%%PORTDOCS%%share/doc/sketch/Doc/devguide-20.html
%%PORTDOCS%%share/doc/sketch/Doc/devguide-21.html
%%PORTDOCS%%share/doc/sketch/Doc/devguide-22.html
%%PORTDOCS%%share/doc/sketch/Doc/devguide-23.html
%%PORTDOCS%%share/doc/sketch/Doc/devguide-24.html
%%PORTDOCS%%share/doc/sketch/Doc/devguide-25.html
%%PORTDOCS%%share/doc/sketch/Doc/devguide-26.html
%%PORTDOCS%%share/doc/sketch/Doc/devguide-27.html
%%PORTDOCS%%share/doc/sketch/Doc/devguide-3.html
%%PORTDOCS%%share/doc/sketch/Doc/devguide-4.html
%%PORTDOCS%%share/doc/sketch/Doc/devguide-5.html
%%PORTDOCS%%share/doc/sketch/Doc/devguide-6.html
%%PORTDOCS%%share/doc/sketch/Doc/devguide-7.html
%%PORTDOCS%%share/doc/sketch/Doc/devguide-8.html
%%PORTDOCS%%share/doc/sketch/Doc/devguide-9.html
%%PORTDOCS%%share/doc/sketch/Doc/devguide.html
%%PORTDOCS%%share/doc/sketch/Doc/fonts.alias
%%PORTDOCS%%share/doc/sketch/Doc/fonts.scale
%%PORTDOCS%%share/doc/sketch/Doc/usersguide-1.html
%%PORTDOCS%%share/doc/sketch/Doc/usersguide-10.html
%%PORTDOCS%%share/doc/sketch/Doc/usersguide-2.html
%%PORTDOCS%%share/doc/sketch/Doc/usersguide-3.html
%%PORTDOCS%%share/doc/sketch/Doc/usersguide-4.html
%%PORTDOCS%%share/doc/sketch/Doc/usersguide-5.html
%%PORTDOCS%%share/doc/sketch/Doc/usersguide-6.html
%%PORTDOCS%%share/doc/sketch/Doc/usersguide-7.html
%%PORTDOCS%%share/doc/sketch/Doc/usersguide-8.html
%%PORTDOCS%%share/doc/sketch/Doc/usersguide-9.html
%%PORTDOCS%%share/doc/sketch/Doc/usersguide.html
%%PORTDOCS%%share/doc/sketch/NEWS
%%PORTDOCS%%share/doc/sketch/PROJECTS
%%PORTDOCS%%share/doc/sketch/README
%%PORTDOCS%%share/doc/sketch/TODO
share/examples/sketch/ellipse.sk
share/examples/sketch/face.sk
share/examples/sketch/fill.sk
share/examples/sketch/flags.sk
share/examples/sketch/images.sk
share/examples/sketch/lena.jpg
share/examples/sketch/line.sk
share/examples/sketch/pathtext.sk
share/examples/sketch/pattern.ppm
share/examples/sketch/text.sk
share/sketch/Filter/streamfilter.so
share/sketch/Pax/COPYING.xext
share/sketch/Pax/Generate/mkgc.py
share/sketch/Pax/Generate/mkgc.pyc
share/sketch/Pax/Generate/mktools.py
share/sketch/Pax/Generate/mktools.pyc
share/sketch/Pax/Generate/typedefs.py
share/sketch/Pax/Generate/typedefs.pyc
share/sketch/Pax/X.py
share/sketch/Pax/X.pyc
share/sketch/Pax/paxmodule.so
share/sketch/Pax/paxtkinter.so
share/sketch/Plugins/ChangeLog
share/sketch/Plugins/Filters/Lib/drawfile.py
share/sketch/Plugins/Filters/Lib/drawfile.pyc
share/sketch/Plugins/Filters/Lib/spritefile.py
share/sketch/Plugins/Filters/Lib/spritefile.pyc
share/sketch/Plugins/Filters/ailoader.py
share/sketch/Plugins/Filters/ailoader.pyc
share/sketch/Plugins/Filters/aisaver.py
share/sketch/Plugins/Filters/aisaver.pyc
share/sketch/Plugins/Filters/bziploader.py
share/sketch/Plugins/Filters/bziploader.pyc
share/sketch/Plugins/Filters/cgmloader.py
share/sketch/Plugins/Filters/cgmloader.pyc
share/sketch/Plugins/Filters/cgmsaver.py
share/sketch/Plugins/Filters/cgmsaver.pyc
share/sketch/Plugins/Filters/cmxloader.py
share/sketch/Plugins/Filters/cmxloader.pyc
share/sketch/Plugins/Filters/drawinput.py
share/sketch/Plugins/Filters/drawinput.pyc
share/sketch/Plugins/Filters/garbage/cgmloader.py
share/sketch/Plugins/Filters/garbage/cgmloader.pyc
share/sketch/Plugins/Filters/garbage/cgmsaver.py
share/sketch/Plugins/Filters/garbage/cgmsaver.pyc
share/sketch/Plugins/Filters/gziploader.py
share/sketch/Plugins/Filters/gziploader.pyc
share/sketch/Plugins/Filters/pdfgensaver.py
share/sketch/Plugins/Filters/pdfgensaver.pyc
share/sketch/Plugins/Filters/skloader.py
share/sketch/Plugins/Filters/skloader.pyc
share/sketch/Plugins/Filters/sksaver.py
share/sketch/Plugins/Filters/sksaver.pyc
share/sketch/Plugins/Filters/svgloader.py
share/sketch/Plugins/Filters/svgloader.pyc
share/sketch/Plugins/Filters/svgsaver.py
share/sketch/Plugins/Filters/svgsaver.pyc
share/sketch/Plugins/Filters/wmfloader.py
share/sketch/Plugins/Filters/wmfloader.pyc
share/sketch/Plugins/Filters/xfigloader.py
share/sketch/Plugins/Filters/xfigloader.pyc
share/sketch/Plugins/Objects/Lib/multilinetext/TextEditor.py
share/sketch/Plugins/Objects/Lib/multilinetext/TextEditor.pyc
share/sketch/Plugins/Objects/Lib/multilinetext/__init__.py
share/sketch/Plugins/Objects/Lib/multilinetext/__init__.pyc
share/sketch/Plugins/Objects/Lib/multilinetext/chunker.py
share/sketch/Plugins/Objects/Lib/multilinetext/chunker.pyc
share/sketch/Plugins/Objects/Lib/multilinetext/iterator.py
share/sketch/Plugins/Objects/Lib/multilinetext/iterator.pyc
share/sketch/Plugins/Objects/Lib/multilinetext/styletext.py
share/sketch/Plugins/Objects/Lib/multilinetext/styletext.pyc
share/sketch/Plugins/Objects/lcdtext.py
share/sketch/Plugins/Objects/lcdtext.pyc
share/sketch/Plugins/Objects/multilinetext.py
share/sketch/Plugins/Objects/multilinetext.pyc
share/sketch/Plugins/Objects/regpoly.py
share/sketch/Plugins/Objects/regpoly.pyc
share/sketch/Resources/Fontmetrics/alias.sfd
share/sketch/Resources/Fontmetrics/gs.sfd
share/sketch/Resources/Fontmetrics/gsopt.sfd
share/sketch/Resources/Fontmetrics/pagd.afm
share/sketch/Resources/Fontmetrics/pagdo.afm
share/sketch/Resources/Fontmetrics/pagk.afm
share/sketch/Resources/Fontmetrics/pagko.afm
share/sketch/Resources/Fontmetrics/pbkd.afm
share/sketch/Resources/Fontmetrics/pbkdi.afm
share/sketch/Resources/Fontmetrics/pbkl.afm
share/sketch/Resources/Fontmetrics/pbkli.afm
share/sketch/Resources/Fontmetrics/pcrb.afm
share/sketch/Resources/Fontmetrics/pcrbo.afm
share/sketch/Resources/Fontmetrics/pcrr.afm
share/sketch/Resources/Fontmetrics/pcrro.afm
share/sketch/Resources/Fontmetrics/phvb.afm
share/sketch/Resources/Fontmetrics/phvbn.afm
share/sketch/Resources/Fontmetrics/phvbo.afm
share/sketch/Resources/Fontmetrics/phvbon.afm
share/sketch/Resources/Fontmetrics/phvr.afm
share/sketch/Resources/Fontmetrics/phvrn.afm
share/sketch/Resources/Fontmetrics/phvro.afm
share/sketch/Resources/Fontmetrics/phvron.afm
share/sketch/Resources/Fontmetrics/pncb.afm
share/sketch/Resources/Fontmetrics/pncbi.afm
share/sketch/Resources/Fontmetrics/pncr.afm
share/sketch/Resources/Fontmetrics/pncri.afm
share/sketch/Resources/Fontmetrics/pplb.afm
share/sketch/Resources/Fontmetrics/pplbi.afm
share/sketch/Resources/Fontmetrics/pplr.afm
share/sketch/Resources/Fontmetrics/pplri.afm
share/sketch/Resources/Fontmetrics/psyr.afm
share/sketch/Resources/Fontmetrics/ptmb.afm
share/sketch/Resources/Fontmetrics/ptmbi.afm
share/sketch/Resources/Fontmetrics/ptmr.afm
share/sketch/Resources/Fontmetrics/ptmri.afm
share/sketch/Resources/Fontmetrics/putb.afm
share/sketch/Resources/Fontmetrics/putbi.afm
share/sketch/Resources/Fontmetrics/putr.afm
share/sketch/Resources/Fontmetrics/putri.afm
share/sketch/Resources/Fontmetrics/pzcmi.afm
share/sketch/Resources/Fontmetrics/pzdr.afm
share/sketch/Resources/Fontmetrics/std.sfd
share/sketch/Resources/Messages/da/LC_MESSAGES/sketch.mo
share/sketch/Resources/Messages/de/LC_MESSAGES/sketch.mo
share/sketch/Resources/Messages/es/LC_MESSAGES/sketch.mo
share/sketch/Resources/Messages/fr/LC_MESSAGES/sketch.mo
share/sketch/Resources/Messages/it/LC_MESSAGES/sketch.mo
share/sketch/Resources/Messages/pt_BR/LC_MESSAGES/sketch.mo
share/sketch/Resources/Messages/ru/LC_MESSAGES/sketch.mo
share/sketch/Resources/Messages/sv/LC_MESSAGES/sketch.mo
share/sketch/Resources/Misc/gamma.spl
share/sketch/Resources/Misc/mini.spl
share/sketch/Resources/Misc/pattern.ppm
share/sketch/Resources/Misc/sketch-proc.ps
share/sketch/Resources/Misc/standard.arrow
share/sketch/Resources/Misc/standard.dashes
share/sketch/Resources/Misc/standard.spl
share/sketch/Resources/Misc/tkdefaults
share/sketch/Resources/Misc/www.spl
share/sketch/Script/__init__.py
share/sketch/Script/abut_horizontal.py
share/sketch/Script/abut_vertical.py
share/sketch/Script/average_points.py
share/sketch/Script/create_spiral.py
share/sketch/Script/create_star.py
share/sketch/Script/create_star_outline.py
share/sketch/Script/create_text.py
share/sketch/Script/export_raster.py
share/sketch/Script/footprints.py
share/sketch/Script/save_selection.py
share/sketch/Script/select_same_fill_color.py
share/sketch/Script/select_same_line_color.py
share/sketch/Script/inspect_beziers.py
share/sketch/Script/reload_image.py
share/sketch/Script/simple_separation.py
share/sketch/Script/spread.py
share/sketch/Script/unit.py
share/sketch/Script/usersguide.py
share/sketch/Sketch/Base/config.py
share/sketch/Sketch/Base/config.pyc
share/sketch/Sketch/Base/configutil.py
share/sketch/Sketch/Base/configutil.pyc
share/sketch/Sketch/Base/connector.py
share/sketch/Sketch/Base/connector.pyc
share/sketch/Sketch/Base/const.py
share/sketch/Sketch/Base/const.pyc
share/sketch/Sketch/Base/load.py
share/sketch/Sketch/Base/load.pyc
share/sketch/Sketch/Base/loadres.py
share/sketch/Sketch/Base/loadres.pyc
share/sketch/Sketch/Base/main.py
share/sketch/Sketch/Base/main.pyc
share/sketch/Sketch/Base/plugins.py
share/sketch/Sketch/Base/plugins.pyc
share/sketch/Sketch/Base/skexceptions.py
share/sketch/Sketch/Base/skexceptions.pyc
share/sketch/Sketch/Base/undo.py
share/sketch/Sketch/Base/undo.pyc
share/sketch/Sketch/Base/undodict.py
share/sketch/Sketch/Base/undodict.pyc
share/sketch/Sketch/Base/warn.py
share/sketch/Sketch/Base/warn.pyc
share/sketch/Sketch/Graphics/__init__.py
share/sketch/Sketch/Graphics/__init__.pyc
share/sketch/Sketch/Graphics/arrow.py
share/sketch/Sketch/Graphics/arrow.pyc
share/sketch/Sketch/Graphics/base.py
share/sketch/Sketch/Graphics/base.pyc
share/sketch/Sketch/Graphics/bezier.py
share/sketch/Sketch/Graphics/bezier.pyc
share/sketch/Sketch/Graphics/blend.py
share/sketch/Sketch/Graphics/blend.pyc
share/sketch/Sketch/Graphics/blendgroup.py
share/sketch/Sketch/Graphics/blendgroup.pyc
share/sketch/Sketch/Graphics/clone.py
share/sketch/Sketch/Graphics/clone.pyc
share/sketch/Sketch/Graphics/color.py
share/sketch/Sketch/Graphics/color.pyc
share/sketch/Sketch/Graphics/compound.py
share/sketch/Sketch/Graphics/compound.pyc
share/sketch/Sketch/Graphics/curveop.py
share/sketch/Sketch/Graphics/curveop.pyc
share/sketch/Sketch/Graphics/dashes.py
share/sketch/Sketch/Graphics/dashes.pyc
share/sketch/Sketch/Graphics/document.py
share/sketch/Sketch/Graphics/document.pyc
share/sketch/Sketch/Graphics/ellipse.py
share/sketch/Sketch/Graphics/ellipse.pyc
share/sketch/Sketch/Graphics/eps.py
share/sketch/Sketch/Graphics/eps.pyc
share/sketch/Sketch/Graphics/external.py
share/sketch/Sketch/Graphics/external.pyc
share/sketch/Sketch/Graphics/font.py
share/sketch/Sketch/Graphics/font.pyc
share/sketch/Sketch/Graphics/gradient.py
share/sketch/Sketch/Graphics/gradient.pyc
share/sketch/Sketch/Graphics/graphics.py
share/sketch/Sketch/Graphics/graphics.pyc
share/sketch/Sketch/Graphics/group.py
share/sketch/Sketch/Graphics/group.pyc
share/sketch/Sketch/Graphics/guide.py
share/sketch/Sketch/Graphics/guide.pyc
share/sketch/Sketch/Graphics/handle.py
share/sketch/Sketch/Graphics/handle.pyc
share/sketch/Sketch/Graphics/image.py
share/sketch/Sketch/Graphics/image.pyc
share/sketch/Sketch/Graphics/layer.py
share/sketch/Sketch/Graphics/layer.pyc
share/sketch/Sketch/Graphics/maskgroup.py
share/sketch/Sketch/Graphics/maskgroup.pyc
share/sketch/Sketch/Graphics/pagelayout.py
share/sketch/Sketch/Graphics/pagelayout.pyc
share/sketch/Sketch/Graphics/papersize.py
share/sketch/Sketch/Graphics/papersize.pyc
share/sketch/Sketch/Graphics/pattern.py
share/sketch/Sketch/Graphics/pattern.pyc
share/sketch/Sketch/Graphics/plugobj.py
share/sketch/Sketch/Graphics/plugobj.pyc
share/sketch/Sketch/Graphics/properties.py
share/sketch/Sketch/Graphics/properties.pyc
share/sketch/Sketch/Graphics/psdevice.py
share/sketch/Sketch/Graphics/psdevice.pyc
share/sketch/Sketch/Graphics/rectangle.py
share/sketch/Sketch/Graphics/rectangle.pyc
share/sketch/Sketch/Graphics/selection.py
share/sketch/Sketch/Graphics/selection.pyc
share/sketch/Sketch/Graphics/selinfo.py
share/sketch/Sketch/Graphics/selinfo.pyc
share/sketch/Sketch/Graphics/text.py
share/sketch/Sketch/Graphics/text.pyc
share/sketch/Sketch/Lib/__init__.py
share/sketch/Sketch/Lib/__init__.pyc
share/sketch/Sketch/Lib/dscparser.py
share/sketch/Sketch/Lib/dscparser.pyc
share/sketch/Sketch/Lib/encoding.py
share/sketch/Sketch/Lib/encoding.pyc
share/sketch/Sketch/Lib/psmisc.py
share/sketch/Sketch/Lib/psmisc.pyc
share/sketch/Sketch/Lib/skcompleter.py
share/sketch/Sketch/Lib/skcompleter.pyc
share/sketch/Sketch/Lib/type1.py
share/sketch/Sketch/Lib/type1.pyc
share/sketch/Sketch/Lib/units.py
share/sketch/Sketch/Lib/units.pyc
share/sketch/Sketch/Lib/util.py
share/sketch/Sketch/Lib/util.pyc
share/sketch/Sketch/Modules/_sketchmodule.so
share/sketch/Sketch/Modules/_type1module.so
share/sketch/Sketch/Modules/pstokenize.so
share/sketch/Sketch/Modules/skreadmodule.so
share/sketch/Sketch/Pixmaps/AlignBottom.gif
share/sketch/Sketch/Pixmaps/AlignBottom.xbm
share/sketch/Sketch/Pixmaps/AlignCenterX.gif
share/sketch/Sketch/Pixmaps/AlignCenterX.xbm
share/sketch/Sketch/Pixmaps/AlignCenterY.gif
share/sketch/Sketch/Pixmaps/AlignCenterY.xbm
share/sketch/Sketch/Pixmaps/AlignLeft.gif
share/sketch/Sketch/Pixmaps/AlignLeft.xbm
share/sketch/Sketch/Pixmaps/AlignRight.gif
share/sketch/Sketch/Pixmaps/AlignRight.xbm
share/sketch/Sketch/Pixmaps/AlignTop.gif
share/sketch/Sketch/Pixmaps/AlignTop.xbm
share/sketch/Sketch/Pixmaps/ArrArrLeft.xbm
share/sketch/Sketch/Pixmaps/ArrArrRight.xbm
share/sketch/Sketch/Pixmaps/ArrLeft.xbm
share/sketch/Sketch/Pixmaps/ArrRight.xbm
share/sketch/Sketch/Pixmaps/BezierAngle.gif
share/sketch/Sketch/Pixmaps/BezierAngle.xbm
share/sketch/Sketch/Pixmaps/BezierCloseNodes.gif
share/sketch/Sketch/Pixmaps/BezierCloseNodes.xbm
share/sketch/Sketch/Pixmaps/BezierCurveLine.gif
share/sketch/Sketch/Pixmaps/BezierCurveLine.xbm
share/sketch/Sketch/Pixmaps/BezierDeleteNode.gif
share/sketch/Sketch/Pixmaps/BezierDeleteNode.xbm
share/sketch/Sketch/Pixmaps/BezierInsertNode.gif
share/sketch/Sketch/Pixmaps/BezierInsertNode.xbm
share/sketch/Sketch/Pixmaps/BezierLineCurve.gif
share/sketch/Sketch/Pixmaps/BezierLineCurve.xbm
share/sketch/Sketch/Pixmaps/BezierOpenNodes.gif
share/sketch/Sketch/Pixmaps/BezierOpenNodes.xbm
share/sketch/Sketch/Pixmaps/BezierSmooth.gif
share/sketch/Sketch/Pixmaps/BezierSmooth.xbm
share/sketch/Sketch/Pixmaps/BezierSymm.gif
share/sketch/Sketch/Pixmaps/BezierSymm.xbm
share/sketch/Sketch/Pixmaps/CapButt.xbm
share/sketch/Sketch/Pixmaps/CapProjecting.xbm
share/sketch/Sketch/Pixmaps/CapRound.xbm
share/sketch/Sketch/Pixmaps/Center.xbm
share/sketch/Sketch/Pixmaps/CreateCurve.gif
share/sketch/Sketch/Pixmaps/CreateCurve.xbm
share/sketch/Sketch/Pixmaps/CreateEllipse.gif
share/sketch/Sketch/Pixmaps/CreateEllipse.xbm
share/sketch/Sketch/Pixmaps/CreatePoly.gif
share/sketch/Sketch/Pixmaps/CreatePoly.xbm
share/sketch/Sketch/Pixmaps/CreateRect.gif
share/sketch/Sketch/Pixmaps/CreateRect.xbm
share/sketch/Sketch/Pixmaps/CurDown.xbm
share/sketch/Sketch/Pixmaps/CurDown_mask.xbm
share/sketch/Sketch/Pixmaps/CurEdit.xbm
share/sketch/Sketch/Pixmaps/CurEdit_mask.xbm
share/sketch/Sketch/Pixmaps/CurUp.xbm
share/sketch/Sketch/Pixmaps/CurUpDown.xbm
share/sketch/Sketch/Pixmaps/CurUpDown_mask.xbm
share/sketch/Sketch/Pixmaps/CurUp_mask.xbm
share/sketch/Sketch/Pixmaps/CurZoom.xbm
share/sketch/Sketch/Pixmaps/CurZoom_mask.xbm
share/sketch/Sketch/Pixmaps/Delete.gif
share/sketch/Sketch/Pixmaps/Delete.xbm
share/sketch/Sketch/Pixmaps/Duplicate.gif
share/sketch/Sketch/Pixmaps/Duplicate.xbm
share/sketch/Sketch/Pixmaps/EditMode.xbm
share/sketch/Sketch/Pixmaps/FlipHorizontal.gif
share/sketch/Sketch/Pixmaps/FlipHorizontal.xbm
share/sketch/Sketch/Pixmaps/FlipVertical.gif
share/sketch/Sketch/Pixmaps/FlipVertical.xbm
share/sketch/Sketch/Pixmaps/GridOn.xbm
share/sketch/Sketch/Pixmaps/Group.gif
share/sketch/Sketch/Pixmaps/Group.xbm
share/sketch/Sketch/Pixmaps/Image.gif
share/sketch/Sketch/Pixmaps/Image.xbm
share/sketch/Sketch/Pixmaps/JoinBevel.xbm
share/sketch/Sketch/Pixmaps/JoinMiter.xbm
share/sketch/Sketch/Pixmaps/JoinRound.xbm
share/sketch/Sketch/Pixmaps/LayerDown.xbm
share/sketch/Sketch/Pixmaps/LayerNew.xbm
share/sketch/Sketch/Pixmaps/LayerUp.xbm
share/sketch/Sketch/Pixmaps/MoveOneDown.xbm
share/sketch/Sketch/Pixmaps/MoveOneUp.xbm
share/sketch/Sketch/Pixmaps/MoveToBottom.xbm
share/sketch/Sketch/Pixmaps/MoveToTop.xbm
share/sketch/Sketch/Pixmaps/New12/MiniEyeClosed.xbm
share/sketch/Sketch/Pixmaps/New12/MiniEyeOpen.xbm
share/sketch/Sketch/Pixmaps/New12/MiniLockClosed.xbm
share/sketch/Sketch/Pixmaps/New12/MiniLockOpen.xbm
share/sketch/Sketch/Pixmaps/New12/MiniOutlineOff.xbm
share/sketch/Sketch/Pixmaps/New12/MiniOutlineOn.xbm
share/sketch/Sketch/Pixmaps/New12/MiniPrintOff.xbm
share/sketch/Sketch/Pixmaps/New12/MiniPrintOn.xbm
share/sketch/Sketch/Pixmaps/NewDocument.gif
share/sketch/Sketch/Pixmaps/NewDocument.xbm
share/sketch/Sketch/Pixmaps/NoPattern.xbm
share/sketch/Sketch/Pixmaps/Open.gif
share/sketch/Sketch/Pixmaps/Open.xbm
share/sketch/Sketch/Pixmaps/Portrait.xbm
share/sketch/Sketch/Pixmaps/Portrait_mask.xbm
share/sketch/Sketch/Pixmaps/Redo.gif
share/sketch/Sketch/Pixmaps/Redo.xbm
share/sketch/Sketch/Pixmaps/Save.gif
share/sketch/Sketch/Pixmaps/Save.xbm
share/sketch/Sketch/Pixmaps/SelectionMode.gif
share/sketch/Sketch/Pixmaps/SelectionMode.xbm
share/sketch/Sketch/Pixmaps/ShearLR.xbm
share/sketch/Sketch/Pixmaps/ShearUD.xbm
share/sketch/Sketch/Pixmaps/Text.gif
share/sketch/Sketch/Pixmaps/Text.xbm
share/sketch/Sketch/Pixmaps/TurnBL.xbm
share/sketch/Sketch/Pixmaps/TurnBR.xbm
share/sketch/Sketch/Pixmaps/TurnTL.xbm
share/sketch/Sketch/Pixmaps/TurnTR.xbm
share/sketch/Sketch/Pixmaps/Undo.gif
share/sketch/Sketch/Pixmaps/Undo.xbm
share/sketch/Sketch/Pixmaps/Ungroup.gif
share/sketch/Sketch/Pixmaps/Ungroup.xbm
share/sketch/Sketch/Pixmaps/Zoom.gif
share/sketch/Sketch/Pixmaps/Zoom.xbm
share/sketch/Sketch/Pixmaps/fill_gradient.gif
share/sketch/Sketch/Pixmaps/fill_gradient.xbm
share/sketch/Sketch/Pixmaps/fill_hatch.gif
share/sketch/Sketch/Pixmaps/fill_hatch.xbm
share/sketch/Sketch/Pixmaps/fill_none.xbm
share/sketch/Sketch/Pixmaps/fill_solid.gif
share/sketch/Sketch/Pixmaps/fill_solid.xbm
share/sketch/Sketch/Pixmaps/fill_tile.gif
share/sketch/Sketch/Pixmaps/fill_tile.xbm
share/sketch/Sketch/Pixmaps/gradient_conical.gif
share/sketch/Sketch/Pixmaps/gradient_conical.xbm
share/sketch/Sketch/Pixmaps/gradient_linear.gif
share/sketch/Sketch/Pixmaps/gradient_linear.xbm
share/sketch/Sketch/Pixmaps/gradient_radial.gif
share/sketch/Sketch/Pixmaps/gradient_radial.xbm
share/sketch/Sketch/Scripting/__init__.py
share/sketch/Sketch/Scripting/__init__.pyc
share/sketch/Sketch/Scripting/registry.py
share/sketch/Sketch/Scripting/registry.pyc
share/sketch/Sketch/Scripting/script.py
share/sketch/Sketch/Scripting/script.pyc
share/sketch/Sketch/Scripting/wrapper.py
share/sketch/Sketch/Scripting/wrapper.pyc
share/sketch/Sketch/UI/__init__.py
share/sketch/Sketch/UI/__init__.pyc
share/sketch/Sketch/UI/aligndlg.py
share/sketch/Sketch/UI/aligndlg.pyc
share/sketch/Sketch/UI/blenddlg.py
share/sketch/Sketch/UI/blenddlg.pyc
share/sketch/Sketch/UI/canvas.py
share/sketch/Sketch/UI/canvas.pyc
share/sketch/Sketch/UI/colordlg.py
share/sketch/Sketch/UI/colordlg.pyc
share/sketch/Sketch/UI/command.py
share/sketch/Sketch/UI/command.pyc
share/sketch/Sketch/UI/converters.py
share/sketch/Sketch/UI/converters.pyc
share/sketch/Sketch/UI/cursorstack.py
share/sketch/Sketch/UI/cursorstack.pyc
share/sketch/Sketch/UI/curvedlg.py
share/sketch/Sketch/UI/curvedlg.pyc
share/sketch/Sketch/UI/export.py
share/sketch/Sketch/UI/export.pyc
share/sketch/Sketch/UI/filldlg.py
share/sketch/Sketch/UI/filldlg.pyc
share/sketch/Sketch/UI/fontdlg.py
share/sketch/Sketch/UI/fontdlg.pyc
share/sketch/Sketch/UI/gradientedit.py
share/sketch/Sketch/UI/gradientedit.pyc
share/sketch/Sketch/UI/griddlg.py
share/sketch/Sketch/UI/griddlg.pyc
share/sketch/Sketch/UI/guidedlg.py
share/sketch/Sketch/UI/guidedlg.pyc
share/sketch/Sketch/UI/layerdlg.py
share/sketch/Sketch/UI/layerdlg.pyc
share/sketch/Sketch/UI/layoutdlg.py
share/sketch/Sketch/UI/layoutdlg.pyc
share/sketch/Sketch/UI/lengthvar.py
share/sketch/Sketch/UI/lengthvar.pyc
share/sketch/Sketch/UI/linedlg.py
share/sketch/Sketch/UI/linedlg.pyc
share/sketch/Sketch/UI/mainwindow.py
share/sketch/Sketch/UI/mainwindow.pyc
share/sketch/Sketch/UI/miniscroll.py
share/sketch/Sketch/UI/miniscroll.pyc
share/sketch/Sketch/UI/modes.py
share/sketch/Sketch/UI/modes.pyc
share/sketch/Sketch/UI/optiondlg.py
share/sketch/Sketch/UI/optiondlg.pyc
share/sketch/Sketch/UI/palette.py
share/sketch/Sketch/UI/palette.pyc
share/sketch/Sketch/UI/plugindlg.py
share/sketch/Sketch/UI/plugindlg.pyc
share/sketch/Sketch/UI/poslabel.py
share/sketch/Sketch/UI/poslabel.pyc
share/sketch/Sketch/UI/printdlg.py
share/sketch/Sketch/UI/printdlg.pyc
share/sketch/Sketch/UI/prompt.py
share/sketch/Sketch/UI/prompt.pyc
share/sketch/Sketch/UI/reloaddlg.py
share/sketch/Sketch/UI/reloaddlg.pyc
share/sketch/Sketch/UI/ruler.py
share/sketch/Sketch/UI/ruler.pyc
share/sketch/Sketch/UI/skapp.py
share/sketch/Sketch/UI/skapp.pyc
share/sketch/Sketch/UI/sketchdlg.py
share/sketch/Sketch/UI/sketchdlg.pyc
share/sketch/Sketch/UI/skpixmaps.py
share/sketch/Sketch/UI/skpixmaps.pyc
share/sketch/Sketch/UI/styledlg.py
share/sketch/Sketch/UI/styledlg.pyc
share/sketch/Sketch/UI/tkext.py
share/sketch/Sketch/UI/tkext.pyc
share/sketch/Sketch/UI/tooltips.py
share/sketch/Sketch/UI/tooltips.pyc
share/sketch/Sketch/UI/view.py
share/sketch/Sketch/UI/view.pyc
share/sketch/Sketch/UI/viewport.py
share/sketch/Sketch/UI/viewport.pyc
share/sketch/Sketch/VERSION
share/sketch/Sketch/__init__.py
share/sketch/Sketch/__init__.pyc
share/sketch/finishinst.py
share/sketch/sk2ppm.py
share/sketch/sk2ps.py
share/sketch/skconvert.py
share/sketch/sketch.py
share/sketch/skshow.py
@dirrm share/sketch/Sketch/UI
@dirrm share/sketch/Sketch/Scripting
@dirrm share/sketch/Sketch/Pixmaps/New12
@dirrm share/sketch/Sketch/Pixmaps
@dirrm share/sketch/Sketch/Modules
@dirrm share/sketch/Sketch/Lib
@dirrm share/sketch/Sketch/Graphics
@dirrm share/sketch/Sketch/Base
@dirrm share/sketch/Sketch
@dirrm share/sketch/Script
@dirrm share/sketch/Resources/Misc
@dirrm share/sketch/Resources/Messages/sv/LC_MESSAGES
@dirrm share/sketch/Resources/Messages/sv
@dirrm share/sketch/Resources/Messages/ru/LC_MESSAGES
@dirrm share/sketch/Resources/Messages/ru
@dirrm share/sketch/Resources/Messages/pt_BR/LC_MESSAGES
@dirrm share/sketch/Resources/Messages/pt_BR
@dirrm share/sketch/Resources/Messages/it/LC_MESSAGES
@dirrm share/sketch/Resources/Messages/it
@dirrm share/sketch/Resources/Messages/fr/LC_MESSAGES
@dirrm share/sketch/Resources/Messages/fr
@dirrm share/sketch/Resources/Messages/es/LC_MESSAGES
@dirrm share/sketch/Resources/Messages/es
@dirrm share/sketch/Resources/Messages/de/LC_MESSAGES
@dirrm share/sketch/Resources/Messages/de
@dirrm share/sketch/Resources/Messages/da/LC_MESSAGES
@dirrm share/sketch/Resources/Messages/da
@dirrm share/sketch/Resources/Messages
@dirrm share/sketch/Resources/Fontmetrics
@dirrm share/sketch/Resources
@dirrm share/sketch/Plugins/Objects/Lib/multilinetext
@dirrm share/sketch/Plugins/Objects/Lib
@dirrm share/sketch/Plugins/Objects
@dirrm share/sketch/Plugins/Filters/garbage
@dirrm share/sketch/Plugins/Filters/Lib
@dirrm share/sketch/Plugins/Filters
@dirrm share/sketch/Plugins
@dirrm share/sketch/Pax/Generate
@dirrm share/sketch/Pax
@dirrm share/sketch/Filter
@dirrm share/sketch
@dirrm share/examples/sketch
%%PORTDOCS%%@dirrm share/doc/sketch/Doc/Images
%%PORTDOCS%%@dirrm share/doc/sketch/Doc
%%PORTDOCS%%@dirrm share/doc/sketch