summaryrefslogtreecommitdiff
path: root/graphics/skencil
diff options
context:
space:
mode:
authorThomas Gellekum <tg@FreeBSD.org>1998-12-11 12:52:21 +0000
committerThomas Gellekum <tg@FreeBSD.org>1998-12-11 12:52:21 +0000
commit989e9a374e2622132ff7303073a6532df8118455 (patch)
treec8f6acbc15179c546d4a2ac93fd36f5ee389d583 /graphics/skencil
parentFix this - the backslash was escaping a trailing tab, not the newline. (diff)
New port sketch, an interactive drawing program, written in
Python with a few C modules. This is still experimental code.
Notes
Notes: svn path=/head/; revision=15275
Diffstat (limited to 'graphics/skencil')
-rw-r--r--graphics/skencil/Makefile58
-rw-r--r--graphics/skencil/distinfo1
-rw-r--r--graphics/skencil/files/excludelist10
-rw-r--r--graphics/skencil/files/sk2ps.in4
-rw-r--r--graphics/skencil/files/sketch.in4
-rw-r--r--graphics/skencil/pkg-comment1
-rw-r--r--graphics/skencil/pkg-descr13
-rw-r--r--graphics/skencil/pkg-plist510
8 files changed, 601 insertions, 0 deletions
diff --git a/graphics/skencil/Makefile b/graphics/skencil/Makefile
new file mode 100644
index 000000000000..81b6a90682e6
--- /dev/null
+++ b/graphics/skencil/Makefile
@@ -0,0 +1,58 @@
+# New ports collection makefile for: sketch
+# Version required: 0.5.2
+# Date created: 04 November 1998
+# Whom: Thomas Gellekum <tg@FreeBSD.ORG>
+#
+# $Id$
+#
+
+DISTNAME= sketch-0.5.2
+CATEGORIES= graphics
+MASTER_SITES= http://www.online.de/home/sketch/
+
+MAINTAINER= ports@FreeBSD.ORG
+
+BUILD_DEPENDS= ${PREFIX}/include/python1.5/Imaging.h:${PORTSDIR}/graphics/py-imaging
+RUN_DEPENDS= python:${PORTSDIR}/lang/python \
+ ${PREFIX}/lib/python1.5/site-packages/_imaging.so:${PORTSDIR}/graphics/py-imaging
+
+MAKE_FLAGS= OPT="${CFLAGS}" -f
+ALL_TARGET=
+
+SKETCHDIR= ${PREFIX}/share/sketch
+SKETCHDOCDIR= ${PREFIX}/share/doc/sketch
+SKETCHDOCS= BUGS Doc NEWS PROJECTS README TODO
+SKETCHEXDIR= ${PREFIX}/share/examples/sketch
+
+post-extract:
+ ${CP} ${FILESDIR}/Setup.Pax ${WRKSRC}/Pax/Setup
+ ${CP} ${FILESDIR}/Setup.Modules ${WRKSRC}/Sketch/Modules/Setup
+
+do-configure:
+ (cd ${WRKSRC}/Pax; ${MAKE} -f Makefile.pre.in boot)
+ (cd ${WRKSRC}/Filter; ${MAKE} -f Makefile.pre.in boot)
+ (cd ${WRKSRC}/Sketch/Modules; ${MAKE} -f Makefile.pre.in boot)
+
+do-build:
+ @(cd ${WRKSRC}/Pax; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET})
+ @(cd ${WRKSRC}/Filter; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET})
+ @(cd ${WRKSRC}/Sketch/Modules; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET})
+
+do-install:
+ ${MKDIR} ${SKETCHDIR}
+.for dir in Filter Pax Plugins Resources Script Sketch
+ (cd ${WRKSRC}; tar -c -f - --exclude-from=${FILESDIR}/excludelist ${dir}) | \
+ (cd ${SKETCHDIR}/; tar xf -)
+.endfor
+ (cd ${WRKSRC}; ${INSTALL_SCRIPT} finishinst.py sk2ps.py sketch.py ${SKETCHDIR})
+ ${MKDIR} ${SKETCHDOCDIR}
+ (cd ${WRKSRC}; tar cf - ${SKETCHDOCS}) | (cd ${SKETCHDOCDIR}; tar xf -)
+ ${MKDIR} ${SKETCHEXDIR}
+ (cd ${WRKSRC}/Examples; tar cf - .) | (cd ${SKETCHEXDIR}; tar xf -)
+ (cd ${SKETCHDIR}; python finishinst.py)
+ ${SED} -e "s|@PREFIX@|${PREFIX}|g" < ${FILESDIR}/sketch.in > ${PREFIX}/bin/sketch
+ chmod +x ${PREFIX}/bin/sketch
+ ${SED} -e "s|@PREFIX@|${PREFIX}|g" < ${FILESDIR}/sk2ps.in > ${PREFIX}/bin/sk2ps
+ chmod +x ${PREFIX}/bin/sk2ps
+
+.include <bsd.port.mk>
diff --git a/graphics/skencil/distinfo b/graphics/skencil/distinfo
new file mode 100644
index 000000000000..42ba7b4126e2
--- /dev/null
+++ b/graphics/skencil/distinfo
@@ -0,0 +1 @@
+MD5 (sketch-0.5.2.tar.gz) = 582bb12827f832bf5c5af10673c70bda
diff --git a/graphics/skencil/files/excludelist b/graphics/skencil/files/excludelist
new file mode 100644
index 000000000000..ae9336517538
--- /dev/null
+++ b/graphics/skencil/files/excludelist
@@ -0,0 +1,10 @@
+Setup
+Setup.in
+Makefile
+Makefile.pre
+Makefile.pre.in
+sedscript
+README
+*.c
+*.h
+*.o
diff --git a/graphics/skencil/files/sk2ps.in b/graphics/skencil/files/sk2ps.in
new file mode 100644
index 000000000000..f1e6fce8891d
--- /dev/null
+++ b/graphics/skencil/files/sk2ps.in
@@ -0,0 +1,4 @@
+#!/bin/sh
+
+cd @PREFIX@/share/sketch
+exec @PREFIX@/bin/python sk2ps.py
diff --git a/graphics/skencil/files/sketch.in b/graphics/skencil/files/sketch.in
new file mode 100644
index 000000000000..2ce0a4304b80
--- /dev/null
+++ b/graphics/skencil/files/sketch.in
@@ -0,0 +1,4 @@
+#!/bin/sh
+
+cd @PREFIX@/share/sketch
+exec @PREFIX@/bin/python sketch.py
diff --git a/graphics/skencil/pkg-comment b/graphics/skencil/pkg-comment
new file mode 100644
index 000000000000..311cfea19525
--- /dev/null
+++ b/graphics/skencil/pkg-comment
@@ -0,0 +1 @@
+An interactive drawing program.
diff --git a/graphics/skencil/pkg-descr b/graphics/skencil/pkg-descr
new file mode 100644
index 000000000000..568edbcf2862
--- /dev/null
+++ b/graphics/skencil/pkg-descr
@@ -0,0 +1,13 @@
+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 <http://www.online.de/home/sketch>, or contact the author
+<sketch@online.de>.
+
+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.
diff --git a/graphics/skencil/pkg-plist b/graphics/skencil/pkg-plist
new file mode 100644
index 000000000000..d086f488172e
--- /dev/null
+++ b/graphics/skencil/pkg-plist
@@ -0,0 +1,510 @@
+bin/sketch
+bin/sk2ps
+share/sketch/Filter/streamfilter.so
+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/Plugins/Filters/ailoader.py
+share/sketch/Plugins/Filters/ailoader.pyc
+share/sketch/Plugins/Filters/gziploader.py
+share/sketch/Plugins/Filters/gziploader.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/xfigloader.py
+share/sketch/Plugins/Filters/xfigloader.pyc
+share/sketch/Plugins/Objects/lcdtext.py
+share/sketch/Plugins/Objects/lcdtext.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/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/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/mkfontdir.py
+share/sketch/Script/swapbench.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/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/dashes.py
+share/sketch/Sketch/Graphics/dashes.pyc
+share/sketch/Sketch/Graphics/document.py
+share/sketch/Sketch/Graphics/document.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/primitives.py
+share/sketch/Sketch/Graphics/primitives.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/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/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/skreadmodule.so
+share/sketch/Sketch/Pixmaps/AlignBottom.xbm
+share/sketch/Sketch/Pixmaps/AlignCenterX.xbm
+share/sketch/Sketch/Pixmaps/AlignCenterY.xbm
+share/sketch/Sketch/Pixmaps/AlignLeft.xbm
+share/sketch/Sketch/Pixmaps/AlignRight.xbm
+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.xbm
+share/sketch/Sketch/Pixmaps/BezierCloseNodes.xbm
+share/sketch/Sketch/Pixmaps/BezierCurveLine.xbm
+share/sketch/Sketch/Pixmaps/BezierDeleteNode.xbm
+share/sketch/Sketch/Pixmaps/BezierInsertNode.xbm
+share/sketch/Sketch/Pixmaps/BezierLineCurve.xbm
+share/sketch/Sketch/Pixmaps/BezierOpenNodes.xbm
+share/sketch/Sketch/Pixmaps/BezierSmooth.xbm
+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.xbm
+share/sketch/Sketch/Pixmaps/CreateEllipse.xbm
+share/sketch/Sketch/Pixmaps/CreateLine.xbm
+share/sketch/Sketch/Pixmaps/CreatePoly.xbm
+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/Cut.xbm
+share/sketch/Sketch/Pixmaps/Delete.xbm
+share/sketch/Sketch/Pixmaps/Duplicate.xbm
+share/sketch/Sketch/Pixmaps/EditMode.xbm
+share/sketch/Sketch/Pixmaps/Fill.xbm
+share/sketch/Sketch/Pixmaps/FlipHorizontal.xbm
+share/sketch/Sketch/Pixmaps/FlipVertical.xbm
+share/sketch/Sketch/Pixmaps/GridOff.xbm
+share/sketch/Sketch/Pixmaps/GridOn.xbm
+share/sketch/Sketch/Pixmaps/Group.xbm
+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/MiniArrowLeft.xbm
+share/sketch/Sketch/Pixmaps/New12/MiniArrowRight.xbm
+share/sketch/Sketch/Pixmaps/New12/MiniCapButt.xbm
+share/sketch/Sketch/Pixmaps/New12/MiniCapProjecting.xbm
+share/sketch/Sketch/Pixmaps/New12/MiniCapRound.xbm
+share/sketch/Sketch/Pixmaps/New12/MiniDashes.xbm
+share/sketch/Sketch/Pixmaps/New12/MiniEyeClosed.xbm
+share/sketch/Sketch/Pixmaps/New12/MiniEyeOpen.xbm
+share/sketch/Sketch/Pixmaps/New12/MiniFill.xbm
+share/sketch/Sketch/Pixmaps/New12/MiniFont.xbm
+share/sketch/Sketch/Pixmaps/New12/MiniFontSize.xbm
+share/sketch/Sketch/Pixmaps/New12/MiniJoinBevel.xbm
+share/sketch/Sketch/Pixmaps/New12/MiniJoinMiter.xbm
+share/sketch/Sketch/Pixmaps/New12/MiniJoinRound.xbm
+share/sketch/Sketch/Pixmaps/New12/MiniLine.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/New12/MiniWidth.xbm
+share/sketch/Sketch/Pixmaps/NewDocument.xbm
+share/sketch/Sketch/Pixmaps/Open.xbm
+share/sketch/Sketch/Pixmaps/Pen.xbm
+share/sketch/Sketch/Pixmaps/Pencil.xbm
+share/sketch/Sketch/Pixmaps/Portrait.xbm
+share/sketch/Sketch/Pixmaps/Portrait_mask.xbm
+share/sketch/Sketch/Pixmaps/Redo.xbm
+share/sketch/Sketch/Pixmaps/Save.xbm
+share/sketch/Sketch/Pixmaps/SelectionMode.xbm
+share/sketch/Sketch/Pixmaps/ShearLR.xbm
+share/sketch/Sketch/Pixmaps/ShearUD.xbm
+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.xbm
+share/sketch/Sketch/Pixmaps/Ungroup.xbm
+share/sketch/Sketch/Pixmaps/Zoom.xbm
+share/sketch/Sketch/Pixmaps/fill_gradient.xbm
+share/sketch/Sketch/Pixmaps/fill_hatch.xbm
+share/sketch/Sketch/Pixmaps/fill_none.xbm
+share/sketch/Sketch/Pixmaps/fill_solid.xbm
+share/sketch/Sketch/Pixmaps/fill_tile.xbm
+share/sketch/Sketch/Pixmaps/gradient_conical.xbm
+share/sketch/Sketch/Pixmaps/gradient_linear.xbm
+share/sketch/Sketch/Pixmaps/gradient_radial.xbm
+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/balloonhelp.py
+share/sketch/Sketch/UI/balloonhelp.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/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/view.py
+share/sketch/Sketch/UI/view.pyc
+share/sketch/Sketch/UI/viewport.py
+share/sketch/Sketch/UI/viewport.pyc
+share/sketch/Sketch/__init__.py
+share/sketch/Sketch/__init__.pyc
+share/sketch/finishinst.py
+share/sketch/sk2ps.py
+share/sketch/sketch.py
+share/doc/sketch/BUGS
+share/doc/sketch/Doc/Images/CreateCurve.gif
+share/doc/sketch/Doc/Images/CreateEllipse.gif
+share/doc/sketch/Doc/Images/CreatePoly.gif
+share/doc/sketch/Doc/Images/CreateRect.gif
+share/doc/sketch/Doc/Images/Delete.gif
+share/doc/sketch/Doc/Images/Duplicate.gif
+share/doc/sketch/Doc/Images/EditMode.gif
+share/doc/sketch/Doc/Images/FlipHorizontal.gif
+share/doc/sketch/Doc/Images/FlipVertical.gif
+share/doc/sketch/Doc/Images/GridOff.gif
+share/doc/sketch/Doc/Images/GridOn.gif
+share/doc/sketch/Doc/Images/Group.gif
+share/doc/sketch/Doc/Images/Image.gif
+share/doc/sketch/Doc/Images/MiniEyeClosed.gif
+share/doc/sketch/Doc/Images/MiniEyeOpen.gif
+share/doc/sketch/Doc/Images/MiniPrintOff.gif
+share/doc/sketch/Doc/Images/MiniPrintOn.gif
+share/doc/sketch/Doc/Images/MoveOneDown.gif
+share/doc/sketch/Doc/Images/MoveOneUp.gif
+share/doc/sketch/Doc/Images/MoveToBottom.gif
+share/doc/sketch/Doc/Images/MoveToTop.gif
+share/doc/sketch/Doc/Images/NewDocument.gif
+share/doc/sketch/Doc/Images/Open.gif
+share/doc/sketch/Doc/Images/Redo.gif
+share/doc/sketch/Doc/Images/Save.gif
+share/doc/sketch/Doc/Images/SelectionMode.gif
+share/doc/sketch/Doc/Images/Text.gif
+share/doc/sketch/Doc/Images/Undo.gif
+share/doc/sketch/Doc/Images/Ungroup.gif
+share/doc/sketch/Doc/Images/Zoom.gif
+share/doc/sketch/Doc/Images/arrow-left.gif
+share/doc/sketch/Doc/Images/arrow-right.gif
+share/doc/sketch/Doc/Images/arrow-up.gif
+share/doc/sketch/Doc/Images/bullet.gif
+share/doc/sketch/Doc/Images/gradient-conical.gif
+share/doc/sketch/Doc/Images/gradient-linear.gif
+share/doc/sketch/Doc/Images/gradient-radial.gif
+share/doc/sketch/Doc/Images/layers.gif
+share/doc/sketch/Doc/Images/selsize.gif
+share/doc/sketch/Doc/Images/seltrafo.gif
+share/doc/sketch/Doc/Images/sketch-logo.gif
+share/doc/sketch/Doc/Images/textpath.gif
+share/doc/sketch/Doc/Images/textpathrot.gif
+share/doc/sketch/Doc/Images/textpathskew.gif
+share/doc/sketch/Doc/devguide-1.html
+share/doc/sketch/Doc/devguide-10.html
+share/doc/sketch/Doc/devguide-11.html
+share/doc/sketch/Doc/devguide-12.html
+share/doc/sketch/Doc/devguide-13.html
+share/doc/sketch/Doc/devguide-14.html
+share/doc/sketch/Doc/devguide-15.html
+share/doc/sketch/Doc/devguide-16.html
+share/doc/sketch/Doc/devguide-17.html
+share/doc/sketch/Doc/devguide-18.html
+share/doc/sketch/Doc/devguide-19.html
+share/doc/sketch/Doc/devguide-2.html
+share/doc/sketch/Doc/devguide-20.html
+share/doc/sketch/Doc/devguide-21.html
+share/doc/sketch/Doc/devguide-22.html
+share/doc/sketch/Doc/devguide-23.html
+share/doc/sketch/Doc/devguide-24.html
+share/doc/sketch/Doc/devguide-25.html
+share/doc/sketch/Doc/devguide-26.html
+share/doc/sketch/Doc/devguide-27.html
+share/doc/sketch/Doc/devguide-28.html
+share/doc/sketch/Doc/devguide-29.html
+share/doc/sketch/Doc/devguide-3.html
+share/doc/sketch/Doc/devguide-30.html
+share/doc/sketch/Doc/devguide-31.html
+share/doc/sketch/Doc/devguide-32.html
+share/doc/sketch/Doc/devguide-33.html
+share/doc/sketch/Doc/devguide-34.html
+share/doc/sketch/Doc/devguide-35.html
+share/doc/sketch/Doc/devguide-36.html
+share/doc/sketch/Doc/devguide-37.html
+share/doc/sketch/Doc/devguide-4.html
+share/doc/sketch/Doc/devguide-5.html
+share/doc/sketch/Doc/devguide-6.html
+share/doc/sketch/Doc/devguide-7.html
+share/doc/sketch/Doc/devguide-8.html
+share/doc/sketch/Doc/devguide-9.html
+share/doc/sketch/Doc/devguide.html
+share/doc/sketch/Doc/fonts.alias
+share/doc/sketch/Doc/fonts.scale
+share/doc/sketch/Doc/usersguide-1.html
+share/doc/sketch/Doc/usersguide-10.html
+share/doc/sketch/Doc/usersguide-11.html
+share/doc/sketch/Doc/usersguide-12.html
+share/doc/sketch/Doc/usersguide-13.html
+share/doc/sketch/Doc/usersguide-14.html
+share/doc/sketch/Doc/usersguide-15.html
+share/doc/sketch/Doc/usersguide-16.html
+share/doc/sketch/Doc/usersguide-17.html
+share/doc/sketch/Doc/usersguide-18.html
+share/doc/sketch/Doc/usersguide-19.html
+share/doc/sketch/Doc/usersguide-2.html
+share/doc/sketch/Doc/usersguide-3.html
+share/doc/sketch/Doc/usersguide-4.html
+share/doc/sketch/Doc/usersguide-5.html
+share/doc/sketch/Doc/usersguide-6.html
+share/doc/sketch/Doc/usersguide-7.html
+share/doc/sketch/Doc/usersguide-8.html
+share/doc/sketch/Doc/usersguide-9.html
+share/doc/sketch/Doc/usersguide.html
+share/doc/sketch/NEWS
+share/doc/sketch/PROJECTS
+share/doc/sketch/README
+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/text.sk
+@dirrm share/sketch/Sketch/UI
+@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/Fontmetrics
+@dirrm share/sketch/Resources
+@dirrm share/sketch/Plugins/Objects
+@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
+@dirrm share/doc/sketch/Doc/Images
+@dirrm share/doc/sketch/Doc
+@dirrm share/doc/sketch