aboutsummaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authorLi-Wen Hsu <lwhsu@FreeBSD.org>2009-07-02 01:46:33 +0000
committerLi-Wen Hsu <lwhsu@FreeBSD.org>2009-07-02 01:46:33 +0000
commit8390759afbb42649325979ca0877b631800551e2 (patch)
tree4f27975ecb315ef559d998ff3f59218639d90b0d /lang
parentc2599781f507e17187f5588f5dbc0a4b2db0a46a (diff)
downloadports-8390759afbb42649325979ca0877b631800551e2.tar.gz
ports-8390759afbb42649325979ca0877b631800551e2.zip
- Honor EXAMPLESDIR, DATADIR and NOPORTEXAMPLES, NOPORTDATA
- Remove bsddb module in pkg-message since it's removed from Python default modules (python3 user should use databases/py-bsddb3) - Fix WITH_UCS4 support - Mark jobs safe - Makefile/patch cleanup PR: ports/133440 Submitted by: Paul Hoffman <phoffman AT proper.com>
Notes
Notes: svn path=/head/; revision=236890
Diffstat (limited to 'lang')
-rw-r--r--lang/python30/Makefile33
-rw-r--r--lang/python30/files/patch-setup.py2
-rw-r--r--lang/python30/pkg-message1
-rw-r--r--lang/python30/pkg-plist1094
-rw-r--r--lang/python31/Makefile33
-rw-r--r--lang/python31/files/patch-setup.py2
-rw-r--r--lang/python31/pkg-message1
-rw-r--r--lang/python31/pkg-plist1094
-rw-r--r--lang/python32/Makefile33
-rw-r--r--lang/python32/files/patch-setup.py2
-rw-r--r--lang/python32/pkg-message1
-rw-r--r--lang/python32/pkg-plist1094
12 files changed, 1689 insertions, 1701 deletions
diff --git a/lang/python30/Makefile b/lang/python30/Makefile
index af7c50ed02b6..b84ede6d7a1c 100644
--- a/lang/python30/Makefile
+++ b/lang/python30/Makefile
@@ -6,6 +6,7 @@
PORTNAME= python30
PORTVERSION= 3.0.1
+PORTREVISION= 1
CATEGORIES= lang python ipv6
MASTER_SITES= ${PYTHON_MASTER_SITES}
MASTER_SITE_SUBDIR= ${PYTHON_MASTER_SITE_SUBDIR}
@@ -21,6 +22,7 @@ GNU_CONFIGURE= yes
CONFIGURE_SCRIPT= ../configure # must be relative
CONFIGURE_ENV= OPT="${CFLAGS}" SVNVERSION="echo freebsd"
MAKE_ENV= VPATH="${PYTHON_WRKSRC}"
+MAKE_JOBS_SAFE= yes
USE_LDCONFIG= yes
INSTALL_TARGET= altinstall
MAN1= ${PYTHON_VERSION}.1
@@ -34,8 +36,8 @@ PLIST= ${WRKDIR}/PLIST
PLIST_TEMPLATE?=${PKGDIR}/pkg-plist
PLIST_SUB= PYVER=${PYTHON_VERSION:S/python//} \
PYVER_WITHPAT=${PORTVERSION:S/.rc/rc/}
-DEMODIR= ${PREFIX}/share/examples/${PYTHON_VERSION}
-TOOLSDIR= ${PREFIX}/share/${PYTHON_VERSION}
+EXAMPLESDIR= ${PREFIX}/share/examples/${PYTHON_VERSION}
+DATADIR= ${PREFIX}/share/${PYTHON_VERSION}
PLATFORMS= plat-freebsd4 plat-freebsd5 plat-freebsd6 \
plat-freebsd7 plat-freebsd8
@@ -83,23 +85,13 @@ CONFIGURE_ENV+= LDFLAGS="${LDFLAGS}"
.endif # !defined(WITHOUT_THREADS)
.if !defined(WITHOUT_UCS4) && !defined(WITH_UCS2)
-CONFIGURE_ARGS+= --enable-unicode=ucs4
+CONFIGURE_ARGS+= --with-wide-unicode
.endif
.if defined(WITHOUT_PYMALLOC)
CONFIGURE_ARGS+= --without-pymalloc
.endif
-.if ${ARCH} == i386
-PLIST_SUB+= X86_ONLY=""
-.else
-PLIST_SUB+= X86_ONLY="@comment "
-.endif
-.if ${ARCH} == amd64 || ${ARCH} == ia64 || ${ARCH} == sparc64 || ${ARCH} == alpha
-PLIST_SUB+= 32BIT_ONLY="@comment "
-.else
-PLIST_SUB+= 32BIT_ONLY=""
-.endif
.if ${ARCH} == sparc64
CFLAGS+= -DPYTHON_DEFAULT_RECURSION_LIMIT=900
.endif
@@ -219,15 +211,20 @@ post-install:
done
.endif
-.if !defined(NOPORTDOCS)
- @${MKDIR} ${TOOLSDIR}
+.if !defined(NOPORTDATA)
+ @${MKDIR} ${DATADIR}
@cd ${PYTHON_WRKSRC}; ${TAR} -cf - Tools | \
- (cd ${TOOLSDIR}; ${TAR} -xf -)
- @${MKDIR} ${DEMODIR}
+ (cd ${DATADIR}; ${TAR} -xf -)
+.endif
+.if !defined(NOPORTEXAMPLES)
+ @${MKDIR} ${EXAMPLESDIR}
@cd ${PYTHON_WRKSRC}/Demo; ${TAR} -cf - * | \
- (cd ${DEMODIR}; ${TAR} -xf -)
+ (cd ${EXAMPLESDIR}; ${TAR} -xf -)
.endif
@${CAT} ${PKGMESSAGE}
+regression-test:
+ cd ${WRKSRC} && make test
+
.include <bsd.port.post.mk>
diff --git a/lang/python30/files/patch-setup.py b/lang/python30/files/patch-setup.py
index 8cf1db755408..7fc196bdf38f 100644
--- a/lang/python30/files/patch-setup.py
+++ b/lang/python30/files/patch-setup.py
@@ -5,7 +5,7 @@
# This global variable is used to hold the list of modules to be disabled.
-disabled_module_list = []
-+disabled_module_list = ["_bsddb", "_sqlite3", "_tkinter", "_gdbm", "mpz"]
++disabled_module_list = ["_sqlite3", "_tkinter", "_gdbm"]
def add_dir_to_list(dirlist, dir):
"""Add the directory 'dir' to the list 'dirlist' (at the front) if
diff --git a/lang/python30/pkg-message b/lang/python30/pkg-message
index a3ba9904996b..8c7d09348c5b 100644
--- a/lang/python30/pkg-message
+++ b/lang/python30/pkg-message
@@ -2,7 +2,6 @@
Note that some of the standard modules are provided as separate
ports since they require extra dependencies:
-bsddb databases/py-bsddb
gdbm databases/py-gdbm
sqlite3 databases/py-sqlite3
tkinter x11-toolkits/py-tkinter
diff --git a/lang/python30/pkg-plist b/lang/python30/pkg-plist
index 66bf9bf7e366..827aed2ca375 100644
--- a/lang/python30/pkg-plist
+++ b/lang/python30/pkg-plist
@@ -14,6 +14,9 @@ bin/python-shared%%PYVER%%
bin/python-shared%%PYVER%%-config
%%IF_DEFAULT%%bin/smtpd.py
bin/smtpd%%PYVER%%.py
+lib/lib%%PYTHON_VERSION%%.a
+lib/lib%%PYTHON_VERSION%%.so
+lib/lib%%PYTHON_VERSION%%.so.1
%%PYTHON_INCLUDEDIR%%/Python-ast.h
%%PYTHON_INCLUDEDIR%%/Python.h
%%PYTHON_INCLUDEDIR%%/abstract.h
@@ -99,9 +102,6 @@ bin/smtpd%%PYVER%%.py
%%PYTHON_INCLUDEDIR%%/unicodeobject.h
%%PYTHON_INCLUDEDIR%%/warnings.h
%%PYTHON_INCLUDEDIR%%/weakrefobject.h
-lib/lib%%PYTHON_VERSION%%.so
-lib/lib%%PYTHON_VERSION%%.so.1
-lib/lib%%PYTHON_VERSION%%.a
%%PYTHON_LIBDIR%%/LICENSE.txt
%%PYTHON_LIBDIR%%/__future__.py
%%PYTHON_LIBDIR%%/__phello__.foo.py
@@ -1264,8 +1264,8 @@ lib/lib%%PYTHON_VERSION%%.a
%%PYTHON_LIBDIR%%/test/test_operator.py
%%PYTHON_LIBDIR%%/test/test_optparse.py
%%PYTHON_LIBDIR%%/test/test_os.py
-%%PYTHON_LIBDIR%%/test/test_osx_env.py
%%PYTHON_LIBDIR%%/test/test_ossaudiodev.py
+%%PYTHON_LIBDIR%%/test/test_osx_env.py
%%PYTHON_LIBDIR%%/test/test_parser.py
%%PYTHON_LIBDIR%%/test/test_peepholer.py
%%PYTHON_LIBDIR%%/test/test_pep247.py
@@ -1487,549 +1487,549 @@ lib/lib%%PYTHON_VERSION%%.a
%%PYTHON_LIBDIR%%/xmlrpc/client.py
%%PYTHON_LIBDIR%%/xmlrpc/server.py
%%PYTHON_LIBDIR%%/zipfile.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/cgi/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/cgi/cgi0.sh
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/cgi/cgi1.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/cgi/cgi2.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/cgi/cgi3.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/cgi/wiki.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/classes/Complex.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/classes/Dates.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/classes/Dbm.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/classes/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/classes/Range.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/classes/Rev.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/classes/Vec.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/classes/bitvec.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/comparisons/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/comparisons/patterns
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/comparisons/regextest.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/comparisons/sortingtest.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/comparisons/systemtest.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/curses/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/curses/life.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/curses/ncurses.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/curses/rain.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/curses/repeat.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/curses/tclock.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/curses/xmas.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/distutils/test2to3/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/distutils/test2to3/maintest.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/distutils/test2to3/setup.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/distutils/test2to3/test2to3/__init__.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/distutils/test2to3/test2to3/hello.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/embed/Makefile
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/embed/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/embed/demo.c
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/embed/importexc.c
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/embed/loop.c
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/imputil/knee.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/md5test/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/md5test/foo
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/md5test/md5driver.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/metaclasses/Eiffel.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/metaclasses/Enum.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/metaclasses/Meta.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/metaclasses/Simple.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/metaclasses/Synch.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/metaclasses/Trace.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/metaclasses/index.html
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/metaclasses/meta-vladimir.txt
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/newmetaclasses/Eiffel.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/newmetaclasses/Enum.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/parser/FILES
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/parser/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/parser/docstring.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/parser/example.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/parser/simple.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/parser/source.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/parser/test_parser.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/parser/texipre.dat
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/parser/unparse.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/FSProxy.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/RCSProxy.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/client.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/cmdfw.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/cmptree.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/cvslib.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/cvslock.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/mac.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/makechangelog.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/rcsbump
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/rcsclient.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/rcslib.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/rcvs
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/rcvs.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/rrcs
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/rrcs.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/security.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/server.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/sumtree.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pysvr/Makefile
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pysvr/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pysvr/pysvr.c
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pysvr/pysvr.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/rpc/MANIFEST
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/rpc/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/rpc/T.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/rpc/mountclient.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/rpc/nfsclient.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/rpc/rnusersclient.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/rpc/rpc.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/rpc/test
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/rpc/xdr.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/beer.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/eqfix.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/fact.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/find-uname.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/from.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/ftpstats.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/lpwatch.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/makedir.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/markov.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/mboxconvert.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/mkrcs.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/newslist.doc
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/newslist.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/pi.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/pp.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/primes.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/queens.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/script.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/toaiff.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/unbirthday.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/update.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/wh.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/broadcast.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/echosvr.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/finger.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/ftp.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/gopher.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/mcast.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/radio.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/rpython.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/rpythond.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/telnet.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/throughput.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/udpecho.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/unicast.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/unixclient.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/unixserver.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/threads/Coroutine.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/threads/Generator.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/threads/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/threads/fcmp.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/threads/find.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/threads/squasher.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/threads/sync.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/threads/telnet.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/INSTALL.txt
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/README.txt
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/about.xpm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/bold.xbm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/capital.xbm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/centerj.xbm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/combobox.xbm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/combobox.xpm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/combobox.xpm.1
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/drivea.xbm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/drivea.xpm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/exit.xpm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/filebox.xbm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/filebox.xpm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/italic.xbm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/justify.xbm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/leftj.xbm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/netw.xbm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/netw.xpm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/optmenu.xpm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/rightj.xbm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/select.xpm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/tix.gif
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/underline.xbm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/grid.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/samples/Balloon.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/samples/BtnBox.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/samples/CmpImg.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/samples/ComboBox.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/samples/Control.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/samples/DirList.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/samples/DirTree.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/samples/NoteBook.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/samples/OptMenu.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/samples/PanedWin.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/samples/PopMenu.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/samples/SHList1.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/samples/SHList2.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/samples/Tree.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/tixwidgets.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/AttrDialog.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/ManPage.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/MimeViewer.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/ShellWindow.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/brownian.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/brownian2.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/canvasevents.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/dialog.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/electrons.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/hanoi.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/hello.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/imagedraw.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/imageview.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/kill.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/listtree.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/mbox.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/newmenubardemo.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/optionmenu.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/paint.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/rmt.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/solitaire.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/sortvisu.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/ss1.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/svkill.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/switch.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/tkman.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/wish.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/00-HELLO-WORLD.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/animation-simple.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/animation-w-velocity-ctrl.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/bind-w-mult-calls-p-type.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/canvas-demo-simple.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/canvas-gridding.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/canvas-moving-or-creating.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/canvas-moving-w-mouse.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/canvas-mult-item-sel.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/canvas-reading-tag-info.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/canvas-w-widget-draw-el.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/canvas-with-scrollbars.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/dialog-box.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/entry-simple.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/entry-with-shared-variable.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/killing-window-w-wm.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/menu-all-types-of-entries.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/menu-simple.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/not-what-you-might-think-1.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/not-what-you-might-think-2.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/packer-and-placer-together.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/packer-simple.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/placer-simple.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/pong-demo-1.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/printing-coords-of-items.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/radiobutton-simple.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/rubber-band-box-demo-1.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/rubber-line-demo-1.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/slider-demo-1.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/subclass-existing-widgets.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/two-radio-groups.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/window-creation-more.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/window-creation-simple.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/window-creation-w-location.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/about_turtle.txt
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/about_turtledemo.txt
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/demohelp.txt
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_I_dontlike_tiltdemo.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_bytedesign.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_chaos.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_clock.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_colormixer.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_forest.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_fractalcurves.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_lindenmayer_indian.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_minimal_hanoi.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_paint.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_peace.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_penrose.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_planet_and_moon.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_tree.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_wikipedia.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_yinyang.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/turtle.cfg
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/turtleDemo.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/turtledemo_two_canvases.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/xml/elem_count.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/xml/roundtrip.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/xml/rss2html.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/zlib/minigzip.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/zlib/zlibdemo.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/README
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/buildbot/README.tcltk-AMD64
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/buildbot/build-amd64.bat
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/buildbot/build.bat
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/buildbot/buildmsi.bat
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/buildbot/clean-amd64.bat
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/buildbot/clean.bat
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/buildbot/external-amd64.bat
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/buildbot/external-common.bat
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/buildbot/external.bat
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/buildbot/test-amd64.bat
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/buildbot/test.bat
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/faqwiz/README
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/faqwiz/faqconf.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/faqwiz/faqcust.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/faqwiz/faqw.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/faqwiz/faqwiz.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/faqwiz/move-faqwiz.sh
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/framer/README.txt
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/framer/TODO.txt
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/framer/example.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/framer/framer/__init__.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/framer/framer/bases.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/framer/framer/function.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/framer/framer/member.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/framer/framer/slots.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/framer/framer/struct.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/framer/framer/structparse.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/framer/framer/template.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/framer/framer/util.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/freeze/README
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/freeze/bkfile.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/freeze/checkextensions.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/freeze/checkextensions_win32.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/freeze/extensions_win32.ini
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/freeze/flag.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/freeze/freeze.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/freeze/hello.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/freeze/makeconfig.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/freeze/makefreeze.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/freeze/makemakefile.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/freeze/parsesetup.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/freeze/win32.html
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/freeze/winmakemakefile.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/i18n/makelocalealias.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/i18n/msgfmt.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/i18n/pygettext.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/EXAMPLE.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/README
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/ScrolledListbox.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/copyright
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/module_head
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/module_method
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/module_tail
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_head
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_method
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_mlist
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_new
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_structure
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_tail
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_tp_as_mapping
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_tp_as_number
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_tp_as_sequence
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_tp_call
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_tp_compare
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_tp_dealloc
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_tp_getattr
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_tp_hash
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_tp_print
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_tp_repr
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_tp_setattr
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_tp_str
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Tkextra.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/genmodule.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/modulator.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/varsubst.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/msi/README.txt
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/msi/crtlicense.txt
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/msi/merge.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/msi/msi.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/msi/msilib.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/msi/msisupport.c
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/msi/msisupport.mak
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/msi/schema.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/msi/sequence.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/msi/uisample.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/msi/uuids.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/Arithmetic.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/Calls.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/CommandLine.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/Constructs.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/Dict.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/Exceptions.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/Imports.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/Instances.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/LICENSE
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/Lists.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/Lookups.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/NewInstances.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/Numbers.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/README
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/Setup.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/Strings.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/Tuples.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/Unicode.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/With.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/clockres.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/package/__init__.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/package/submodule.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/pybench.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/systimes.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/ChipViewer.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/ColorDB.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/DetailsViewer.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/ListViewer.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/Main.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/PyncheWidget.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/README
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/StripViewer.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/Switchboard.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/TextViewer.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/TypeinViewer.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/X/rgb.txt
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/X/xlicense.txt
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/__init__.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/html40colors.txt
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/namedcolors.txt
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/pyColorChooser.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/pynche
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/pynche.pyw
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/webcolors.txt
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/websafe.txt
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/2to3
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/README
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/byext.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/byteyears.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/checkappend.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/checkpyc.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/classfix.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/cleanfuture.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/combinerefs.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/copytime.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/crlf.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/cvsfiles.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/db2pickle.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/diff.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/dutree.doc
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/dutree.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/eptags.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/finddiv.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/findlinksto.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/findnocoding.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/fixcid.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/fixdiv.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/fixheader.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/fixnotice.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/fixps.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/ftpmirror.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/google.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/gprof2html.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/h2py.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/idle
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/ifdef.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/lfcr.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/linktree.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/lll.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/logmerge.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/mailerdaemon.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/make_ctype.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/md5sum.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/methfix.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/mkreal.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/ndiff.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/nm2def.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/objgraph.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/parseentities.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/patchcheck.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/pathfix.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/pdeps.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/pickle2db.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/pindent.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/ptags.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/pydoc
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/pydocgui.pyw
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/pysource.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/redemo.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/reindent.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/rgrep.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/setup.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/smtpd.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/suff.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/svneol.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/texi2html.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/treesync.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/untabify.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/which.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/win_add2path.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/xxci.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/ssl/get-remote-certificate.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/unicode/Makefile
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/unicode/comparecodecs.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/unicode/gencjkcodecs.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/unicode/gencodec.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/unicode/listcodecs.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/unicode/makeunicodedata.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/unicode/mkstringprep.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/unicode/python-mappings/CP1140.TXT
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/unicode/python-mappings/KOI8-U.TXT
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/unicode/python-mappings/TIS-620.TXT
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/versioncheck/README
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/versioncheck/_checkversion.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/versioncheck/checkversions.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/versioncheck/pyversioncheck.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/webchecker/README
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/webchecker/tktools.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/webchecker/wcgui.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/webchecker/wcmac.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/webchecker/webchecker.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/webchecker/websucker.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/webchecker/wsgui.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/world/README
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/world/world
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/world
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/webchecker
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/versioncheck
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/unicode/python-mappings
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/unicode
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/ssl
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/scripts
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/pynche/X
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/pynche
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/pybench/package
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/pybench
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/msi
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/modulator/Templates
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/modulator
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/i18n
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/freeze
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/framer/framer
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/framer
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/faqwiz
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/buildbot
-%%PORTDOCS%%@unexec /bin/rm -fr %D/share/%%PYTHON_VERSION%%/Tools || true
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/zlib
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/xml
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/turtle
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/tkinter/matt
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/tkinter/guido
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/tkinter
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/tix/samples
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/tix/bitmaps
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/tix
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/threads
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/sockets
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/scripts
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/rpc
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/pysvr
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/pdist
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/parser
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/newmetaclasses
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/metaclasses
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/md5test
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/imputil
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/embed
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/distutils/test2to3/test2to3
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/distutils/test2to3
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/distutils
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/curses
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/comparisons
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/classes
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/cgi
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cgi/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cgi/cgi0.sh
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cgi/cgi1.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cgi/cgi2.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cgi/cgi3.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cgi/wiki.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/classes/Complex.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/classes/Dates.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/classes/Dbm.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/classes/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/classes/Range.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/classes/Rev.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/classes/Vec.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/classes/bitvec.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comparisons/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comparisons/patterns
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comparisons/regextest.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comparisons/sortingtest.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comparisons/systemtest.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/curses/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/curses/life.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/curses/ncurses.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/curses/rain.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/curses/repeat.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/curses/tclock.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/curses/xmas.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/distutils/test2to3/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/distutils/test2to3/maintest.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/distutils/test2to3/setup.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/distutils/test2to3/test2to3/__init__.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/distutils/test2to3/test2to3/hello.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/embed/Makefile
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/embed/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/embed/demo.c
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/embed/importexc.c
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/embed/loop.c
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/imputil/knee.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/md5test/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/md5test/foo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/md5test/md5driver.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/metaclasses/Eiffel.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/metaclasses/Enum.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/metaclasses/Meta.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/metaclasses/Simple.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/metaclasses/Synch.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/metaclasses/Trace.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/metaclasses/index.html
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/metaclasses/meta-vladimir.txt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/newmetaclasses/Eiffel.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/newmetaclasses/Enum.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parser/FILES
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parser/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parser/docstring.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parser/example.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parser/simple.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parser/source.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parser/test_parser.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parser/texipre.dat
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parser/unparse.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/FSProxy.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/RCSProxy.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/client.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/cmdfw.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/cmptree.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/cvslib.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/cvslock.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/mac.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/makechangelog.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/rcsbump
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/rcsclient.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/rcslib.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/rcvs
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/rcvs.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/rrcs
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/rrcs.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/security.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/server.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/sumtree.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pysvr/Makefile
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pysvr/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pysvr/pysvr.c
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pysvr/pysvr.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rpc/MANIFEST
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rpc/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rpc/T.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rpc/mountclient.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rpc/nfsclient.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rpc/rnusersclient.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rpc/rpc.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rpc/test
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rpc/xdr.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/beer.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/eqfix.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/fact.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/find-uname.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/from.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/ftpstats.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/lpwatch.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/makedir.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/markov.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/mboxconvert.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/mkrcs.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/newslist.doc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/newslist.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/pi.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/pp.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/primes.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/queens.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/script.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/toaiff.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/unbirthday.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/update.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/wh.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/broadcast.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/echosvr.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/finger.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/ftp.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/gopher.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/mcast.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/radio.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/rpython.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/rpythond.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/telnet.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/throughput.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/udpecho.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/unicast.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/unixclient.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/unixserver.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/threads/Coroutine.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/threads/Generator.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/threads/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/threads/fcmp.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/threads/find.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/threads/squasher.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/threads/sync.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/threads/telnet.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/INSTALL.txt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/README.txt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/about.xpm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/bold.xbm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/capital.xbm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/centerj.xbm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/combobox.xbm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/combobox.xpm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/combobox.xpm.1
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/drivea.xbm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/drivea.xpm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/exit.xpm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/filebox.xbm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/filebox.xpm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/italic.xbm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/justify.xbm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/leftj.xbm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/netw.xbm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/netw.xpm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/optmenu.xpm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/rightj.xbm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/select.xpm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/tix.gif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/underline.xbm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/grid.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/samples/Balloon.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/samples/BtnBox.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/samples/CmpImg.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/samples/ComboBox.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/samples/Control.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/samples/DirList.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/samples/DirTree.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/samples/NoteBook.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/samples/OptMenu.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/samples/PanedWin.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/samples/PopMenu.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/samples/SHList1.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/samples/SHList2.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/samples/Tree.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/tixwidgets.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/AttrDialog.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/ManPage.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/MimeViewer.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/ShellWindow.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/brownian.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/brownian2.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/canvasevents.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/dialog.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/electrons.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/hanoi.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/hello.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/imagedraw.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/imageview.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/kill.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/listtree.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/mbox.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/newmenubardemo.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/optionmenu.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/paint.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/rmt.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/solitaire.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/sortvisu.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/ss1.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/svkill.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/switch.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/tkman.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/wish.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/00-HELLO-WORLD.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/animation-simple.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/animation-w-velocity-ctrl.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/bind-w-mult-calls-p-type.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/canvas-demo-simple.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/canvas-gridding.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/canvas-moving-or-creating.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/canvas-moving-w-mouse.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/canvas-mult-item-sel.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/canvas-reading-tag-info.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/canvas-w-widget-draw-el.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/canvas-with-scrollbars.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/dialog-box.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/entry-simple.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/entry-with-shared-variable.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/killing-window-w-wm.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/menu-all-types-of-entries.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/menu-simple.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/not-what-you-might-think-1.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/not-what-you-might-think-2.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/packer-and-placer-together.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/packer-simple.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/placer-simple.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/pong-demo-1.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/printing-coords-of-items.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/radiobutton-simple.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/rubber-band-box-demo-1.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/rubber-line-demo-1.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/slider-demo-1.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/subclass-existing-widgets.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/two-radio-groups.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/window-creation-more.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/window-creation-simple.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/window-creation-w-location.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/about_turtle.txt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/about_turtledemo.txt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/demohelp.txt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_I_dontlike_tiltdemo.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_bytedesign.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_chaos.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_clock.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_colormixer.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_forest.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_fractalcurves.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_lindenmayer_indian.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_minimal_hanoi.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_paint.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_peace.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_penrose.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_planet_and_moon.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_tree.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_wikipedia.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_yinyang.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/turtle.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/turtleDemo.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/turtledemo_two_canvases.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/xml/elem_count.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/xml/roundtrip.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/xml/rss2html.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/zlib/minigzip.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/zlib/zlibdemo.py
+%%PORTDATA%%%%DATADIR%%/Tools/README
+%%PORTDATA%%%%DATADIR%%/Tools/buildbot/README.tcltk-AMD64
+%%PORTDATA%%%%DATADIR%%/Tools/buildbot/build-amd64.bat
+%%PORTDATA%%%%DATADIR%%/Tools/buildbot/build.bat
+%%PORTDATA%%%%DATADIR%%/Tools/buildbot/buildmsi.bat
+%%PORTDATA%%%%DATADIR%%/Tools/buildbot/clean-amd64.bat
+%%PORTDATA%%%%DATADIR%%/Tools/buildbot/clean.bat
+%%PORTDATA%%%%DATADIR%%/Tools/buildbot/external-amd64.bat
+%%PORTDATA%%%%DATADIR%%/Tools/buildbot/external-common.bat
+%%PORTDATA%%%%DATADIR%%/Tools/buildbot/external.bat
+%%PORTDATA%%%%DATADIR%%/Tools/buildbot/test-amd64.bat
+%%PORTDATA%%%%DATADIR%%/Tools/buildbot/test.bat
+%%PORTDATA%%%%DATADIR%%/Tools/faqwiz/README
+%%PORTDATA%%%%DATADIR%%/Tools/faqwiz/faqconf.py
+%%PORTDATA%%%%DATADIR%%/Tools/faqwiz/faqcust.py
+%%PORTDATA%%%%DATADIR%%/Tools/faqwiz/faqw.py
+%%PORTDATA%%%%DATADIR%%/Tools/faqwiz/faqwiz.py
+%%PORTDATA%%%%DATADIR%%/Tools/faqwiz/move-faqwiz.sh
+%%PORTDATA%%%%DATADIR%%/Tools/framer/README.txt
+%%PORTDATA%%%%DATADIR%%/Tools/framer/TODO.txt
+%%PORTDATA%%%%DATADIR%%/Tools/framer/example.py
+%%PORTDATA%%%%DATADIR%%/Tools/framer/framer/__init__.py
+%%PORTDATA%%%%DATADIR%%/Tools/framer/framer/bases.py
+%%PORTDATA%%%%DATADIR%%/Tools/framer/framer/function.py
+%%PORTDATA%%%%DATADIR%%/Tools/framer/framer/member.py
+%%PORTDATA%%%%DATADIR%%/Tools/framer/framer/slots.py
+%%PORTDATA%%%%DATADIR%%/Tools/framer/framer/struct.py
+%%PORTDATA%%%%DATADIR%%/Tools/framer/framer/structparse.py
+%%PORTDATA%%%%DATADIR%%/Tools/framer/framer/template.py
+%%PORTDATA%%%%DATADIR%%/Tools/framer/framer/util.py
+%%PORTDATA%%%%DATADIR%%/Tools/freeze/README
+%%PORTDATA%%%%DATADIR%%/Tools/freeze/bkfile.py
+%%PORTDATA%%%%DATADIR%%/Tools/freeze/checkextensions.py
+%%PORTDATA%%%%DATADIR%%/Tools/freeze/checkextensions_win32.py
+%%PORTDATA%%%%DATADIR%%/Tools/freeze/extensions_win32.ini
+%%PORTDATA%%%%DATADIR%%/Tools/freeze/flag.py
+%%PORTDATA%%%%DATADIR%%/Tools/freeze/freeze.py
+%%PORTDATA%%%%DATADIR%%/Tools/freeze/hello.py
+%%PORTDATA%%%%DATADIR%%/Tools/freeze/makeconfig.py
+%%PORTDATA%%%%DATADIR%%/Tools/freeze/makefreeze.py
+%%PORTDATA%%%%DATADIR%%/Tools/freeze/makemakefile.py
+%%PORTDATA%%%%DATADIR%%/Tools/freeze/parsesetup.py
+%%PORTDATA%%%%DATADIR%%/Tools/freeze/win32.html
+%%PORTDATA%%%%DATADIR%%/Tools/freeze/winmakemakefile.py
+%%PORTDATA%%%%DATADIR%%/Tools/i18n/makelocalealias.py
+%%PORTDATA%%%%DATADIR%%/Tools/i18n/msgfmt.py
+%%PORTDATA%%%%DATADIR%%/Tools/i18n/pygettext.py
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/EXAMPLE.py
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/README
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/ScrolledListbox.py
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/copyright
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/module_head
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/module_method
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/module_tail
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_head
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_method
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_mlist
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_new
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_structure
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_tail
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_tp_as_mapping
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_tp_as_number
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_tp_as_sequence
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_tp_call
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_tp_compare
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_tp_dealloc
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_tp_getattr
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_tp_hash
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_tp_print
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_tp_repr
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_tp_setattr
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_tp_str
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Tkextra.py
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/genmodule.py
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/modulator.py
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/varsubst.py
+%%PORTDATA%%%%DATADIR%%/Tools/msi/README.txt
+%%PORTDATA%%%%DATADIR%%/Tools/msi/crtlicense.txt
+%%PORTDATA%%%%DATADIR%%/Tools/msi/merge.py
+%%PORTDATA%%%%DATADIR%%/Tools/msi/msi.py
+%%PORTDATA%%%%DATADIR%%/Tools/msi/msilib.py
+%%PORTDATA%%%%DATADIR%%/Tools/msi/msisupport.c
+%%PORTDATA%%%%DATADIR%%/Tools/msi/msisupport.mak
+%%PORTDATA%%%%DATADIR%%/Tools/msi/schema.py
+%%PORTDATA%%%%DATADIR%%/Tools/msi/sequence.py
+%%PORTDATA%%%%DATADIR%%/Tools/msi/uisample.py
+%%PORTDATA%%%%DATADIR%%/Tools/msi/uuids.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/Arithmetic.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/Calls.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/CommandLine.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/Constructs.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/Dict.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/Exceptions.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/Imports.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/Instances.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/LICENSE
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/Lists.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/Lookups.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/NewInstances.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/Numbers.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/README
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/Setup.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/Strings.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/Tuples.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/Unicode.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/With.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/clockres.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/package/__init__.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/package/submodule.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/pybench.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/systimes.py
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/ChipViewer.py
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/ColorDB.py
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/DetailsViewer.py
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/ListViewer.py
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/Main.py
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/PyncheWidget.py
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/README
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/StripViewer.py
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/Switchboard.py
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/TextViewer.py
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/TypeinViewer.py
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/X/rgb.txt
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/X/xlicense.txt
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/__init__.py
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/html40colors.txt
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/namedcolors.txt
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/pyColorChooser.py
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/pynche
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/pynche.pyw
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/webcolors.txt
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/websafe.txt
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/2to3
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/README
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/byext.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/byteyears.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/checkappend.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/checkpyc.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/classfix.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/cleanfuture.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/combinerefs.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/copytime.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/crlf.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/cvsfiles.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/db2pickle.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/diff.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/dutree.doc
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/dutree.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/eptags.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/finddiv.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/findlinksto.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/findnocoding.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/fixcid.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/fixdiv.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/fixheader.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/fixnotice.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/fixps.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/ftpmirror.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/google.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/gprof2html.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/h2py.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/idle
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/ifdef.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/lfcr.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/linktree.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/lll.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/logmerge.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/mailerdaemon.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/make_ctype.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/md5sum.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/methfix.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/mkreal.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/ndiff.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/nm2def.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/objgraph.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/parseentities.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/patchcheck.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/pathfix.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/pdeps.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/pickle2db.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/pindent.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/ptags.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/pydoc
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/pydocgui.pyw
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/pysource.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/redemo.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/reindent.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/rgrep.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/setup.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/smtpd.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/suff.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/svneol.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/texi2html.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/treesync.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/untabify.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/which.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/win_add2path.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/xxci.py
+%%PORTDATA%%%%DATADIR%%/Tools/ssl/get-remote-certificate.py
+%%PORTDATA%%%%DATADIR%%/Tools/unicode/Makefile
+%%PORTDATA%%%%DATADIR%%/Tools/unicode/comparecodecs.py
+%%PORTDATA%%%%DATADIR%%/Tools/unicode/gencjkcodecs.py
+%%PORTDATA%%%%DATADIR%%/Tools/unicode/gencodec.py
+%%PORTDATA%%%%DATADIR%%/Tools/unicode/listcodecs.py
+%%PORTDATA%%%%DATADIR%%/Tools/unicode/makeunicodedata.py
+%%PORTDATA%%%%DATADIR%%/Tools/unicode/mkstringprep.py
+%%PORTDATA%%%%DATADIR%%/Tools/unicode/python-mappings/CP1140.TXT
+%%PORTDATA%%%%DATADIR%%/Tools/unicode/python-mappings/KOI8-U.TXT
+%%PORTDATA%%%%DATADIR%%/Tools/unicode/python-mappings/TIS-620.TXT
+%%PORTDATA%%%%DATADIR%%/Tools/versioncheck/README
+%%PORTDATA%%%%DATADIR%%/Tools/versioncheck/_checkversion.py
+%%PORTDATA%%%%DATADIR%%/Tools/versioncheck/checkversions.py
+%%PORTDATA%%%%DATADIR%%/Tools/versioncheck/pyversioncheck.py
+%%PORTDATA%%%%DATADIR%%/Tools/webchecker/README
+%%PORTDATA%%%%DATADIR%%/Tools/webchecker/tktools.py
+%%PORTDATA%%%%DATADIR%%/Tools/webchecker/wcgui.py
+%%PORTDATA%%%%DATADIR%%/Tools/webchecker/wcmac.py
+%%PORTDATA%%%%DATADIR%%/Tools/webchecker/webchecker.py
+%%PORTDATA%%%%DATADIR%%/Tools/webchecker/websucker.py
+%%PORTDATA%%%%DATADIR%%/Tools/webchecker/wsgui.py
+%%PORTDATA%%%%DATADIR%%/Tools/world/README
+%%PORTDATA%%%%DATADIR%%/Tools/world/world
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/world
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/webchecker
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/versioncheck
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/unicode/python-mappings
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/unicode
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/ssl
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/scripts
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/pynche/X
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/pynche
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/pybench/package
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/pybench
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/msi
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/modulator/Templates
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/modulator
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/i18n
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/freeze
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/framer/framer
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/framer
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/faqwiz
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/buildbot
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools
+%%PORTDATA%%@dirrm %%DATADIR%%
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/zlib
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/xml
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/turtle
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tkinter/matt
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tkinter/guido
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tkinter
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tix/samples
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tix/bitmaps
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tix
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/threads
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/sockets
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/scripts
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/rpc
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/pysvr
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/pdist
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/parser
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/newmetaclasses
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/metaclasses
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/md5test
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/imputil
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/embed
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/distutils/test2to3/test2to3
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/distutils/test2to3
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/distutils
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/curses
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/comparisons
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/classes
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/cgi
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%
@dirrm %%PYTHON_LIBDIR%%/xmlrpc
@dirrm %%PYTHON_LIBDIR%%/xml/sax
@dirrm %%PYTHON_LIBDIR%%/xml/parsers
diff --git a/lang/python31/Makefile b/lang/python31/Makefile
index af7c50ed02b6..b84ede6d7a1c 100644
--- a/lang/python31/Makefile
+++ b/lang/python31/Makefile
@@ -6,6 +6,7 @@
PORTNAME= python30
PORTVERSION= 3.0.1
+PORTREVISION= 1
CATEGORIES= lang python ipv6
MASTER_SITES= ${PYTHON_MASTER_SITES}
MASTER_SITE_SUBDIR= ${PYTHON_MASTER_SITE_SUBDIR}
@@ -21,6 +22,7 @@ GNU_CONFIGURE= yes
CONFIGURE_SCRIPT= ../configure # must be relative
CONFIGURE_ENV= OPT="${CFLAGS}" SVNVERSION="echo freebsd"
MAKE_ENV= VPATH="${PYTHON_WRKSRC}"
+MAKE_JOBS_SAFE= yes
USE_LDCONFIG= yes
INSTALL_TARGET= altinstall
MAN1= ${PYTHON_VERSION}.1
@@ -34,8 +36,8 @@ PLIST= ${WRKDIR}/PLIST
PLIST_TEMPLATE?=${PKGDIR}/pkg-plist
PLIST_SUB= PYVER=${PYTHON_VERSION:S/python//} \
PYVER_WITHPAT=${PORTVERSION:S/.rc/rc/}
-DEMODIR= ${PREFIX}/share/examples/${PYTHON_VERSION}
-TOOLSDIR= ${PREFIX}/share/${PYTHON_VERSION}
+EXAMPLESDIR= ${PREFIX}/share/examples/${PYTHON_VERSION}
+DATADIR= ${PREFIX}/share/${PYTHON_VERSION}
PLATFORMS= plat-freebsd4 plat-freebsd5 plat-freebsd6 \
plat-freebsd7 plat-freebsd8
@@ -83,23 +85,13 @@ CONFIGURE_ENV+= LDFLAGS="${LDFLAGS}"
.endif # !defined(WITHOUT_THREADS)
.if !defined(WITHOUT_UCS4) && !defined(WITH_UCS2)
-CONFIGURE_ARGS+= --enable-unicode=ucs4
+CONFIGURE_ARGS+= --with-wide-unicode
.endif
.if defined(WITHOUT_PYMALLOC)
CONFIGURE_ARGS+= --without-pymalloc
.endif
-.if ${ARCH} == i386
-PLIST_SUB+= X86_ONLY=""
-.else
-PLIST_SUB+= X86_ONLY="@comment "
-.endif
-.if ${ARCH} == amd64 || ${ARCH} == ia64 || ${ARCH} == sparc64 || ${ARCH} == alpha
-PLIST_SUB+= 32BIT_ONLY="@comment "
-.else
-PLIST_SUB+= 32BIT_ONLY=""
-.endif
.if ${ARCH} == sparc64
CFLAGS+= -DPYTHON_DEFAULT_RECURSION_LIMIT=900
.endif
@@ -219,15 +211,20 @@ post-install:
done
.endif
-.if !defined(NOPORTDOCS)
- @${MKDIR} ${TOOLSDIR}
+.if !defined(NOPORTDATA)
+ @${MKDIR} ${DATADIR}
@cd ${PYTHON_WRKSRC}; ${TAR} -cf - Tools | \
- (cd ${TOOLSDIR}; ${TAR} -xf -)
- @${MKDIR} ${DEMODIR}
+ (cd ${DATADIR}; ${TAR} -xf -)
+.endif
+.if !defined(NOPORTEXAMPLES)
+ @${MKDIR} ${EXAMPLESDIR}
@cd ${PYTHON_WRKSRC}/Demo; ${TAR} -cf - * | \
- (cd ${DEMODIR}; ${TAR} -xf -)
+ (cd ${EXAMPLESDIR}; ${TAR} -xf -)
.endif
@${CAT} ${PKGMESSAGE}
+regression-test:
+ cd ${WRKSRC} && make test
+
.include <bsd.port.post.mk>
diff --git a/lang/python31/files/patch-setup.py b/lang/python31/files/patch-setup.py
index 8cf1db755408..7fc196bdf38f 100644
--- a/lang/python31/files/patch-setup.py
+++ b/lang/python31/files/patch-setup.py
@@ -5,7 +5,7 @@
# This global variable is used to hold the list of modules to be disabled.
-disabled_module_list = []
-+disabled_module_list = ["_bsddb", "_sqlite3", "_tkinter", "_gdbm", "mpz"]
++disabled_module_list = ["_sqlite3", "_tkinter", "_gdbm"]
def add_dir_to_list(dirlist, dir):
"""Add the directory 'dir' to the list 'dirlist' (at the front) if
diff --git a/lang/python31/pkg-message b/lang/python31/pkg-message
index a3ba9904996b..8c7d09348c5b 100644
--- a/lang/python31/pkg-message
+++ b/lang/python31/pkg-message
@@ -2,7 +2,6 @@
Note that some of the standard modules are provided as separate
ports since they require extra dependencies:
-bsddb databases/py-bsddb
gdbm databases/py-gdbm
sqlite3 databases/py-sqlite3
tkinter x11-toolkits/py-tkinter
diff --git a/lang/python31/pkg-plist b/lang/python31/pkg-plist
index 66bf9bf7e366..827aed2ca375 100644
--- a/lang/python31/pkg-plist
+++ b/lang/python31/pkg-plist
@@ -14,6 +14,9 @@ bin/python-shared%%PYVER%%
bin/python-shared%%PYVER%%-config
%%IF_DEFAULT%%bin/smtpd.py
bin/smtpd%%PYVER%%.py
+lib/lib%%PYTHON_VERSION%%.a
+lib/lib%%PYTHON_VERSION%%.so
+lib/lib%%PYTHON_VERSION%%.so.1
%%PYTHON_INCLUDEDIR%%/Python-ast.h
%%PYTHON_INCLUDEDIR%%/Python.h
%%PYTHON_INCLUDEDIR%%/abstract.h
@@ -99,9 +102,6 @@ bin/smtpd%%PYVER%%.py
%%PYTHON_INCLUDEDIR%%/unicodeobject.h
%%PYTHON_INCLUDEDIR%%/warnings.h
%%PYTHON_INCLUDEDIR%%/weakrefobject.h
-lib/lib%%PYTHON_VERSION%%.so
-lib/lib%%PYTHON_VERSION%%.so.1
-lib/lib%%PYTHON_VERSION%%.a
%%PYTHON_LIBDIR%%/LICENSE.txt
%%PYTHON_LIBDIR%%/__future__.py
%%PYTHON_LIBDIR%%/__phello__.foo.py
@@ -1264,8 +1264,8 @@ lib/lib%%PYTHON_VERSION%%.a
%%PYTHON_LIBDIR%%/test/test_operator.py
%%PYTHON_LIBDIR%%/test/test_optparse.py
%%PYTHON_LIBDIR%%/test/test_os.py
-%%PYTHON_LIBDIR%%/test/test_osx_env.py
%%PYTHON_LIBDIR%%/test/test_ossaudiodev.py
+%%PYTHON_LIBDIR%%/test/test_osx_env.py
%%PYTHON_LIBDIR%%/test/test_parser.py
%%PYTHON_LIBDIR%%/test/test_peepholer.py
%%PYTHON_LIBDIR%%/test/test_pep247.py
@@ -1487,549 +1487,549 @@ lib/lib%%PYTHON_VERSION%%.a
%%PYTHON_LIBDIR%%/xmlrpc/client.py
%%PYTHON_LIBDIR%%/xmlrpc/server.py
%%PYTHON_LIBDIR%%/zipfile.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/cgi/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/cgi/cgi0.sh
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/cgi/cgi1.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/cgi/cgi2.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/cgi/cgi3.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/cgi/wiki.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/classes/Complex.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/classes/Dates.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/classes/Dbm.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/classes/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/classes/Range.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/classes/Rev.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/classes/Vec.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/classes/bitvec.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/comparisons/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/comparisons/patterns
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/comparisons/regextest.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/comparisons/sortingtest.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/comparisons/systemtest.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/curses/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/curses/life.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/curses/ncurses.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/curses/rain.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/curses/repeat.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/curses/tclock.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/curses/xmas.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/distutils/test2to3/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/distutils/test2to3/maintest.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/distutils/test2to3/setup.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/distutils/test2to3/test2to3/__init__.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/distutils/test2to3/test2to3/hello.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/embed/Makefile
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/embed/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/embed/demo.c
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/embed/importexc.c
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/embed/loop.c
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/imputil/knee.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/md5test/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/md5test/foo
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/md5test/md5driver.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/metaclasses/Eiffel.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/metaclasses/Enum.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/metaclasses/Meta.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/metaclasses/Simple.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/metaclasses/Synch.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/metaclasses/Trace.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/metaclasses/index.html
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/metaclasses/meta-vladimir.txt
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/newmetaclasses/Eiffel.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/newmetaclasses/Enum.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/parser/FILES
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/parser/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/parser/docstring.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/parser/example.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/parser/simple.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/parser/source.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/parser/test_parser.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/parser/texipre.dat
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/parser/unparse.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/FSProxy.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/RCSProxy.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/client.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/cmdfw.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/cmptree.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/cvslib.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/cvslock.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/mac.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/makechangelog.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/rcsbump
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/rcsclient.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/rcslib.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/rcvs
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/rcvs.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/rrcs
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/rrcs.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/security.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/server.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/sumtree.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pysvr/Makefile
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pysvr/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pysvr/pysvr.c
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pysvr/pysvr.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/rpc/MANIFEST
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/rpc/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/rpc/T.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/rpc/mountclient.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/rpc/nfsclient.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/rpc/rnusersclient.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/rpc/rpc.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/rpc/test
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/rpc/xdr.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/beer.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/eqfix.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/fact.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/find-uname.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/from.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/ftpstats.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/lpwatch.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/makedir.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/markov.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/mboxconvert.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/mkrcs.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/newslist.doc
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/newslist.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/pi.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/pp.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/primes.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/queens.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/script.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/toaiff.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/unbirthday.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/update.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/wh.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/broadcast.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/echosvr.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/finger.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/ftp.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/gopher.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/mcast.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/radio.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/rpython.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/rpythond.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/telnet.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/throughput.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/udpecho.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/unicast.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/unixclient.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/unixserver.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/threads/Coroutine.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/threads/Generator.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/threads/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/threads/fcmp.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/threads/find.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/threads/squasher.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/threads/sync.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/threads/telnet.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/INSTALL.txt
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/README.txt
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/about.xpm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/bold.xbm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/capital.xbm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/centerj.xbm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/combobox.xbm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/combobox.xpm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/combobox.xpm.1
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/drivea.xbm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/drivea.xpm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/exit.xpm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/filebox.xbm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/filebox.xpm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/italic.xbm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/justify.xbm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/leftj.xbm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/netw.xbm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/netw.xpm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/optmenu.xpm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/rightj.xbm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/select.xpm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/tix.gif
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/underline.xbm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/grid.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/samples/Balloon.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/samples/BtnBox.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/samples/CmpImg.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/samples/ComboBox.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/samples/Control.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/samples/DirList.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/samples/DirTree.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/samples/NoteBook.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/samples/OptMenu.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/samples/PanedWin.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/samples/PopMenu.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/samples/SHList1.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/samples/SHList2.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/samples/Tree.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/tixwidgets.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/AttrDialog.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/ManPage.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/MimeViewer.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/ShellWindow.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/brownian.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/brownian2.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/canvasevents.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/dialog.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/electrons.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/hanoi.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/hello.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/imagedraw.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/imageview.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/kill.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/listtree.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/mbox.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/newmenubardemo.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/optionmenu.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/paint.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/rmt.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/solitaire.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/sortvisu.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/ss1.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/svkill.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/switch.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/tkman.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/wish.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/00-HELLO-WORLD.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/animation-simple.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/animation-w-velocity-ctrl.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/bind-w-mult-calls-p-type.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/canvas-demo-simple.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/canvas-gridding.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/canvas-moving-or-creating.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/canvas-moving-w-mouse.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/canvas-mult-item-sel.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/canvas-reading-tag-info.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/canvas-w-widget-draw-el.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/canvas-with-scrollbars.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/dialog-box.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/entry-simple.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/entry-with-shared-variable.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/killing-window-w-wm.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/menu-all-types-of-entries.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/menu-simple.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/not-what-you-might-think-1.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/not-what-you-might-think-2.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/packer-and-placer-together.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/packer-simple.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/placer-simple.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/pong-demo-1.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/printing-coords-of-items.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/radiobutton-simple.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/rubber-band-box-demo-1.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/rubber-line-demo-1.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/slider-demo-1.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/subclass-existing-widgets.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/two-radio-groups.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/window-creation-more.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/window-creation-simple.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/window-creation-w-location.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/about_turtle.txt
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/about_turtledemo.txt
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/demohelp.txt
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_I_dontlike_tiltdemo.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_bytedesign.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_chaos.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_clock.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_colormixer.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_forest.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_fractalcurves.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_lindenmayer_indian.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_minimal_hanoi.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_paint.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_peace.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_penrose.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_planet_and_moon.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_tree.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_wikipedia.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_yinyang.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/turtle.cfg
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/turtleDemo.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/turtledemo_two_canvases.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/xml/elem_count.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/xml/roundtrip.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/xml/rss2html.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/zlib/minigzip.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/zlib/zlibdemo.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/README
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/buildbot/README.tcltk-AMD64
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/buildbot/build-amd64.bat
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/buildbot/build.bat
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/buildbot/buildmsi.bat
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/buildbot/clean-amd64.bat
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/buildbot/clean.bat
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/buildbot/external-amd64.bat
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/buildbot/external-common.bat
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/buildbot/external.bat
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/buildbot/test-amd64.bat
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/buildbot/test.bat
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/faqwiz/README
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/faqwiz/faqconf.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/faqwiz/faqcust.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/faqwiz/faqw.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/faqwiz/faqwiz.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/faqwiz/move-faqwiz.sh
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/framer/README.txt
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/framer/TODO.txt
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/framer/example.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/framer/framer/__init__.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/framer/framer/bases.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/framer/framer/function.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/framer/framer/member.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/framer/framer/slots.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/framer/framer/struct.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/framer/framer/structparse.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/framer/framer/template.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/framer/framer/util.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/freeze/README
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/freeze/bkfile.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/freeze/checkextensions.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/freeze/checkextensions_win32.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/freeze/extensions_win32.ini
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/freeze/flag.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/freeze/freeze.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/freeze/hello.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/freeze/makeconfig.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/freeze/makefreeze.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/freeze/makemakefile.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/freeze/parsesetup.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/freeze/win32.html
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/freeze/winmakemakefile.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/i18n/makelocalealias.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/i18n/msgfmt.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/i18n/pygettext.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/EXAMPLE.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/README
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/ScrolledListbox.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/copyright
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/module_head
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/module_method
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/module_tail
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_head
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_method
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_mlist
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_new
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_structure
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_tail
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_tp_as_mapping
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_tp_as_number
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_tp_as_sequence
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_tp_call
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_tp_compare
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_tp_dealloc
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_tp_getattr
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_tp_hash
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_tp_print
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_tp_repr
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_tp_setattr
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_tp_str
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Tkextra.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/genmodule.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/modulator.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/varsubst.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/msi/README.txt
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/msi/crtlicense.txt
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/msi/merge.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/msi/msi.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/msi/msilib.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/msi/msisupport.c
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/msi/msisupport.mak
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/msi/schema.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/msi/sequence.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/msi/uisample.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/msi/uuids.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/Arithmetic.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/Calls.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/CommandLine.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/Constructs.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/Dict.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/Exceptions.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/Imports.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/Instances.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/LICENSE
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/Lists.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/Lookups.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/NewInstances.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/Numbers.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/README
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/Setup.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/Strings.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/Tuples.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/Unicode.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/With.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/clockres.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/package/__init__.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/package/submodule.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/pybench.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/systimes.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/ChipViewer.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/ColorDB.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/DetailsViewer.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/ListViewer.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/Main.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/PyncheWidget.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/README
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/StripViewer.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/Switchboard.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/TextViewer.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/TypeinViewer.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/X/rgb.txt
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/X/xlicense.txt
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/__init__.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/html40colors.txt
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/namedcolors.txt
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/pyColorChooser.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/pynche
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/pynche.pyw
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/webcolors.txt
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/websafe.txt
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/2to3
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/README
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/byext.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/byteyears.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/checkappend.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/checkpyc.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/classfix.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/cleanfuture.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/combinerefs.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/copytime.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/crlf.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/cvsfiles.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/db2pickle.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/diff.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/dutree.doc
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/dutree.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/eptags.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/finddiv.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/findlinksto.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/findnocoding.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/fixcid.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/fixdiv.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/fixheader.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/fixnotice.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/fixps.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/ftpmirror.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/google.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/gprof2html.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/h2py.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/idle
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/ifdef.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/lfcr.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/linktree.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/lll.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/logmerge.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/mailerdaemon.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/make_ctype.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/md5sum.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/methfix.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/mkreal.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/ndiff.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/nm2def.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/objgraph.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/parseentities.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/patchcheck.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/pathfix.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/pdeps.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/pickle2db.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/pindent.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/ptags.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/pydoc
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/pydocgui.pyw
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/pysource.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/redemo.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/reindent.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/rgrep.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/setup.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/smtpd.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/suff.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/svneol.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/texi2html.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/treesync.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/untabify.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/which.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/win_add2path.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/xxci.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/ssl/get-remote-certificate.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/unicode/Makefile
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/unicode/comparecodecs.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/unicode/gencjkcodecs.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/unicode/gencodec.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/unicode/listcodecs.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/unicode/makeunicodedata.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/unicode/mkstringprep.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/unicode/python-mappings/CP1140.TXT
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/unicode/python-mappings/KOI8-U.TXT
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/unicode/python-mappings/TIS-620.TXT
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/versioncheck/README
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/versioncheck/_checkversion.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/versioncheck/checkversions.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/versioncheck/pyversioncheck.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/webchecker/README
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/webchecker/tktools.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/webchecker/wcgui.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/webchecker/wcmac.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/webchecker/webchecker.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/webchecker/websucker.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/webchecker/wsgui.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/world/README
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/world/world
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/world
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/webchecker
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/versioncheck
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/unicode/python-mappings
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/unicode
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/ssl
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/scripts
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/pynche/X
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/pynche
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/pybench/package
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/pybench
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/msi
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/modulator/Templates
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/modulator
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/i18n
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/freeze
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/framer/framer
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/framer
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/faqwiz
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/buildbot
-%%PORTDOCS%%@unexec /bin/rm -fr %D/share/%%PYTHON_VERSION%%/Tools || true
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/zlib
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/xml
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/turtle
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/tkinter/matt
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/tkinter/guido
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/tkinter
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/tix/samples
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/tix/bitmaps
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/tix
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/threads
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/sockets
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/scripts
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/rpc
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/pysvr
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/pdist
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/parser
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/newmetaclasses
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/metaclasses
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/md5test
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/imputil
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/embed
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/distutils/test2to3/test2to3
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/distutils/test2to3
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/distutils
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/curses
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/comparisons
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/classes
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/cgi
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cgi/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cgi/cgi0.sh
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cgi/cgi1.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cgi/cgi2.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cgi/cgi3.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cgi/wiki.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/classes/Complex.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/classes/Dates.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/classes/Dbm.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/classes/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/classes/Range.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/classes/Rev.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/classes/Vec.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/classes/bitvec.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comparisons/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comparisons/patterns
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comparisons/regextest.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comparisons/sortingtest.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comparisons/systemtest.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/curses/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/curses/life.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/curses/ncurses.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/curses/rain.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/curses/repeat.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/curses/tclock.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/curses/xmas.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/distutils/test2to3/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/distutils/test2to3/maintest.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/distutils/test2to3/setup.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/distutils/test2to3/test2to3/__init__.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/distutils/test2to3/test2to3/hello.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/embed/Makefile
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/embed/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/embed/demo.c
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/embed/importexc.c
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/embed/loop.c
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/imputil/knee.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/md5test/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/md5test/foo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/md5test/md5driver.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/metaclasses/Eiffel.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/metaclasses/Enum.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/metaclasses/Meta.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/metaclasses/Simple.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/metaclasses/Synch.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/metaclasses/Trace.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/metaclasses/index.html
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/metaclasses/meta-vladimir.txt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/newmetaclasses/Eiffel.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/newmetaclasses/Enum.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parser/FILES
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parser/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parser/docstring.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parser/example.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parser/simple.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parser/source.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parser/test_parser.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parser/texipre.dat
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parser/unparse.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/FSProxy.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/RCSProxy.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/client.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/cmdfw.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/cmptree.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/cvslib.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/cvslock.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/mac.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/makechangelog.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/rcsbump
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/rcsclient.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/rcslib.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/rcvs
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/rcvs.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/rrcs
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/rrcs.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/security.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/server.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/sumtree.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pysvr/Makefile
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pysvr/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pysvr/pysvr.c
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pysvr/pysvr.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rpc/MANIFEST
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rpc/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rpc/T.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rpc/mountclient.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rpc/nfsclient.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rpc/rnusersclient.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rpc/rpc.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rpc/test
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rpc/xdr.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/beer.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/eqfix.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/fact.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/find-uname.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/from.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/ftpstats.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/lpwatch.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/makedir.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/markov.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/mboxconvert.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/mkrcs.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/newslist.doc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/newslist.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/pi.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/pp.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/primes.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/queens.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/script.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/toaiff.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/unbirthday.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/update.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/wh.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/broadcast.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/echosvr.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/finger.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/ftp.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/gopher.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/mcast.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/radio.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/rpython.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/rpythond.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/telnet.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/throughput.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/udpecho.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/unicast.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/unixclient.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/unixserver.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/threads/Coroutine.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/threads/Generator.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/threads/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/threads/fcmp.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/threads/find.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/threads/squasher.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/threads/sync.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/threads/telnet.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/INSTALL.txt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/README.txt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/about.xpm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/bold.xbm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/capital.xbm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/centerj.xbm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/combobox.xbm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/combobox.xpm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/combobox.xpm.1
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/drivea.xbm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/drivea.xpm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/exit.xpm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/filebox.xbm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/filebox.xpm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/italic.xbm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/justify.xbm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/leftj.xbm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/netw.xbm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/netw.xpm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/optmenu.xpm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/rightj.xbm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/select.xpm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/tix.gif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/underline.xbm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/grid.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/samples/Balloon.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/samples/BtnBox.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/samples/CmpImg.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/samples/ComboBox.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/samples/Control.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/samples/DirList.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/samples/DirTree.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/samples/NoteBook.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/samples/OptMenu.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/samples/PanedWin.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/samples/PopMenu.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/samples/SHList1.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/samples/SHList2.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/samples/Tree.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/tixwidgets.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/AttrDialog.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/ManPage.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/MimeViewer.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/ShellWindow.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/brownian.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/brownian2.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/canvasevents.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/dialog.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/electrons.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/hanoi.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/hello.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/imagedraw.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/imageview.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/kill.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/listtree.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/mbox.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/newmenubardemo.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/optionmenu.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/paint.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/rmt.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/solitaire.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/sortvisu.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/ss1.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/svkill.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/switch.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/tkman.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/wish.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/00-HELLO-WORLD.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/animation-simple.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/animation-w-velocity-ctrl.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/bind-w-mult-calls-p-type.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/canvas-demo-simple.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/canvas-gridding.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/canvas-moving-or-creating.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/canvas-moving-w-mouse.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/canvas-mult-item-sel.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/canvas-reading-tag-info.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/canvas-w-widget-draw-el.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/canvas-with-scrollbars.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/dialog-box.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/entry-simple.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/entry-with-shared-variable.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/killing-window-w-wm.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/menu-all-types-of-entries.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/menu-simple.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/not-what-you-might-think-1.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/not-what-you-might-think-2.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/packer-and-placer-together.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/packer-simple.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/placer-simple.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/pong-demo-1.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/printing-coords-of-items.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/radiobutton-simple.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/rubber-band-box-demo-1.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/rubber-line-demo-1.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/slider-demo-1.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/subclass-existing-widgets.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/two-radio-groups.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/window-creation-more.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/window-creation-simple.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/window-creation-w-location.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/about_turtle.txt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/about_turtledemo.txt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/demohelp.txt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_I_dontlike_tiltdemo.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_bytedesign.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_chaos.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_clock.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_colormixer.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_forest.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_fractalcurves.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_lindenmayer_indian.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_minimal_hanoi.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_paint.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_peace.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_penrose.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_planet_and_moon.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_tree.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_wikipedia.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_yinyang.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/turtle.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/turtleDemo.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/turtledemo_two_canvases.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/xml/elem_count.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/xml/roundtrip.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/xml/rss2html.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/zlib/minigzip.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/zlib/zlibdemo.py
+%%PORTDATA%%%%DATADIR%%/Tools/README
+%%PORTDATA%%%%DATADIR%%/Tools/buildbot/README.tcltk-AMD64
+%%PORTDATA%%%%DATADIR%%/Tools/buildbot/build-amd64.bat
+%%PORTDATA%%%%DATADIR%%/Tools/buildbot/build.bat
+%%PORTDATA%%%%DATADIR%%/Tools/buildbot/buildmsi.bat
+%%PORTDATA%%%%DATADIR%%/Tools/buildbot/clean-amd64.bat
+%%PORTDATA%%%%DATADIR%%/Tools/buildbot/clean.bat
+%%PORTDATA%%%%DATADIR%%/Tools/buildbot/external-amd64.bat
+%%PORTDATA%%%%DATADIR%%/Tools/buildbot/external-common.bat
+%%PORTDATA%%%%DATADIR%%/Tools/buildbot/external.bat
+%%PORTDATA%%%%DATADIR%%/Tools/buildbot/test-amd64.bat
+%%PORTDATA%%%%DATADIR%%/Tools/buildbot/test.bat
+%%PORTDATA%%%%DATADIR%%/Tools/faqwiz/README
+%%PORTDATA%%%%DATADIR%%/Tools/faqwiz/faqconf.py
+%%PORTDATA%%%%DATADIR%%/Tools/faqwiz/faqcust.py
+%%PORTDATA%%%%DATADIR%%/Tools/faqwiz/faqw.py
+%%PORTDATA%%%%DATADIR%%/Tools/faqwiz/faqwiz.py
+%%PORTDATA%%%%DATADIR%%/Tools/faqwiz/move-faqwiz.sh
+%%PORTDATA%%%%DATADIR%%/Tools/framer/README.txt
+%%PORTDATA%%%%DATADIR%%/Tools/framer/TODO.txt
+%%PORTDATA%%%%DATADIR%%/Tools/framer/example.py
+%%PORTDATA%%%%DATADIR%%/Tools/framer/framer/__init__.py
+%%PORTDATA%%%%DATADIR%%/Tools/framer/framer/bases.py
+%%PORTDATA%%%%DATADIR%%/Tools/framer/framer/function.py
+%%PORTDATA%%%%DATADIR%%/Tools/framer/framer/member.py
+%%PORTDATA%%%%DATADIR%%/Tools/framer/framer/slots.py
+%%PORTDATA%%%%DATADIR%%/Tools/framer/framer/struct.py
+%%PORTDATA%%%%DATADIR%%/Tools/framer/framer/structparse.py
+%%PORTDATA%%%%DATADIR%%/Tools/framer/framer/template.py
+%%PORTDATA%%%%DATADIR%%/Tools/framer/framer/util.py
+%%PORTDATA%%%%DATADIR%%/Tools/freeze/README
+%%PORTDATA%%%%DATADIR%%/Tools/freeze/bkfile.py
+%%PORTDATA%%%%DATADIR%%/Tools/freeze/checkextensions.py
+%%PORTDATA%%%%DATADIR%%/Tools/freeze/checkextensions_win32.py
+%%PORTDATA%%%%DATADIR%%/Tools/freeze/extensions_win32.ini
+%%PORTDATA%%%%DATADIR%%/Tools/freeze/flag.py
+%%PORTDATA%%%%DATADIR%%/Tools/freeze/freeze.py
+%%PORTDATA%%%%DATADIR%%/Tools/freeze/hello.py
+%%PORTDATA%%%%DATADIR%%/Tools/freeze/makeconfig.py
+%%PORTDATA%%%%DATADIR%%/Tools/freeze/makefreeze.py
+%%PORTDATA%%%%DATADIR%%/Tools/freeze/makemakefile.py
+%%PORTDATA%%%%DATADIR%%/Tools/freeze/parsesetup.py
+%%PORTDATA%%%%DATADIR%%/Tools/freeze/win32.html
+%%PORTDATA%%%%DATADIR%%/Tools/freeze/winmakemakefile.py
+%%PORTDATA%%%%DATADIR%%/Tools/i18n/makelocalealias.py
+%%PORTDATA%%%%DATADIR%%/Tools/i18n/msgfmt.py
+%%PORTDATA%%%%DATADIR%%/Tools/i18n/pygettext.py
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/EXAMPLE.py
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/README
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/ScrolledListbox.py
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/copyright
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/module_head
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/module_method
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/module_tail
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_head
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_method
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_mlist
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_new
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_structure
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_tail
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_tp_as_mapping
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_tp_as_number
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_tp_as_sequence
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_tp_call
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_tp_compare
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_tp_dealloc
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_tp_getattr
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_tp_hash
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_tp_print
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_tp_repr
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_tp_setattr
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_tp_str
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Tkextra.py
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/genmodule.py
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/modulator.py
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/varsubst.py
+%%PORTDATA%%%%DATADIR%%/Tools/msi/README.txt
+%%PORTDATA%%%%DATADIR%%/Tools/msi/crtlicense.txt
+%%PORTDATA%%%%DATADIR%%/Tools/msi/merge.py
+%%PORTDATA%%%%DATADIR%%/Tools/msi/msi.py
+%%PORTDATA%%%%DATADIR%%/Tools/msi/msilib.py
+%%PORTDATA%%%%DATADIR%%/Tools/msi/msisupport.c
+%%PORTDATA%%%%DATADIR%%/Tools/msi/msisupport.mak
+%%PORTDATA%%%%DATADIR%%/Tools/msi/schema.py
+%%PORTDATA%%%%DATADIR%%/Tools/msi/sequence.py
+%%PORTDATA%%%%DATADIR%%/Tools/msi/uisample.py
+%%PORTDATA%%%%DATADIR%%/Tools/msi/uuids.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/Arithmetic.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/Calls.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/CommandLine.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/Constructs.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/Dict.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/Exceptions.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/Imports.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/Instances.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/LICENSE
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/Lists.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/Lookups.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/NewInstances.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/Numbers.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/README
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/Setup.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/Strings.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/Tuples.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/Unicode.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/With.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/clockres.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/package/__init__.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/package/submodule.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/pybench.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/systimes.py
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/ChipViewer.py
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/ColorDB.py
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/DetailsViewer.py
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/ListViewer.py
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/Main.py
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/PyncheWidget.py
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/README
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/StripViewer.py
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/Switchboard.py
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/TextViewer.py
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/TypeinViewer.py
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/X/rgb.txt
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/X/xlicense.txt
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/__init__.py
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/html40colors.txt
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/namedcolors.txt
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/pyColorChooser.py
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/pynche
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/pynche.pyw
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/webcolors.txt
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/websafe.txt
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/2to3
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/README
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/byext.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/byteyears.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/checkappend.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/checkpyc.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/classfix.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/cleanfuture.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/combinerefs.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/copytime.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/crlf.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/cvsfiles.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/db2pickle.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/diff.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/dutree.doc
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/dutree.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/eptags.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/finddiv.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/findlinksto.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/findnocoding.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/fixcid.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/fixdiv.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/fixheader.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/fixnotice.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/fixps.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/ftpmirror.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/google.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/gprof2html.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/h2py.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/idle
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/ifdef.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/lfcr.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/linktree.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/lll.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/logmerge.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/mailerdaemon.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/make_ctype.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/md5sum.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/methfix.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/mkreal.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/ndiff.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/nm2def.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/objgraph.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/parseentities.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/patchcheck.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/pathfix.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/pdeps.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/pickle2db.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/pindent.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/ptags.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/pydoc
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/pydocgui.pyw
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/pysource.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/redemo.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/reindent.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/rgrep.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/setup.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/smtpd.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/suff.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/svneol.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/texi2html.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/treesync.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/untabify.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/which.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/win_add2path.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/xxci.py
+%%PORTDATA%%%%DATADIR%%/Tools/ssl/get-remote-certificate.py
+%%PORTDATA%%%%DATADIR%%/Tools/unicode/Makefile
+%%PORTDATA%%%%DATADIR%%/Tools/unicode/comparecodecs.py
+%%PORTDATA%%%%DATADIR%%/Tools/unicode/gencjkcodecs.py
+%%PORTDATA%%%%DATADIR%%/Tools/unicode/gencodec.py
+%%PORTDATA%%%%DATADIR%%/Tools/unicode/listcodecs.py
+%%PORTDATA%%%%DATADIR%%/Tools/unicode/makeunicodedata.py
+%%PORTDATA%%%%DATADIR%%/Tools/unicode/mkstringprep.py
+%%PORTDATA%%%%DATADIR%%/Tools/unicode/python-mappings/CP1140.TXT
+%%PORTDATA%%%%DATADIR%%/Tools/unicode/python-mappings/KOI8-U.TXT
+%%PORTDATA%%%%DATADIR%%/Tools/unicode/python-mappings/TIS-620.TXT
+%%PORTDATA%%%%DATADIR%%/Tools/versioncheck/README
+%%PORTDATA%%%%DATADIR%%/Tools/versioncheck/_checkversion.py
+%%PORTDATA%%%%DATADIR%%/Tools/versioncheck/checkversions.py
+%%PORTDATA%%%%DATADIR%%/Tools/versioncheck/pyversioncheck.py
+%%PORTDATA%%%%DATADIR%%/Tools/webchecker/README
+%%PORTDATA%%%%DATADIR%%/Tools/webchecker/tktools.py
+%%PORTDATA%%%%DATADIR%%/Tools/webchecker/wcgui.py
+%%PORTDATA%%%%DATADIR%%/Tools/webchecker/wcmac.py
+%%PORTDATA%%%%DATADIR%%/Tools/webchecker/webchecker.py
+%%PORTDATA%%%%DATADIR%%/Tools/webchecker/websucker.py
+%%PORTDATA%%%%DATADIR%%/Tools/webchecker/wsgui.py
+%%PORTDATA%%%%DATADIR%%/Tools/world/README
+%%PORTDATA%%%%DATADIR%%/Tools/world/world
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/world
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/webchecker
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/versioncheck
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/unicode/python-mappings
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/unicode
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/ssl
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/scripts
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/pynche/X
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/pynche
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/pybench/package
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/pybench
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/msi
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/modulator/Templates
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/modulator
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/i18n
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/freeze
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/framer/framer
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/framer
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/faqwiz
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/buildbot
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools
+%%PORTDATA%%@dirrm %%DATADIR%%
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/zlib
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/xml
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/turtle
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tkinter/matt
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tkinter/guido
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tkinter
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tix/samples
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tix/bitmaps
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tix
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/threads
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/sockets
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/scripts
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/rpc
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/pysvr
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/pdist
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/parser
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/newmetaclasses
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/metaclasses
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/md5test
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/imputil
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/embed
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/distutils/test2to3/test2to3
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/distutils/test2to3
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/distutils
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/curses
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/comparisons
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/classes
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/cgi
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%
@dirrm %%PYTHON_LIBDIR%%/xmlrpc
@dirrm %%PYTHON_LIBDIR%%/xml/sax
@dirrm %%PYTHON_LIBDIR%%/xml/parsers
diff --git a/lang/python32/Makefile b/lang/python32/Makefile
index af7c50ed02b6..b84ede6d7a1c 100644
--- a/lang/python32/Makefile
+++ b/lang/python32/Makefile
@@ -6,6 +6,7 @@
PORTNAME= python30
PORTVERSION= 3.0.1
+PORTREVISION= 1
CATEGORIES= lang python ipv6
MASTER_SITES= ${PYTHON_MASTER_SITES}
MASTER_SITE_SUBDIR= ${PYTHON_MASTER_SITE_SUBDIR}
@@ -21,6 +22,7 @@ GNU_CONFIGURE= yes
CONFIGURE_SCRIPT= ../configure # must be relative
CONFIGURE_ENV= OPT="${CFLAGS}" SVNVERSION="echo freebsd"
MAKE_ENV= VPATH="${PYTHON_WRKSRC}"
+MAKE_JOBS_SAFE= yes
USE_LDCONFIG= yes
INSTALL_TARGET= altinstall
MAN1= ${PYTHON_VERSION}.1
@@ -34,8 +36,8 @@ PLIST= ${WRKDIR}/PLIST
PLIST_TEMPLATE?=${PKGDIR}/pkg-plist
PLIST_SUB= PYVER=${PYTHON_VERSION:S/python//} \
PYVER_WITHPAT=${PORTVERSION:S/.rc/rc/}
-DEMODIR= ${PREFIX}/share/examples/${PYTHON_VERSION}
-TOOLSDIR= ${PREFIX}/share/${PYTHON_VERSION}
+EXAMPLESDIR= ${PREFIX}/share/examples/${PYTHON_VERSION}
+DATADIR= ${PREFIX}/share/${PYTHON_VERSION}
PLATFORMS= plat-freebsd4 plat-freebsd5 plat-freebsd6 \
plat-freebsd7 plat-freebsd8
@@ -83,23 +85,13 @@ CONFIGURE_ENV+= LDFLAGS="${LDFLAGS}"
.endif # !defined(WITHOUT_THREADS)
.if !defined(WITHOUT_UCS4) && !defined(WITH_UCS2)
-CONFIGURE_ARGS+= --enable-unicode=ucs4
+CONFIGURE_ARGS+= --with-wide-unicode
.endif
.if defined(WITHOUT_PYMALLOC)
CONFIGURE_ARGS+= --without-pymalloc
.endif
-.if ${ARCH} == i386
-PLIST_SUB+= X86_ONLY=""
-.else
-PLIST_SUB+= X86_ONLY="@comment "
-.endif
-.if ${ARCH} == amd64 || ${ARCH} == ia64 || ${ARCH} == sparc64 || ${ARCH} == alpha
-PLIST_SUB+= 32BIT_ONLY="@comment "
-.else
-PLIST_SUB+= 32BIT_ONLY=""
-.endif
.if ${ARCH} == sparc64
CFLAGS+= -DPYTHON_DEFAULT_RECURSION_LIMIT=900
.endif
@@ -219,15 +211,20 @@ post-install:
done
.endif
-.if !defined(NOPORTDOCS)
- @${MKDIR} ${TOOLSDIR}
+.if !defined(NOPORTDATA)
+ @${MKDIR} ${DATADIR}
@cd ${PYTHON_WRKSRC}; ${TAR} -cf - Tools | \
- (cd ${TOOLSDIR}; ${TAR} -xf -)
- @${MKDIR} ${DEMODIR}
+ (cd ${DATADIR}; ${TAR} -xf -)
+.endif
+.if !defined(NOPORTEXAMPLES)
+ @${MKDIR} ${EXAMPLESDIR}
@cd ${PYTHON_WRKSRC}/Demo; ${TAR} -cf - * | \
- (cd ${DEMODIR}; ${TAR} -xf -)
+ (cd ${EXAMPLESDIR}; ${TAR} -xf -)
.endif
@${CAT} ${PKGMESSAGE}
+regression-test:
+ cd ${WRKSRC} && make test
+
.include <bsd.port.post.mk>
diff --git a/lang/python32/files/patch-setup.py b/lang/python32/files/patch-setup.py
index 8cf1db755408..7fc196bdf38f 100644
--- a/lang/python32/files/patch-setup.py
+++ b/lang/python32/files/patch-setup.py
@@ -5,7 +5,7 @@
# This global variable is used to hold the list of modules to be disabled.
-disabled_module_list = []
-+disabled_module_list = ["_bsddb", "_sqlite3", "_tkinter", "_gdbm", "mpz"]
++disabled_module_list = ["_sqlite3", "_tkinter", "_gdbm"]
def add_dir_to_list(dirlist, dir):
"""Add the directory 'dir' to the list 'dirlist' (at the front) if
diff --git a/lang/python32/pkg-message b/lang/python32/pkg-message
index a3ba9904996b..8c7d09348c5b 100644
--- a/lang/python32/pkg-message
+++ b/lang/python32/pkg-message
@@ -2,7 +2,6 @@
Note that some of the standard modules are provided as separate
ports since they require extra dependencies:
-bsddb databases/py-bsddb
gdbm databases/py-gdbm
sqlite3 databases/py-sqlite3
tkinter x11-toolkits/py-tkinter
diff --git a/lang/python32/pkg-plist b/lang/python32/pkg-plist
index 66bf9bf7e366..827aed2ca375 100644
--- a/lang/python32/pkg-plist
+++ b/lang/python32/pkg-plist
@@ -14,6 +14,9 @@ bin/python-shared%%PYVER%%
bin/python-shared%%PYVER%%-config
%%IF_DEFAULT%%bin/smtpd.py
bin/smtpd%%PYVER%%.py
+lib/lib%%PYTHON_VERSION%%.a
+lib/lib%%PYTHON_VERSION%%.so
+lib/lib%%PYTHON_VERSION%%.so.1
%%PYTHON_INCLUDEDIR%%/Python-ast.h
%%PYTHON_INCLUDEDIR%%/Python.h
%%PYTHON_INCLUDEDIR%%/abstract.h
@@ -99,9 +102,6 @@ bin/smtpd%%PYVER%%.py
%%PYTHON_INCLUDEDIR%%/unicodeobject.h
%%PYTHON_INCLUDEDIR%%/warnings.h
%%PYTHON_INCLUDEDIR%%/weakrefobject.h
-lib/lib%%PYTHON_VERSION%%.so
-lib/lib%%PYTHON_VERSION%%.so.1
-lib/lib%%PYTHON_VERSION%%.a
%%PYTHON_LIBDIR%%/LICENSE.txt
%%PYTHON_LIBDIR%%/__future__.py
%%PYTHON_LIBDIR%%/__phello__.foo.py
@@ -1264,8 +1264,8 @@ lib/lib%%PYTHON_VERSION%%.a
%%PYTHON_LIBDIR%%/test/test_operator.py
%%PYTHON_LIBDIR%%/test/test_optparse.py
%%PYTHON_LIBDIR%%/test/test_os.py
-%%PYTHON_LIBDIR%%/test/test_osx_env.py
%%PYTHON_LIBDIR%%/test/test_ossaudiodev.py
+%%PYTHON_LIBDIR%%/test/test_osx_env.py
%%PYTHON_LIBDIR%%/test/test_parser.py
%%PYTHON_LIBDIR%%/test/test_peepholer.py
%%PYTHON_LIBDIR%%/test/test_pep247.py
@@ -1487,549 +1487,549 @@ lib/lib%%PYTHON_VERSION%%.a
%%PYTHON_LIBDIR%%/xmlrpc/client.py
%%PYTHON_LIBDIR%%/xmlrpc/server.py
%%PYTHON_LIBDIR%%/zipfile.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/cgi/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/cgi/cgi0.sh
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/cgi/cgi1.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/cgi/cgi2.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/cgi/cgi3.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/cgi/wiki.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/classes/Complex.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/classes/Dates.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/classes/Dbm.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/classes/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/classes/Range.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/classes/Rev.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/classes/Vec.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/classes/bitvec.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/comparisons/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/comparisons/patterns
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/comparisons/regextest.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/comparisons/sortingtest.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/comparisons/systemtest.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/curses/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/curses/life.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/curses/ncurses.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/curses/rain.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/curses/repeat.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/curses/tclock.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/curses/xmas.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/distutils/test2to3/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/distutils/test2to3/maintest.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/distutils/test2to3/setup.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/distutils/test2to3/test2to3/__init__.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/distutils/test2to3/test2to3/hello.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/embed/Makefile
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/embed/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/embed/demo.c
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/embed/importexc.c
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/embed/loop.c
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/imputil/knee.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/md5test/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/md5test/foo
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/md5test/md5driver.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/metaclasses/Eiffel.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/metaclasses/Enum.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/metaclasses/Meta.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/metaclasses/Simple.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/metaclasses/Synch.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/metaclasses/Trace.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/metaclasses/index.html
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/metaclasses/meta-vladimir.txt
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/newmetaclasses/Eiffel.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/newmetaclasses/Enum.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/parser/FILES
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/parser/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/parser/docstring.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/parser/example.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/parser/simple.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/parser/source.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/parser/test_parser.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/parser/texipre.dat
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/parser/unparse.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/FSProxy.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/RCSProxy.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/client.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/cmdfw.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/cmptree.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/cvslib.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/cvslock.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/mac.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/makechangelog.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/rcsbump
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/rcsclient.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/rcslib.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/rcvs
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/rcvs.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/rrcs
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/rrcs.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/security.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/server.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pdist/sumtree.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pysvr/Makefile
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pysvr/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pysvr/pysvr.c
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/pysvr/pysvr.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/rpc/MANIFEST
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/rpc/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/rpc/T.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/rpc/mountclient.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/rpc/nfsclient.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/rpc/rnusersclient.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/rpc/rpc.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/rpc/test
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/rpc/xdr.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/beer.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/eqfix.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/fact.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/find-uname.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/from.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/ftpstats.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/lpwatch.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/makedir.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/markov.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/mboxconvert.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/mkrcs.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/newslist.doc
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/newslist.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/pi.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/pp.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/primes.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/queens.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/script.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/toaiff.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/unbirthday.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/update.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/scripts/wh.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/broadcast.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/echosvr.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/finger.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/ftp.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/gopher.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/mcast.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/radio.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/rpython.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/rpythond.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/telnet.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/throughput.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/udpecho.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/unicast.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/unixclient.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/sockets/unixserver.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/threads/Coroutine.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/threads/Generator.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/threads/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/threads/fcmp.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/threads/find.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/threads/squasher.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/threads/sync.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/threads/telnet.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/INSTALL.txt
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/README.txt
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/about.xpm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/bold.xbm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/capital.xbm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/centerj.xbm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/combobox.xbm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/combobox.xpm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/combobox.xpm.1
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/drivea.xbm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/drivea.xpm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/exit.xpm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/filebox.xbm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/filebox.xpm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/italic.xbm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/justify.xbm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/leftj.xbm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/netw.xbm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/netw.xpm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/optmenu.xpm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/rightj.xbm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/select.xpm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/tix.gif
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/bitmaps/underline.xbm
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/grid.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/samples/Balloon.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/samples/BtnBox.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/samples/CmpImg.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/samples/ComboBox.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/samples/Control.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/samples/DirList.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/samples/DirTree.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/samples/NoteBook.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/samples/OptMenu.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/samples/PanedWin.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/samples/PopMenu.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/samples/SHList1.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/samples/SHList2.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/samples/Tree.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tix/tixwidgets.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/AttrDialog.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/ManPage.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/MimeViewer.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/ShellWindow.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/brownian.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/brownian2.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/canvasevents.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/dialog.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/electrons.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/hanoi.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/hello.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/imagedraw.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/imageview.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/kill.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/listtree.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/mbox.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/newmenubardemo.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/optionmenu.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/paint.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/rmt.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/solitaire.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/sortvisu.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/ss1.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/svkill.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/switch.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/tkman.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/guido/wish.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/00-HELLO-WORLD.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/animation-simple.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/animation-w-velocity-ctrl.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/bind-w-mult-calls-p-type.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/canvas-demo-simple.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/canvas-gridding.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/canvas-moving-or-creating.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/canvas-moving-w-mouse.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/canvas-mult-item-sel.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/canvas-reading-tag-info.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/canvas-w-widget-draw-el.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/canvas-with-scrollbars.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/dialog-box.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/entry-simple.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/entry-with-shared-variable.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/killing-window-w-wm.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/menu-all-types-of-entries.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/menu-simple.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/not-what-you-might-think-1.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/not-what-you-might-think-2.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/packer-and-placer-together.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/packer-simple.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/placer-simple.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/pong-demo-1.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/printing-coords-of-items.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/radiobutton-simple.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/rubber-band-box-demo-1.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/rubber-line-demo-1.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/slider-demo-1.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/subclass-existing-widgets.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/two-radio-groups.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/window-creation-more.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/window-creation-simple.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/tkinter/matt/window-creation-w-location.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/about_turtle.txt
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/about_turtledemo.txt
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/demohelp.txt
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_I_dontlike_tiltdemo.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_bytedesign.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_chaos.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_clock.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_colormixer.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_forest.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_fractalcurves.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_lindenmayer_indian.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_minimal_hanoi.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_paint.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_peace.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_penrose.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_planet_and_moon.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_tree.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_wikipedia.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/tdemo_yinyang.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/turtle.cfg
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/turtleDemo.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/turtle/turtledemo_two_canvases.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/xml/elem_count.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/xml/roundtrip.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/xml/rss2html.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/zlib/minigzip.py
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/zlib/zlibdemo.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/README
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/buildbot/README.tcltk-AMD64
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/buildbot/build-amd64.bat
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/buildbot/build.bat
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/buildbot/buildmsi.bat
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/buildbot/clean-amd64.bat
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/buildbot/clean.bat
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/buildbot/external-amd64.bat
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/buildbot/external-common.bat
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/buildbot/external.bat
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/buildbot/test-amd64.bat
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/buildbot/test.bat
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/faqwiz/README
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/faqwiz/faqconf.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/faqwiz/faqcust.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/faqwiz/faqw.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/faqwiz/faqwiz.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/faqwiz/move-faqwiz.sh
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/framer/README.txt
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/framer/TODO.txt
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/framer/example.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/framer/framer/__init__.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/framer/framer/bases.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/framer/framer/function.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/framer/framer/member.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/framer/framer/slots.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/framer/framer/struct.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/framer/framer/structparse.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/framer/framer/template.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/framer/framer/util.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/freeze/README
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/freeze/bkfile.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/freeze/checkextensions.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/freeze/checkextensions_win32.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/freeze/extensions_win32.ini
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/freeze/flag.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/freeze/freeze.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/freeze/hello.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/freeze/makeconfig.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/freeze/makefreeze.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/freeze/makemakefile.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/freeze/parsesetup.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/freeze/win32.html
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/freeze/winmakemakefile.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/i18n/makelocalealias.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/i18n/msgfmt.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/i18n/pygettext.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/EXAMPLE.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/README
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/ScrolledListbox.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/copyright
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/module_head
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/module_method
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/module_tail
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_head
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_method
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_mlist
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_new
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_structure
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_tail
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_tp_as_mapping
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_tp_as_number
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_tp_as_sequence
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_tp_call
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_tp_compare
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_tp_dealloc
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_tp_getattr
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_tp_hash
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_tp_print
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_tp_repr
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_tp_setattr
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Templates/object_tp_str
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/Tkextra.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/genmodule.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/modulator.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/modulator/varsubst.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/msi/README.txt
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/msi/crtlicense.txt
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/msi/merge.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/msi/msi.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/msi/msilib.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/msi/msisupport.c
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/msi/msisupport.mak
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/msi/schema.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/msi/sequence.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/msi/uisample.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/msi/uuids.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/Arithmetic.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/Calls.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/CommandLine.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/Constructs.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/Dict.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/Exceptions.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/Imports.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/Instances.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/LICENSE
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/Lists.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/Lookups.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/NewInstances.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/Numbers.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/README
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/Setup.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/Strings.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/Tuples.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/Unicode.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/With.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/clockres.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/package/__init__.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/package/submodule.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/pybench.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pybench/systimes.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/ChipViewer.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/ColorDB.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/DetailsViewer.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/ListViewer.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/Main.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/PyncheWidget.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/README
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/StripViewer.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/Switchboard.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/TextViewer.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/TypeinViewer.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/X/rgb.txt
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/X/xlicense.txt
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/__init__.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/html40colors.txt
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/namedcolors.txt
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/pyColorChooser.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/pynche
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/pynche.pyw
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/webcolors.txt
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/pynche/websafe.txt
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/2to3
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/README
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/byext.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/byteyears.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/checkappend.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/checkpyc.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/classfix.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/cleanfuture.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/combinerefs.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/copytime.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/crlf.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/cvsfiles.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/db2pickle.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/diff.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/dutree.doc
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/dutree.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/eptags.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/finddiv.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/findlinksto.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/findnocoding.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/fixcid.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/fixdiv.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/fixheader.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/fixnotice.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/fixps.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/ftpmirror.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/google.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/gprof2html.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/h2py.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/idle
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/ifdef.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/lfcr.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/linktree.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/lll.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/logmerge.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/mailerdaemon.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/make_ctype.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/md5sum.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/methfix.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/mkreal.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/ndiff.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/nm2def.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/objgraph.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/parseentities.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/patchcheck.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/pathfix.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/pdeps.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/pickle2db.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/pindent.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/ptags.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/pydoc
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/pydocgui.pyw
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/pysource.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/redemo.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/reindent.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/rgrep.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/setup.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/smtpd.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/suff.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/svneol.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/texi2html.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/treesync.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/untabify.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/which.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/win_add2path.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/scripts/xxci.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/ssl/get-remote-certificate.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/unicode/Makefile
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/unicode/comparecodecs.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/unicode/gencjkcodecs.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/unicode/gencodec.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/unicode/listcodecs.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/unicode/makeunicodedata.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/unicode/mkstringprep.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/unicode/python-mappings/CP1140.TXT
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/unicode/python-mappings/KOI8-U.TXT
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/unicode/python-mappings/TIS-620.TXT
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/versioncheck/README
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/versioncheck/_checkversion.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/versioncheck/checkversions.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/versioncheck/pyversioncheck.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/webchecker/README
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/webchecker/tktools.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/webchecker/wcgui.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/webchecker/wcmac.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/webchecker/webchecker.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/webchecker/websucker.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/webchecker/wsgui.py
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/world/README
-%%PORTDOCS%%share/%%PYTHON_VERSION%%/Tools/world/world
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/world
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/webchecker
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/versioncheck
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/unicode/python-mappings
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/unicode
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/ssl
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/scripts
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/pynche/X
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/pynche
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/pybench/package
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/pybench
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/msi
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/modulator/Templates
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/modulator
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/i18n
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/freeze
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/framer/framer
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/framer
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/faqwiz
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%/Tools/buildbot
-%%PORTDOCS%%@unexec /bin/rm -fr %D/share/%%PYTHON_VERSION%%/Tools || true
-%%PORTDOCS%%@dirrm share/%%PYTHON_VERSION%%
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/zlib
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/xml
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/turtle
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/tkinter/matt
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/tkinter/guido
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/tkinter
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/tix/samples
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/tix/bitmaps
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/tix
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/threads
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/sockets
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/scripts
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/rpc
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/pysvr
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/pdist
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/parser
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/newmetaclasses
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/metaclasses
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/md5test
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/imputil
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/embed
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/distutils/test2to3/test2to3
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/distutils/test2to3
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/distutils
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/curses
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/comparisons
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/classes
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/cgi
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cgi/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cgi/cgi0.sh
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cgi/cgi1.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cgi/cgi2.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cgi/cgi3.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cgi/wiki.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/classes/Complex.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/classes/Dates.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/classes/Dbm.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/classes/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/classes/Range.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/classes/Rev.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/classes/Vec.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/classes/bitvec.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comparisons/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comparisons/patterns
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comparisons/regextest.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comparisons/sortingtest.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comparisons/systemtest.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/curses/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/curses/life.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/curses/ncurses.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/curses/rain.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/curses/repeat.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/curses/tclock.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/curses/xmas.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/distutils/test2to3/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/distutils/test2to3/maintest.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/distutils/test2to3/setup.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/distutils/test2to3/test2to3/__init__.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/distutils/test2to3/test2to3/hello.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/embed/Makefile
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/embed/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/embed/demo.c
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/embed/importexc.c
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/embed/loop.c
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/imputil/knee.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/md5test/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/md5test/foo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/md5test/md5driver.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/metaclasses/Eiffel.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/metaclasses/Enum.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/metaclasses/Meta.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/metaclasses/Simple.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/metaclasses/Synch.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/metaclasses/Trace.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/metaclasses/index.html
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/metaclasses/meta-vladimir.txt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/newmetaclasses/Eiffel.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/newmetaclasses/Enum.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parser/FILES
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parser/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parser/docstring.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parser/example.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parser/simple.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parser/source.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parser/test_parser.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parser/texipre.dat
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parser/unparse.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/FSProxy.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/RCSProxy.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/client.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/cmdfw.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/cmptree.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/cvslib.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/cvslock.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/mac.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/makechangelog.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/rcsbump
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/rcsclient.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/rcslib.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/rcvs
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/rcvs.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/rrcs
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/rrcs.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/security.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/server.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdist/sumtree.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pysvr/Makefile
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pysvr/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pysvr/pysvr.c
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pysvr/pysvr.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rpc/MANIFEST
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rpc/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rpc/T.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rpc/mountclient.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rpc/nfsclient.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rpc/rnusersclient.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rpc/rpc.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rpc/test
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rpc/xdr.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/beer.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/eqfix.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/fact.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/find-uname.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/from.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/ftpstats.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/lpwatch.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/makedir.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/markov.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/mboxconvert.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/mkrcs.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/newslist.doc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/newslist.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/pi.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/pp.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/primes.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/queens.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/script.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/toaiff.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/unbirthday.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/update.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/wh.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/broadcast.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/echosvr.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/finger.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/ftp.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/gopher.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/mcast.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/radio.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/rpython.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/rpythond.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/telnet.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/throughput.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/udpecho.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/unicast.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/unixclient.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sockets/unixserver.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/threads/Coroutine.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/threads/Generator.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/threads/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/threads/fcmp.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/threads/find.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/threads/squasher.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/threads/sync.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/threads/telnet.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/INSTALL.txt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/README.txt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/about.xpm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/bold.xbm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/capital.xbm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/centerj.xbm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/combobox.xbm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/combobox.xpm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/combobox.xpm.1
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/drivea.xbm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/drivea.xpm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/exit.xpm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/filebox.xbm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/filebox.xpm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/italic.xbm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/justify.xbm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/leftj.xbm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/netw.xbm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/netw.xpm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/optmenu.xpm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/rightj.xbm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/select.xpm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/tix.gif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/bitmaps/underline.xbm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/grid.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/samples/Balloon.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/samples/BtnBox.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/samples/CmpImg.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/samples/ComboBox.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/samples/Control.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/samples/DirList.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/samples/DirTree.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/samples/NoteBook.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/samples/OptMenu.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/samples/PanedWin.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/samples/PopMenu.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/samples/SHList1.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/samples/SHList2.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/samples/Tree.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tix/tixwidgets.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/AttrDialog.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/ManPage.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/MimeViewer.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/ShellWindow.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/brownian.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/brownian2.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/canvasevents.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/dialog.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/electrons.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/hanoi.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/hello.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/imagedraw.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/imageview.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/kill.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/listtree.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/mbox.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/newmenubardemo.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/optionmenu.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/paint.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/rmt.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/solitaire.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/sortvisu.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/ss1.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/svkill.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/switch.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/tkman.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/guido/wish.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/00-HELLO-WORLD.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/animation-simple.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/animation-w-velocity-ctrl.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/bind-w-mult-calls-p-type.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/canvas-demo-simple.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/canvas-gridding.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/canvas-moving-or-creating.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/canvas-moving-w-mouse.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/canvas-mult-item-sel.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/canvas-reading-tag-info.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/canvas-w-widget-draw-el.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/canvas-with-scrollbars.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/dialog-box.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/entry-simple.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/entry-with-shared-variable.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/killing-window-w-wm.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/menu-all-types-of-entries.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/menu-simple.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/not-what-you-might-think-1.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/not-what-you-might-think-2.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/packer-and-placer-together.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/packer-simple.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/placer-simple.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/pong-demo-1.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/printing-coords-of-items.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/radiobutton-simple.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/rubber-band-box-demo-1.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/rubber-line-demo-1.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/slider-demo-1.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/subclass-existing-widgets.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/two-radio-groups.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/window-creation-more.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/window-creation-simple.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tkinter/matt/window-creation-w-location.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/about_turtle.txt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/about_turtledemo.txt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/demohelp.txt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_I_dontlike_tiltdemo.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_bytedesign.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_chaos.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_clock.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_colormixer.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_forest.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_fractalcurves.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_lindenmayer_indian.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_minimal_hanoi.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_paint.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_peace.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_penrose.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_planet_and_moon.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_tree.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_wikipedia.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/tdemo_yinyang.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/turtle.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/turtleDemo.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/turtledemo_two_canvases.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/xml/elem_count.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/xml/roundtrip.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/xml/rss2html.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/zlib/minigzip.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/zlib/zlibdemo.py
+%%PORTDATA%%%%DATADIR%%/Tools/README
+%%PORTDATA%%%%DATADIR%%/Tools/buildbot/README.tcltk-AMD64
+%%PORTDATA%%%%DATADIR%%/Tools/buildbot/build-amd64.bat
+%%PORTDATA%%%%DATADIR%%/Tools/buildbot/build.bat
+%%PORTDATA%%%%DATADIR%%/Tools/buildbot/buildmsi.bat
+%%PORTDATA%%%%DATADIR%%/Tools/buildbot/clean-amd64.bat
+%%PORTDATA%%%%DATADIR%%/Tools/buildbot/clean.bat
+%%PORTDATA%%%%DATADIR%%/Tools/buildbot/external-amd64.bat
+%%PORTDATA%%%%DATADIR%%/Tools/buildbot/external-common.bat
+%%PORTDATA%%%%DATADIR%%/Tools/buildbot/external.bat
+%%PORTDATA%%%%DATADIR%%/Tools/buildbot/test-amd64.bat
+%%PORTDATA%%%%DATADIR%%/Tools/buildbot/test.bat
+%%PORTDATA%%%%DATADIR%%/Tools/faqwiz/README
+%%PORTDATA%%%%DATADIR%%/Tools/faqwiz/faqconf.py
+%%PORTDATA%%%%DATADIR%%/Tools/faqwiz/faqcust.py
+%%PORTDATA%%%%DATADIR%%/Tools/faqwiz/faqw.py
+%%PORTDATA%%%%DATADIR%%/Tools/faqwiz/faqwiz.py
+%%PORTDATA%%%%DATADIR%%/Tools/faqwiz/move-faqwiz.sh
+%%PORTDATA%%%%DATADIR%%/Tools/framer/README.txt
+%%PORTDATA%%%%DATADIR%%/Tools/framer/TODO.txt
+%%PORTDATA%%%%DATADIR%%/Tools/framer/example.py
+%%PORTDATA%%%%DATADIR%%/Tools/framer/framer/__init__.py
+%%PORTDATA%%%%DATADIR%%/Tools/framer/framer/bases.py
+%%PORTDATA%%%%DATADIR%%/Tools/framer/framer/function.py
+%%PORTDATA%%%%DATADIR%%/Tools/framer/framer/member.py
+%%PORTDATA%%%%DATADIR%%/Tools/framer/framer/slots.py
+%%PORTDATA%%%%DATADIR%%/Tools/framer/framer/struct.py
+%%PORTDATA%%%%DATADIR%%/Tools/framer/framer/structparse.py
+%%PORTDATA%%%%DATADIR%%/Tools/framer/framer/template.py
+%%PORTDATA%%%%DATADIR%%/Tools/framer/framer/util.py
+%%PORTDATA%%%%DATADIR%%/Tools/freeze/README
+%%PORTDATA%%%%DATADIR%%/Tools/freeze/bkfile.py
+%%PORTDATA%%%%DATADIR%%/Tools/freeze/checkextensions.py
+%%PORTDATA%%%%DATADIR%%/Tools/freeze/checkextensions_win32.py
+%%PORTDATA%%%%DATADIR%%/Tools/freeze/extensions_win32.ini
+%%PORTDATA%%%%DATADIR%%/Tools/freeze/flag.py
+%%PORTDATA%%%%DATADIR%%/Tools/freeze/freeze.py
+%%PORTDATA%%%%DATADIR%%/Tools/freeze/hello.py
+%%PORTDATA%%%%DATADIR%%/Tools/freeze/makeconfig.py
+%%PORTDATA%%%%DATADIR%%/Tools/freeze/makefreeze.py
+%%PORTDATA%%%%DATADIR%%/Tools/freeze/makemakefile.py
+%%PORTDATA%%%%DATADIR%%/Tools/freeze/parsesetup.py
+%%PORTDATA%%%%DATADIR%%/Tools/freeze/win32.html
+%%PORTDATA%%%%DATADIR%%/Tools/freeze/winmakemakefile.py
+%%PORTDATA%%%%DATADIR%%/Tools/i18n/makelocalealias.py
+%%PORTDATA%%%%DATADIR%%/Tools/i18n/msgfmt.py
+%%PORTDATA%%%%DATADIR%%/Tools/i18n/pygettext.py
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/EXAMPLE.py
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/README
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/ScrolledListbox.py
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/copyright
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/module_head
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/module_method
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/module_tail
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_head
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_method
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_mlist
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_new
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_structure
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_tail
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_tp_as_mapping
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_tp_as_number
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_tp_as_sequence
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_tp_call
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_tp_compare
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_tp_dealloc
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_tp_getattr
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_tp_hash
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_tp_print
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_tp_repr
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_tp_setattr
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Templates/object_tp_str
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/Tkextra.py
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/genmodule.py
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/modulator.py
+%%PORTDATA%%%%DATADIR%%/Tools/modulator/varsubst.py
+%%PORTDATA%%%%DATADIR%%/Tools/msi/README.txt
+%%PORTDATA%%%%DATADIR%%/Tools/msi/crtlicense.txt
+%%PORTDATA%%%%DATADIR%%/Tools/msi/merge.py
+%%PORTDATA%%%%DATADIR%%/Tools/msi/msi.py
+%%PORTDATA%%%%DATADIR%%/Tools/msi/msilib.py
+%%PORTDATA%%%%DATADIR%%/Tools/msi/msisupport.c
+%%PORTDATA%%%%DATADIR%%/Tools/msi/msisupport.mak
+%%PORTDATA%%%%DATADIR%%/Tools/msi/schema.py
+%%PORTDATA%%%%DATADIR%%/Tools/msi/sequence.py
+%%PORTDATA%%%%DATADIR%%/Tools/msi/uisample.py
+%%PORTDATA%%%%DATADIR%%/Tools/msi/uuids.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/Arithmetic.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/Calls.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/CommandLine.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/Constructs.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/Dict.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/Exceptions.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/Imports.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/Instances.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/LICENSE
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/Lists.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/Lookups.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/NewInstances.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/Numbers.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/README
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/Setup.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/Strings.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/Tuples.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/Unicode.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/With.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/clockres.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/package/__init__.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/package/submodule.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/pybench.py
+%%PORTDATA%%%%DATADIR%%/Tools/pybench/systimes.py
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/ChipViewer.py
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/ColorDB.py
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/DetailsViewer.py
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/ListViewer.py
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/Main.py
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/PyncheWidget.py
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/README
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/StripViewer.py
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/Switchboard.py
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/TextViewer.py
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/TypeinViewer.py
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/X/rgb.txt
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/X/xlicense.txt
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/__init__.py
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/html40colors.txt
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/namedcolors.txt
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/pyColorChooser.py
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/pynche
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/pynche.pyw
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/webcolors.txt
+%%PORTDATA%%%%DATADIR%%/Tools/pynche/websafe.txt
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/2to3
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/README
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/byext.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/byteyears.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/checkappend.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/checkpyc.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/classfix.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/cleanfuture.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/combinerefs.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/copytime.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/crlf.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/cvsfiles.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/db2pickle.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/diff.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/dutree.doc
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/dutree.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/eptags.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/finddiv.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/findlinksto.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/findnocoding.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/fixcid.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/fixdiv.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/fixheader.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/fixnotice.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/fixps.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/ftpmirror.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/google.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/gprof2html.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/h2py.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/idle
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/ifdef.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/lfcr.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/linktree.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/lll.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/logmerge.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/mailerdaemon.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/make_ctype.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/md5sum.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/methfix.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/mkreal.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/ndiff.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/nm2def.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/objgraph.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/parseentities.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/patchcheck.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/pathfix.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/pdeps.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/pickle2db.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/pindent.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/ptags.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/pydoc
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/pydocgui.pyw
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/pysource.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/redemo.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/reindent.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/rgrep.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/setup.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/smtpd.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/suff.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/svneol.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/texi2html.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/treesync.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/untabify.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/which.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/win_add2path.py
+%%PORTDATA%%%%DATADIR%%/Tools/scripts/xxci.py
+%%PORTDATA%%%%DATADIR%%/Tools/ssl/get-remote-certificate.py
+%%PORTDATA%%%%DATADIR%%/Tools/unicode/Makefile
+%%PORTDATA%%%%DATADIR%%/Tools/unicode/comparecodecs.py
+%%PORTDATA%%%%DATADIR%%/Tools/unicode/gencjkcodecs.py
+%%PORTDATA%%%%DATADIR%%/Tools/unicode/gencodec.py
+%%PORTDATA%%%%DATADIR%%/Tools/unicode/listcodecs.py
+%%PORTDATA%%%%DATADIR%%/Tools/unicode/makeunicodedata.py
+%%PORTDATA%%%%DATADIR%%/Tools/unicode/mkstringprep.py
+%%PORTDATA%%%%DATADIR%%/Tools/unicode/python-mappings/CP1140.TXT
+%%PORTDATA%%%%DATADIR%%/Tools/unicode/python-mappings/KOI8-U.TXT
+%%PORTDATA%%%%DATADIR%%/Tools/unicode/python-mappings/TIS-620.TXT
+%%PORTDATA%%%%DATADIR%%/Tools/versioncheck/README
+%%PORTDATA%%%%DATADIR%%/Tools/versioncheck/_checkversion.py
+%%PORTDATA%%%%DATADIR%%/Tools/versioncheck/checkversions.py
+%%PORTDATA%%%%DATADIR%%/Tools/versioncheck/pyversioncheck.py
+%%PORTDATA%%%%DATADIR%%/Tools/webchecker/README
+%%PORTDATA%%%%DATADIR%%/Tools/webchecker/tktools.py
+%%PORTDATA%%%%DATADIR%%/Tools/webchecker/wcgui.py
+%%PORTDATA%%%%DATADIR%%/Tools/webchecker/wcmac.py
+%%PORTDATA%%%%DATADIR%%/Tools/webchecker/webchecker.py
+%%PORTDATA%%%%DATADIR%%/Tools/webchecker/websucker.py
+%%PORTDATA%%%%DATADIR%%/Tools/webchecker/wsgui.py
+%%PORTDATA%%%%DATADIR%%/Tools/world/README
+%%PORTDATA%%%%DATADIR%%/Tools/world/world
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/world
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/webchecker
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/versioncheck
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/unicode/python-mappings
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/unicode
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/ssl
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/scripts
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/pynche/X
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/pynche
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/pybench/package
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/pybench
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/msi
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/modulator/Templates
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/modulator
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/i18n
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/freeze
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/framer/framer
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/framer
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/faqwiz
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools/buildbot
+%%PORTDATA%%@dirrm %%DATADIR%%/Tools
+%%PORTDATA%%@dirrm %%DATADIR%%
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/zlib
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/xml
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/turtle
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tkinter/matt
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tkinter/guido
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tkinter
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tix/samples
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tix/bitmaps
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tix
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/threads
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/sockets
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/scripts
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/rpc
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/pysvr
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/pdist
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/parser
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/newmetaclasses
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/metaclasses
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/md5test
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/imputil
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/embed
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/distutils/test2to3/test2to3
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/distutils/test2to3
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/distutils
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/curses
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/comparisons
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/classes
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/cgi
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%
@dirrm %%PYTHON_LIBDIR%%/xmlrpc
@dirrm %%PYTHON_LIBDIR%%/xml/sax
@dirrm %%PYTHON_LIBDIR%%/xml/parsers