mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
Some reorganization of this port:
- build some modules as shared objects, reducing the interpreter's size and removing the dependency on tix - install shared objects in lib - remove version number from OS-dependent script dir A new port of PyTix will follow shortly.
This commit is contained in:
parent
2f8ef1af98
commit
5866f48b31
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=6447
60 changed files with 6315 additions and 6285 deletions
|
@ -3,7 +3,7 @@
|
|||
# Date created: 08 August 1995
|
||||
# Whom: jkh
|
||||
#
|
||||
# $Id: Makefile,v 1.12 1997/02/21 14:57:01 tg Exp $
|
||||
# $Id: Makefile,v 1.13 1997/04/20 13:19:11 wosch Exp $
|
||||
#
|
||||
|
||||
DISTNAME= python1.4
|
||||
|
@ -13,12 +13,10 @@ MASTER_SITES= ftp://www.python.org/pub/python/src/ \
|
|||
ftp://ftp.cwi.nl/pub/python/src/ \
|
||||
ftp://www.python.org/pub/python/contrib/Graphics/Tkinter/ \
|
||||
ftp://ftp.cwi.nl/pub/python/contrib/Graphics/Tkinter/
|
||||
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} PyTix-1.12.tar.gz
|
||||
|
||||
MAINTAINER= tg@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= tk41\\.1\\.:${PORTSDIR}/x11/tk41 \
|
||||
tix4175\\.1\\.:${PORTSDIR}/x11/tix
|
||||
LIB_DEPENDS= tk41\\.1\\.:${PORTSDIR}/x11/tk41
|
||||
|
||||
WRKSRC= ${WRKDIR}/Python-1.4
|
||||
HAS_CONFIGURE= yes
|
||||
|
@ -27,14 +25,6 @@ MAKE_FLAGS+= 'OPT=${CFLAGS}'
|
|||
INSTALL_TARGET= install
|
||||
MAN1= python.1
|
||||
|
||||
PYTIXSRC= ${WRKDIR}/PyTix-1.12
|
||||
|
||||
post-extract:
|
||||
@${ECHO_MSG} "===> Add PyTix extensions to Python core"
|
||||
${CP} ${PYTIXSRC}/Tkinter.py ${WRKSRC}/Lib/tkinter
|
||||
${CP} ${PYTIXSRC}/Tix.py ${WRKSRC}/Lib/tkinter
|
||||
${CP} ${PYTIXSRC}/_tkinter.c ${WRKSRC}/Modules
|
||||
|
||||
post-configure:
|
||||
${CP} ${FILESDIR}/Setup ${WRKSRC}/Modules
|
||||
|
||||
|
|
|
@ -71,7 +71,7 @@ SITEPATH=:$(DESTLIB)/NumPy
|
|||
TESTPATH=:$(DESTLIB)/test
|
||||
|
||||
# Path for machine- or system-dependent modules (and shared libraries)
|
||||
MACHDEPPATH=:$(DESTLIB)/$(MACHDEP)
|
||||
MACHDEPPATH=:$(DESTLIB)/$(MACHDEP):$(MACHDESTLIB)/sharedmodules
|
||||
|
||||
COREPYTHONPATH=.$(SITEPATH)$(DESTPATH)$(TESTPATH)$(MACHDEPPATH)$(STDWINPATH)$(TKPATH)
|
||||
PYTHONPATH=$(COREPYTHONPATH)
|
||||
|
@ -128,6 +128,7 @@ select selectmodule.c # select(2); not on ancient System V
|
|||
socket socketmodule.c # socket(2); not on ancient System V
|
||||
errno errnomodule.c # posix (UNIX) errno values
|
||||
|
||||
*shared*
|
||||
|
||||
# Some more UNIX dependent modules -- off by default, since these
|
||||
# are not supported by all UNIX systems:
|
||||
|
@ -249,7 +250,7 @@ TKPATH=:$(DESTLIB)/tkinter
|
|||
#_tkinter _tkinter.c -I/usr/openwin/include -I/usr/local/include -L/usr/openwin/lib -L/usr/local/lib -ltk4.1 -ltcl7.5 -lX11
|
||||
# For generic system (may have to add -I/-L options to find X11):
|
||||
#_tkinter _tkinter.c -I/usr/local/include -L/usr/local/lib -ltk4.1 -ltcl7.5 -lX11
|
||||
_tkinter _tkinter.c -I/usr/local/include -I/usr/X11R6/include -L/usr/local/lib -L/usr/X11R6/lib -ltix4175 -ltk41 -ltcl75 -lX11
|
||||
_tkinter _tkinter.c -I/usr/local/include -I/usr/X11R6/include -L/usr/local/lib -L/usr/X11R6/lib -ltk41 -ltcl75 -lX11
|
||||
|
||||
|
||||
# Lance Ellinghaus's modules:
|
||||
|
|
|
@ -1,11 +1,7 @@
|
|||
--- Makefile.in.orig Fri Oct 25 16:37:32 1996
|
||||
+++ Makefile.in Thu Feb 6 12:02:11 1997
|
||||
@@ -95,10 +95,10 @@
|
||||
|
||||
# Expanded directories
|
||||
BINDIR= $(exec_prefix)/bin
|
||||
-LIBDIR= $(exec_prefix)/lib
|
||||
+LIBDIR= $(exec_prefix)/share
|
||||
+++ Makefile.in Mon May 12 21:04:38 1997
|
||||
@@ -98,7 +98,7 @@
|
||||
LIBDIR= $(exec_prefix)/lib
|
||||
MANDIR= $(prefix)/man
|
||||
INCLUDEDIR= $(prefix)/include
|
||||
-SCRIPTDIR= $(prefix)/lib
|
||||
|
|
|
@ -1,403 +1,5 @@
|
|||
bin/python1.4
|
||||
bin/python
|
||||
@exec mkdir -p %D/share/python1.4/sharedmodules
|
||||
@unexec rmdir %D/share/python1.4/sharedmodules
|
||||
share/python1.4/AST.py
|
||||
share/python1.4/AST.pyc
|
||||
share/python1.4/BaseHTTPServer.py
|
||||
share/python1.4/BaseHTTPServer.pyc
|
||||
share/python1.4/Bastion.py
|
||||
share/python1.4/Bastion.pyc
|
||||
share/python1.4/CGIHTTPServer.py
|
||||
share/python1.4/CGIHTTPServer.pyc
|
||||
share/python1.4/Complex.py
|
||||
share/python1.4/Complex.pyc
|
||||
share/python1.4/MimeWriter.py
|
||||
share/python1.4/MimeWriter.pyc
|
||||
share/python1.4/Para.py
|
||||
share/python1.4/Para.pyc
|
||||
share/python1.4/Queue.py
|
||||
share/python1.4/Queue.pyc
|
||||
share/python1.4/SimpleHTTPServer.py
|
||||
share/python1.4/SimpleHTTPServer.pyc
|
||||
share/python1.4/SocketServer.py
|
||||
share/python1.4/SocketServer.pyc
|
||||
share/python1.4/StringIO.py
|
||||
share/python1.4/StringIO.pyc
|
||||
share/python1.4/UserDict.py
|
||||
share/python1.4/UserDict.pyc
|
||||
share/python1.4/UserList.py
|
||||
share/python1.4/UserList.pyc
|
||||
share/python1.4/addpack.py
|
||||
share/python1.4/addpack.pyc
|
||||
share/python1.4/aifc.py
|
||||
share/python1.4/aifc.pyc
|
||||
share/python1.4/anydbm.py
|
||||
share/python1.4/anydbm.pyc
|
||||
share/python1.4/audiodev.py
|
||||
share/python1.4/audiodev.pyc
|
||||
share/python1.4/base64.py
|
||||
share/python1.4/base64.pyc
|
||||
share/python1.4/bdb.py
|
||||
share/python1.4/bdb.pyc
|
||||
share/python1.4/binhex.py
|
||||
share/python1.4/binhex.pyc
|
||||
share/python1.4/bisect.py
|
||||
share/python1.4/bisect.pyc
|
||||
share/python1.4/calendar.py
|
||||
share/python1.4/calendar.pyc
|
||||
share/python1.4/cgi.py
|
||||
share/python1.4/cgi.pyc
|
||||
share/python1.4/cmd.py
|
||||
share/python1.4/cmd.pyc
|
||||
share/python1.4/cmp.py
|
||||
share/python1.4/cmp.pyc
|
||||
share/python1.4/cmpcache.py
|
||||
share/python1.4/cmpcache.pyc
|
||||
share/python1.4/codehack.py
|
||||
share/python1.4/codehack.pyc
|
||||
share/python1.4/colorsys.py
|
||||
share/python1.4/colorsys.pyc
|
||||
share/python1.4/commands.py
|
||||
share/python1.4/commands.pyc
|
||||
share/python1.4/compileall.py
|
||||
share/python1.4/compileall.pyc
|
||||
share/python1.4/copy.py
|
||||
share/python1.4/copy.pyc
|
||||
share/python1.4/dbhash.py
|
||||
share/python1.4/dbhash.pyc
|
||||
share/python1.4/dircache.py
|
||||
share/python1.4/dircache.pyc
|
||||
share/python1.4/dircmp.py
|
||||
share/python1.4/dircmp.pyc
|
||||
share/python1.4/dis.py
|
||||
share/python1.4/dis.pyc
|
||||
share/python1.4/dospath.py
|
||||
share/python1.4/dospath.pyc
|
||||
share/python1.4/dumbdbm.py
|
||||
share/python1.4/dumbdbm.pyc
|
||||
share/python1.4/dump.py
|
||||
share/python1.4/dump.pyc
|
||||
share/python1.4/emacs.py
|
||||
share/python1.4/emacs.pyc
|
||||
share/python1.4/find.py
|
||||
share/python1.4/find.pyc
|
||||
share/python1.4/fmt.py
|
||||
share/python1.4/fmt.pyc
|
||||
share/python1.4/fnmatch.py
|
||||
share/python1.4/fnmatch.pyc
|
||||
share/python1.4/formatter.py
|
||||
share/python1.4/formatter.pyc
|
||||
share/python1.4/fpformat.py
|
||||
share/python1.4/fpformat.pyc
|
||||
share/python1.4/ftplib.py
|
||||
share/python1.4/ftplib.pyc
|
||||
share/python1.4/getopt.py
|
||||
share/python1.4/getopt.pyc
|
||||
share/python1.4/glob.py
|
||||
share/python1.4/glob.pyc
|
||||
share/python1.4/gopherlib.py
|
||||
share/python1.4/gopherlib.pyc
|
||||
share/python1.4/grep.py
|
||||
share/python1.4/grep.pyc
|
||||
share/python1.4/htmlentitydefs.py
|
||||
share/python1.4/htmlentitydefs.pyc
|
||||
share/python1.4/htmllib.py
|
||||
share/python1.4/htmllib.pyc
|
||||
share/python1.4/httplib.py
|
||||
share/python1.4/httplib.pyc
|
||||
share/python1.4/ihooks.py
|
||||
share/python1.4/ihooks.pyc
|
||||
share/python1.4/imghdr.py
|
||||
share/python1.4/imghdr.pyc
|
||||
share/python1.4/linecache.py
|
||||
share/python1.4/linecache.pyc
|
||||
share/python1.4/lockfile.py
|
||||
share/python1.4/lockfile.pyc
|
||||
share/python1.4/macpath.py
|
||||
share/python1.4/macpath.pyc
|
||||
share/python1.4/macurl2path.py
|
||||
share/python1.4/macurl2path.pyc
|
||||
share/python1.4/mailbox.py
|
||||
share/python1.4/mailbox.pyc
|
||||
share/python1.4/mailcap.py
|
||||
share/python1.4/mailcap.pyc
|
||||
share/python1.4/mhlib.py
|
||||
share/python1.4/mhlib.pyc
|
||||
share/python1.4/mimetools.py
|
||||
share/python1.4/mimetools.pyc
|
||||
share/python1.4/mimify.py
|
||||
share/python1.4/mimify.pyc
|
||||
share/python1.4/multifile.py
|
||||
share/python1.4/multifile.pyc
|
||||
share/python1.4/mutex.py
|
||||
share/python1.4/mutex.pyc
|
||||
share/python1.4/newdir.py
|
||||
share/python1.4/newdir.pyc
|
||||
share/python1.4/ni.py
|
||||
share/python1.4/ni.pyc
|
||||
share/python1.4/nntplib.py
|
||||
share/python1.4/nntplib.pyc
|
||||
share/python1.4/ntpath.py
|
||||
share/python1.4/ntpath.pyc
|
||||
share/python1.4/nturl2path.py
|
||||
share/python1.4/nturl2path.pyc
|
||||
share/python1.4/os.py
|
||||
share/python1.4/os.pyc
|
||||
share/python1.4/ospath.py
|
||||
share/python1.4/ospath.pyc
|
||||
share/python1.4/packmail.py
|
||||
share/python1.4/packmail.pyc
|
||||
share/python1.4/pdb.doc
|
||||
share/python1.4/pdb.py
|
||||
share/python1.4/pdb.pyc
|
||||
share/python1.4/pickle.py
|
||||
share/python1.4/pickle.pyc
|
||||
share/python1.4/pipes.py
|
||||
share/python1.4/pipes.pyc
|
||||
share/python1.4/poly.py
|
||||
share/python1.4/poly.pyc
|
||||
share/python1.4/popen2.py
|
||||
share/python1.4/popen2.pyc
|
||||
share/python1.4/posixfile.py
|
||||
share/python1.4/posixfile.pyc
|
||||
share/python1.4/posixpath.py
|
||||
share/python1.4/posixpath.pyc
|
||||
share/python1.4/profile.doc
|
||||
share/python1.4/profile.py
|
||||
share/python1.4/profile.pyc
|
||||
share/python1.4/pstats.py
|
||||
share/python1.4/pstats.pyc
|
||||
share/python1.4/pty.py
|
||||
share/python1.4/pty.pyc
|
||||
share/python1.4/py_compile.py
|
||||
share/python1.4/py_compile.pyc
|
||||
share/python1.4/pyclbr.py
|
||||
share/python1.4/pyclbr.pyc
|
||||
share/python1.4/quopri.py
|
||||
share/python1.4/quopri.pyc
|
||||
share/python1.4/rand.py
|
||||
share/python1.4/rand.pyc
|
||||
share/python1.4/random.py
|
||||
share/python1.4/random.pyc
|
||||
share/python1.4/regex_syntax.py
|
||||
share/python1.4/regex_syntax.pyc
|
||||
share/python1.4/regexp.py
|
||||
share/python1.4/regexp.pyc
|
||||
share/python1.4/regsub.py
|
||||
share/python1.4/regsub.pyc
|
||||
share/python1.4/repr.py
|
||||
share/python1.4/repr.pyc
|
||||
share/python1.4/rexec.py
|
||||
share/python1.4/rexec.pyc
|
||||
share/python1.4/rfc822.py
|
||||
share/python1.4/rfc822.pyc
|
||||
share/python1.4/sched.py
|
||||
share/python1.4/sched.pyc
|
||||
share/python1.4/sgmllib.py
|
||||
share/python1.4/sgmllib.pyc
|
||||
share/python1.4/shelve.py
|
||||
share/python1.4/shelve.pyc
|
||||
share/python1.4/shutil.py
|
||||
share/python1.4/shutil.pyc
|
||||
share/python1.4/site.py
|
||||
share/python1.4/site.pyc
|
||||
share/python1.4/sndhdr.py
|
||||
share/python1.4/sndhdr.pyc
|
||||
share/python1.4/stat.py
|
||||
share/python1.4/stat.pyc
|
||||
share/python1.4/statcache.py
|
||||
share/python1.4/statcache.pyc
|
||||
share/python1.4/string.py
|
||||
share/python1.4/string.pyc
|
||||
share/python1.4/sunau.py
|
||||
share/python1.4/sunau.pyc
|
||||
share/python1.4/sunaudio.py
|
||||
share/python1.4/sunaudio.pyc
|
||||
share/python1.4/symbol.py
|
||||
share/python1.4/symbol.pyc
|
||||
share/python1.4/tb.py
|
||||
share/python1.4/tb.pyc
|
||||
share/python1.4/tempfile.py
|
||||
share/python1.4/tempfile.pyc
|
||||
share/python1.4/toaiff.py
|
||||
share/python1.4/toaiff.pyc
|
||||
share/python1.4/token.py
|
||||
share/python1.4/token.pyc
|
||||
share/python1.4/tokenize.py
|
||||
share/python1.4/tokenize.pyc
|
||||
share/python1.4/traceback.py
|
||||
share/python1.4/traceback.pyc
|
||||
share/python1.4/tty.py
|
||||
share/python1.4/tty.pyc
|
||||
share/python1.4/types.py
|
||||
share/python1.4/types.pyc
|
||||
share/python1.4/tzparse.py
|
||||
share/python1.4/tzparse.pyc
|
||||
share/python1.4/urllib.py
|
||||
share/python1.4/urllib.pyc
|
||||
share/python1.4/urlparse.py
|
||||
share/python1.4/urlparse.pyc
|
||||
share/python1.4/util.py
|
||||
share/python1.4/util.pyc
|
||||
share/python1.4/uu.py
|
||||
share/python1.4/uu.pyc
|
||||
share/python1.4/wave.py
|
||||
share/python1.4/wave.pyc
|
||||
share/python1.4/whatsound.py
|
||||
share/python1.4/whatsound.pyc
|
||||
share/python1.4/whichdb.py
|
||||
share/python1.4/whichdb.pyc
|
||||
share/python1.4/whrandom.py
|
||||
share/python1.4/whrandom.pyc
|
||||
share/python1.4/xdrlib.py
|
||||
share/python1.4/xdrlib.pyc
|
||||
share/python1.4/zmod.py
|
||||
share/python1.4/zmod.pyc
|
||||
share/python1.4/config/Makefile
|
||||
share/python1.4/config/Setup
|
||||
share/python1.4/config/config.c
|
||||
share/python1.4/config/config.c.in
|
||||
share/python1.4/config/config.h
|
||||
share/python1.4/config/frozenmain.c
|
||||
share/python1.4/config/getpath.c
|
||||
share/python1.4/config/libModules.a
|
||||
share/python1.4/config/libObjects.a
|
||||
share/python1.4/config/libParser.a
|
||||
share/python1.4/config/libPython.a
|
||||
share/python1.4/config/main.o
|
||||
share/python1.4/config/makesetup
|
||||
share/python1.4/freebsd2/FCNTL.py
|
||||
share/python1.4/freebsd2/FCNTL.pyc
|
||||
share/python1.4/freebsd2/regen
|
||||
share/python1.4/stdwin/Abstract.py
|
||||
share/python1.4/stdwin/Abstract.pyc
|
||||
share/python1.4/stdwin/BoxParent.py
|
||||
share/python1.4/stdwin/BoxParent.pyc
|
||||
share/python1.4/stdwin/Buttons.py
|
||||
share/python1.4/stdwin/Buttons.pyc
|
||||
share/python1.4/stdwin/CSplit.py
|
||||
share/python1.4/stdwin/CSplit.pyc
|
||||
share/python1.4/stdwin/DirList.py
|
||||
share/python1.4/stdwin/DirList.pyc
|
||||
share/python1.4/stdwin/FormSplit.py
|
||||
share/python1.4/stdwin/FormSplit.pyc
|
||||
share/python1.4/stdwin/HVSplit.py
|
||||
share/python1.4/stdwin/HVSplit.pyc
|
||||
share/python1.4/stdwin/Histogram.py
|
||||
share/python1.4/stdwin/Histogram.pyc
|
||||
share/python1.4/stdwin/Sliders.py
|
||||
share/python1.4/stdwin/Sliders.pyc
|
||||
share/python1.4/stdwin/Soundogram.py
|
||||
share/python1.4/stdwin/Soundogram.pyc
|
||||
share/python1.4/stdwin/Split.py
|
||||
share/python1.4/stdwin/Split.pyc
|
||||
share/python1.4/stdwin/StripChart.py
|
||||
share/python1.4/stdwin/StripChart.pyc
|
||||
share/python1.4/stdwin/TextEdit.py
|
||||
share/python1.4/stdwin/TextEdit.pyc
|
||||
share/python1.4/stdwin/TransParent.py
|
||||
share/python1.4/stdwin/TransParent.pyc
|
||||
share/python1.4/stdwin/VUMeter.py
|
||||
share/python1.4/stdwin/VUMeter.pyc
|
||||
share/python1.4/stdwin/WindowParent.py
|
||||
share/python1.4/stdwin/WindowParent.pyc
|
||||
share/python1.4/stdwin/WindowSched.py
|
||||
share/python1.4/stdwin/WindowSched.pyc
|
||||
share/python1.4/stdwin/anywin.py
|
||||
share/python1.4/stdwin/anywin.pyc
|
||||
share/python1.4/stdwin/basewin.py
|
||||
share/python1.4/stdwin/basewin.pyc
|
||||
share/python1.4/stdwin/dirwin.py
|
||||
share/python1.4/stdwin/dirwin.pyc
|
||||
share/python1.4/stdwin/filewin.py
|
||||
share/python1.4/stdwin/filewin.pyc
|
||||
share/python1.4/stdwin/formatter.py
|
||||
share/python1.4/stdwin/formatter.pyc
|
||||
share/python1.4/stdwin/gwin.py
|
||||
share/python1.4/stdwin/gwin.pyc
|
||||
share/python1.4/stdwin/listwin.py
|
||||
share/python1.4/stdwin/listwin.pyc
|
||||
share/python1.4/stdwin/mainloop.py
|
||||
share/python1.4/stdwin/mainloop.pyc
|
||||
share/python1.4/stdwin/rect.py
|
||||
share/python1.4/stdwin/rect.pyc
|
||||
share/python1.4/stdwin/srcwin.py
|
||||
share/python1.4/stdwin/srcwin.pyc
|
||||
share/python1.4/stdwin/stdwinevents.py
|
||||
share/python1.4/stdwin/stdwinevents.pyc
|
||||
share/python1.4/stdwin/stdwinq.py
|
||||
share/python1.4/stdwin/stdwinq.pyc
|
||||
share/python1.4/stdwin/tablewin.py
|
||||
share/python1.4/stdwin/tablewin.pyc
|
||||
share/python1.4/stdwin/textwin.py
|
||||
share/python1.4/stdwin/textwin.pyc
|
||||
share/python1.4/stdwin/wdb.py
|
||||
share/python1.4/stdwin/wdb.pyc
|
||||
share/python1.4/stdwin/wdbframewin.py
|
||||
share/python1.4/stdwin/wdbframewin.pyc
|
||||
share/python1.4/stdwin/wdbsrcwin.py
|
||||
share/python1.4/stdwin/wdbsrcwin.pyc
|
||||
share/python1.4/test/autotest.py
|
||||
share/python1.4/test/autotest.pyc
|
||||
share/python1.4/test/test.rawimg
|
||||
share/python1.4/test/test.rawimg.rev
|
||||
share/python1.4/test/test.rgb
|
||||
share/python1.4/test/test_audioop.py
|
||||
share/python1.4/test/test_audioop.pyc
|
||||
share/python1.4/test/test_b1.py
|
||||
share/python1.4/test/test_b1.pyc
|
||||
share/python1.4/test/test_b2.py
|
||||
share/python1.4/test/test_b2.pyc
|
||||
share/python1.4/test/test_builtin.py
|
||||
share/python1.4/test/test_builtin.pyc
|
||||
share/python1.4/test/test_exceptions.py
|
||||
share/python1.4/test/test_exceptions.pyc
|
||||
share/python1.4/test/test_grammar.py
|
||||
share/python1.4/test/test_grammar.pyc
|
||||
share/python1.4/test/test_math.py
|
||||
share/python1.4/test/test_math.pyc
|
||||
share/python1.4/test/test_md5.py
|
||||
share/python1.4/test/test_md5.pyc
|
||||
share/python1.4/test/test_opcodes.py
|
||||
share/python1.4/test/test_opcodes.pyc
|
||||
share/python1.4/test/test_operations.py
|
||||
share/python1.4/test/test_operations.pyc
|
||||
share/python1.4/test/test_pow.py
|
||||
share/python1.4/test/test_pow.pyc
|
||||
share/python1.4/test/test_rgbimg.py
|
||||
share/python1.4/test/test_rgbimg.pyc
|
||||
share/python1.4/test/test_select.py
|
||||
share/python1.4/test/test_select.pyc
|
||||
share/python1.4/test/test_signal.py
|
||||
share/python1.4/test/test_signal.pyc
|
||||
share/python1.4/test/test_strop.py
|
||||
share/python1.4/test/test_strop.pyc
|
||||
share/python1.4/test/test_support.py
|
||||
share/python1.4/test/test_support.pyc
|
||||
share/python1.4/test/test_thread.py
|
||||
share/python1.4/test/test_thread.pyc
|
||||
share/python1.4/test/test_types.py
|
||||
share/python1.4/test/test_types.pyc
|
||||
share/python1.4/test/testall.out
|
||||
share/python1.4/test/testall.py
|
||||
share/python1.4/test/testall.pyc
|
||||
share/python1.4/tkinter/Canvas.py
|
||||
share/python1.4/tkinter/Canvas.pyc
|
||||
share/python1.4/tkinter/Dialog.py
|
||||
share/python1.4/tkinter/Dialog.pyc
|
||||
share/python1.4/tkinter/FileDialog.py
|
||||
share/python1.4/tkinter/FileDialog.pyc
|
||||
share/python1.4/tkinter/ScrolledText.py
|
||||
share/python1.4/tkinter/ScrolledText.pyc
|
||||
share/python1.4/tkinter/SimpleDialog.py
|
||||
share/python1.4/tkinter/SimpleDialog.pyc
|
||||
share/python1.4/tkinter/Tix.py
|
||||
share/python1.4/tkinter/Tix.pyc
|
||||
share/python1.4/tkinter/Tkconstants.py
|
||||
share/python1.4/tkinter/Tkconstants.pyc
|
||||
share/python1.4/tkinter/Tkinter.py
|
||||
share/python1.4/tkinter/Tkinter.pyc
|
||||
include/python1.4/Python.h
|
||||
include/python1.4/abstract.h
|
||||
include/python1.4/accessobject.h
|
||||
|
@ -459,4 +61,417 @@ include/python1.4/thread.h
|
|||
include/python1.4/token.h
|
||||
include/python1.4/traceback.h
|
||||
include/python1.4/tupleobject.h
|
||||
lib/python1.4/config/libParser.a
|
||||
lib/python1.4/config/libObjects.a
|
||||
lib/python1.4/config/libPython.a
|
||||
lib/python1.4/config/libModules.a
|
||||
lib/python1.4/config/config.c
|
||||
lib/python1.4/config/getpath.c
|
||||
lib/python1.4/config/config.c.in
|
||||
lib/python1.4/config/Makefile
|
||||
lib/python1.4/config/Setup
|
||||
lib/python1.4/config/makesetup
|
||||
lib/python1.4/config/config.h
|
||||
lib/python1.4/config/frozenmain.c
|
||||
lib/python1.4/config/main.o
|
||||
lib/python1.4/sharedmodules/dbmmodule.so
|
||||
lib/python1.4/sharedmodules/nismodule.so
|
||||
lib/python1.4/sharedmodules/termios.so
|
||||
lib/python1.4/sharedmodules/audioop.so
|
||||
lib/python1.4/sharedmodules/imageop.so
|
||||
lib/python1.4/sharedmodules/rgbimgmodule.so
|
||||
lib/python1.4/sharedmodules/md5module.so
|
||||
lib/python1.4/sharedmodules/_tkinter.so
|
||||
lib/python1.4/sharedmodules/rotormodule.so
|
||||
lib/python1.4/sharedmodules/syslogmodule.so
|
||||
lib/python1.4/sharedmodules/cursesmodule.so
|
||||
lib/python1.4/sharedmodules/bsddbmodule.so
|
||||
lib/python1.4/sharedmodules/binascii.so
|
||||
man/man1/python.1.gz
|
||||
share/python1.4/stdwin/Abstract.pyc
|
||||
share/python1.4/stdwin/Abstract.py
|
||||
share/python1.4/stdwin/BoxParent.py
|
||||
share/python1.4/stdwin/Buttons.py
|
||||
share/python1.4/stdwin/CSplit.py
|
||||
share/python1.4/stdwin/DirList.py
|
||||
share/python1.4/stdwin/FormSplit.py
|
||||
share/python1.4/stdwin/HVSplit.py
|
||||
share/python1.4/stdwin/Histogram.py
|
||||
share/python1.4/stdwin/Sliders.py
|
||||
share/python1.4/stdwin/Soundogram.py
|
||||
share/python1.4/stdwin/Split.py
|
||||
share/python1.4/stdwin/StripChart.py
|
||||
share/python1.4/stdwin/TextEdit.py
|
||||
share/python1.4/stdwin/TransParent.py
|
||||
share/python1.4/stdwin/VUMeter.py
|
||||
share/python1.4/stdwin/WindowParent.py
|
||||
share/python1.4/stdwin/WindowSched.py
|
||||
share/python1.4/stdwin/anywin.py
|
||||
share/python1.4/stdwin/basewin.py
|
||||
share/python1.4/stdwin/dirwin.py
|
||||
share/python1.4/stdwin/filewin.py
|
||||
share/python1.4/stdwin/formatter.py
|
||||
share/python1.4/stdwin/gwin.py
|
||||
share/python1.4/stdwin/listwin.py
|
||||
share/python1.4/stdwin/mainloop.py
|
||||
share/python1.4/stdwin/rect.py
|
||||
share/python1.4/stdwin/srcwin.py
|
||||
share/python1.4/stdwin/stdwinevents.py
|
||||
share/python1.4/stdwin/stdwinq.py
|
||||
share/python1.4/stdwin/tablewin.py
|
||||
share/python1.4/stdwin/textwin.py
|
||||
share/python1.4/stdwin/wdb.py
|
||||
share/python1.4/stdwin/wdbframewin.py
|
||||
share/python1.4/stdwin/wdbsrcwin.py
|
||||
share/python1.4/stdwin/BoxParent.pyc
|
||||
share/python1.4/stdwin/Buttons.pyc
|
||||
share/python1.4/stdwin/CSplit.pyc
|
||||
share/python1.4/stdwin/DirList.pyc
|
||||
share/python1.4/stdwin/FormSplit.pyc
|
||||
share/python1.4/stdwin/HVSplit.pyc
|
||||
share/python1.4/stdwin/Histogram.pyc
|
||||
share/python1.4/stdwin/Sliders.pyc
|
||||
share/python1.4/stdwin/Soundogram.pyc
|
||||
share/python1.4/stdwin/Split.pyc
|
||||
share/python1.4/stdwin/StripChart.pyc
|
||||
share/python1.4/stdwin/TextEdit.pyc
|
||||
share/python1.4/stdwin/TransParent.pyc
|
||||
share/python1.4/stdwin/VUMeter.pyc
|
||||
share/python1.4/stdwin/WindowParent.pyc
|
||||
share/python1.4/stdwin/WindowSched.pyc
|
||||
share/python1.4/stdwin/anywin.pyc
|
||||
share/python1.4/stdwin/basewin.pyc
|
||||
share/python1.4/stdwin/dirwin.pyc
|
||||
share/python1.4/stdwin/filewin.pyc
|
||||
share/python1.4/stdwin/formatter.pyc
|
||||
share/python1.4/stdwin/gwin.pyc
|
||||
share/python1.4/stdwin/listwin.pyc
|
||||
share/python1.4/stdwin/mainloop.pyc
|
||||
share/python1.4/stdwin/rect.pyc
|
||||
share/python1.4/stdwin/srcwin.pyc
|
||||
share/python1.4/stdwin/stdwinevents.pyc
|
||||
share/python1.4/stdwin/stdwinq.pyc
|
||||
share/python1.4/stdwin/tablewin.pyc
|
||||
share/python1.4/stdwin/textwin.pyc
|
||||
share/python1.4/stdwin/wdb.pyc
|
||||
share/python1.4/stdwin/wdbframewin.pyc
|
||||
share/python1.4/stdwin/wdbsrcwin.pyc
|
||||
share/python1.4/tkinter/Canvas.pyc
|
||||
share/python1.4/tkinter/Canvas.py
|
||||
share/python1.4/tkinter/Dialog.py
|
||||
share/python1.4/tkinter/FileDialog.py
|
||||
share/python1.4/tkinter/ScrolledText.py
|
||||
share/python1.4/tkinter/SimpleDialog.py
|
||||
share/python1.4/tkinter/Tkconstants.py
|
||||
share/python1.4/tkinter/Tkinter.py
|
||||
share/python1.4/tkinter/Dialog.pyc
|
||||
share/python1.4/tkinter/FileDialog.pyc
|
||||
share/python1.4/tkinter/ScrolledText.pyc
|
||||
share/python1.4/tkinter/SimpleDialog.pyc
|
||||
share/python1.4/tkinter/Tkconstants.pyc
|
||||
share/python1.4/tkinter/Tkinter.pyc
|
||||
share/python1.4/test/autotest.pyc
|
||||
share/python1.4/test/autotest.py
|
||||
share/python1.4/test/test.rawimg
|
||||
share/python1.4/test/test.rawimg.rev
|
||||
share/python1.4/test/test.rgb
|
||||
share/python1.4/test/test_audioop.py
|
||||
share/python1.4/test/test_b1.py
|
||||
share/python1.4/test/test_b2.py
|
||||
share/python1.4/test/test_builtin.py
|
||||
share/python1.4/test/test_exceptions.py
|
||||
share/python1.4/test/test_grammar.py
|
||||
share/python1.4/test/test_math.py
|
||||
share/python1.4/test/test_md5.py
|
||||
share/python1.4/test/test_opcodes.py
|
||||
share/python1.4/test/test_operations.py
|
||||
share/python1.4/test/test_pow.py
|
||||
share/python1.4/test/test_rgbimg.py
|
||||
share/python1.4/test/test_select.py
|
||||
share/python1.4/test/test_signal.py
|
||||
share/python1.4/test/test_strop.py
|
||||
share/python1.4/test/test_support.py
|
||||
share/python1.4/test/test_thread.py
|
||||
share/python1.4/test/test_types.py
|
||||
share/python1.4/test/testall.out
|
||||
share/python1.4/test/testall.py
|
||||
share/python1.4/test/test_audioop.pyc
|
||||
share/python1.4/test/test_b1.pyc
|
||||
share/python1.4/test/test_b2.pyc
|
||||
share/python1.4/test/test_builtin.pyc
|
||||
share/python1.4/test/test_exceptions.pyc
|
||||
share/python1.4/test/test_grammar.pyc
|
||||
share/python1.4/test/test_math.pyc
|
||||
share/python1.4/test/test_md5.pyc
|
||||
share/python1.4/test/test_opcodes.pyc
|
||||
share/python1.4/test/test_operations.pyc
|
||||
share/python1.4/test/test_pow.pyc
|
||||
share/python1.4/test/test_rgbimg.pyc
|
||||
share/python1.4/test/test_select.pyc
|
||||
share/python1.4/test/test_signal.pyc
|
||||
share/python1.4/test/test_strop.pyc
|
||||
share/python1.4/test/test_support.pyc
|
||||
share/python1.4/test/testall.pyc
|
||||
share/python1.4/test/test_thread.pyc
|
||||
share/python1.4/test/test_types.pyc
|
||||
share/python1.4/freebsd/FCNTL.pyc
|
||||
share/python1.4/freebsd/FCNTL.py
|
||||
share/python1.4/freebsd/IN.pyc
|
||||
share/python1.4/freebsd/IN.py
|
||||
share/python1.4/freebsd/SOCKET.pyc
|
||||
share/python1.4/freebsd/SOCKET.py
|
||||
share/python1.4/freebsd/TERMIOS.pyc
|
||||
share/python1.4/freebsd/TERMIOS.py
|
||||
share/python1.4/freebsd/regen
|
||||
share/python1.4/urllib.py
|
||||
share/python1.4/AST.py
|
||||
share/python1.4/BaseHTTPServer.py
|
||||
share/python1.4/Bastion.py
|
||||
share/python1.4/CGIHTTPServer.py
|
||||
share/python1.4/Complex.py
|
||||
share/python1.4/MimeWriter.py
|
||||
share/python1.4/Para.py
|
||||
share/python1.4/Queue.py
|
||||
share/python1.4/SimpleHTTPServer.py
|
||||
share/python1.4/SocketServer.py
|
||||
share/python1.4/StringIO.py
|
||||
share/python1.4/UserDict.py
|
||||
share/python1.4/UserList.py
|
||||
share/python1.4/addpack.py
|
||||
share/python1.4/aifc.py
|
||||
share/python1.4/anydbm.py
|
||||
share/python1.4/audiodev.py
|
||||
share/python1.4/base64.py
|
||||
share/python1.4/bdb.py
|
||||
share/python1.4/binhex.py
|
||||
share/python1.4/bisect.py
|
||||
share/python1.4/calendar.py
|
||||
share/python1.4/cgi.py
|
||||
share/python1.4/cmd.py
|
||||
share/python1.4/cmp.py
|
||||
share/python1.4/cmpcache.py
|
||||
share/python1.4/codehack.py
|
||||
share/python1.4/colorsys.py
|
||||
share/python1.4/commands.py
|
||||
share/python1.4/compileall.py
|
||||
share/python1.4/copy.py
|
||||
share/python1.4/dbhash.py
|
||||
share/python1.4/dircache.py
|
||||
share/python1.4/dircmp.py
|
||||
share/python1.4/dis.py
|
||||
share/python1.4/dospath.py
|
||||
share/python1.4/dumbdbm.py
|
||||
share/python1.4/dump.py
|
||||
share/python1.4/emacs.py
|
||||
share/python1.4/find.py
|
||||
share/python1.4/fmt.py
|
||||
share/python1.4/fnmatch.py
|
||||
share/python1.4/formatter.py
|
||||
share/python1.4/fpformat.py
|
||||
share/python1.4/ftplib.py
|
||||
share/python1.4/glob.py
|
||||
share/python1.4/getopt.py
|
||||
share/python1.4/gopherlib.py
|
||||
share/python1.4/grep.py
|
||||
share/python1.4/htmlentitydefs.py
|
||||
share/python1.4/htmllib.py
|
||||
share/python1.4/httplib.py
|
||||
share/python1.4/ihooks.py
|
||||
share/python1.4/imghdr.py
|
||||
share/python1.4/linecache.py
|
||||
share/python1.4/lockfile.py
|
||||
share/python1.4/macpath.py
|
||||
share/python1.4/macurl2path.py
|
||||
share/python1.4/mailbox.py
|
||||
share/python1.4/mailcap.py
|
||||
share/python1.4/mhlib.py
|
||||
share/python1.4/mimetools.py
|
||||
share/python1.4/mimify.py
|
||||
share/python1.4/multifile.py
|
||||
share/python1.4/mutex.py
|
||||
share/python1.4/newdir.py
|
||||
share/python1.4/ni.py
|
||||
share/python1.4/nntplib.py
|
||||
share/python1.4/ntpath.py
|
||||
share/python1.4/nturl2path.py
|
||||
share/python1.4/os.py
|
||||
share/python1.4/ospath.py
|
||||
share/python1.4/packmail.py
|
||||
share/python1.4/pdb.py
|
||||
share/python1.4/pickle.py
|
||||
share/python1.4/pipes.py
|
||||
share/python1.4/poly.py
|
||||
share/python1.4/popen2.py
|
||||
share/python1.4/posixfile.py
|
||||
share/python1.4/posixpath.py
|
||||
share/python1.4/profile.py
|
||||
share/python1.4/pstats.py
|
||||
share/python1.4/pty.py
|
||||
share/python1.4/py_compile.py
|
||||
share/python1.4/pyclbr.py
|
||||
share/python1.4/quopri.py
|
||||
share/python1.4/rand.py
|
||||
share/python1.4/random.py
|
||||
share/python1.4/regex_syntax.py
|
||||
share/python1.4/regexp.py
|
||||
share/python1.4/regsub.py
|
||||
share/python1.4/repr.py
|
||||
share/python1.4/rexec.py
|
||||
share/python1.4/rfc822.py
|
||||
share/python1.4/sched.py
|
||||
share/python1.4/sgmllib.py
|
||||
share/python1.4/shelve.py
|
||||
share/python1.4/shutil.py
|
||||
share/python1.4/site.py
|
||||
share/python1.4/sndhdr.py
|
||||
share/python1.4/stat.py
|
||||
share/python1.4/statcache.py
|
||||
share/python1.4/string.py
|
||||
share/python1.4/sunau.py
|
||||
share/python1.4/sunaudio.py
|
||||
share/python1.4/symbol.py
|
||||
share/python1.4/tb.py
|
||||
share/python1.4/tempfile.py
|
||||
share/python1.4/toaiff.py
|
||||
share/python1.4/token.py
|
||||
share/python1.4/tokenize.py
|
||||
share/python1.4/traceback.py
|
||||
share/python1.4/tty.py
|
||||
share/python1.4/types.py
|
||||
share/python1.4/tzparse.py
|
||||
share/python1.4/os.pyc
|
||||
share/python1.4/urlparse.py
|
||||
share/python1.4/util.py
|
||||
share/python1.4/uu.py
|
||||
share/python1.4/wave.py
|
||||
share/python1.4/whatsound.py
|
||||
share/python1.4/whichdb.py
|
||||
share/python1.4/whrandom.py
|
||||
share/python1.4/xdrlib.py
|
||||
share/python1.4/zmod.py
|
||||
share/python1.4/pdb.doc
|
||||
share/python1.4/profile.doc
|
||||
share/python1.4/posixpath.pyc
|
||||
share/python1.4/stat.pyc
|
||||
share/python1.4/UserDict.pyc
|
||||
share/python1.4/py_compile.pyc
|
||||
share/python1.4/getopt.pyc
|
||||
share/python1.4/string.pyc
|
||||
share/python1.4/AST.pyc
|
||||
share/python1.4/BaseHTTPServer.pyc
|
||||
share/python1.4/Bastion.pyc
|
||||
share/python1.4/CGIHTTPServer.pyc
|
||||
share/python1.4/Complex.pyc
|
||||
share/python1.4/MimeWriter.pyc
|
||||
share/python1.4/Para.pyc
|
||||
share/python1.4/Queue.pyc
|
||||
share/python1.4/SimpleHTTPServer.pyc
|
||||
share/python1.4/SocketServer.pyc
|
||||
share/python1.4/StringIO.pyc
|
||||
share/python1.4/UserList.pyc
|
||||
share/python1.4/addpack.pyc
|
||||
share/python1.4/aifc.pyc
|
||||
share/python1.4/anydbm.pyc
|
||||
share/python1.4/audiodev.pyc
|
||||
share/python1.4/base64.pyc
|
||||
share/python1.4/bdb.pyc
|
||||
share/python1.4/binhex.pyc
|
||||
share/python1.4/bisect.pyc
|
||||
share/python1.4/calendar.pyc
|
||||
share/python1.4/cgi.pyc
|
||||
share/python1.4/cmd.pyc
|
||||
share/python1.4/cmp.pyc
|
||||
share/python1.4/cmpcache.pyc
|
||||
share/python1.4/codehack.pyc
|
||||
share/python1.4/colorsys.pyc
|
||||
share/python1.4/commands.pyc
|
||||
share/python1.4/compileall.pyc
|
||||
share/python1.4/copy.pyc
|
||||
share/python1.4/dbhash.pyc
|
||||
share/python1.4/dircache.pyc
|
||||
share/python1.4/dircmp.pyc
|
||||
share/python1.4/dis.pyc
|
||||
share/python1.4/dospath.pyc
|
||||
share/python1.4/dumbdbm.pyc
|
||||
share/python1.4/dump.pyc
|
||||
share/python1.4/emacs.pyc
|
||||
share/python1.4/find.pyc
|
||||
share/python1.4/fmt.pyc
|
||||
share/python1.4/fnmatch.pyc
|
||||
share/python1.4/formatter.pyc
|
||||
share/python1.4/fpformat.pyc
|
||||
share/python1.4/ftplib.pyc
|
||||
share/python1.4/glob.pyc
|
||||
share/python1.4/gopherlib.pyc
|
||||
share/python1.4/grep.pyc
|
||||
share/python1.4/htmlentitydefs.pyc
|
||||
share/python1.4/htmllib.pyc
|
||||
share/python1.4/httplib.pyc
|
||||
share/python1.4/ihooks.pyc
|
||||
share/python1.4/imghdr.pyc
|
||||
share/python1.4/linecache.pyc
|
||||
share/python1.4/lockfile.pyc
|
||||
share/python1.4/macpath.pyc
|
||||
share/python1.4/macurl2path.pyc
|
||||
share/python1.4/mailbox.pyc
|
||||
share/python1.4/mailcap.pyc
|
||||
share/python1.4/mhlib.pyc
|
||||
share/python1.4/mimetools.pyc
|
||||
share/python1.4/mimify.pyc
|
||||
share/python1.4/multifile.pyc
|
||||
share/python1.4/mutex.pyc
|
||||
share/python1.4/newdir.pyc
|
||||
share/python1.4/ni.pyc
|
||||
share/python1.4/nntplib.pyc
|
||||
share/python1.4/ntpath.pyc
|
||||
share/python1.4/nturl2path.pyc
|
||||
share/python1.4/ospath.pyc
|
||||
share/python1.4/packmail.pyc
|
||||
share/python1.4/pdb.pyc
|
||||
share/python1.4/pickle.pyc
|
||||
share/python1.4/pipes.pyc
|
||||
share/python1.4/poly.pyc
|
||||
share/python1.4/popen2.pyc
|
||||
share/python1.4/posixfile.pyc
|
||||
share/python1.4/profile.pyc
|
||||
share/python1.4/pstats.pyc
|
||||
share/python1.4/pty.pyc
|
||||
share/python1.4/pyclbr.pyc
|
||||
share/python1.4/quopri.pyc
|
||||
share/python1.4/rand.pyc
|
||||
share/python1.4/random.pyc
|
||||
share/python1.4/regex_syntax.pyc
|
||||
share/python1.4/regexp.pyc
|
||||
share/python1.4/regsub.pyc
|
||||
share/python1.4/repr.pyc
|
||||
share/python1.4/rexec.pyc
|
||||
share/python1.4/rfc822.pyc
|
||||
share/python1.4/sched.pyc
|
||||
share/python1.4/sgmllib.pyc
|
||||
share/python1.4/shelve.pyc
|
||||
share/python1.4/shutil.pyc
|
||||
share/python1.4/site.pyc
|
||||
share/python1.4/sndhdr.pyc
|
||||
share/python1.4/statcache.pyc
|
||||
share/python1.4/sunau.pyc
|
||||
share/python1.4/sunaudio.pyc
|
||||
share/python1.4/symbol.pyc
|
||||
share/python1.4/tb.pyc
|
||||
share/python1.4/tempfile.pyc
|
||||
share/python1.4/toaiff.pyc
|
||||
share/python1.4/token.pyc
|
||||
share/python1.4/tokenize.pyc
|
||||
share/python1.4/traceback.pyc
|
||||
share/python1.4/tty.pyc
|
||||
share/python1.4/types.pyc
|
||||
share/python1.4/tzparse.pyc
|
||||
share/python1.4/urllib.pyc
|
||||
share/python1.4/urlparse.pyc
|
||||
share/python1.4/uu.pyc
|
||||
share/python1.4/util.pyc
|
||||
share/python1.4/wave.pyc
|
||||
share/python1.4/whatsound.pyc
|
||||
share/python1.4/whichdb.pyc
|
||||
share/python1.4/whrandom.pyc
|
||||
share/python1.4/xdrlib.pyc
|
||||
share/python1.4/zmod.pyc
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# Date created: 08 August 1995
|
||||
# Whom: jkh
|
||||
#
|
||||
# $Id: Makefile,v 1.12 1997/02/21 14:57:01 tg Exp $
|
||||
# $Id: Makefile,v 1.13 1997/04/20 13:19:11 wosch Exp $
|
||||
#
|
||||
|
||||
DISTNAME= python1.4
|
||||
|
@ -13,12 +13,10 @@ MASTER_SITES= ftp://www.python.org/pub/python/src/ \
|
|||
ftp://ftp.cwi.nl/pub/python/src/ \
|
||||
ftp://www.python.org/pub/python/contrib/Graphics/Tkinter/ \
|
||||
ftp://ftp.cwi.nl/pub/python/contrib/Graphics/Tkinter/
|
||||
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} PyTix-1.12.tar.gz
|
||||
|
||||
MAINTAINER= tg@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= tk41\\.1\\.:${PORTSDIR}/x11/tk41 \
|
||||
tix4175\\.1\\.:${PORTSDIR}/x11/tix
|
||||
LIB_DEPENDS= tk41\\.1\\.:${PORTSDIR}/x11/tk41
|
||||
|
||||
WRKSRC= ${WRKDIR}/Python-1.4
|
||||
HAS_CONFIGURE= yes
|
||||
|
@ -27,14 +25,6 @@ MAKE_FLAGS+= 'OPT=${CFLAGS}'
|
|||
INSTALL_TARGET= install
|
||||
MAN1= python.1
|
||||
|
||||
PYTIXSRC= ${WRKDIR}/PyTix-1.12
|
||||
|
||||
post-extract:
|
||||
@${ECHO_MSG} "===> Add PyTix extensions to Python core"
|
||||
${CP} ${PYTIXSRC}/Tkinter.py ${WRKSRC}/Lib/tkinter
|
||||
${CP} ${PYTIXSRC}/Tix.py ${WRKSRC}/Lib/tkinter
|
||||
${CP} ${PYTIXSRC}/_tkinter.c ${WRKSRC}/Modules
|
||||
|
||||
post-configure:
|
||||
${CP} ${FILESDIR}/Setup ${WRKSRC}/Modules
|
||||
|
||||
|
|
|
@ -71,7 +71,7 @@ SITEPATH=:$(DESTLIB)/NumPy
|
|||
TESTPATH=:$(DESTLIB)/test
|
||||
|
||||
# Path for machine- or system-dependent modules (and shared libraries)
|
||||
MACHDEPPATH=:$(DESTLIB)/$(MACHDEP)
|
||||
MACHDEPPATH=:$(DESTLIB)/$(MACHDEP):$(MACHDESTLIB)/sharedmodules
|
||||
|
||||
COREPYTHONPATH=.$(SITEPATH)$(DESTPATH)$(TESTPATH)$(MACHDEPPATH)$(STDWINPATH)$(TKPATH)
|
||||
PYTHONPATH=$(COREPYTHONPATH)
|
||||
|
@ -128,6 +128,7 @@ select selectmodule.c # select(2); not on ancient System V
|
|||
socket socketmodule.c # socket(2); not on ancient System V
|
||||
errno errnomodule.c # posix (UNIX) errno values
|
||||
|
||||
*shared*
|
||||
|
||||
# Some more UNIX dependent modules -- off by default, since these
|
||||
# are not supported by all UNIX systems:
|
||||
|
@ -249,7 +250,7 @@ TKPATH=:$(DESTLIB)/tkinter
|
|||
#_tkinter _tkinter.c -I/usr/openwin/include -I/usr/local/include -L/usr/openwin/lib -L/usr/local/lib -ltk4.1 -ltcl7.5 -lX11
|
||||
# For generic system (may have to add -I/-L options to find X11):
|
||||
#_tkinter _tkinter.c -I/usr/local/include -L/usr/local/lib -ltk4.1 -ltcl7.5 -lX11
|
||||
_tkinter _tkinter.c -I/usr/local/include -I/usr/X11R6/include -L/usr/local/lib -L/usr/X11R6/lib -ltix4175 -ltk41 -ltcl75 -lX11
|
||||
_tkinter _tkinter.c -I/usr/local/include -I/usr/X11R6/include -L/usr/local/lib -L/usr/X11R6/lib -ltk41 -ltcl75 -lX11
|
||||
|
||||
|
||||
# Lance Ellinghaus's modules:
|
||||
|
|
|
@ -1,11 +1,7 @@
|
|||
--- Makefile.in.orig Fri Oct 25 16:37:32 1996
|
||||
+++ Makefile.in Thu Feb 6 12:02:11 1997
|
||||
@@ -95,10 +95,10 @@
|
||||
|
||||
# Expanded directories
|
||||
BINDIR= $(exec_prefix)/bin
|
||||
-LIBDIR= $(exec_prefix)/lib
|
||||
+LIBDIR= $(exec_prefix)/share
|
||||
+++ Makefile.in Mon May 12 21:04:38 1997
|
||||
@@ -98,7 +98,7 @@
|
||||
LIBDIR= $(exec_prefix)/lib
|
||||
MANDIR= $(prefix)/man
|
||||
INCLUDEDIR= $(prefix)/include
|
||||
-SCRIPTDIR= $(prefix)/lib
|
||||
|
|
|
@ -1,403 +1,5 @@
|
|||
bin/python1.4
|
||||
bin/python
|
||||
@exec mkdir -p %D/share/python1.4/sharedmodules
|
||||
@unexec rmdir %D/share/python1.4/sharedmodules
|
||||
share/python1.4/AST.py
|
||||
share/python1.4/AST.pyc
|
||||
share/python1.4/BaseHTTPServer.py
|
||||
share/python1.4/BaseHTTPServer.pyc
|
||||
share/python1.4/Bastion.py
|
||||
share/python1.4/Bastion.pyc
|
||||
share/python1.4/CGIHTTPServer.py
|
||||
share/python1.4/CGIHTTPServer.pyc
|
||||
share/python1.4/Complex.py
|
||||
share/python1.4/Complex.pyc
|
||||
share/python1.4/MimeWriter.py
|
||||
share/python1.4/MimeWriter.pyc
|
||||
share/python1.4/Para.py
|
||||
share/python1.4/Para.pyc
|
||||
share/python1.4/Queue.py
|
||||
share/python1.4/Queue.pyc
|
||||
share/python1.4/SimpleHTTPServer.py
|
||||
share/python1.4/SimpleHTTPServer.pyc
|
||||
share/python1.4/SocketServer.py
|
||||
share/python1.4/SocketServer.pyc
|
||||
share/python1.4/StringIO.py
|
||||
share/python1.4/StringIO.pyc
|
||||
share/python1.4/UserDict.py
|
||||
share/python1.4/UserDict.pyc
|
||||
share/python1.4/UserList.py
|
||||
share/python1.4/UserList.pyc
|
||||
share/python1.4/addpack.py
|
||||
share/python1.4/addpack.pyc
|
||||
share/python1.4/aifc.py
|
||||
share/python1.4/aifc.pyc
|
||||
share/python1.4/anydbm.py
|
||||
share/python1.4/anydbm.pyc
|
||||
share/python1.4/audiodev.py
|
||||
share/python1.4/audiodev.pyc
|
||||
share/python1.4/base64.py
|
||||
share/python1.4/base64.pyc
|
||||
share/python1.4/bdb.py
|
||||
share/python1.4/bdb.pyc
|
||||
share/python1.4/binhex.py
|
||||
share/python1.4/binhex.pyc
|
||||
share/python1.4/bisect.py
|
||||
share/python1.4/bisect.pyc
|
||||
share/python1.4/calendar.py
|
||||
share/python1.4/calendar.pyc
|
||||
share/python1.4/cgi.py
|
||||
share/python1.4/cgi.pyc
|
||||
share/python1.4/cmd.py
|
||||
share/python1.4/cmd.pyc
|
||||
share/python1.4/cmp.py
|
||||
share/python1.4/cmp.pyc
|
||||
share/python1.4/cmpcache.py
|
||||
share/python1.4/cmpcache.pyc
|
||||
share/python1.4/codehack.py
|
||||
share/python1.4/codehack.pyc
|
||||
share/python1.4/colorsys.py
|
||||
share/python1.4/colorsys.pyc
|
||||
share/python1.4/commands.py
|
||||
share/python1.4/commands.pyc
|
||||
share/python1.4/compileall.py
|
||||
share/python1.4/compileall.pyc
|
||||
share/python1.4/copy.py
|
||||
share/python1.4/copy.pyc
|
||||
share/python1.4/dbhash.py
|
||||
share/python1.4/dbhash.pyc
|
||||
share/python1.4/dircache.py
|
||||
share/python1.4/dircache.pyc
|
||||
share/python1.4/dircmp.py
|
||||
share/python1.4/dircmp.pyc
|
||||
share/python1.4/dis.py
|
||||
share/python1.4/dis.pyc
|
||||
share/python1.4/dospath.py
|
||||
share/python1.4/dospath.pyc
|
||||
share/python1.4/dumbdbm.py
|
||||
share/python1.4/dumbdbm.pyc
|
||||
share/python1.4/dump.py
|
||||
share/python1.4/dump.pyc
|
||||
share/python1.4/emacs.py
|
||||
share/python1.4/emacs.pyc
|
||||
share/python1.4/find.py
|
||||
share/python1.4/find.pyc
|
||||
share/python1.4/fmt.py
|
||||
share/python1.4/fmt.pyc
|
||||
share/python1.4/fnmatch.py
|
||||
share/python1.4/fnmatch.pyc
|
||||
share/python1.4/formatter.py
|
||||
share/python1.4/formatter.pyc
|
||||
share/python1.4/fpformat.py
|
||||
share/python1.4/fpformat.pyc
|
||||
share/python1.4/ftplib.py
|
||||
share/python1.4/ftplib.pyc
|
||||
share/python1.4/getopt.py
|
||||
share/python1.4/getopt.pyc
|
||||
share/python1.4/glob.py
|
||||
share/python1.4/glob.pyc
|
||||
share/python1.4/gopherlib.py
|
||||
share/python1.4/gopherlib.pyc
|
||||
share/python1.4/grep.py
|
||||
share/python1.4/grep.pyc
|
||||
share/python1.4/htmlentitydefs.py
|
||||
share/python1.4/htmlentitydefs.pyc
|
||||
share/python1.4/htmllib.py
|
||||
share/python1.4/htmllib.pyc
|
||||
share/python1.4/httplib.py
|
||||
share/python1.4/httplib.pyc
|
||||
share/python1.4/ihooks.py
|
||||
share/python1.4/ihooks.pyc
|
||||
share/python1.4/imghdr.py
|
||||
share/python1.4/imghdr.pyc
|
||||
share/python1.4/linecache.py
|
||||
share/python1.4/linecache.pyc
|
||||
share/python1.4/lockfile.py
|
||||
share/python1.4/lockfile.pyc
|
||||
share/python1.4/macpath.py
|
||||
share/python1.4/macpath.pyc
|
||||
share/python1.4/macurl2path.py
|
||||
share/python1.4/macurl2path.pyc
|
||||
share/python1.4/mailbox.py
|
||||
share/python1.4/mailbox.pyc
|
||||
share/python1.4/mailcap.py
|
||||
share/python1.4/mailcap.pyc
|
||||
share/python1.4/mhlib.py
|
||||
share/python1.4/mhlib.pyc
|
||||
share/python1.4/mimetools.py
|
||||
share/python1.4/mimetools.pyc
|
||||
share/python1.4/mimify.py
|
||||
share/python1.4/mimify.pyc
|
||||
share/python1.4/multifile.py
|
||||
share/python1.4/multifile.pyc
|
||||
share/python1.4/mutex.py
|
||||
share/python1.4/mutex.pyc
|
||||
share/python1.4/newdir.py
|
||||
share/python1.4/newdir.pyc
|
||||
share/python1.4/ni.py
|
||||
share/python1.4/ni.pyc
|
||||
share/python1.4/nntplib.py
|
||||
share/python1.4/nntplib.pyc
|
||||
share/python1.4/ntpath.py
|
||||
share/python1.4/ntpath.pyc
|
||||
share/python1.4/nturl2path.py
|
||||
share/python1.4/nturl2path.pyc
|
||||
share/python1.4/os.py
|
||||
share/python1.4/os.pyc
|
||||
share/python1.4/ospath.py
|
||||
share/python1.4/ospath.pyc
|
||||
share/python1.4/packmail.py
|
||||
share/python1.4/packmail.pyc
|
||||
share/python1.4/pdb.doc
|
||||
share/python1.4/pdb.py
|
||||
share/python1.4/pdb.pyc
|
||||
share/python1.4/pickle.py
|
||||
share/python1.4/pickle.pyc
|
||||
share/python1.4/pipes.py
|
||||
share/python1.4/pipes.pyc
|
||||
share/python1.4/poly.py
|
||||
share/python1.4/poly.pyc
|
||||
share/python1.4/popen2.py
|
||||
share/python1.4/popen2.pyc
|
||||
share/python1.4/posixfile.py
|
||||
share/python1.4/posixfile.pyc
|
||||
share/python1.4/posixpath.py
|
||||
share/python1.4/posixpath.pyc
|
||||
share/python1.4/profile.doc
|
||||
share/python1.4/profile.py
|
||||
share/python1.4/profile.pyc
|
||||
share/python1.4/pstats.py
|
||||
share/python1.4/pstats.pyc
|
||||
share/python1.4/pty.py
|
||||
share/python1.4/pty.pyc
|
||||
share/python1.4/py_compile.py
|
||||
share/python1.4/py_compile.pyc
|
||||
share/python1.4/pyclbr.py
|
||||
share/python1.4/pyclbr.pyc
|
||||
share/python1.4/quopri.py
|
||||
share/python1.4/quopri.pyc
|
||||
share/python1.4/rand.py
|
||||
share/python1.4/rand.pyc
|
||||
share/python1.4/random.py
|
||||
share/python1.4/random.pyc
|
||||
share/python1.4/regex_syntax.py
|
||||
share/python1.4/regex_syntax.pyc
|
||||
share/python1.4/regexp.py
|
||||
share/python1.4/regexp.pyc
|
||||
share/python1.4/regsub.py
|
||||
share/python1.4/regsub.pyc
|
||||
share/python1.4/repr.py
|
||||
share/python1.4/repr.pyc
|
||||
share/python1.4/rexec.py
|
||||
share/python1.4/rexec.pyc
|
||||
share/python1.4/rfc822.py
|
||||
share/python1.4/rfc822.pyc
|
||||
share/python1.4/sched.py
|
||||
share/python1.4/sched.pyc
|
||||
share/python1.4/sgmllib.py
|
||||
share/python1.4/sgmllib.pyc
|
||||
share/python1.4/shelve.py
|
||||
share/python1.4/shelve.pyc
|
||||
share/python1.4/shutil.py
|
||||
share/python1.4/shutil.pyc
|
||||
share/python1.4/site.py
|
||||
share/python1.4/site.pyc
|
||||
share/python1.4/sndhdr.py
|
||||
share/python1.4/sndhdr.pyc
|
||||
share/python1.4/stat.py
|
||||
share/python1.4/stat.pyc
|
||||
share/python1.4/statcache.py
|
||||
share/python1.4/statcache.pyc
|
||||
share/python1.4/string.py
|
||||
share/python1.4/string.pyc
|
||||
share/python1.4/sunau.py
|
||||
share/python1.4/sunau.pyc
|
||||
share/python1.4/sunaudio.py
|
||||
share/python1.4/sunaudio.pyc
|
||||
share/python1.4/symbol.py
|
||||
share/python1.4/symbol.pyc
|
||||
share/python1.4/tb.py
|
||||
share/python1.4/tb.pyc
|
||||
share/python1.4/tempfile.py
|
||||
share/python1.4/tempfile.pyc
|
||||
share/python1.4/toaiff.py
|
||||
share/python1.4/toaiff.pyc
|
||||
share/python1.4/token.py
|
||||
share/python1.4/token.pyc
|
||||
share/python1.4/tokenize.py
|
||||
share/python1.4/tokenize.pyc
|
||||
share/python1.4/traceback.py
|
||||
share/python1.4/traceback.pyc
|
||||
share/python1.4/tty.py
|
||||
share/python1.4/tty.pyc
|
||||
share/python1.4/types.py
|
||||
share/python1.4/types.pyc
|
||||
share/python1.4/tzparse.py
|
||||
share/python1.4/tzparse.pyc
|
||||
share/python1.4/urllib.py
|
||||
share/python1.4/urllib.pyc
|
||||
share/python1.4/urlparse.py
|
||||
share/python1.4/urlparse.pyc
|
||||
share/python1.4/util.py
|
||||
share/python1.4/util.pyc
|
||||
share/python1.4/uu.py
|
||||
share/python1.4/uu.pyc
|
||||
share/python1.4/wave.py
|
||||
share/python1.4/wave.pyc
|
||||
share/python1.4/whatsound.py
|
||||
share/python1.4/whatsound.pyc
|
||||
share/python1.4/whichdb.py
|
||||
share/python1.4/whichdb.pyc
|
||||
share/python1.4/whrandom.py
|
||||
share/python1.4/whrandom.pyc
|
||||
share/python1.4/xdrlib.py
|
||||
share/python1.4/xdrlib.pyc
|
||||
share/python1.4/zmod.py
|
||||
share/python1.4/zmod.pyc
|
||||
share/python1.4/config/Makefile
|
||||
share/python1.4/config/Setup
|
||||
share/python1.4/config/config.c
|
||||
share/python1.4/config/config.c.in
|
||||
share/python1.4/config/config.h
|
||||
share/python1.4/config/frozenmain.c
|
||||
share/python1.4/config/getpath.c
|
||||
share/python1.4/config/libModules.a
|
||||
share/python1.4/config/libObjects.a
|
||||
share/python1.4/config/libParser.a
|
||||
share/python1.4/config/libPython.a
|
||||
share/python1.4/config/main.o
|
||||
share/python1.4/config/makesetup
|
||||
share/python1.4/freebsd2/FCNTL.py
|
||||
share/python1.4/freebsd2/FCNTL.pyc
|
||||
share/python1.4/freebsd2/regen
|
||||
share/python1.4/stdwin/Abstract.py
|
||||
share/python1.4/stdwin/Abstract.pyc
|
||||
share/python1.4/stdwin/BoxParent.py
|
||||
share/python1.4/stdwin/BoxParent.pyc
|
||||
share/python1.4/stdwin/Buttons.py
|
||||
share/python1.4/stdwin/Buttons.pyc
|
||||
share/python1.4/stdwin/CSplit.py
|
||||
share/python1.4/stdwin/CSplit.pyc
|
||||
share/python1.4/stdwin/DirList.py
|
||||
share/python1.4/stdwin/DirList.pyc
|
||||
share/python1.4/stdwin/FormSplit.py
|
||||
share/python1.4/stdwin/FormSplit.pyc
|
||||
share/python1.4/stdwin/HVSplit.py
|
||||
share/python1.4/stdwin/HVSplit.pyc
|
||||
share/python1.4/stdwin/Histogram.py
|
||||
share/python1.4/stdwin/Histogram.pyc
|
||||
share/python1.4/stdwin/Sliders.py
|
||||
share/python1.4/stdwin/Sliders.pyc
|
||||
share/python1.4/stdwin/Soundogram.py
|
||||
share/python1.4/stdwin/Soundogram.pyc
|
||||
share/python1.4/stdwin/Split.py
|
||||
share/python1.4/stdwin/Split.pyc
|
||||
share/python1.4/stdwin/StripChart.py
|
||||
share/python1.4/stdwin/StripChart.pyc
|
||||
share/python1.4/stdwin/TextEdit.py
|
||||
share/python1.4/stdwin/TextEdit.pyc
|
||||
share/python1.4/stdwin/TransParent.py
|
||||
share/python1.4/stdwin/TransParent.pyc
|
||||
share/python1.4/stdwin/VUMeter.py
|
||||
share/python1.4/stdwin/VUMeter.pyc
|
||||
share/python1.4/stdwin/WindowParent.py
|
||||
share/python1.4/stdwin/WindowParent.pyc
|
||||
share/python1.4/stdwin/WindowSched.py
|
||||
share/python1.4/stdwin/WindowSched.pyc
|
||||
share/python1.4/stdwin/anywin.py
|
||||
share/python1.4/stdwin/anywin.pyc
|
||||
share/python1.4/stdwin/basewin.py
|
||||
share/python1.4/stdwin/basewin.pyc
|
||||
share/python1.4/stdwin/dirwin.py
|
||||
share/python1.4/stdwin/dirwin.pyc
|
||||
share/python1.4/stdwin/filewin.py
|
||||
share/python1.4/stdwin/filewin.pyc
|
||||
share/python1.4/stdwin/formatter.py
|
||||
share/python1.4/stdwin/formatter.pyc
|
||||
share/python1.4/stdwin/gwin.py
|
||||
share/python1.4/stdwin/gwin.pyc
|
||||
share/python1.4/stdwin/listwin.py
|
||||
share/python1.4/stdwin/listwin.pyc
|
||||
share/python1.4/stdwin/mainloop.py
|
||||
share/python1.4/stdwin/mainloop.pyc
|
||||
share/python1.4/stdwin/rect.py
|
||||
share/python1.4/stdwin/rect.pyc
|
||||
share/python1.4/stdwin/srcwin.py
|
||||
share/python1.4/stdwin/srcwin.pyc
|
||||
share/python1.4/stdwin/stdwinevents.py
|
||||
share/python1.4/stdwin/stdwinevents.pyc
|
||||
share/python1.4/stdwin/stdwinq.py
|
||||
share/python1.4/stdwin/stdwinq.pyc
|
||||
share/python1.4/stdwin/tablewin.py
|
||||
share/python1.4/stdwin/tablewin.pyc
|
||||
share/python1.4/stdwin/textwin.py
|
||||
share/python1.4/stdwin/textwin.pyc
|
||||
share/python1.4/stdwin/wdb.py
|
||||
share/python1.4/stdwin/wdb.pyc
|
||||
share/python1.4/stdwin/wdbframewin.py
|
||||
share/python1.4/stdwin/wdbframewin.pyc
|
||||
share/python1.4/stdwin/wdbsrcwin.py
|
||||
share/python1.4/stdwin/wdbsrcwin.pyc
|
||||
share/python1.4/test/autotest.py
|
||||
share/python1.4/test/autotest.pyc
|
||||
share/python1.4/test/test.rawimg
|
||||
share/python1.4/test/test.rawimg.rev
|
||||
share/python1.4/test/test.rgb
|
||||
share/python1.4/test/test_audioop.py
|
||||
share/python1.4/test/test_audioop.pyc
|
||||
share/python1.4/test/test_b1.py
|
||||
share/python1.4/test/test_b1.pyc
|
||||
share/python1.4/test/test_b2.py
|
||||
share/python1.4/test/test_b2.pyc
|
||||
share/python1.4/test/test_builtin.py
|
||||
share/python1.4/test/test_builtin.pyc
|
||||
share/python1.4/test/test_exceptions.py
|
||||
share/python1.4/test/test_exceptions.pyc
|
||||
share/python1.4/test/test_grammar.py
|
||||
share/python1.4/test/test_grammar.pyc
|
||||
share/python1.4/test/test_math.py
|
||||
share/python1.4/test/test_math.pyc
|
||||
share/python1.4/test/test_md5.py
|
||||
share/python1.4/test/test_md5.pyc
|
||||
share/python1.4/test/test_opcodes.py
|
||||
share/python1.4/test/test_opcodes.pyc
|
||||
share/python1.4/test/test_operations.py
|
||||
share/python1.4/test/test_operations.pyc
|
||||
share/python1.4/test/test_pow.py
|
||||
share/python1.4/test/test_pow.pyc
|
||||
share/python1.4/test/test_rgbimg.py
|
||||
share/python1.4/test/test_rgbimg.pyc
|
||||
share/python1.4/test/test_select.py
|
||||
share/python1.4/test/test_select.pyc
|
||||
share/python1.4/test/test_signal.py
|
||||
share/python1.4/test/test_signal.pyc
|
||||
share/python1.4/test/test_strop.py
|
||||
share/python1.4/test/test_strop.pyc
|
||||
share/python1.4/test/test_support.py
|
||||
share/python1.4/test/test_support.pyc
|
||||
share/python1.4/test/test_thread.py
|
||||
share/python1.4/test/test_thread.pyc
|
||||
share/python1.4/test/test_types.py
|
||||
share/python1.4/test/test_types.pyc
|
||||
share/python1.4/test/testall.out
|
||||
share/python1.4/test/testall.py
|
||||
share/python1.4/test/testall.pyc
|
||||
share/python1.4/tkinter/Canvas.py
|
||||
share/python1.4/tkinter/Canvas.pyc
|
||||
share/python1.4/tkinter/Dialog.py
|
||||
share/python1.4/tkinter/Dialog.pyc
|
||||
share/python1.4/tkinter/FileDialog.py
|
||||
share/python1.4/tkinter/FileDialog.pyc
|
||||
share/python1.4/tkinter/ScrolledText.py
|
||||
share/python1.4/tkinter/ScrolledText.pyc
|
||||
share/python1.4/tkinter/SimpleDialog.py
|
||||
share/python1.4/tkinter/SimpleDialog.pyc
|
||||
share/python1.4/tkinter/Tix.py
|
||||
share/python1.4/tkinter/Tix.pyc
|
||||
share/python1.4/tkinter/Tkconstants.py
|
||||
share/python1.4/tkinter/Tkconstants.pyc
|
||||
share/python1.4/tkinter/Tkinter.py
|
||||
share/python1.4/tkinter/Tkinter.pyc
|
||||
include/python1.4/Python.h
|
||||
include/python1.4/abstract.h
|
||||
include/python1.4/accessobject.h
|
||||
|
@ -459,4 +61,417 @@ include/python1.4/thread.h
|
|||
include/python1.4/token.h
|
||||
include/python1.4/traceback.h
|
||||
include/python1.4/tupleobject.h
|
||||
lib/python1.4/config/libParser.a
|
||||
lib/python1.4/config/libObjects.a
|
||||
lib/python1.4/config/libPython.a
|
||||
lib/python1.4/config/libModules.a
|
||||
lib/python1.4/config/config.c
|
||||
lib/python1.4/config/getpath.c
|
||||
lib/python1.4/config/config.c.in
|
||||
lib/python1.4/config/Makefile
|
||||
lib/python1.4/config/Setup
|
||||
lib/python1.4/config/makesetup
|
||||
lib/python1.4/config/config.h
|
||||
lib/python1.4/config/frozenmain.c
|
||||
lib/python1.4/config/main.o
|
||||
lib/python1.4/sharedmodules/dbmmodule.so
|
||||
lib/python1.4/sharedmodules/nismodule.so
|
||||
lib/python1.4/sharedmodules/termios.so
|
||||
lib/python1.4/sharedmodules/audioop.so
|
||||
lib/python1.4/sharedmodules/imageop.so
|
||||
lib/python1.4/sharedmodules/rgbimgmodule.so
|
||||
lib/python1.4/sharedmodules/md5module.so
|
||||
lib/python1.4/sharedmodules/_tkinter.so
|
||||
lib/python1.4/sharedmodules/rotormodule.so
|
||||
lib/python1.4/sharedmodules/syslogmodule.so
|
||||
lib/python1.4/sharedmodules/cursesmodule.so
|
||||
lib/python1.4/sharedmodules/bsddbmodule.so
|
||||
lib/python1.4/sharedmodules/binascii.so
|
||||
man/man1/python.1.gz
|
||||
share/python1.4/stdwin/Abstract.pyc
|
||||
share/python1.4/stdwin/Abstract.py
|
||||
share/python1.4/stdwin/BoxParent.py
|
||||
share/python1.4/stdwin/Buttons.py
|
||||
share/python1.4/stdwin/CSplit.py
|
||||
share/python1.4/stdwin/DirList.py
|
||||
share/python1.4/stdwin/FormSplit.py
|
||||
share/python1.4/stdwin/HVSplit.py
|
||||
share/python1.4/stdwin/Histogram.py
|
||||
share/python1.4/stdwin/Sliders.py
|
||||
share/python1.4/stdwin/Soundogram.py
|
||||
share/python1.4/stdwin/Split.py
|
||||
share/python1.4/stdwin/StripChart.py
|
||||
share/python1.4/stdwin/TextEdit.py
|
||||
share/python1.4/stdwin/TransParent.py
|
||||
share/python1.4/stdwin/VUMeter.py
|
||||
share/python1.4/stdwin/WindowParent.py
|
||||
share/python1.4/stdwin/WindowSched.py
|
||||
share/python1.4/stdwin/anywin.py
|
||||
share/python1.4/stdwin/basewin.py
|
||||
share/python1.4/stdwin/dirwin.py
|
||||
share/python1.4/stdwin/filewin.py
|
||||
share/python1.4/stdwin/formatter.py
|
||||
share/python1.4/stdwin/gwin.py
|
||||
share/python1.4/stdwin/listwin.py
|
||||
share/python1.4/stdwin/mainloop.py
|
||||
share/python1.4/stdwin/rect.py
|
||||
share/python1.4/stdwin/srcwin.py
|
||||
share/python1.4/stdwin/stdwinevents.py
|
||||
share/python1.4/stdwin/stdwinq.py
|
||||
share/python1.4/stdwin/tablewin.py
|
||||
share/python1.4/stdwin/textwin.py
|
||||
share/python1.4/stdwin/wdb.py
|
||||
share/python1.4/stdwin/wdbframewin.py
|
||||
share/python1.4/stdwin/wdbsrcwin.py
|
||||
share/python1.4/stdwin/BoxParent.pyc
|
||||
share/python1.4/stdwin/Buttons.pyc
|
||||
share/python1.4/stdwin/CSplit.pyc
|
||||
share/python1.4/stdwin/DirList.pyc
|
||||
share/python1.4/stdwin/FormSplit.pyc
|
||||
share/python1.4/stdwin/HVSplit.pyc
|
||||
share/python1.4/stdwin/Histogram.pyc
|
||||
share/python1.4/stdwin/Sliders.pyc
|
||||
share/python1.4/stdwin/Soundogram.pyc
|
||||
share/python1.4/stdwin/Split.pyc
|
||||
share/python1.4/stdwin/StripChart.pyc
|
||||
share/python1.4/stdwin/TextEdit.pyc
|
||||
share/python1.4/stdwin/TransParent.pyc
|
||||
share/python1.4/stdwin/VUMeter.pyc
|
||||
share/python1.4/stdwin/WindowParent.pyc
|
||||
share/python1.4/stdwin/WindowSched.pyc
|
||||
share/python1.4/stdwin/anywin.pyc
|
||||
share/python1.4/stdwin/basewin.pyc
|
||||
share/python1.4/stdwin/dirwin.pyc
|
||||
share/python1.4/stdwin/filewin.pyc
|
||||
share/python1.4/stdwin/formatter.pyc
|
||||
share/python1.4/stdwin/gwin.pyc
|
||||
share/python1.4/stdwin/listwin.pyc
|
||||
share/python1.4/stdwin/mainloop.pyc
|
||||
share/python1.4/stdwin/rect.pyc
|
||||
share/python1.4/stdwin/srcwin.pyc
|
||||
share/python1.4/stdwin/stdwinevents.pyc
|
||||
share/python1.4/stdwin/stdwinq.pyc
|
||||
share/python1.4/stdwin/tablewin.pyc
|
||||
share/python1.4/stdwin/textwin.pyc
|
||||
share/python1.4/stdwin/wdb.pyc
|
||||
share/python1.4/stdwin/wdbframewin.pyc
|
||||
share/python1.4/stdwin/wdbsrcwin.pyc
|
||||
share/python1.4/tkinter/Canvas.pyc
|
||||
share/python1.4/tkinter/Canvas.py
|
||||
share/python1.4/tkinter/Dialog.py
|
||||
share/python1.4/tkinter/FileDialog.py
|
||||
share/python1.4/tkinter/ScrolledText.py
|
||||
share/python1.4/tkinter/SimpleDialog.py
|
||||
share/python1.4/tkinter/Tkconstants.py
|
||||
share/python1.4/tkinter/Tkinter.py
|
||||
share/python1.4/tkinter/Dialog.pyc
|
||||
share/python1.4/tkinter/FileDialog.pyc
|
||||
share/python1.4/tkinter/ScrolledText.pyc
|
||||
share/python1.4/tkinter/SimpleDialog.pyc
|
||||
share/python1.4/tkinter/Tkconstants.pyc
|
||||
share/python1.4/tkinter/Tkinter.pyc
|
||||
share/python1.4/test/autotest.pyc
|
||||
share/python1.4/test/autotest.py
|
||||
share/python1.4/test/test.rawimg
|
||||
share/python1.4/test/test.rawimg.rev
|
||||
share/python1.4/test/test.rgb
|
||||
share/python1.4/test/test_audioop.py
|
||||
share/python1.4/test/test_b1.py
|
||||
share/python1.4/test/test_b2.py
|
||||
share/python1.4/test/test_builtin.py
|
||||
share/python1.4/test/test_exceptions.py
|
||||
share/python1.4/test/test_grammar.py
|
||||
share/python1.4/test/test_math.py
|
||||
share/python1.4/test/test_md5.py
|
||||
share/python1.4/test/test_opcodes.py
|
||||
share/python1.4/test/test_operations.py
|
||||
share/python1.4/test/test_pow.py
|
||||
share/python1.4/test/test_rgbimg.py
|
||||
share/python1.4/test/test_select.py
|
||||
share/python1.4/test/test_signal.py
|
||||
share/python1.4/test/test_strop.py
|
||||
share/python1.4/test/test_support.py
|
||||
share/python1.4/test/test_thread.py
|
||||
share/python1.4/test/test_types.py
|
||||
share/python1.4/test/testall.out
|
||||
share/python1.4/test/testall.py
|
||||
share/python1.4/test/test_audioop.pyc
|
||||
share/python1.4/test/test_b1.pyc
|
||||
share/python1.4/test/test_b2.pyc
|
||||
share/python1.4/test/test_builtin.pyc
|
||||
share/python1.4/test/test_exceptions.pyc
|
||||
share/python1.4/test/test_grammar.pyc
|
||||
share/python1.4/test/test_math.pyc
|
||||
share/python1.4/test/test_md5.pyc
|
||||
share/python1.4/test/test_opcodes.pyc
|
||||
share/python1.4/test/test_operations.pyc
|
||||
share/python1.4/test/test_pow.pyc
|
||||
share/python1.4/test/test_rgbimg.pyc
|
||||
share/python1.4/test/test_select.pyc
|
||||
share/python1.4/test/test_signal.pyc
|
||||
share/python1.4/test/test_strop.pyc
|
||||
share/python1.4/test/test_support.pyc
|
||||
share/python1.4/test/testall.pyc
|
||||
share/python1.4/test/test_thread.pyc
|
||||
share/python1.4/test/test_types.pyc
|
||||
share/python1.4/freebsd/FCNTL.pyc
|
||||
share/python1.4/freebsd/FCNTL.py
|
||||
share/python1.4/freebsd/IN.pyc
|
||||
share/python1.4/freebsd/IN.py
|
||||
share/python1.4/freebsd/SOCKET.pyc
|
||||
share/python1.4/freebsd/SOCKET.py
|
||||
share/python1.4/freebsd/TERMIOS.pyc
|
||||
share/python1.4/freebsd/TERMIOS.py
|
||||
share/python1.4/freebsd/regen
|
||||
share/python1.4/urllib.py
|
||||
share/python1.4/AST.py
|
||||
share/python1.4/BaseHTTPServer.py
|
||||
share/python1.4/Bastion.py
|
||||
share/python1.4/CGIHTTPServer.py
|
||||
share/python1.4/Complex.py
|
||||
share/python1.4/MimeWriter.py
|
||||
share/python1.4/Para.py
|
||||
share/python1.4/Queue.py
|
||||
share/python1.4/SimpleHTTPServer.py
|
||||
share/python1.4/SocketServer.py
|
||||
share/python1.4/StringIO.py
|
||||
share/python1.4/UserDict.py
|
||||
share/python1.4/UserList.py
|
||||
share/python1.4/addpack.py
|
||||
share/python1.4/aifc.py
|
||||
share/python1.4/anydbm.py
|
||||
share/python1.4/audiodev.py
|
||||
share/python1.4/base64.py
|
||||
share/python1.4/bdb.py
|
||||
share/python1.4/binhex.py
|
||||
share/python1.4/bisect.py
|
||||
share/python1.4/calendar.py
|
||||
share/python1.4/cgi.py
|
||||
share/python1.4/cmd.py
|
||||
share/python1.4/cmp.py
|
||||
share/python1.4/cmpcache.py
|
||||
share/python1.4/codehack.py
|
||||
share/python1.4/colorsys.py
|
||||
share/python1.4/commands.py
|
||||
share/python1.4/compileall.py
|
||||
share/python1.4/copy.py
|
||||
share/python1.4/dbhash.py
|
||||
share/python1.4/dircache.py
|
||||
share/python1.4/dircmp.py
|
||||
share/python1.4/dis.py
|
||||
share/python1.4/dospath.py
|
||||
share/python1.4/dumbdbm.py
|
||||
share/python1.4/dump.py
|
||||
share/python1.4/emacs.py
|
||||
share/python1.4/find.py
|
||||
share/python1.4/fmt.py
|
||||
share/python1.4/fnmatch.py
|
||||
share/python1.4/formatter.py
|
||||
share/python1.4/fpformat.py
|
||||
share/python1.4/ftplib.py
|
||||
share/python1.4/glob.py
|
||||
share/python1.4/getopt.py
|
||||
share/python1.4/gopherlib.py
|
||||
share/python1.4/grep.py
|
||||
share/python1.4/htmlentitydefs.py
|
||||
share/python1.4/htmllib.py
|
||||
share/python1.4/httplib.py
|
||||
share/python1.4/ihooks.py
|
||||
share/python1.4/imghdr.py
|
||||
share/python1.4/linecache.py
|
||||
share/python1.4/lockfile.py
|
||||
share/python1.4/macpath.py
|
||||
share/python1.4/macurl2path.py
|
||||
share/python1.4/mailbox.py
|
||||
share/python1.4/mailcap.py
|
||||
share/python1.4/mhlib.py
|
||||
share/python1.4/mimetools.py
|
||||
share/python1.4/mimify.py
|
||||
share/python1.4/multifile.py
|
||||
share/python1.4/mutex.py
|
||||
share/python1.4/newdir.py
|
||||
share/python1.4/ni.py
|
||||
share/python1.4/nntplib.py
|
||||
share/python1.4/ntpath.py
|
||||
share/python1.4/nturl2path.py
|
||||
share/python1.4/os.py
|
||||
share/python1.4/ospath.py
|
||||
share/python1.4/packmail.py
|
||||
share/python1.4/pdb.py
|
||||
share/python1.4/pickle.py
|
||||
share/python1.4/pipes.py
|
||||
share/python1.4/poly.py
|
||||
share/python1.4/popen2.py
|
||||
share/python1.4/posixfile.py
|
||||
share/python1.4/posixpath.py
|
||||
share/python1.4/profile.py
|
||||
share/python1.4/pstats.py
|
||||
share/python1.4/pty.py
|
||||
share/python1.4/py_compile.py
|
||||
share/python1.4/pyclbr.py
|
||||
share/python1.4/quopri.py
|
||||
share/python1.4/rand.py
|
||||
share/python1.4/random.py
|
||||
share/python1.4/regex_syntax.py
|
||||
share/python1.4/regexp.py
|
||||
share/python1.4/regsub.py
|
||||
share/python1.4/repr.py
|
||||
share/python1.4/rexec.py
|
||||
share/python1.4/rfc822.py
|
||||
share/python1.4/sched.py
|
||||
share/python1.4/sgmllib.py
|
||||
share/python1.4/shelve.py
|
||||
share/python1.4/shutil.py
|
||||
share/python1.4/site.py
|
||||
share/python1.4/sndhdr.py
|
||||
share/python1.4/stat.py
|
||||
share/python1.4/statcache.py
|
||||
share/python1.4/string.py
|
||||
share/python1.4/sunau.py
|
||||
share/python1.4/sunaudio.py
|
||||
share/python1.4/symbol.py
|
||||
share/python1.4/tb.py
|
||||
share/python1.4/tempfile.py
|
||||
share/python1.4/toaiff.py
|
||||
share/python1.4/token.py
|
||||
share/python1.4/tokenize.py
|
||||
share/python1.4/traceback.py
|
||||
share/python1.4/tty.py
|
||||
share/python1.4/types.py
|
||||
share/python1.4/tzparse.py
|
||||
share/python1.4/os.pyc
|
||||
share/python1.4/urlparse.py
|
||||
share/python1.4/util.py
|
||||
share/python1.4/uu.py
|
||||
share/python1.4/wave.py
|
||||
share/python1.4/whatsound.py
|
||||
share/python1.4/whichdb.py
|
||||
share/python1.4/whrandom.py
|
||||
share/python1.4/xdrlib.py
|
||||
share/python1.4/zmod.py
|
||||
share/python1.4/pdb.doc
|
||||
share/python1.4/profile.doc
|
||||
share/python1.4/posixpath.pyc
|
||||
share/python1.4/stat.pyc
|
||||
share/python1.4/UserDict.pyc
|
||||
share/python1.4/py_compile.pyc
|
||||
share/python1.4/getopt.pyc
|
||||
share/python1.4/string.pyc
|
||||
share/python1.4/AST.pyc
|
||||
share/python1.4/BaseHTTPServer.pyc
|
||||
share/python1.4/Bastion.pyc
|
||||
share/python1.4/CGIHTTPServer.pyc
|
||||
share/python1.4/Complex.pyc
|
||||
share/python1.4/MimeWriter.pyc
|
||||
share/python1.4/Para.pyc
|
||||
share/python1.4/Queue.pyc
|
||||
share/python1.4/SimpleHTTPServer.pyc
|
||||
share/python1.4/SocketServer.pyc
|
||||
share/python1.4/StringIO.pyc
|
||||
share/python1.4/UserList.pyc
|
||||
share/python1.4/addpack.pyc
|
||||
share/python1.4/aifc.pyc
|
||||
share/python1.4/anydbm.pyc
|
||||
share/python1.4/audiodev.pyc
|
||||
share/python1.4/base64.pyc
|
||||
share/python1.4/bdb.pyc
|
||||
share/python1.4/binhex.pyc
|
||||
share/python1.4/bisect.pyc
|
||||
share/python1.4/calendar.pyc
|
||||
share/python1.4/cgi.pyc
|
||||
share/python1.4/cmd.pyc
|
||||
share/python1.4/cmp.pyc
|
||||
share/python1.4/cmpcache.pyc
|
||||
share/python1.4/codehack.pyc
|
||||
share/python1.4/colorsys.pyc
|
||||
share/python1.4/commands.pyc
|
||||
share/python1.4/compileall.pyc
|
||||
share/python1.4/copy.pyc
|
||||
share/python1.4/dbhash.pyc
|
||||
share/python1.4/dircache.pyc
|
||||
share/python1.4/dircmp.pyc
|
||||
share/python1.4/dis.pyc
|
||||
share/python1.4/dospath.pyc
|
||||
share/python1.4/dumbdbm.pyc
|
||||
share/python1.4/dump.pyc
|
||||
share/python1.4/emacs.pyc
|
||||
share/python1.4/find.pyc
|
||||
share/python1.4/fmt.pyc
|
||||
share/python1.4/fnmatch.pyc
|
||||
share/python1.4/formatter.pyc
|
||||
share/python1.4/fpformat.pyc
|
||||
share/python1.4/ftplib.pyc
|
||||
share/python1.4/glob.pyc
|
||||
share/python1.4/gopherlib.pyc
|
||||
share/python1.4/grep.pyc
|
||||
share/python1.4/htmlentitydefs.pyc
|
||||
share/python1.4/htmllib.pyc
|
||||
share/python1.4/httplib.pyc
|
||||
share/python1.4/ihooks.pyc
|
||||
share/python1.4/imghdr.pyc
|
||||
share/python1.4/linecache.pyc
|
||||
share/python1.4/lockfile.pyc
|
||||
share/python1.4/macpath.pyc
|
||||
share/python1.4/macurl2path.pyc
|
||||
share/python1.4/mailbox.pyc
|
||||
share/python1.4/mailcap.pyc
|
||||
share/python1.4/mhlib.pyc
|
||||
share/python1.4/mimetools.pyc
|
||||
share/python1.4/mimify.pyc
|
||||
share/python1.4/multifile.pyc
|
||||
share/python1.4/mutex.pyc
|
||||
share/python1.4/newdir.pyc
|
||||
share/python1.4/ni.pyc
|
||||
share/python1.4/nntplib.pyc
|
||||
share/python1.4/ntpath.pyc
|
||||
share/python1.4/nturl2path.pyc
|
||||
share/python1.4/ospath.pyc
|
||||
share/python1.4/packmail.pyc
|
||||
share/python1.4/pdb.pyc
|
||||
share/python1.4/pickle.pyc
|
||||
share/python1.4/pipes.pyc
|
||||
share/python1.4/poly.pyc
|
||||
share/python1.4/popen2.pyc
|
||||
share/python1.4/posixfile.pyc
|
||||
share/python1.4/profile.pyc
|
||||
share/python1.4/pstats.pyc
|
||||
share/python1.4/pty.pyc
|
||||
share/python1.4/pyclbr.pyc
|
||||
share/python1.4/quopri.pyc
|
||||
share/python1.4/rand.pyc
|
||||
share/python1.4/random.pyc
|
||||
share/python1.4/regex_syntax.pyc
|
||||
share/python1.4/regexp.pyc
|
||||
share/python1.4/regsub.pyc
|
||||
share/python1.4/repr.pyc
|
||||
share/python1.4/rexec.pyc
|
||||
share/python1.4/rfc822.pyc
|
||||
share/python1.4/sched.pyc
|
||||
share/python1.4/sgmllib.pyc
|
||||
share/python1.4/shelve.pyc
|
||||
share/python1.4/shutil.pyc
|
||||
share/python1.4/site.pyc
|
||||
share/python1.4/sndhdr.pyc
|
||||
share/python1.4/statcache.pyc
|
||||
share/python1.4/sunau.pyc
|
||||
share/python1.4/sunaudio.pyc
|
||||
share/python1.4/symbol.pyc
|
||||
share/python1.4/tb.pyc
|
||||
share/python1.4/tempfile.pyc
|
||||
share/python1.4/toaiff.pyc
|
||||
share/python1.4/token.pyc
|
||||
share/python1.4/tokenize.pyc
|
||||
share/python1.4/traceback.pyc
|
||||
share/python1.4/tty.pyc
|
||||
share/python1.4/types.pyc
|
||||
share/python1.4/tzparse.pyc
|
||||
share/python1.4/urllib.pyc
|
||||
share/python1.4/urlparse.pyc
|
||||
share/python1.4/uu.pyc
|
||||
share/python1.4/util.pyc
|
||||
share/python1.4/wave.pyc
|
||||
share/python1.4/whatsound.pyc
|
||||
share/python1.4/whichdb.pyc
|
||||
share/python1.4/whrandom.pyc
|
||||
share/python1.4/xdrlib.pyc
|
||||
share/python1.4/zmod.pyc
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# Date created: 08 August 1995
|
||||
# Whom: jkh
|
||||
#
|
||||
# $Id: Makefile,v 1.12 1997/02/21 14:57:01 tg Exp $
|
||||
# $Id: Makefile,v 1.13 1997/04/20 13:19:11 wosch Exp $
|
||||
#
|
||||
|
||||
DISTNAME= python1.4
|
||||
|
@ -13,12 +13,10 @@ MASTER_SITES= ftp://www.python.org/pub/python/src/ \
|
|||
ftp://ftp.cwi.nl/pub/python/src/ \
|
||||
ftp://www.python.org/pub/python/contrib/Graphics/Tkinter/ \
|
||||
ftp://ftp.cwi.nl/pub/python/contrib/Graphics/Tkinter/
|
||||
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} PyTix-1.12.tar.gz
|
||||
|
||||
MAINTAINER= tg@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= tk41\\.1\\.:${PORTSDIR}/x11/tk41 \
|
||||
tix4175\\.1\\.:${PORTSDIR}/x11/tix
|
||||
LIB_DEPENDS= tk41\\.1\\.:${PORTSDIR}/x11/tk41
|
||||
|
||||
WRKSRC= ${WRKDIR}/Python-1.4
|
||||
HAS_CONFIGURE= yes
|
||||
|
@ -27,14 +25,6 @@ MAKE_FLAGS+= 'OPT=${CFLAGS}'
|
|||
INSTALL_TARGET= install
|
||||
MAN1= python.1
|
||||
|
||||
PYTIXSRC= ${WRKDIR}/PyTix-1.12
|
||||
|
||||
post-extract:
|
||||
@${ECHO_MSG} "===> Add PyTix extensions to Python core"
|
||||
${CP} ${PYTIXSRC}/Tkinter.py ${WRKSRC}/Lib/tkinter
|
||||
${CP} ${PYTIXSRC}/Tix.py ${WRKSRC}/Lib/tkinter
|
||||
${CP} ${PYTIXSRC}/_tkinter.c ${WRKSRC}/Modules
|
||||
|
||||
post-configure:
|
||||
${CP} ${FILESDIR}/Setup ${WRKSRC}/Modules
|
||||
|
||||
|
|
|
@ -71,7 +71,7 @@ SITEPATH=:$(DESTLIB)/NumPy
|
|||
TESTPATH=:$(DESTLIB)/test
|
||||
|
||||
# Path for machine- or system-dependent modules (and shared libraries)
|
||||
MACHDEPPATH=:$(DESTLIB)/$(MACHDEP)
|
||||
MACHDEPPATH=:$(DESTLIB)/$(MACHDEP):$(MACHDESTLIB)/sharedmodules
|
||||
|
||||
COREPYTHONPATH=.$(SITEPATH)$(DESTPATH)$(TESTPATH)$(MACHDEPPATH)$(STDWINPATH)$(TKPATH)
|
||||
PYTHONPATH=$(COREPYTHONPATH)
|
||||
|
@ -128,6 +128,7 @@ select selectmodule.c # select(2); not on ancient System V
|
|||
socket socketmodule.c # socket(2); not on ancient System V
|
||||
errno errnomodule.c # posix (UNIX) errno values
|
||||
|
||||
*shared*
|
||||
|
||||
# Some more UNIX dependent modules -- off by default, since these
|
||||
# are not supported by all UNIX systems:
|
||||
|
@ -249,7 +250,7 @@ TKPATH=:$(DESTLIB)/tkinter
|
|||
#_tkinter _tkinter.c -I/usr/openwin/include -I/usr/local/include -L/usr/openwin/lib -L/usr/local/lib -ltk4.1 -ltcl7.5 -lX11
|
||||
# For generic system (may have to add -I/-L options to find X11):
|
||||
#_tkinter _tkinter.c -I/usr/local/include -L/usr/local/lib -ltk4.1 -ltcl7.5 -lX11
|
||||
_tkinter _tkinter.c -I/usr/local/include -I/usr/X11R6/include -L/usr/local/lib -L/usr/X11R6/lib -ltix4175 -ltk41 -ltcl75 -lX11
|
||||
_tkinter _tkinter.c -I/usr/local/include -I/usr/X11R6/include -L/usr/local/lib -L/usr/X11R6/lib -ltk41 -ltcl75 -lX11
|
||||
|
||||
|
||||
# Lance Ellinghaus's modules:
|
||||
|
|
|
@ -1,11 +1,7 @@
|
|||
--- Makefile.in.orig Fri Oct 25 16:37:32 1996
|
||||
+++ Makefile.in Thu Feb 6 12:02:11 1997
|
||||
@@ -95,10 +95,10 @@
|
||||
|
||||
# Expanded directories
|
||||
BINDIR= $(exec_prefix)/bin
|
||||
-LIBDIR= $(exec_prefix)/lib
|
||||
+LIBDIR= $(exec_prefix)/share
|
||||
+++ Makefile.in Mon May 12 21:04:38 1997
|
||||
@@ -98,7 +98,7 @@
|
||||
LIBDIR= $(exec_prefix)/lib
|
||||
MANDIR= $(prefix)/man
|
||||
INCLUDEDIR= $(prefix)/include
|
||||
-SCRIPTDIR= $(prefix)/lib
|
||||
|
|
|
@ -1,403 +1,5 @@
|
|||
bin/python1.4
|
||||
bin/python
|
||||
@exec mkdir -p %D/share/python1.4/sharedmodules
|
||||
@unexec rmdir %D/share/python1.4/sharedmodules
|
||||
share/python1.4/AST.py
|
||||
share/python1.4/AST.pyc
|
||||
share/python1.4/BaseHTTPServer.py
|
||||
share/python1.4/BaseHTTPServer.pyc
|
||||
share/python1.4/Bastion.py
|
||||
share/python1.4/Bastion.pyc
|
||||
share/python1.4/CGIHTTPServer.py
|
||||
share/python1.4/CGIHTTPServer.pyc
|
||||
share/python1.4/Complex.py
|
||||
share/python1.4/Complex.pyc
|
||||
share/python1.4/MimeWriter.py
|
||||
share/python1.4/MimeWriter.pyc
|
||||
share/python1.4/Para.py
|
||||
share/python1.4/Para.pyc
|
||||
share/python1.4/Queue.py
|
||||
share/python1.4/Queue.pyc
|
||||
share/python1.4/SimpleHTTPServer.py
|
||||
share/python1.4/SimpleHTTPServer.pyc
|
||||
share/python1.4/SocketServer.py
|
||||
share/python1.4/SocketServer.pyc
|
||||
share/python1.4/StringIO.py
|
||||
share/python1.4/StringIO.pyc
|
||||
share/python1.4/UserDict.py
|
||||
share/python1.4/UserDict.pyc
|
||||
share/python1.4/UserList.py
|
||||
share/python1.4/UserList.pyc
|
||||
share/python1.4/addpack.py
|
||||
share/python1.4/addpack.pyc
|
||||
share/python1.4/aifc.py
|
||||
share/python1.4/aifc.pyc
|
||||
share/python1.4/anydbm.py
|
||||
share/python1.4/anydbm.pyc
|
||||
share/python1.4/audiodev.py
|
||||
share/python1.4/audiodev.pyc
|
||||
share/python1.4/base64.py
|
||||
share/python1.4/base64.pyc
|
||||
share/python1.4/bdb.py
|
||||
share/python1.4/bdb.pyc
|
||||
share/python1.4/binhex.py
|
||||
share/python1.4/binhex.pyc
|
||||
share/python1.4/bisect.py
|
||||
share/python1.4/bisect.pyc
|
||||
share/python1.4/calendar.py
|
||||
share/python1.4/calendar.pyc
|
||||
share/python1.4/cgi.py
|
||||
share/python1.4/cgi.pyc
|
||||
share/python1.4/cmd.py
|
||||
share/python1.4/cmd.pyc
|
||||
share/python1.4/cmp.py
|
||||
share/python1.4/cmp.pyc
|
||||
share/python1.4/cmpcache.py
|
||||
share/python1.4/cmpcache.pyc
|
||||
share/python1.4/codehack.py
|
||||
share/python1.4/codehack.pyc
|
||||
share/python1.4/colorsys.py
|
||||
share/python1.4/colorsys.pyc
|
||||
share/python1.4/commands.py
|
||||
share/python1.4/commands.pyc
|
||||
share/python1.4/compileall.py
|
||||
share/python1.4/compileall.pyc
|
||||
share/python1.4/copy.py
|
||||
share/python1.4/copy.pyc
|
||||
share/python1.4/dbhash.py
|
||||
share/python1.4/dbhash.pyc
|
||||
share/python1.4/dircache.py
|
||||
share/python1.4/dircache.pyc
|
||||
share/python1.4/dircmp.py
|
||||
share/python1.4/dircmp.pyc
|
||||
share/python1.4/dis.py
|
||||
share/python1.4/dis.pyc
|
||||
share/python1.4/dospath.py
|
||||
share/python1.4/dospath.pyc
|
||||
share/python1.4/dumbdbm.py
|
||||
share/python1.4/dumbdbm.pyc
|
||||
share/python1.4/dump.py
|
||||
share/python1.4/dump.pyc
|
||||
share/python1.4/emacs.py
|
||||
share/python1.4/emacs.pyc
|
||||
share/python1.4/find.py
|
||||
share/python1.4/find.pyc
|
||||
share/python1.4/fmt.py
|
||||
share/python1.4/fmt.pyc
|
||||
share/python1.4/fnmatch.py
|
||||
share/python1.4/fnmatch.pyc
|
||||
share/python1.4/formatter.py
|
||||
share/python1.4/formatter.pyc
|
||||
share/python1.4/fpformat.py
|
||||
share/python1.4/fpformat.pyc
|
||||
share/python1.4/ftplib.py
|
||||
share/python1.4/ftplib.pyc
|
||||
share/python1.4/getopt.py
|
||||
share/python1.4/getopt.pyc
|
||||
share/python1.4/glob.py
|
||||
share/python1.4/glob.pyc
|
||||
share/python1.4/gopherlib.py
|
||||
share/python1.4/gopherlib.pyc
|
||||
share/python1.4/grep.py
|
||||
share/python1.4/grep.pyc
|
||||
share/python1.4/htmlentitydefs.py
|
||||
share/python1.4/htmlentitydefs.pyc
|
||||
share/python1.4/htmllib.py
|
||||
share/python1.4/htmllib.pyc
|
||||
share/python1.4/httplib.py
|
||||
share/python1.4/httplib.pyc
|
||||
share/python1.4/ihooks.py
|
||||
share/python1.4/ihooks.pyc
|
||||
share/python1.4/imghdr.py
|
||||
share/python1.4/imghdr.pyc
|
||||
share/python1.4/linecache.py
|
||||
share/python1.4/linecache.pyc
|
||||
share/python1.4/lockfile.py
|
||||
share/python1.4/lockfile.pyc
|
||||
share/python1.4/macpath.py
|
||||
share/python1.4/macpath.pyc
|
||||
share/python1.4/macurl2path.py
|
||||
share/python1.4/macurl2path.pyc
|
||||
share/python1.4/mailbox.py
|
||||
share/python1.4/mailbox.pyc
|
||||
share/python1.4/mailcap.py
|
||||
share/python1.4/mailcap.pyc
|
||||
share/python1.4/mhlib.py
|
||||
share/python1.4/mhlib.pyc
|
||||
share/python1.4/mimetools.py
|
||||
share/python1.4/mimetools.pyc
|
||||
share/python1.4/mimify.py
|
||||
share/python1.4/mimify.pyc
|
||||
share/python1.4/multifile.py
|
||||
share/python1.4/multifile.pyc
|
||||
share/python1.4/mutex.py
|
||||
share/python1.4/mutex.pyc
|
||||
share/python1.4/newdir.py
|
||||
share/python1.4/newdir.pyc
|
||||
share/python1.4/ni.py
|
||||
share/python1.4/ni.pyc
|
||||
share/python1.4/nntplib.py
|
||||
share/python1.4/nntplib.pyc
|
||||
share/python1.4/ntpath.py
|
||||
share/python1.4/ntpath.pyc
|
||||
share/python1.4/nturl2path.py
|
||||
share/python1.4/nturl2path.pyc
|
||||
share/python1.4/os.py
|
||||
share/python1.4/os.pyc
|
||||
share/python1.4/ospath.py
|
||||
share/python1.4/ospath.pyc
|
||||
share/python1.4/packmail.py
|
||||
share/python1.4/packmail.pyc
|
||||
share/python1.4/pdb.doc
|
||||
share/python1.4/pdb.py
|
||||
share/python1.4/pdb.pyc
|
||||
share/python1.4/pickle.py
|
||||
share/python1.4/pickle.pyc
|
||||
share/python1.4/pipes.py
|
||||
share/python1.4/pipes.pyc
|
||||
share/python1.4/poly.py
|
||||
share/python1.4/poly.pyc
|
||||
share/python1.4/popen2.py
|
||||
share/python1.4/popen2.pyc
|
||||
share/python1.4/posixfile.py
|
||||
share/python1.4/posixfile.pyc
|
||||
share/python1.4/posixpath.py
|
||||
share/python1.4/posixpath.pyc
|
||||
share/python1.4/profile.doc
|
||||
share/python1.4/profile.py
|
||||
share/python1.4/profile.pyc
|
||||
share/python1.4/pstats.py
|
||||
share/python1.4/pstats.pyc
|
||||
share/python1.4/pty.py
|
||||
share/python1.4/pty.pyc
|
||||
share/python1.4/py_compile.py
|
||||
share/python1.4/py_compile.pyc
|
||||
share/python1.4/pyclbr.py
|
||||
share/python1.4/pyclbr.pyc
|
||||
share/python1.4/quopri.py
|
||||
share/python1.4/quopri.pyc
|
||||
share/python1.4/rand.py
|
||||
share/python1.4/rand.pyc
|
||||
share/python1.4/random.py
|
||||
share/python1.4/random.pyc
|
||||
share/python1.4/regex_syntax.py
|
||||
share/python1.4/regex_syntax.pyc
|
||||
share/python1.4/regexp.py
|
||||
share/python1.4/regexp.pyc
|
||||
share/python1.4/regsub.py
|
||||
share/python1.4/regsub.pyc
|
||||
share/python1.4/repr.py
|
||||
share/python1.4/repr.pyc
|
||||
share/python1.4/rexec.py
|
||||
share/python1.4/rexec.pyc
|
||||
share/python1.4/rfc822.py
|
||||
share/python1.4/rfc822.pyc
|
||||
share/python1.4/sched.py
|
||||
share/python1.4/sched.pyc
|
||||
share/python1.4/sgmllib.py
|
||||
share/python1.4/sgmllib.pyc
|
||||
share/python1.4/shelve.py
|
||||
share/python1.4/shelve.pyc
|
||||
share/python1.4/shutil.py
|
||||
share/python1.4/shutil.pyc
|
||||
share/python1.4/site.py
|
||||
share/python1.4/site.pyc
|
||||
share/python1.4/sndhdr.py
|
||||
share/python1.4/sndhdr.pyc
|
||||
share/python1.4/stat.py
|
||||
share/python1.4/stat.pyc
|
||||
share/python1.4/statcache.py
|
||||
share/python1.4/statcache.pyc
|
||||
share/python1.4/string.py
|
||||
share/python1.4/string.pyc
|
||||
share/python1.4/sunau.py
|
||||
share/python1.4/sunau.pyc
|
||||
share/python1.4/sunaudio.py
|
||||
share/python1.4/sunaudio.pyc
|
||||
share/python1.4/symbol.py
|
||||
share/python1.4/symbol.pyc
|
||||
share/python1.4/tb.py
|
||||
share/python1.4/tb.pyc
|
||||
share/python1.4/tempfile.py
|
||||
share/python1.4/tempfile.pyc
|
||||
share/python1.4/toaiff.py
|
||||
share/python1.4/toaiff.pyc
|
||||
share/python1.4/token.py
|
||||
share/python1.4/token.pyc
|
||||
share/python1.4/tokenize.py
|
||||
share/python1.4/tokenize.pyc
|
||||
share/python1.4/traceback.py
|
||||
share/python1.4/traceback.pyc
|
||||
share/python1.4/tty.py
|
||||
share/python1.4/tty.pyc
|
||||
share/python1.4/types.py
|
||||
share/python1.4/types.pyc
|
||||
share/python1.4/tzparse.py
|
||||
share/python1.4/tzparse.pyc
|
||||
share/python1.4/urllib.py
|
||||
share/python1.4/urllib.pyc
|
||||
share/python1.4/urlparse.py
|
||||
share/python1.4/urlparse.pyc
|
||||
share/python1.4/util.py
|
||||
share/python1.4/util.pyc
|
||||
share/python1.4/uu.py
|
||||
share/python1.4/uu.pyc
|
||||
share/python1.4/wave.py
|
||||
share/python1.4/wave.pyc
|
||||
share/python1.4/whatsound.py
|
||||
share/python1.4/whatsound.pyc
|
||||
share/python1.4/whichdb.py
|
||||
share/python1.4/whichdb.pyc
|
||||
share/python1.4/whrandom.py
|
||||
share/python1.4/whrandom.pyc
|
||||
share/python1.4/xdrlib.py
|
||||
share/python1.4/xdrlib.pyc
|
||||
share/python1.4/zmod.py
|
||||
share/python1.4/zmod.pyc
|
||||
share/python1.4/config/Makefile
|
||||
share/python1.4/config/Setup
|
||||
share/python1.4/config/config.c
|
||||
share/python1.4/config/config.c.in
|
||||
share/python1.4/config/config.h
|
||||
share/python1.4/config/frozenmain.c
|
||||
share/python1.4/config/getpath.c
|
||||
share/python1.4/config/libModules.a
|
||||
share/python1.4/config/libObjects.a
|
||||
share/python1.4/config/libParser.a
|
||||
share/python1.4/config/libPython.a
|
||||
share/python1.4/config/main.o
|
||||
share/python1.4/config/makesetup
|
||||
share/python1.4/freebsd2/FCNTL.py
|
||||
share/python1.4/freebsd2/FCNTL.pyc
|
||||
share/python1.4/freebsd2/regen
|
||||
share/python1.4/stdwin/Abstract.py
|
||||
share/python1.4/stdwin/Abstract.pyc
|
||||
share/python1.4/stdwin/BoxParent.py
|
||||
share/python1.4/stdwin/BoxParent.pyc
|
||||
share/python1.4/stdwin/Buttons.py
|
||||
share/python1.4/stdwin/Buttons.pyc
|
||||
share/python1.4/stdwin/CSplit.py
|
||||
share/python1.4/stdwin/CSplit.pyc
|
||||
share/python1.4/stdwin/DirList.py
|
||||
share/python1.4/stdwin/DirList.pyc
|
||||
share/python1.4/stdwin/FormSplit.py
|
||||
share/python1.4/stdwin/FormSplit.pyc
|
||||
share/python1.4/stdwin/HVSplit.py
|
||||
share/python1.4/stdwin/HVSplit.pyc
|
||||
share/python1.4/stdwin/Histogram.py
|
||||
share/python1.4/stdwin/Histogram.pyc
|
||||
share/python1.4/stdwin/Sliders.py
|
||||
share/python1.4/stdwin/Sliders.pyc
|
||||
share/python1.4/stdwin/Soundogram.py
|
||||
share/python1.4/stdwin/Soundogram.pyc
|
||||
share/python1.4/stdwin/Split.py
|
||||
share/python1.4/stdwin/Split.pyc
|
||||
share/python1.4/stdwin/StripChart.py
|
||||
share/python1.4/stdwin/StripChart.pyc
|
||||
share/python1.4/stdwin/TextEdit.py
|
||||
share/python1.4/stdwin/TextEdit.pyc
|
||||
share/python1.4/stdwin/TransParent.py
|
||||
share/python1.4/stdwin/TransParent.pyc
|
||||
share/python1.4/stdwin/VUMeter.py
|
||||
share/python1.4/stdwin/VUMeter.pyc
|
||||
share/python1.4/stdwin/WindowParent.py
|
||||
share/python1.4/stdwin/WindowParent.pyc
|
||||
share/python1.4/stdwin/WindowSched.py
|
||||
share/python1.4/stdwin/WindowSched.pyc
|
||||
share/python1.4/stdwin/anywin.py
|
||||
share/python1.4/stdwin/anywin.pyc
|
||||
share/python1.4/stdwin/basewin.py
|
||||
share/python1.4/stdwin/basewin.pyc
|
||||
share/python1.4/stdwin/dirwin.py
|
||||
share/python1.4/stdwin/dirwin.pyc
|
||||
share/python1.4/stdwin/filewin.py
|
||||
share/python1.4/stdwin/filewin.pyc
|
||||
share/python1.4/stdwin/formatter.py
|
||||
share/python1.4/stdwin/formatter.pyc
|
||||
share/python1.4/stdwin/gwin.py
|
||||
share/python1.4/stdwin/gwin.pyc
|
||||
share/python1.4/stdwin/listwin.py
|
||||
share/python1.4/stdwin/listwin.pyc
|
||||
share/python1.4/stdwin/mainloop.py
|
||||
share/python1.4/stdwin/mainloop.pyc
|
||||
share/python1.4/stdwin/rect.py
|
||||
share/python1.4/stdwin/rect.pyc
|
||||
share/python1.4/stdwin/srcwin.py
|
||||
share/python1.4/stdwin/srcwin.pyc
|
||||
share/python1.4/stdwin/stdwinevents.py
|
||||
share/python1.4/stdwin/stdwinevents.pyc
|
||||
share/python1.4/stdwin/stdwinq.py
|
||||
share/python1.4/stdwin/stdwinq.pyc
|
||||
share/python1.4/stdwin/tablewin.py
|
||||
share/python1.4/stdwin/tablewin.pyc
|
||||
share/python1.4/stdwin/textwin.py
|
||||
share/python1.4/stdwin/textwin.pyc
|
||||
share/python1.4/stdwin/wdb.py
|
||||
share/python1.4/stdwin/wdb.pyc
|
||||
share/python1.4/stdwin/wdbframewin.py
|
||||
share/python1.4/stdwin/wdbframewin.pyc
|
||||
share/python1.4/stdwin/wdbsrcwin.py
|
||||
share/python1.4/stdwin/wdbsrcwin.pyc
|
||||
share/python1.4/test/autotest.py
|
||||
share/python1.4/test/autotest.pyc
|
||||
share/python1.4/test/test.rawimg
|
||||
share/python1.4/test/test.rawimg.rev
|
||||
share/python1.4/test/test.rgb
|
||||
share/python1.4/test/test_audioop.py
|
||||
share/python1.4/test/test_audioop.pyc
|
||||
share/python1.4/test/test_b1.py
|
||||
share/python1.4/test/test_b1.pyc
|
||||
share/python1.4/test/test_b2.py
|
||||
share/python1.4/test/test_b2.pyc
|
||||
share/python1.4/test/test_builtin.py
|
||||
share/python1.4/test/test_builtin.pyc
|
||||
share/python1.4/test/test_exceptions.py
|
||||
share/python1.4/test/test_exceptions.pyc
|
||||
share/python1.4/test/test_grammar.py
|
||||
share/python1.4/test/test_grammar.pyc
|
||||
share/python1.4/test/test_math.py
|
||||
share/python1.4/test/test_math.pyc
|
||||
share/python1.4/test/test_md5.py
|
||||
share/python1.4/test/test_md5.pyc
|
||||
share/python1.4/test/test_opcodes.py
|
||||
share/python1.4/test/test_opcodes.pyc
|
||||
share/python1.4/test/test_operations.py
|
||||
share/python1.4/test/test_operations.pyc
|
||||
share/python1.4/test/test_pow.py
|
||||
share/python1.4/test/test_pow.pyc
|
||||
share/python1.4/test/test_rgbimg.py
|
||||
share/python1.4/test/test_rgbimg.pyc
|
||||
share/python1.4/test/test_select.py
|
||||
share/python1.4/test/test_select.pyc
|
||||
share/python1.4/test/test_signal.py
|
||||
share/python1.4/test/test_signal.pyc
|
||||
share/python1.4/test/test_strop.py
|
||||
share/python1.4/test/test_strop.pyc
|
||||
share/python1.4/test/test_support.py
|
||||
share/python1.4/test/test_support.pyc
|
||||
share/python1.4/test/test_thread.py
|
||||
share/python1.4/test/test_thread.pyc
|
||||
share/python1.4/test/test_types.py
|
||||
share/python1.4/test/test_types.pyc
|
||||
share/python1.4/test/testall.out
|
||||
share/python1.4/test/testall.py
|
||||
share/python1.4/test/testall.pyc
|
||||
share/python1.4/tkinter/Canvas.py
|
||||
share/python1.4/tkinter/Canvas.pyc
|
||||
share/python1.4/tkinter/Dialog.py
|
||||
share/python1.4/tkinter/Dialog.pyc
|
||||
share/python1.4/tkinter/FileDialog.py
|
||||
share/python1.4/tkinter/FileDialog.pyc
|
||||
share/python1.4/tkinter/ScrolledText.py
|
||||
share/python1.4/tkinter/ScrolledText.pyc
|
||||
share/python1.4/tkinter/SimpleDialog.py
|
||||
share/python1.4/tkinter/SimpleDialog.pyc
|
||||
share/python1.4/tkinter/Tix.py
|
||||
share/python1.4/tkinter/Tix.pyc
|
||||
share/python1.4/tkinter/Tkconstants.py
|
||||
share/python1.4/tkinter/Tkconstants.pyc
|
||||
share/python1.4/tkinter/Tkinter.py
|
||||
share/python1.4/tkinter/Tkinter.pyc
|
||||
include/python1.4/Python.h
|
||||
include/python1.4/abstract.h
|
||||
include/python1.4/accessobject.h
|
||||
|
@ -459,4 +61,417 @@ include/python1.4/thread.h
|
|||
include/python1.4/token.h
|
||||
include/python1.4/traceback.h
|
||||
include/python1.4/tupleobject.h
|
||||
lib/python1.4/config/libParser.a
|
||||
lib/python1.4/config/libObjects.a
|
||||
lib/python1.4/config/libPython.a
|
||||
lib/python1.4/config/libModules.a
|
||||
lib/python1.4/config/config.c
|
||||
lib/python1.4/config/getpath.c
|
||||
lib/python1.4/config/config.c.in
|
||||
lib/python1.4/config/Makefile
|
||||
lib/python1.4/config/Setup
|
||||
lib/python1.4/config/makesetup
|
||||
lib/python1.4/config/config.h
|
||||
lib/python1.4/config/frozenmain.c
|
||||
lib/python1.4/config/main.o
|
||||
lib/python1.4/sharedmodules/dbmmodule.so
|
||||
lib/python1.4/sharedmodules/nismodule.so
|
||||
lib/python1.4/sharedmodules/termios.so
|
||||
lib/python1.4/sharedmodules/audioop.so
|
||||
lib/python1.4/sharedmodules/imageop.so
|
||||
lib/python1.4/sharedmodules/rgbimgmodule.so
|
||||
lib/python1.4/sharedmodules/md5module.so
|
||||
lib/python1.4/sharedmodules/_tkinter.so
|
||||
lib/python1.4/sharedmodules/rotormodule.so
|
||||
lib/python1.4/sharedmodules/syslogmodule.so
|
||||
lib/python1.4/sharedmodules/cursesmodule.so
|
||||
lib/python1.4/sharedmodules/bsddbmodule.so
|
||||
lib/python1.4/sharedmodules/binascii.so
|
||||
man/man1/python.1.gz
|
||||
share/python1.4/stdwin/Abstract.pyc
|
||||
share/python1.4/stdwin/Abstract.py
|
||||
share/python1.4/stdwin/BoxParent.py
|
||||
share/python1.4/stdwin/Buttons.py
|
||||
share/python1.4/stdwin/CSplit.py
|
||||
share/python1.4/stdwin/DirList.py
|
||||
share/python1.4/stdwin/FormSplit.py
|
||||
share/python1.4/stdwin/HVSplit.py
|
||||
share/python1.4/stdwin/Histogram.py
|
||||
share/python1.4/stdwin/Sliders.py
|
||||
share/python1.4/stdwin/Soundogram.py
|
||||
share/python1.4/stdwin/Split.py
|
||||
share/python1.4/stdwin/StripChart.py
|
||||
share/python1.4/stdwin/TextEdit.py
|
||||
share/python1.4/stdwin/TransParent.py
|
||||
share/python1.4/stdwin/VUMeter.py
|
||||
share/python1.4/stdwin/WindowParent.py
|
||||
share/python1.4/stdwin/WindowSched.py
|
||||
share/python1.4/stdwin/anywin.py
|
||||
share/python1.4/stdwin/basewin.py
|
||||
share/python1.4/stdwin/dirwin.py
|
||||
share/python1.4/stdwin/filewin.py
|
||||
share/python1.4/stdwin/formatter.py
|
||||
share/python1.4/stdwin/gwin.py
|
||||
share/python1.4/stdwin/listwin.py
|
||||
share/python1.4/stdwin/mainloop.py
|
||||
share/python1.4/stdwin/rect.py
|
||||
share/python1.4/stdwin/srcwin.py
|
||||
share/python1.4/stdwin/stdwinevents.py
|
||||
share/python1.4/stdwin/stdwinq.py
|
||||
share/python1.4/stdwin/tablewin.py
|
||||
share/python1.4/stdwin/textwin.py
|
||||
share/python1.4/stdwin/wdb.py
|
||||
share/python1.4/stdwin/wdbframewin.py
|
||||
share/python1.4/stdwin/wdbsrcwin.py
|
||||
share/python1.4/stdwin/BoxParent.pyc
|
||||
share/python1.4/stdwin/Buttons.pyc
|
||||
share/python1.4/stdwin/CSplit.pyc
|
||||
share/python1.4/stdwin/DirList.pyc
|
||||
share/python1.4/stdwin/FormSplit.pyc
|
||||
share/python1.4/stdwin/HVSplit.pyc
|
||||
share/python1.4/stdwin/Histogram.pyc
|
||||
share/python1.4/stdwin/Sliders.pyc
|
||||
share/python1.4/stdwin/Soundogram.pyc
|
||||
share/python1.4/stdwin/Split.pyc
|
||||
share/python1.4/stdwin/StripChart.pyc
|
||||
share/python1.4/stdwin/TextEdit.pyc
|
||||
share/python1.4/stdwin/TransParent.pyc
|
||||
share/python1.4/stdwin/VUMeter.pyc
|
||||
share/python1.4/stdwin/WindowParent.pyc
|
||||
share/python1.4/stdwin/WindowSched.pyc
|
||||
share/python1.4/stdwin/anywin.pyc
|
||||
share/python1.4/stdwin/basewin.pyc
|
||||
share/python1.4/stdwin/dirwin.pyc
|
||||
share/python1.4/stdwin/filewin.pyc
|
||||
share/python1.4/stdwin/formatter.pyc
|
||||
share/python1.4/stdwin/gwin.pyc
|
||||
share/python1.4/stdwin/listwin.pyc
|
||||
share/python1.4/stdwin/mainloop.pyc
|
||||
share/python1.4/stdwin/rect.pyc
|
||||
share/python1.4/stdwin/srcwin.pyc
|
||||
share/python1.4/stdwin/stdwinevents.pyc
|
||||
share/python1.4/stdwin/stdwinq.pyc
|
||||
share/python1.4/stdwin/tablewin.pyc
|
||||
share/python1.4/stdwin/textwin.pyc
|
||||
share/python1.4/stdwin/wdb.pyc
|
||||
share/python1.4/stdwin/wdbframewin.pyc
|
||||
share/python1.4/stdwin/wdbsrcwin.pyc
|
||||
share/python1.4/tkinter/Canvas.pyc
|
||||
share/python1.4/tkinter/Canvas.py
|
||||
share/python1.4/tkinter/Dialog.py
|
||||
share/python1.4/tkinter/FileDialog.py
|
||||
share/python1.4/tkinter/ScrolledText.py
|
||||
share/python1.4/tkinter/SimpleDialog.py
|
||||
share/python1.4/tkinter/Tkconstants.py
|
||||
share/python1.4/tkinter/Tkinter.py
|
||||
share/python1.4/tkinter/Dialog.pyc
|
||||
share/python1.4/tkinter/FileDialog.pyc
|
||||
share/python1.4/tkinter/ScrolledText.pyc
|
||||
share/python1.4/tkinter/SimpleDialog.pyc
|
||||
share/python1.4/tkinter/Tkconstants.pyc
|
||||
share/python1.4/tkinter/Tkinter.pyc
|
||||
share/python1.4/test/autotest.pyc
|
||||
share/python1.4/test/autotest.py
|
||||
share/python1.4/test/test.rawimg
|
||||
share/python1.4/test/test.rawimg.rev
|
||||
share/python1.4/test/test.rgb
|
||||
share/python1.4/test/test_audioop.py
|
||||
share/python1.4/test/test_b1.py
|
||||
share/python1.4/test/test_b2.py
|
||||
share/python1.4/test/test_builtin.py
|
||||
share/python1.4/test/test_exceptions.py
|
||||
share/python1.4/test/test_grammar.py
|
||||
share/python1.4/test/test_math.py
|
||||
share/python1.4/test/test_md5.py
|
||||
share/python1.4/test/test_opcodes.py
|
||||
share/python1.4/test/test_operations.py
|
||||
share/python1.4/test/test_pow.py
|
||||
share/python1.4/test/test_rgbimg.py
|
||||
share/python1.4/test/test_select.py
|
||||
share/python1.4/test/test_signal.py
|
||||
share/python1.4/test/test_strop.py
|
||||
share/python1.4/test/test_support.py
|
||||
share/python1.4/test/test_thread.py
|
||||
share/python1.4/test/test_types.py
|
||||
share/python1.4/test/testall.out
|
||||
share/python1.4/test/testall.py
|
||||
share/python1.4/test/test_audioop.pyc
|
||||
share/python1.4/test/test_b1.pyc
|
||||
share/python1.4/test/test_b2.pyc
|
||||
share/python1.4/test/test_builtin.pyc
|
||||
share/python1.4/test/test_exceptions.pyc
|
||||
share/python1.4/test/test_grammar.pyc
|
||||
share/python1.4/test/test_math.pyc
|
||||
share/python1.4/test/test_md5.pyc
|
||||
share/python1.4/test/test_opcodes.pyc
|
||||
share/python1.4/test/test_operations.pyc
|
||||
share/python1.4/test/test_pow.pyc
|
||||
share/python1.4/test/test_rgbimg.pyc
|
||||
share/python1.4/test/test_select.pyc
|
||||
share/python1.4/test/test_signal.pyc
|
||||
share/python1.4/test/test_strop.pyc
|
||||
share/python1.4/test/test_support.pyc
|
||||
share/python1.4/test/testall.pyc
|
||||
share/python1.4/test/test_thread.pyc
|
||||
share/python1.4/test/test_types.pyc
|
||||
share/python1.4/freebsd/FCNTL.pyc
|
||||
share/python1.4/freebsd/FCNTL.py
|
||||
share/python1.4/freebsd/IN.pyc
|
||||
share/python1.4/freebsd/IN.py
|
||||
share/python1.4/freebsd/SOCKET.pyc
|
||||
share/python1.4/freebsd/SOCKET.py
|
||||
share/python1.4/freebsd/TERMIOS.pyc
|
||||
share/python1.4/freebsd/TERMIOS.py
|
||||
share/python1.4/freebsd/regen
|
||||
share/python1.4/urllib.py
|
||||
share/python1.4/AST.py
|
||||
share/python1.4/BaseHTTPServer.py
|
||||
share/python1.4/Bastion.py
|
||||
share/python1.4/CGIHTTPServer.py
|
||||
share/python1.4/Complex.py
|
||||
share/python1.4/MimeWriter.py
|
||||
share/python1.4/Para.py
|
||||
share/python1.4/Queue.py
|
||||
share/python1.4/SimpleHTTPServer.py
|
||||
share/python1.4/SocketServer.py
|
||||
share/python1.4/StringIO.py
|
||||
share/python1.4/UserDict.py
|
||||
share/python1.4/UserList.py
|
||||
share/python1.4/addpack.py
|
||||
share/python1.4/aifc.py
|
||||
share/python1.4/anydbm.py
|
||||
share/python1.4/audiodev.py
|
||||
share/python1.4/base64.py
|
||||
share/python1.4/bdb.py
|
||||
share/python1.4/binhex.py
|
||||
share/python1.4/bisect.py
|
||||
share/python1.4/calendar.py
|
||||
share/python1.4/cgi.py
|
||||
share/python1.4/cmd.py
|
||||
share/python1.4/cmp.py
|
||||
share/python1.4/cmpcache.py
|
||||
share/python1.4/codehack.py
|
||||
share/python1.4/colorsys.py
|
||||
share/python1.4/commands.py
|
||||
share/python1.4/compileall.py
|
||||
share/python1.4/copy.py
|
||||
share/python1.4/dbhash.py
|
||||
share/python1.4/dircache.py
|
||||
share/python1.4/dircmp.py
|
||||
share/python1.4/dis.py
|
||||
share/python1.4/dospath.py
|
||||
share/python1.4/dumbdbm.py
|
||||
share/python1.4/dump.py
|
||||
share/python1.4/emacs.py
|
||||
share/python1.4/find.py
|
||||
share/python1.4/fmt.py
|
||||
share/python1.4/fnmatch.py
|
||||
share/python1.4/formatter.py
|
||||
share/python1.4/fpformat.py
|
||||
share/python1.4/ftplib.py
|
||||
share/python1.4/glob.py
|
||||
share/python1.4/getopt.py
|
||||
share/python1.4/gopherlib.py
|
||||
share/python1.4/grep.py
|
||||
share/python1.4/htmlentitydefs.py
|
||||
share/python1.4/htmllib.py
|
||||
share/python1.4/httplib.py
|
||||
share/python1.4/ihooks.py
|
||||
share/python1.4/imghdr.py
|
||||
share/python1.4/linecache.py
|
||||
share/python1.4/lockfile.py
|
||||
share/python1.4/macpath.py
|
||||
share/python1.4/macurl2path.py
|
||||
share/python1.4/mailbox.py
|
||||
share/python1.4/mailcap.py
|
||||
share/python1.4/mhlib.py
|
||||
share/python1.4/mimetools.py
|
||||
share/python1.4/mimify.py
|
||||
share/python1.4/multifile.py
|
||||
share/python1.4/mutex.py
|
||||
share/python1.4/newdir.py
|
||||
share/python1.4/ni.py
|
||||
share/python1.4/nntplib.py
|
||||
share/python1.4/ntpath.py
|
||||
share/python1.4/nturl2path.py
|
||||
share/python1.4/os.py
|
||||
share/python1.4/ospath.py
|
||||
share/python1.4/packmail.py
|
||||
share/python1.4/pdb.py
|
||||
share/python1.4/pickle.py
|
||||
share/python1.4/pipes.py
|
||||
share/python1.4/poly.py
|
||||
share/python1.4/popen2.py
|
||||
share/python1.4/posixfile.py
|
||||
share/python1.4/posixpath.py
|
||||
share/python1.4/profile.py
|
||||
share/python1.4/pstats.py
|
||||
share/python1.4/pty.py
|
||||
share/python1.4/py_compile.py
|
||||
share/python1.4/pyclbr.py
|
||||
share/python1.4/quopri.py
|
||||
share/python1.4/rand.py
|
||||
share/python1.4/random.py
|
||||
share/python1.4/regex_syntax.py
|
||||
share/python1.4/regexp.py
|
||||
share/python1.4/regsub.py
|
||||
share/python1.4/repr.py
|
||||
share/python1.4/rexec.py
|
||||
share/python1.4/rfc822.py
|
||||
share/python1.4/sched.py
|
||||
share/python1.4/sgmllib.py
|
||||
share/python1.4/shelve.py
|
||||
share/python1.4/shutil.py
|
||||
share/python1.4/site.py
|
||||
share/python1.4/sndhdr.py
|
||||
share/python1.4/stat.py
|
||||
share/python1.4/statcache.py
|
||||
share/python1.4/string.py
|
||||
share/python1.4/sunau.py
|
||||
share/python1.4/sunaudio.py
|
||||
share/python1.4/symbol.py
|
||||
share/python1.4/tb.py
|
||||
share/python1.4/tempfile.py
|
||||
share/python1.4/toaiff.py
|
||||
share/python1.4/token.py
|
||||
share/python1.4/tokenize.py
|
||||
share/python1.4/traceback.py
|
||||
share/python1.4/tty.py
|
||||
share/python1.4/types.py
|
||||
share/python1.4/tzparse.py
|
||||
share/python1.4/os.pyc
|
||||
share/python1.4/urlparse.py
|
||||
share/python1.4/util.py
|
||||
share/python1.4/uu.py
|
||||
share/python1.4/wave.py
|
||||
share/python1.4/whatsound.py
|
||||
share/python1.4/whichdb.py
|
||||
share/python1.4/whrandom.py
|
||||
share/python1.4/xdrlib.py
|
||||
share/python1.4/zmod.py
|
||||
share/python1.4/pdb.doc
|
||||
share/python1.4/profile.doc
|
||||
share/python1.4/posixpath.pyc
|
||||
share/python1.4/stat.pyc
|
||||
share/python1.4/UserDict.pyc
|
||||
share/python1.4/py_compile.pyc
|
||||
share/python1.4/getopt.pyc
|
||||
share/python1.4/string.pyc
|
||||
share/python1.4/AST.pyc
|
||||
share/python1.4/BaseHTTPServer.pyc
|
||||
share/python1.4/Bastion.pyc
|
||||
share/python1.4/CGIHTTPServer.pyc
|
||||
share/python1.4/Complex.pyc
|
||||
share/python1.4/MimeWriter.pyc
|
||||
share/python1.4/Para.pyc
|
||||
share/python1.4/Queue.pyc
|
||||
share/python1.4/SimpleHTTPServer.pyc
|
||||
share/python1.4/SocketServer.pyc
|
||||
share/python1.4/StringIO.pyc
|
||||
share/python1.4/UserList.pyc
|
||||
share/python1.4/addpack.pyc
|
||||
share/python1.4/aifc.pyc
|
||||
share/python1.4/anydbm.pyc
|
||||
share/python1.4/audiodev.pyc
|
||||
share/python1.4/base64.pyc
|
||||
share/python1.4/bdb.pyc
|
||||
share/python1.4/binhex.pyc
|
||||
share/python1.4/bisect.pyc
|
||||
share/python1.4/calendar.pyc
|
||||
share/python1.4/cgi.pyc
|
||||
share/python1.4/cmd.pyc
|
||||
share/python1.4/cmp.pyc
|
||||
share/python1.4/cmpcache.pyc
|
||||
share/python1.4/codehack.pyc
|
||||
share/python1.4/colorsys.pyc
|
||||
share/python1.4/commands.pyc
|
||||
share/python1.4/compileall.pyc
|
||||
share/python1.4/copy.pyc
|
||||
share/python1.4/dbhash.pyc
|
||||
share/python1.4/dircache.pyc
|
||||
share/python1.4/dircmp.pyc
|
||||
share/python1.4/dis.pyc
|
||||
share/python1.4/dospath.pyc
|
||||
share/python1.4/dumbdbm.pyc
|
||||
share/python1.4/dump.pyc
|
||||
share/python1.4/emacs.pyc
|
||||
share/python1.4/find.pyc
|
||||
share/python1.4/fmt.pyc
|
||||
share/python1.4/fnmatch.pyc
|
||||
share/python1.4/formatter.pyc
|
||||
share/python1.4/fpformat.pyc
|
||||
share/python1.4/ftplib.pyc
|
||||
share/python1.4/glob.pyc
|
||||
share/python1.4/gopherlib.pyc
|
||||
share/python1.4/grep.pyc
|
||||
share/python1.4/htmlentitydefs.pyc
|
||||
share/python1.4/htmllib.pyc
|
||||
share/python1.4/httplib.pyc
|
||||
share/python1.4/ihooks.pyc
|
||||
share/python1.4/imghdr.pyc
|
||||
share/python1.4/linecache.pyc
|
||||
share/python1.4/lockfile.pyc
|
||||
share/python1.4/macpath.pyc
|
||||
share/python1.4/macurl2path.pyc
|
||||
share/python1.4/mailbox.pyc
|
||||
share/python1.4/mailcap.pyc
|
||||
share/python1.4/mhlib.pyc
|
||||
share/python1.4/mimetools.pyc
|
||||
share/python1.4/mimify.pyc
|
||||
share/python1.4/multifile.pyc
|
||||
share/python1.4/mutex.pyc
|
||||
share/python1.4/newdir.pyc
|
||||
share/python1.4/ni.pyc
|
||||
share/python1.4/nntplib.pyc
|
||||
share/python1.4/ntpath.pyc
|
||||
share/python1.4/nturl2path.pyc
|
||||
share/python1.4/ospath.pyc
|
||||
share/python1.4/packmail.pyc
|
||||
share/python1.4/pdb.pyc
|
||||
share/python1.4/pickle.pyc
|
||||
share/python1.4/pipes.pyc
|
||||
share/python1.4/poly.pyc
|
||||
share/python1.4/popen2.pyc
|
||||
share/python1.4/posixfile.pyc
|
||||
share/python1.4/profile.pyc
|
||||
share/python1.4/pstats.pyc
|
||||
share/python1.4/pty.pyc
|
||||
share/python1.4/pyclbr.pyc
|
||||
share/python1.4/quopri.pyc
|
||||
share/python1.4/rand.pyc
|
||||
share/python1.4/random.pyc
|
||||
share/python1.4/regex_syntax.pyc
|
||||
share/python1.4/regexp.pyc
|
||||
share/python1.4/regsub.pyc
|
||||
share/python1.4/repr.pyc
|
||||
share/python1.4/rexec.pyc
|
||||
share/python1.4/rfc822.pyc
|
||||
share/python1.4/sched.pyc
|
||||
share/python1.4/sgmllib.pyc
|
||||
share/python1.4/shelve.pyc
|
||||
share/python1.4/shutil.pyc
|
||||
share/python1.4/site.pyc
|
||||
share/python1.4/sndhdr.pyc
|
||||
share/python1.4/statcache.pyc
|
||||
share/python1.4/sunau.pyc
|
||||
share/python1.4/sunaudio.pyc
|
||||
share/python1.4/symbol.pyc
|
||||
share/python1.4/tb.pyc
|
||||
share/python1.4/tempfile.pyc
|
||||
share/python1.4/toaiff.pyc
|
||||
share/python1.4/token.pyc
|
||||
share/python1.4/tokenize.pyc
|
||||
share/python1.4/traceback.pyc
|
||||
share/python1.4/tty.pyc
|
||||
share/python1.4/types.pyc
|
||||
share/python1.4/tzparse.pyc
|
||||
share/python1.4/urllib.pyc
|
||||
share/python1.4/urlparse.pyc
|
||||
share/python1.4/uu.pyc
|
||||
share/python1.4/util.pyc
|
||||
share/python1.4/wave.pyc
|
||||
share/python1.4/whatsound.pyc
|
||||
share/python1.4/whichdb.pyc
|
||||
share/python1.4/whrandom.pyc
|
||||
share/python1.4/xdrlib.pyc
|
||||
share/python1.4/zmod.pyc
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# Date created: 08 August 1995
|
||||
# Whom: jkh
|
||||
#
|
||||
# $Id: Makefile,v 1.12 1997/02/21 14:57:01 tg Exp $
|
||||
# $Id: Makefile,v 1.13 1997/04/20 13:19:11 wosch Exp $
|
||||
#
|
||||
|
||||
DISTNAME= python1.4
|
||||
|
@ -13,12 +13,10 @@ MASTER_SITES= ftp://www.python.org/pub/python/src/ \
|
|||
ftp://ftp.cwi.nl/pub/python/src/ \
|
||||
ftp://www.python.org/pub/python/contrib/Graphics/Tkinter/ \
|
||||
ftp://ftp.cwi.nl/pub/python/contrib/Graphics/Tkinter/
|
||||
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} PyTix-1.12.tar.gz
|
||||
|
||||
MAINTAINER= tg@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= tk41\\.1\\.:${PORTSDIR}/x11/tk41 \
|
||||
tix4175\\.1\\.:${PORTSDIR}/x11/tix
|
||||
LIB_DEPENDS= tk41\\.1\\.:${PORTSDIR}/x11/tk41
|
||||
|
||||
WRKSRC= ${WRKDIR}/Python-1.4
|
||||
HAS_CONFIGURE= yes
|
||||
|
@ -27,14 +25,6 @@ MAKE_FLAGS+= 'OPT=${CFLAGS}'
|
|||
INSTALL_TARGET= install
|
||||
MAN1= python.1
|
||||
|
||||
PYTIXSRC= ${WRKDIR}/PyTix-1.12
|
||||
|
||||
post-extract:
|
||||
@${ECHO_MSG} "===> Add PyTix extensions to Python core"
|
||||
${CP} ${PYTIXSRC}/Tkinter.py ${WRKSRC}/Lib/tkinter
|
||||
${CP} ${PYTIXSRC}/Tix.py ${WRKSRC}/Lib/tkinter
|
||||
${CP} ${PYTIXSRC}/_tkinter.c ${WRKSRC}/Modules
|
||||
|
||||
post-configure:
|
||||
${CP} ${FILESDIR}/Setup ${WRKSRC}/Modules
|
||||
|
||||
|
|
|
@ -71,7 +71,7 @@ SITEPATH=:$(DESTLIB)/NumPy
|
|||
TESTPATH=:$(DESTLIB)/test
|
||||
|
||||
# Path for machine- or system-dependent modules (and shared libraries)
|
||||
MACHDEPPATH=:$(DESTLIB)/$(MACHDEP)
|
||||
MACHDEPPATH=:$(DESTLIB)/$(MACHDEP):$(MACHDESTLIB)/sharedmodules
|
||||
|
||||
COREPYTHONPATH=.$(SITEPATH)$(DESTPATH)$(TESTPATH)$(MACHDEPPATH)$(STDWINPATH)$(TKPATH)
|
||||
PYTHONPATH=$(COREPYTHONPATH)
|
||||
|
@ -128,6 +128,7 @@ select selectmodule.c # select(2); not on ancient System V
|
|||
socket socketmodule.c # socket(2); not on ancient System V
|
||||
errno errnomodule.c # posix (UNIX) errno values
|
||||
|
||||
*shared*
|
||||
|
||||
# Some more UNIX dependent modules -- off by default, since these
|
||||
# are not supported by all UNIX systems:
|
||||
|
@ -249,7 +250,7 @@ TKPATH=:$(DESTLIB)/tkinter
|
|||
#_tkinter _tkinter.c -I/usr/openwin/include -I/usr/local/include -L/usr/openwin/lib -L/usr/local/lib -ltk4.1 -ltcl7.5 -lX11
|
||||
# For generic system (may have to add -I/-L options to find X11):
|
||||
#_tkinter _tkinter.c -I/usr/local/include -L/usr/local/lib -ltk4.1 -ltcl7.5 -lX11
|
||||
_tkinter _tkinter.c -I/usr/local/include -I/usr/X11R6/include -L/usr/local/lib -L/usr/X11R6/lib -ltix4175 -ltk41 -ltcl75 -lX11
|
||||
_tkinter _tkinter.c -I/usr/local/include -I/usr/X11R6/include -L/usr/local/lib -L/usr/X11R6/lib -ltk41 -ltcl75 -lX11
|
||||
|
||||
|
||||
# Lance Ellinghaus's modules:
|
||||
|
|
|
@ -1,11 +1,7 @@
|
|||
--- Makefile.in.orig Fri Oct 25 16:37:32 1996
|
||||
+++ Makefile.in Thu Feb 6 12:02:11 1997
|
||||
@@ -95,10 +95,10 @@
|
||||
|
||||
# Expanded directories
|
||||
BINDIR= $(exec_prefix)/bin
|
||||
-LIBDIR= $(exec_prefix)/lib
|
||||
+LIBDIR= $(exec_prefix)/share
|
||||
+++ Makefile.in Mon May 12 21:04:38 1997
|
||||
@@ -98,7 +98,7 @@
|
||||
LIBDIR= $(exec_prefix)/lib
|
||||
MANDIR= $(prefix)/man
|
||||
INCLUDEDIR= $(prefix)/include
|
||||
-SCRIPTDIR= $(prefix)/lib
|
||||
|
|
|
@ -1,403 +1,5 @@
|
|||
bin/python1.4
|
||||
bin/python
|
||||
@exec mkdir -p %D/share/python1.4/sharedmodules
|
||||
@unexec rmdir %D/share/python1.4/sharedmodules
|
||||
share/python1.4/AST.py
|
||||
share/python1.4/AST.pyc
|
||||
share/python1.4/BaseHTTPServer.py
|
||||
share/python1.4/BaseHTTPServer.pyc
|
||||
share/python1.4/Bastion.py
|
||||
share/python1.4/Bastion.pyc
|
||||
share/python1.4/CGIHTTPServer.py
|
||||
share/python1.4/CGIHTTPServer.pyc
|
||||
share/python1.4/Complex.py
|
||||
share/python1.4/Complex.pyc
|
||||
share/python1.4/MimeWriter.py
|
||||
share/python1.4/MimeWriter.pyc
|
||||
share/python1.4/Para.py
|
||||
share/python1.4/Para.pyc
|
||||
share/python1.4/Queue.py
|
||||
share/python1.4/Queue.pyc
|
||||
share/python1.4/SimpleHTTPServer.py
|
||||
share/python1.4/SimpleHTTPServer.pyc
|
||||
share/python1.4/SocketServer.py
|
||||
share/python1.4/SocketServer.pyc
|
||||
share/python1.4/StringIO.py
|
||||
share/python1.4/StringIO.pyc
|
||||
share/python1.4/UserDict.py
|
||||
share/python1.4/UserDict.pyc
|
||||
share/python1.4/UserList.py
|
||||
share/python1.4/UserList.pyc
|
||||
share/python1.4/addpack.py
|
||||
share/python1.4/addpack.pyc
|
||||
share/python1.4/aifc.py
|
||||
share/python1.4/aifc.pyc
|
||||
share/python1.4/anydbm.py
|
||||
share/python1.4/anydbm.pyc
|
||||
share/python1.4/audiodev.py
|
||||
share/python1.4/audiodev.pyc
|
||||
share/python1.4/base64.py
|
||||
share/python1.4/base64.pyc
|
||||
share/python1.4/bdb.py
|
||||
share/python1.4/bdb.pyc
|
||||
share/python1.4/binhex.py
|
||||
share/python1.4/binhex.pyc
|
||||
share/python1.4/bisect.py
|
||||
share/python1.4/bisect.pyc
|
||||
share/python1.4/calendar.py
|
||||
share/python1.4/calendar.pyc
|
||||
share/python1.4/cgi.py
|
||||
share/python1.4/cgi.pyc
|
||||
share/python1.4/cmd.py
|
||||
share/python1.4/cmd.pyc
|
||||
share/python1.4/cmp.py
|
||||
share/python1.4/cmp.pyc
|
||||
share/python1.4/cmpcache.py
|
||||
share/python1.4/cmpcache.pyc
|
||||
share/python1.4/codehack.py
|
||||
share/python1.4/codehack.pyc
|
||||
share/python1.4/colorsys.py
|
||||
share/python1.4/colorsys.pyc
|
||||
share/python1.4/commands.py
|
||||
share/python1.4/commands.pyc
|
||||
share/python1.4/compileall.py
|
||||
share/python1.4/compileall.pyc
|
||||
share/python1.4/copy.py
|
||||
share/python1.4/copy.pyc
|
||||
share/python1.4/dbhash.py
|
||||
share/python1.4/dbhash.pyc
|
||||
share/python1.4/dircache.py
|
||||
share/python1.4/dircache.pyc
|
||||
share/python1.4/dircmp.py
|
||||
share/python1.4/dircmp.pyc
|
||||
share/python1.4/dis.py
|
||||
share/python1.4/dis.pyc
|
||||
share/python1.4/dospath.py
|
||||
share/python1.4/dospath.pyc
|
||||
share/python1.4/dumbdbm.py
|
||||
share/python1.4/dumbdbm.pyc
|
||||
share/python1.4/dump.py
|
||||
share/python1.4/dump.pyc
|
||||
share/python1.4/emacs.py
|
||||
share/python1.4/emacs.pyc
|
||||
share/python1.4/find.py
|
||||
share/python1.4/find.pyc
|
||||
share/python1.4/fmt.py
|
||||
share/python1.4/fmt.pyc
|
||||
share/python1.4/fnmatch.py
|
||||
share/python1.4/fnmatch.pyc
|
||||
share/python1.4/formatter.py
|
||||
share/python1.4/formatter.pyc
|
||||
share/python1.4/fpformat.py
|
||||
share/python1.4/fpformat.pyc
|
||||
share/python1.4/ftplib.py
|
||||
share/python1.4/ftplib.pyc
|
||||
share/python1.4/getopt.py
|
||||
share/python1.4/getopt.pyc
|
||||
share/python1.4/glob.py
|
||||
share/python1.4/glob.pyc
|
||||
share/python1.4/gopherlib.py
|
||||
share/python1.4/gopherlib.pyc
|
||||
share/python1.4/grep.py
|
||||
share/python1.4/grep.pyc
|
||||
share/python1.4/htmlentitydefs.py
|
||||
share/python1.4/htmlentitydefs.pyc
|
||||
share/python1.4/htmllib.py
|
||||
share/python1.4/htmllib.pyc
|
||||
share/python1.4/httplib.py
|
||||
share/python1.4/httplib.pyc
|
||||
share/python1.4/ihooks.py
|
||||
share/python1.4/ihooks.pyc
|
||||
share/python1.4/imghdr.py
|
||||
share/python1.4/imghdr.pyc
|
||||
share/python1.4/linecache.py
|
||||
share/python1.4/linecache.pyc
|
||||
share/python1.4/lockfile.py
|
||||
share/python1.4/lockfile.pyc
|
||||
share/python1.4/macpath.py
|
||||
share/python1.4/macpath.pyc
|
||||
share/python1.4/macurl2path.py
|
||||
share/python1.4/macurl2path.pyc
|
||||
share/python1.4/mailbox.py
|
||||
share/python1.4/mailbox.pyc
|
||||
share/python1.4/mailcap.py
|
||||
share/python1.4/mailcap.pyc
|
||||
share/python1.4/mhlib.py
|
||||
share/python1.4/mhlib.pyc
|
||||
share/python1.4/mimetools.py
|
||||
share/python1.4/mimetools.pyc
|
||||
share/python1.4/mimify.py
|
||||
share/python1.4/mimify.pyc
|
||||
share/python1.4/multifile.py
|
||||
share/python1.4/multifile.pyc
|
||||
share/python1.4/mutex.py
|
||||
share/python1.4/mutex.pyc
|
||||
share/python1.4/newdir.py
|
||||
share/python1.4/newdir.pyc
|
||||
share/python1.4/ni.py
|
||||
share/python1.4/ni.pyc
|
||||
share/python1.4/nntplib.py
|
||||
share/python1.4/nntplib.pyc
|
||||
share/python1.4/ntpath.py
|
||||
share/python1.4/ntpath.pyc
|
||||
share/python1.4/nturl2path.py
|
||||
share/python1.4/nturl2path.pyc
|
||||
share/python1.4/os.py
|
||||
share/python1.4/os.pyc
|
||||
share/python1.4/ospath.py
|
||||
share/python1.4/ospath.pyc
|
||||
share/python1.4/packmail.py
|
||||
share/python1.4/packmail.pyc
|
||||
share/python1.4/pdb.doc
|
||||
share/python1.4/pdb.py
|
||||
share/python1.4/pdb.pyc
|
||||
share/python1.4/pickle.py
|
||||
share/python1.4/pickle.pyc
|
||||
share/python1.4/pipes.py
|
||||
share/python1.4/pipes.pyc
|
||||
share/python1.4/poly.py
|
||||
share/python1.4/poly.pyc
|
||||
share/python1.4/popen2.py
|
||||
share/python1.4/popen2.pyc
|
||||
share/python1.4/posixfile.py
|
||||
share/python1.4/posixfile.pyc
|
||||
share/python1.4/posixpath.py
|
||||
share/python1.4/posixpath.pyc
|
||||
share/python1.4/profile.doc
|
||||
share/python1.4/profile.py
|
||||
share/python1.4/profile.pyc
|
||||
share/python1.4/pstats.py
|
||||
share/python1.4/pstats.pyc
|
||||
share/python1.4/pty.py
|
||||
share/python1.4/pty.pyc
|
||||
share/python1.4/py_compile.py
|
||||
share/python1.4/py_compile.pyc
|
||||
share/python1.4/pyclbr.py
|
||||
share/python1.4/pyclbr.pyc
|
||||
share/python1.4/quopri.py
|
||||
share/python1.4/quopri.pyc
|
||||
share/python1.4/rand.py
|
||||
share/python1.4/rand.pyc
|
||||
share/python1.4/random.py
|
||||
share/python1.4/random.pyc
|
||||
share/python1.4/regex_syntax.py
|
||||
share/python1.4/regex_syntax.pyc
|
||||
share/python1.4/regexp.py
|
||||
share/python1.4/regexp.pyc
|
||||
share/python1.4/regsub.py
|
||||
share/python1.4/regsub.pyc
|
||||
share/python1.4/repr.py
|
||||
share/python1.4/repr.pyc
|
||||
share/python1.4/rexec.py
|
||||
share/python1.4/rexec.pyc
|
||||
share/python1.4/rfc822.py
|
||||
share/python1.4/rfc822.pyc
|
||||
share/python1.4/sched.py
|
||||
share/python1.4/sched.pyc
|
||||
share/python1.4/sgmllib.py
|
||||
share/python1.4/sgmllib.pyc
|
||||
share/python1.4/shelve.py
|
||||
share/python1.4/shelve.pyc
|
||||
share/python1.4/shutil.py
|
||||
share/python1.4/shutil.pyc
|
||||
share/python1.4/site.py
|
||||
share/python1.4/site.pyc
|
||||
share/python1.4/sndhdr.py
|
||||
share/python1.4/sndhdr.pyc
|
||||
share/python1.4/stat.py
|
||||
share/python1.4/stat.pyc
|
||||
share/python1.4/statcache.py
|
||||
share/python1.4/statcache.pyc
|
||||
share/python1.4/string.py
|
||||
share/python1.4/string.pyc
|
||||
share/python1.4/sunau.py
|
||||
share/python1.4/sunau.pyc
|
||||
share/python1.4/sunaudio.py
|
||||
share/python1.4/sunaudio.pyc
|
||||
share/python1.4/symbol.py
|
||||
share/python1.4/symbol.pyc
|
||||
share/python1.4/tb.py
|
||||
share/python1.4/tb.pyc
|
||||
share/python1.4/tempfile.py
|
||||
share/python1.4/tempfile.pyc
|
||||
share/python1.4/toaiff.py
|
||||
share/python1.4/toaiff.pyc
|
||||
share/python1.4/token.py
|
||||
share/python1.4/token.pyc
|
||||
share/python1.4/tokenize.py
|
||||
share/python1.4/tokenize.pyc
|
||||
share/python1.4/traceback.py
|
||||
share/python1.4/traceback.pyc
|
||||
share/python1.4/tty.py
|
||||
share/python1.4/tty.pyc
|
||||
share/python1.4/types.py
|
||||
share/python1.4/types.pyc
|
||||
share/python1.4/tzparse.py
|
||||
share/python1.4/tzparse.pyc
|
||||
share/python1.4/urllib.py
|
||||
share/python1.4/urllib.pyc
|
||||
share/python1.4/urlparse.py
|
||||
share/python1.4/urlparse.pyc
|
||||
share/python1.4/util.py
|
||||
share/python1.4/util.pyc
|
||||
share/python1.4/uu.py
|
||||
share/python1.4/uu.pyc
|
||||
share/python1.4/wave.py
|
||||
share/python1.4/wave.pyc
|
||||
share/python1.4/whatsound.py
|
||||
share/python1.4/whatsound.pyc
|
||||
share/python1.4/whichdb.py
|
||||
share/python1.4/whichdb.pyc
|
||||
share/python1.4/whrandom.py
|
||||
share/python1.4/whrandom.pyc
|
||||
share/python1.4/xdrlib.py
|
||||
share/python1.4/xdrlib.pyc
|
||||
share/python1.4/zmod.py
|
||||
share/python1.4/zmod.pyc
|
||||
share/python1.4/config/Makefile
|
||||
share/python1.4/config/Setup
|
||||
share/python1.4/config/config.c
|
||||
share/python1.4/config/config.c.in
|
||||
share/python1.4/config/config.h
|
||||
share/python1.4/config/frozenmain.c
|
||||
share/python1.4/config/getpath.c
|
||||
share/python1.4/config/libModules.a
|
||||
share/python1.4/config/libObjects.a
|
||||
share/python1.4/config/libParser.a
|
||||
share/python1.4/config/libPython.a
|
||||
share/python1.4/config/main.o
|
||||
share/python1.4/config/makesetup
|
||||
share/python1.4/freebsd2/FCNTL.py
|
||||
share/python1.4/freebsd2/FCNTL.pyc
|
||||
share/python1.4/freebsd2/regen
|
||||
share/python1.4/stdwin/Abstract.py
|
||||
share/python1.4/stdwin/Abstract.pyc
|
||||
share/python1.4/stdwin/BoxParent.py
|
||||
share/python1.4/stdwin/BoxParent.pyc
|
||||
share/python1.4/stdwin/Buttons.py
|
||||
share/python1.4/stdwin/Buttons.pyc
|
||||
share/python1.4/stdwin/CSplit.py
|
||||
share/python1.4/stdwin/CSplit.pyc
|
||||
share/python1.4/stdwin/DirList.py
|
||||
share/python1.4/stdwin/DirList.pyc
|
||||
share/python1.4/stdwin/FormSplit.py
|
||||
share/python1.4/stdwin/FormSplit.pyc
|
||||
share/python1.4/stdwin/HVSplit.py
|
||||
share/python1.4/stdwin/HVSplit.pyc
|
||||
share/python1.4/stdwin/Histogram.py
|
||||
share/python1.4/stdwin/Histogram.pyc
|
||||
share/python1.4/stdwin/Sliders.py
|
||||
share/python1.4/stdwin/Sliders.pyc
|
||||
share/python1.4/stdwin/Soundogram.py
|
||||
share/python1.4/stdwin/Soundogram.pyc
|
||||
share/python1.4/stdwin/Split.py
|
||||
share/python1.4/stdwin/Split.pyc
|
||||
share/python1.4/stdwin/StripChart.py
|
||||
share/python1.4/stdwin/StripChart.pyc
|
||||
share/python1.4/stdwin/TextEdit.py
|
||||
share/python1.4/stdwin/TextEdit.pyc
|
||||
share/python1.4/stdwin/TransParent.py
|
||||
share/python1.4/stdwin/TransParent.pyc
|
||||
share/python1.4/stdwin/VUMeter.py
|
||||
share/python1.4/stdwin/VUMeter.pyc
|
||||
share/python1.4/stdwin/WindowParent.py
|
||||
share/python1.4/stdwin/WindowParent.pyc
|
||||
share/python1.4/stdwin/WindowSched.py
|
||||
share/python1.4/stdwin/WindowSched.pyc
|
||||
share/python1.4/stdwin/anywin.py
|
||||
share/python1.4/stdwin/anywin.pyc
|
||||
share/python1.4/stdwin/basewin.py
|
||||
share/python1.4/stdwin/basewin.pyc
|
||||
share/python1.4/stdwin/dirwin.py
|
||||
share/python1.4/stdwin/dirwin.pyc
|
||||
share/python1.4/stdwin/filewin.py
|
||||
share/python1.4/stdwin/filewin.pyc
|
||||
share/python1.4/stdwin/formatter.py
|
||||
share/python1.4/stdwin/formatter.pyc
|
||||
share/python1.4/stdwin/gwin.py
|
||||
share/python1.4/stdwin/gwin.pyc
|
||||
share/python1.4/stdwin/listwin.py
|
||||
share/python1.4/stdwin/listwin.pyc
|
||||
share/python1.4/stdwin/mainloop.py
|
||||
share/python1.4/stdwin/mainloop.pyc
|
||||
share/python1.4/stdwin/rect.py
|
||||
share/python1.4/stdwin/rect.pyc
|
||||
share/python1.4/stdwin/srcwin.py
|
||||
share/python1.4/stdwin/srcwin.pyc
|
||||
share/python1.4/stdwin/stdwinevents.py
|
||||
share/python1.4/stdwin/stdwinevents.pyc
|
||||
share/python1.4/stdwin/stdwinq.py
|
||||
share/python1.4/stdwin/stdwinq.pyc
|
||||
share/python1.4/stdwin/tablewin.py
|
||||
share/python1.4/stdwin/tablewin.pyc
|
||||
share/python1.4/stdwin/textwin.py
|
||||
share/python1.4/stdwin/textwin.pyc
|
||||
share/python1.4/stdwin/wdb.py
|
||||
share/python1.4/stdwin/wdb.pyc
|
||||
share/python1.4/stdwin/wdbframewin.py
|
||||
share/python1.4/stdwin/wdbframewin.pyc
|
||||
share/python1.4/stdwin/wdbsrcwin.py
|
||||
share/python1.4/stdwin/wdbsrcwin.pyc
|
||||
share/python1.4/test/autotest.py
|
||||
share/python1.4/test/autotest.pyc
|
||||
share/python1.4/test/test.rawimg
|
||||
share/python1.4/test/test.rawimg.rev
|
||||
share/python1.4/test/test.rgb
|
||||
share/python1.4/test/test_audioop.py
|
||||
share/python1.4/test/test_audioop.pyc
|
||||
share/python1.4/test/test_b1.py
|
||||
share/python1.4/test/test_b1.pyc
|
||||
share/python1.4/test/test_b2.py
|
||||
share/python1.4/test/test_b2.pyc
|
||||
share/python1.4/test/test_builtin.py
|
||||
share/python1.4/test/test_builtin.pyc
|
||||
share/python1.4/test/test_exceptions.py
|
||||
share/python1.4/test/test_exceptions.pyc
|
||||
share/python1.4/test/test_grammar.py
|
||||
share/python1.4/test/test_grammar.pyc
|
||||
share/python1.4/test/test_math.py
|
||||
share/python1.4/test/test_math.pyc
|
||||
share/python1.4/test/test_md5.py
|
||||
share/python1.4/test/test_md5.pyc
|
||||
share/python1.4/test/test_opcodes.py
|
||||
share/python1.4/test/test_opcodes.pyc
|
||||
share/python1.4/test/test_operations.py
|
||||
share/python1.4/test/test_operations.pyc
|
||||
share/python1.4/test/test_pow.py
|
||||
share/python1.4/test/test_pow.pyc
|
||||
share/python1.4/test/test_rgbimg.py
|
||||
share/python1.4/test/test_rgbimg.pyc
|
||||
share/python1.4/test/test_select.py
|
||||
share/python1.4/test/test_select.pyc
|
||||
share/python1.4/test/test_signal.py
|
||||
share/python1.4/test/test_signal.pyc
|
||||
share/python1.4/test/test_strop.py
|
||||
share/python1.4/test/test_strop.pyc
|
||||
share/python1.4/test/test_support.py
|
||||
share/python1.4/test/test_support.pyc
|
||||
share/python1.4/test/test_thread.py
|
||||
share/python1.4/test/test_thread.pyc
|
||||
share/python1.4/test/test_types.py
|
||||
share/python1.4/test/test_types.pyc
|
||||
share/python1.4/test/testall.out
|
||||
share/python1.4/test/testall.py
|
||||
share/python1.4/test/testall.pyc
|
||||
share/python1.4/tkinter/Canvas.py
|
||||
share/python1.4/tkinter/Canvas.pyc
|
||||
share/python1.4/tkinter/Dialog.py
|
||||
share/python1.4/tkinter/Dialog.pyc
|
||||
share/python1.4/tkinter/FileDialog.py
|
||||
share/python1.4/tkinter/FileDialog.pyc
|
||||
share/python1.4/tkinter/ScrolledText.py
|
||||
share/python1.4/tkinter/ScrolledText.pyc
|
||||
share/python1.4/tkinter/SimpleDialog.py
|
||||
share/python1.4/tkinter/SimpleDialog.pyc
|
||||
share/python1.4/tkinter/Tix.py
|
||||
share/python1.4/tkinter/Tix.pyc
|
||||
share/python1.4/tkinter/Tkconstants.py
|
||||
share/python1.4/tkinter/Tkconstants.pyc
|
||||
share/python1.4/tkinter/Tkinter.py
|
||||
share/python1.4/tkinter/Tkinter.pyc
|
||||
include/python1.4/Python.h
|
||||
include/python1.4/abstract.h
|
||||
include/python1.4/accessobject.h
|
||||
|
@ -459,4 +61,417 @@ include/python1.4/thread.h
|
|||
include/python1.4/token.h
|
||||
include/python1.4/traceback.h
|
||||
include/python1.4/tupleobject.h
|
||||
lib/python1.4/config/libParser.a
|
||||
lib/python1.4/config/libObjects.a
|
||||
lib/python1.4/config/libPython.a
|
||||
lib/python1.4/config/libModules.a
|
||||
lib/python1.4/config/config.c
|
||||
lib/python1.4/config/getpath.c
|
||||
lib/python1.4/config/config.c.in
|
||||
lib/python1.4/config/Makefile
|
||||
lib/python1.4/config/Setup
|
||||
lib/python1.4/config/makesetup
|
||||
lib/python1.4/config/config.h
|
||||
lib/python1.4/config/frozenmain.c
|
||||
lib/python1.4/config/main.o
|
||||
lib/python1.4/sharedmodules/dbmmodule.so
|
||||
lib/python1.4/sharedmodules/nismodule.so
|
||||
lib/python1.4/sharedmodules/termios.so
|
||||
lib/python1.4/sharedmodules/audioop.so
|
||||
lib/python1.4/sharedmodules/imageop.so
|
||||
lib/python1.4/sharedmodules/rgbimgmodule.so
|
||||
lib/python1.4/sharedmodules/md5module.so
|
||||
lib/python1.4/sharedmodules/_tkinter.so
|
||||
lib/python1.4/sharedmodules/rotormodule.so
|
||||
lib/python1.4/sharedmodules/syslogmodule.so
|
||||
lib/python1.4/sharedmodules/cursesmodule.so
|
||||
lib/python1.4/sharedmodules/bsddbmodule.so
|
||||
lib/python1.4/sharedmodules/binascii.so
|
||||
man/man1/python.1.gz
|
||||
share/python1.4/stdwin/Abstract.pyc
|
||||
share/python1.4/stdwin/Abstract.py
|
||||
share/python1.4/stdwin/BoxParent.py
|
||||
share/python1.4/stdwin/Buttons.py
|
||||
share/python1.4/stdwin/CSplit.py
|
||||
share/python1.4/stdwin/DirList.py
|
||||
share/python1.4/stdwin/FormSplit.py
|
||||
share/python1.4/stdwin/HVSplit.py
|
||||
share/python1.4/stdwin/Histogram.py
|
||||
share/python1.4/stdwin/Sliders.py
|
||||
share/python1.4/stdwin/Soundogram.py
|
||||
share/python1.4/stdwin/Split.py
|
||||
share/python1.4/stdwin/StripChart.py
|
||||
share/python1.4/stdwin/TextEdit.py
|
||||
share/python1.4/stdwin/TransParent.py
|
||||
share/python1.4/stdwin/VUMeter.py
|
||||
share/python1.4/stdwin/WindowParent.py
|
||||
share/python1.4/stdwin/WindowSched.py
|
||||
share/python1.4/stdwin/anywin.py
|
||||
share/python1.4/stdwin/basewin.py
|
||||
share/python1.4/stdwin/dirwin.py
|
||||
share/python1.4/stdwin/filewin.py
|
||||
share/python1.4/stdwin/formatter.py
|
||||
share/python1.4/stdwin/gwin.py
|
||||
share/python1.4/stdwin/listwin.py
|
||||
share/python1.4/stdwin/mainloop.py
|
||||
share/python1.4/stdwin/rect.py
|
||||
share/python1.4/stdwin/srcwin.py
|
||||
share/python1.4/stdwin/stdwinevents.py
|
||||
share/python1.4/stdwin/stdwinq.py
|
||||
share/python1.4/stdwin/tablewin.py
|
||||
share/python1.4/stdwin/textwin.py
|
||||
share/python1.4/stdwin/wdb.py
|
||||
share/python1.4/stdwin/wdbframewin.py
|
||||
share/python1.4/stdwin/wdbsrcwin.py
|
||||
share/python1.4/stdwin/BoxParent.pyc
|
||||
share/python1.4/stdwin/Buttons.pyc
|
||||
share/python1.4/stdwin/CSplit.pyc
|
||||
share/python1.4/stdwin/DirList.pyc
|
||||
share/python1.4/stdwin/FormSplit.pyc
|
||||
share/python1.4/stdwin/HVSplit.pyc
|
||||
share/python1.4/stdwin/Histogram.pyc
|
||||
share/python1.4/stdwin/Sliders.pyc
|
||||
share/python1.4/stdwin/Soundogram.pyc
|
||||
share/python1.4/stdwin/Split.pyc
|
||||
share/python1.4/stdwin/StripChart.pyc
|
||||
share/python1.4/stdwin/TextEdit.pyc
|
||||
share/python1.4/stdwin/TransParent.pyc
|
||||
share/python1.4/stdwin/VUMeter.pyc
|
||||
share/python1.4/stdwin/WindowParent.pyc
|
||||
share/python1.4/stdwin/WindowSched.pyc
|
||||
share/python1.4/stdwin/anywin.pyc
|
||||
share/python1.4/stdwin/basewin.pyc
|
||||
share/python1.4/stdwin/dirwin.pyc
|
||||
share/python1.4/stdwin/filewin.pyc
|
||||
share/python1.4/stdwin/formatter.pyc
|
||||
share/python1.4/stdwin/gwin.pyc
|
||||
share/python1.4/stdwin/listwin.pyc
|
||||
share/python1.4/stdwin/mainloop.pyc
|
||||
share/python1.4/stdwin/rect.pyc
|
||||
share/python1.4/stdwin/srcwin.pyc
|
||||
share/python1.4/stdwin/stdwinevents.pyc
|
||||
share/python1.4/stdwin/stdwinq.pyc
|
||||
share/python1.4/stdwin/tablewin.pyc
|
||||
share/python1.4/stdwin/textwin.pyc
|
||||
share/python1.4/stdwin/wdb.pyc
|
||||
share/python1.4/stdwin/wdbframewin.pyc
|
||||
share/python1.4/stdwin/wdbsrcwin.pyc
|
||||
share/python1.4/tkinter/Canvas.pyc
|
||||
share/python1.4/tkinter/Canvas.py
|
||||
share/python1.4/tkinter/Dialog.py
|
||||
share/python1.4/tkinter/FileDialog.py
|
||||
share/python1.4/tkinter/ScrolledText.py
|
||||
share/python1.4/tkinter/SimpleDialog.py
|
||||
share/python1.4/tkinter/Tkconstants.py
|
||||
share/python1.4/tkinter/Tkinter.py
|
||||
share/python1.4/tkinter/Dialog.pyc
|
||||
share/python1.4/tkinter/FileDialog.pyc
|
||||
share/python1.4/tkinter/ScrolledText.pyc
|
||||
share/python1.4/tkinter/SimpleDialog.pyc
|
||||
share/python1.4/tkinter/Tkconstants.pyc
|
||||
share/python1.4/tkinter/Tkinter.pyc
|
||||
share/python1.4/test/autotest.pyc
|
||||
share/python1.4/test/autotest.py
|
||||
share/python1.4/test/test.rawimg
|
||||
share/python1.4/test/test.rawimg.rev
|
||||
share/python1.4/test/test.rgb
|
||||
share/python1.4/test/test_audioop.py
|
||||
share/python1.4/test/test_b1.py
|
||||
share/python1.4/test/test_b2.py
|
||||
share/python1.4/test/test_builtin.py
|
||||
share/python1.4/test/test_exceptions.py
|
||||
share/python1.4/test/test_grammar.py
|
||||
share/python1.4/test/test_math.py
|
||||
share/python1.4/test/test_md5.py
|
||||
share/python1.4/test/test_opcodes.py
|
||||
share/python1.4/test/test_operations.py
|
||||
share/python1.4/test/test_pow.py
|
||||
share/python1.4/test/test_rgbimg.py
|
||||
share/python1.4/test/test_select.py
|
||||
share/python1.4/test/test_signal.py
|
||||
share/python1.4/test/test_strop.py
|
||||
share/python1.4/test/test_support.py
|
||||
share/python1.4/test/test_thread.py
|
||||
share/python1.4/test/test_types.py
|
||||
share/python1.4/test/testall.out
|
||||
share/python1.4/test/testall.py
|
||||
share/python1.4/test/test_audioop.pyc
|
||||
share/python1.4/test/test_b1.pyc
|
||||
share/python1.4/test/test_b2.pyc
|
||||
share/python1.4/test/test_builtin.pyc
|
||||
share/python1.4/test/test_exceptions.pyc
|
||||
share/python1.4/test/test_grammar.pyc
|
||||
share/python1.4/test/test_math.pyc
|
||||
share/python1.4/test/test_md5.pyc
|
||||
share/python1.4/test/test_opcodes.pyc
|
||||
share/python1.4/test/test_operations.pyc
|
||||
share/python1.4/test/test_pow.pyc
|
||||
share/python1.4/test/test_rgbimg.pyc
|
||||
share/python1.4/test/test_select.pyc
|
||||
share/python1.4/test/test_signal.pyc
|
||||
share/python1.4/test/test_strop.pyc
|
||||
share/python1.4/test/test_support.pyc
|
||||
share/python1.4/test/testall.pyc
|
||||
share/python1.4/test/test_thread.pyc
|
||||
share/python1.4/test/test_types.pyc
|
||||
share/python1.4/freebsd/FCNTL.pyc
|
||||
share/python1.4/freebsd/FCNTL.py
|
||||
share/python1.4/freebsd/IN.pyc
|
||||
share/python1.4/freebsd/IN.py
|
||||
share/python1.4/freebsd/SOCKET.pyc
|
||||
share/python1.4/freebsd/SOCKET.py
|
||||
share/python1.4/freebsd/TERMIOS.pyc
|
||||
share/python1.4/freebsd/TERMIOS.py
|
||||
share/python1.4/freebsd/regen
|
||||
share/python1.4/urllib.py
|
||||
share/python1.4/AST.py
|
||||
share/python1.4/BaseHTTPServer.py
|
||||
share/python1.4/Bastion.py
|
||||
share/python1.4/CGIHTTPServer.py
|
||||
share/python1.4/Complex.py
|
||||
share/python1.4/MimeWriter.py
|
||||
share/python1.4/Para.py
|
||||
share/python1.4/Queue.py
|
||||
share/python1.4/SimpleHTTPServer.py
|
||||
share/python1.4/SocketServer.py
|
||||
share/python1.4/StringIO.py
|
||||
share/python1.4/UserDict.py
|
||||
share/python1.4/UserList.py
|
||||
share/python1.4/addpack.py
|
||||
share/python1.4/aifc.py
|
||||
share/python1.4/anydbm.py
|
||||
share/python1.4/audiodev.py
|
||||
share/python1.4/base64.py
|
||||
share/python1.4/bdb.py
|
||||
share/python1.4/binhex.py
|
||||
share/python1.4/bisect.py
|
||||
share/python1.4/calendar.py
|
||||
share/python1.4/cgi.py
|
||||
share/python1.4/cmd.py
|
||||
share/python1.4/cmp.py
|
||||
share/python1.4/cmpcache.py
|
||||
share/python1.4/codehack.py
|
||||
share/python1.4/colorsys.py
|
||||
share/python1.4/commands.py
|
||||
share/python1.4/compileall.py
|
||||
share/python1.4/copy.py
|
||||
share/python1.4/dbhash.py
|
||||
share/python1.4/dircache.py
|
||||
share/python1.4/dircmp.py
|
||||
share/python1.4/dis.py
|
||||
share/python1.4/dospath.py
|
||||
share/python1.4/dumbdbm.py
|
||||
share/python1.4/dump.py
|
||||
share/python1.4/emacs.py
|
||||
share/python1.4/find.py
|
||||
share/python1.4/fmt.py
|
||||
share/python1.4/fnmatch.py
|
||||
share/python1.4/formatter.py
|
||||
share/python1.4/fpformat.py
|
||||
share/python1.4/ftplib.py
|
||||
share/python1.4/glob.py
|
||||
share/python1.4/getopt.py
|
||||
share/python1.4/gopherlib.py
|
||||
share/python1.4/grep.py
|
||||
share/python1.4/htmlentitydefs.py
|
||||
share/python1.4/htmllib.py
|
||||
share/python1.4/httplib.py
|
||||
share/python1.4/ihooks.py
|
||||
share/python1.4/imghdr.py
|
||||
share/python1.4/linecache.py
|
||||
share/python1.4/lockfile.py
|
||||
share/python1.4/macpath.py
|
||||
share/python1.4/macurl2path.py
|
||||
share/python1.4/mailbox.py
|
||||
share/python1.4/mailcap.py
|
||||
share/python1.4/mhlib.py
|
||||
share/python1.4/mimetools.py
|
||||
share/python1.4/mimify.py
|
||||
share/python1.4/multifile.py
|
||||
share/python1.4/mutex.py
|
||||
share/python1.4/newdir.py
|
||||
share/python1.4/ni.py
|
||||
share/python1.4/nntplib.py
|
||||
share/python1.4/ntpath.py
|
||||
share/python1.4/nturl2path.py
|
||||
share/python1.4/os.py
|
||||
share/python1.4/ospath.py
|
||||
share/python1.4/packmail.py
|
||||
share/python1.4/pdb.py
|
||||
share/python1.4/pickle.py
|
||||
share/python1.4/pipes.py
|
||||
share/python1.4/poly.py
|
||||
share/python1.4/popen2.py
|
||||
share/python1.4/posixfile.py
|
||||
share/python1.4/posixpath.py
|
||||
share/python1.4/profile.py
|
||||
share/python1.4/pstats.py
|
||||
share/python1.4/pty.py
|
||||
share/python1.4/py_compile.py
|
||||
share/python1.4/pyclbr.py
|
||||
share/python1.4/quopri.py
|
||||
share/python1.4/rand.py
|
||||
share/python1.4/random.py
|
||||
share/python1.4/regex_syntax.py
|
||||
share/python1.4/regexp.py
|
||||
share/python1.4/regsub.py
|
||||
share/python1.4/repr.py
|
||||
share/python1.4/rexec.py
|
||||
share/python1.4/rfc822.py
|
||||
share/python1.4/sched.py
|
||||
share/python1.4/sgmllib.py
|
||||
share/python1.4/shelve.py
|
||||
share/python1.4/shutil.py
|
||||
share/python1.4/site.py
|
||||
share/python1.4/sndhdr.py
|
||||
share/python1.4/stat.py
|
||||
share/python1.4/statcache.py
|
||||
share/python1.4/string.py
|
||||
share/python1.4/sunau.py
|
||||
share/python1.4/sunaudio.py
|
||||
share/python1.4/symbol.py
|
||||
share/python1.4/tb.py
|
||||
share/python1.4/tempfile.py
|
||||
share/python1.4/toaiff.py
|
||||
share/python1.4/token.py
|
||||
share/python1.4/tokenize.py
|
||||
share/python1.4/traceback.py
|
||||
share/python1.4/tty.py
|
||||
share/python1.4/types.py
|
||||
share/python1.4/tzparse.py
|
||||
share/python1.4/os.pyc
|
||||
share/python1.4/urlparse.py
|
||||
share/python1.4/util.py
|
||||
share/python1.4/uu.py
|
||||
share/python1.4/wave.py
|
||||
share/python1.4/whatsound.py
|
||||
share/python1.4/whichdb.py
|
||||
share/python1.4/whrandom.py
|
||||
share/python1.4/xdrlib.py
|
||||
share/python1.4/zmod.py
|
||||
share/python1.4/pdb.doc
|
||||
share/python1.4/profile.doc
|
||||
share/python1.4/posixpath.pyc
|
||||
share/python1.4/stat.pyc
|
||||
share/python1.4/UserDict.pyc
|
||||
share/python1.4/py_compile.pyc
|
||||
share/python1.4/getopt.pyc
|
||||
share/python1.4/string.pyc
|
||||
share/python1.4/AST.pyc
|
||||
share/python1.4/BaseHTTPServer.pyc
|
||||
share/python1.4/Bastion.pyc
|
||||
share/python1.4/CGIHTTPServer.pyc
|
||||
share/python1.4/Complex.pyc
|
||||
share/python1.4/MimeWriter.pyc
|
||||
share/python1.4/Para.pyc
|
||||
share/python1.4/Queue.pyc
|
||||
share/python1.4/SimpleHTTPServer.pyc
|
||||
share/python1.4/SocketServer.pyc
|
||||
share/python1.4/StringIO.pyc
|
||||
share/python1.4/UserList.pyc
|
||||
share/python1.4/addpack.pyc
|
||||
share/python1.4/aifc.pyc
|
||||
share/python1.4/anydbm.pyc
|
||||
share/python1.4/audiodev.pyc
|
||||
share/python1.4/base64.pyc
|
||||
share/python1.4/bdb.pyc
|
||||
share/python1.4/binhex.pyc
|
||||
share/python1.4/bisect.pyc
|
||||
share/python1.4/calendar.pyc
|
||||
share/python1.4/cgi.pyc
|
||||
share/python1.4/cmd.pyc
|
||||
share/python1.4/cmp.pyc
|
||||
share/python1.4/cmpcache.pyc
|
||||
share/python1.4/codehack.pyc
|
||||
share/python1.4/colorsys.pyc
|
||||
share/python1.4/commands.pyc
|
||||
share/python1.4/compileall.pyc
|
||||
share/python1.4/copy.pyc
|
||||
share/python1.4/dbhash.pyc
|
||||
share/python1.4/dircache.pyc
|
||||
share/python1.4/dircmp.pyc
|
||||
share/python1.4/dis.pyc
|
||||
share/python1.4/dospath.pyc
|
||||
share/python1.4/dumbdbm.pyc
|
||||
share/python1.4/dump.pyc
|
||||
share/python1.4/emacs.pyc
|
||||
share/python1.4/find.pyc
|
||||
share/python1.4/fmt.pyc
|
||||
share/python1.4/fnmatch.pyc
|
||||
share/python1.4/formatter.pyc
|
||||
share/python1.4/fpformat.pyc
|
||||
share/python1.4/ftplib.pyc
|
||||
share/python1.4/glob.pyc
|
||||
share/python1.4/gopherlib.pyc
|
||||
share/python1.4/grep.pyc
|
||||
share/python1.4/htmlentitydefs.pyc
|
||||
share/python1.4/htmllib.pyc
|
||||
share/python1.4/httplib.pyc
|
||||
share/python1.4/ihooks.pyc
|
||||
share/python1.4/imghdr.pyc
|
||||
share/python1.4/linecache.pyc
|
||||
share/python1.4/lockfile.pyc
|
||||
share/python1.4/macpath.pyc
|
||||
share/python1.4/macurl2path.pyc
|
||||
share/python1.4/mailbox.pyc
|
||||
share/python1.4/mailcap.pyc
|
||||
share/python1.4/mhlib.pyc
|
||||
share/python1.4/mimetools.pyc
|
||||
share/python1.4/mimify.pyc
|
||||
share/python1.4/multifile.pyc
|
||||
share/python1.4/mutex.pyc
|
||||
share/python1.4/newdir.pyc
|
||||
share/python1.4/ni.pyc
|
||||
share/python1.4/nntplib.pyc
|
||||
share/python1.4/ntpath.pyc
|
||||
share/python1.4/nturl2path.pyc
|
||||
share/python1.4/ospath.pyc
|
||||
share/python1.4/packmail.pyc
|
||||
share/python1.4/pdb.pyc
|
||||
share/python1.4/pickle.pyc
|
||||
share/python1.4/pipes.pyc
|
||||
share/python1.4/poly.pyc
|
||||
share/python1.4/popen2.pyc
|
||||
share/python1.4/posixfile.pyc
|
||||
share/python1.4/profile.pyc
|
||||
share/python1.4/pstats.pyc
|
||||
share/python1.4/pty.pyc
|
||||
share/python1.4/pyclbr.pyc
|
||||
share/python1.4/quopri.pyc
|
||||
share/python1.4/rand.pyc
|
||||
share/python1.4/random.pyc
|
||||
share/python1.4/regex_syntax.pyc
|
||||
share/python1.4/regexp.pyc
|
||||
share/python1.4/regsub.pyc
|
||||
share/python1.4/repr.pyc
|
||||
share/python1.4/rexec.pyc
|
||||
share/python1.4/rfc822.pyc
|
||||
share/python1.4/sched.pyc
|
||||
share/python1.4/sgmllib.pyc
|
||||
share/python1.4/shelve.pyc
|
||||
share/python1.4/shutil.pyc
|
||||
share/python1.4/site.pyc
|
||||
share/python1.4/sndhdr.pyc
|
||||
share/python1.4/statcache.pyc
|
||||
share/python1.4/sunau.pyc
|
||||
share/python1.4/sunaudio.pyc
|
||||
share/python1.4/symbol.pyc
|
||||
share/python1.4/tb.pyc
|
||||
share/python1.4/tempfile.pyc
|
||||
share/python1.4/toaiff.pyc
|
||||
share/python1.4/token.pyc
|
||||
share/python1.4/tokenize.pyc
|
||||
share/python1.4/traceback.pyc
|
||||
share/python1.4/tty.pyc
|
||||
share/python1.4/types.pyc
|
||||
share/python1.4/tzparse.pyc
|
||||
share/python1.4/urllib.pyc
|
||||
share/python1.4/urlparse.pyc
|
||||
share/python1.4/uu.pyc
|
||||
share/python1.4/util.pyc
|
||||
share/python1.4/wave.pyc
|
||||
share/python1.4/whatsound.pyc
|
||||
share/python1.4/whichdb.pyc
|
||||
share/python1.4/whrandom.pyc
|
||||
share/python1.4/xdrlib.pyc
|
||||
share/python1.4/zmod.pyc
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# Date created: 08 August 1995
|
||||
# Whom: jkh
|
||||
#
|
||||
# $Id: Makefile,v 1.12 1997/02/21 14:57:01 tg Exp $
|
||||
# $Id: Makefile,v 1.13 1997/04/20 13:19:11 wosch Exp $
|
||||
#
|
||||
|
||||
DISTNAME= python1.4
|
||||
|
@ -13,12 +13,10 @@ MASTER_SITES= ftp://www.python.org/pub/python/src/ \
|
|||
ftp://ftp.cwi.nl/pub/python/src/ \
|
||||
ftp://www.python.org/pub/python/contrib/Graphics/Tkinter/ \
|
||||
ftp://ftp.cwi.nl/pub/python/contrib/Graphics/Tkinter/
|
||||
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} PyTix-1.12.tar.gz
|
||||
|
||||
MAINTAINER= tg@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= tk41\\.1\\.:${PORTSDIR}/x11/tk41 \
|
||||
tix4175\\.1\\.:${PORTSDIR}/x11/tix
|
||||
LIB_DEPENDS= tk41\\.1\\.:${PORTSDIR}/x11/tk41
|
||||
|
||||
WRKSRC= ${WRKDIR}/Python-1.4
|
||||
HAS_CONFIGURE= yes
|
||||
|
@ -27,14 +25,6 @@ MAKE_FLAGS+= 'OPT=${CFLAGS}'
|
|||
INSTALL_TARGET= install
|
||||
MAN1= python.1
|
||||
|
||||
PYTIXSRC= ${WRKDIR}/PyTix-1.12
|
||||
|
||||
post-extract:
|
||||
@${ECHO_MSG} "===> Add PyTix extensions to Python core"
|
||||
${CP} ${PYTIXSRC}/Tkinter.py ${WRKSRC}/Lib/tkinter
|
||||
${CP} ${PYTIXSRC}/Tix.py ${WRKSRC}/Lib/tkinter
|
||||
${CP} ${PYTIXSRC}/_tkinter.c ${WRKSRC}/Modules
|
||||
|
||||
post-configure:
|
||||
${CP} ${FILESDIR}/Setup ${WRKSRC}/Modules
|
||||
|
||||
|
|
|
@ -71,7 +71,7 @@ SITEPATH=:$(DESTLIB)/NumPy
|
|||
TESTPATH=:$(DESTLIB)/test
|
||||
|
||||
# Path for machine- or system-dependent modules (and shared libraries)
|
||||
MACHDEPPATH=:$(DESTLIB)/$(MACHDEP)
|
||||
MACHDEPPATH=:$(DESTLIB)/$(MACHDEP):$(MACHDESTLIB)/sharedmodules
|
||||
|
||||
COREPYTHONPATH=.$(SITEPATH)$(DESTPATH)$(TESTPATH)$(MACHDEPPATH)$(STDWINPATH)$(TKPATH)
|
||||
PYTHONPATH=$(COREPYTHONPATH)
|
||||
|
@ -128,6 +128,7 @@ select selectmodule.c # select(2); not on ancient System V
|
|||
socket socketmodule.c # socket(2); not on ancient System V
|
||||
errno errnomodule.c # posix (UNIX) errno values
|
||||
|
||||
*shared*
|
||||
|
||||
# Some more UNIX dependent modules -- off by default, since these
|
||||
# are not supported by all UNIX systems:
|
||||
|
@ -249,7 +250,7 @@ TKPATH=:$(DESTLIB)/tkinter
|
|||
#_tkinter _tkinter.c -I/usr/openwin/include -I/usr/local/include -L/usr/openwin/lib -L/usr/local/lib -ltk4.1 -ltcl7.5 -lX11
|
||||
# For generic system (may have to add -I/-L options to find X11):
|
||||
#_tkinter _tkinter.c -I/usr/local/include -L/usr/local/lib -ltk4.1 -ltcl7.5 -lX11
|
||||
_tkinter _tkinter.c -I/usr/local/include -I/usr/X11R6/include -L/usr/local/lib -L/usr/X11R6/lib -ltix4175 -ltk41 -ltcl75 -lX11
|
||||
_tkinter _tkinter.c -I/usr/local/include -I/usr/X11R6/include -L/usr/local/lib -L/usr/X11R6/lib -ltk41 -ltcl75 -lX11
|
||||
|
||||
|
||||
# Lance Ellinghaus's modules:
|
||||
|
|
|
@ -1,11 +1,7 @@
|
|||
--- Makefile.in.orig Fri Oct 25 16:37:32 1996
|
||||
+++ Makefile.in Thu Feb 6 12:02:11 1997
|
||||
@@ -95,10 +95,10 @@
|
||||
|
||||
# Expanded directories
|
||||
BINDIR= $(exec_prefix)/bin
|
||||
-LIBDIR= $(exec_prefix)/lib
|
||||
+LIBDIR= $(exec_prefix)/share
|
||||
+++ Makefile.in Mon May 12 21:04:38 1997
|
||||
@@ -98,7 +98,7 @@
|
||||
LIBDIR= $(exec_prefix)/lib
|
||||
MANDIR= $(prefix)/man
|
||||
INCLUDEDIR= $(prefix)/include
|
||||
-SCRIPTDIR= $(prefix)/lib
|
||||
|
|
|
@ -1,403 +1,5 @@
|
|||
bin/python1.4
|
||||
bin/python
|
||||
@exec mkdir -p %D/share/python1.4/sharedmodules
|
||||
@unexec rmdir %D/share/python1.4/sharedmodules
|
||||
share/python1.4/AST.py
|
||||
share/python1.4/AST.pyc
|
||||
share/python1.4/BaseHTTPServer.py
|
||||
share/python1.4/BaseHTTPServer.pyc
|
||||
share/python1.4/Bastion.py
|
||||
share/python1.4/Bastion.pyc
|
||||
share/python1.4/CGIHTTPServer.py
|
||||
share/python1.4/CGIHTTPServer.pyc
|
||||
share/python1.4/Complex.py
|
||||
share/python1.4/Complex.pyc
|
||||
share/python1.4/MimeWriter.py
|
||||
share/python1.4/MimeWriter.pyc
|
||||
share/python1.4/Para.py
|
||||
share/python1.4/Para.pyc
|
||||
share/python1.4/Queue.py
|
||||
share/python1.4/Queue.pyc
|
||||
share/python1.4/SimpleHTTPServer.py
|
||||
share/python1.4/SimpleHTTPServer.pyc
|
||||
share/python1.4/SocketServer.py
|
||||
share/python1.4/SocketServer.pyc
|
||||
share/python1.4/StringIO.py
|
||||
share/python1.4/StringIO.pyc
|
||||
share/python1.4/UserDict.py
|
||||
share/python1.4/UserDict.pyc
|
||||
share/python1.4/UserList.py
|
||||
share/python1.4/UserList.pyc
|
||||
share/python1.4/addpack.py
|
||||
share/python1.4/addpack.pyc
|
||||
share/python1.4/aifc.py
|
||||
share/python1.4/aifc.pyc
|
||||
share/python1.4/anydbm.py
|
||||
share/python1.4/anydbm.pyc
|
||||
share/python1.4/audiodev.py
|
||||
share/python1.4/audiodev.pyc
|
||||
share/python1.4/base64.py
|
||||
share/python1.4/base64.pyc
|
||||
share/python1.4/bdb.py
|
||||
share/python1.4/bdb.pyc
|
||||
share/python1.4/binhex.py
|
||||
share/python1.4/binhex.pyc
|
||||
share/python1.4/bisect.py
|
||||
share/python1.4/bisect.pyc
|
||||
share/python1.4/calendar.py
|
||||
share/python1.4/calendar.pyc
|
||||
share/python1.4/cgi.py
|
||||
share/python1.4/cgi.pyc
|
||||
share/python1.4/cmd.py
|
||||
share/python1.4/cmd.pyc
|
||||
share/python1.4/cmp.py
|
||||
share/python1.4/cmp.pyc
|
||||
share/python1.4/cmpcache.py
|
||||
share/python1.4/cmpcache.pyc
|
||||
share/python1.4/codehack.py
|
||||
share/python1.4/codehack.pyc
|
||||
share/python1.4/colorsys.py
|
||||
share/python1.4/colorsys.pyc
|
||||
share/python1.4/commands.py
|
||||
share/python1.4/commands.pyc
|
||||
share/python1.4/compileall.py
|
||||
share/python1.4/compileall.pyc
|
||||
share/python1.4/copy.py
|
||||
share/python1.4/copy.pyc
|
||||
share/python1.4/dbhash.py
|
||||
share/python1.4/dbhash.pyc
|
||||
share/python1.4/dircache.py
|
||||
share/python1.4/dircache.pyc
|
||||
share/python1.4/dircmp.py
|
||||
share/python1.4/dircmp.pyc
|
||||
share/python1.4/dis.py
|
||||
share/python1.4/dis.pyc
|
||||
share/python1.4/dospath.py
|
||||
share/python1.4/dospath.pyc
|
||||
share/python1.4/dumbdbm.py
|
||||
share/python1.4/dumbdbm.pyc
|
||||
share/python1.4/dump.py
|
||||
share/python1.4/dump.pyc
|
||||
share/python1.4/emacs.py
|
||||
share/python1.4/emacs.pyc
|
||||
share/python1.4/find.py
|
||||
share/python1.4/find.pyc
|
||||
share/python1.4/fmt.py
|
||||
share/python1.4/fmt.pyc
|
||||
share/python1.4/fnmatch.py
|
||||
share/python1.4/fnmatch.pyc
|
||||
share/python1.4/formatter.py
|
||||
share/python1.4/formatter.pyc
|
||||
share/python1.4/fpformat.py
|
||||
share/python1.4/fpformat.pyc
|
||||
share/python1.4/ftplib.py
|
||||
share/python1.4/ftplib.pyc
|
||||
share/python1.4/getopt.py
|
||||
share/python1.4/getopt.pyc
|
||||
share/python1.4/glob.py
|
||||
share/python1.4/glob.pyc
|
||||
share/python1.4/gopherlib.py
|
||||
share/python1.4/gopherlib.pyc
|
||||
share/python1.4/grep.py
|
||||
share/python1.4/grep.pyc
|
||||
share/python1.4/htmlentitydefs.py
|
||||
share/python1.4/htmlentitydefs.pyc
|
||||
share/python1.4/htmllib.py
|
||||
share/python1.4/htmllib.pyc
|
||||
share/python1.4/httplib.py
|
||||
share/python1.4/httplib.pyc
|
||||
share/python1.4/ihooks.py
|
||||
share/python1.4/ihooks.pyc
|
||||
share/python1.4/imghdr.py
|
||||
share/python1.4/imghdr.pyc
|
||||
share/python1.4/linecache.py
|
||||
share/python1.4/linecache.pyc
|
||||
share/python1.4/lockfile.py
|
||||
share/python1.4/lockfile.pyc
|
||||
share/python1.4/macpath.py
|
||||
share/python1.4/macpath.pyc
|
||||
share/python1.4/macurl2path.py
|
||||
share/python1.4/macurl2path.pyc
|
||||
share/python1.4/mailbox.py
|
||||
share/python1.4/mailbox.pyc
|
||||
share/python1.4/mailcap.py
|
||||
share/python1.4/mailcap.pyc
|
||||
share/python1.4/mhlib.py
|
||||
share/python1.4/mhlib.pyc
|
||||
share/python1.4/mimetools.py
|
||||
share/python1.4/mimetools.pyc
|
||||
share/python1.4/mimify.py
|
||||
share/python1.4/mimify.pyc
|
||||
share/python1.4/multifile.py
|
||||
share/python1.4/multifile.pyc
|
||||
share/python1.4/mutex.py
|
||||
share/python1.4/mutex.pyc
|
||||
share/python1.4/newdir.py
|
||||
share/python1.4/newdir.pyc
|
||||
share/python1.4/ni.py
|
||||
share/python1.4/ni.pyc
|
||||
share/python1.4/nntplib.py
|
||||
share/python1.4/nntplib.pyc
|
||||
share/python1.4/ntpath.py
|
||||
share/python1.4/ntpath.pyc
|
||||
share/python1.4/nturl2path.py
|
||||
share/python1.4/nturl2path.pyc
|
||||
share/python1.4/os.py
|
||||
share/python1.4/os.pyc
|
||||
share/python1.4/ospath.py
|
||||
share/python1.4/ospath.pyc
|
||||
share/python1.4/packmail.py
|
||||
share/python1.4/packmail.pyc
|
||||
share/python1.4/pdb.doc
|
||||
share/python1.4/pdb.py
|
||||
share/python1.4/pdb.pyc
|
||||
share/python1.4/pickle.py
|
||||
share/python1.4/pickle.pyc
|
||||
share/python1.4/pipes.py
|
||||
share/python1.4/pipes.pyc
|
||||
share/python1.4/poly.py
|
||||
share/python1.4/poly.pyc
|
||||
share/python1.4/popen2.py
|
||||
share/python1.4/popen2.pyc
|
||||
share/python1.4/posixfile.py
|
||||
share/python1.4/posixfile.pyc
|
||||
share/python1.4/posixpath.py
|
||||
share/python1.4/posixpath.pyc
|
||||
share/python1.4/profile.doc
|
||||
share/python1.4/profile.py
|
||||
share/python1.4/profile.pyc
|
||||
share/python1.4/pstats.py
|
||||
share/python1.4/pstats.pyc
|
||||
share/python1.4/pty.py
|
||||
share/python1.4/pty.pyc
|
||||
share/python1.4/py_compile.py
|
||||
share/python1.4/py_compile.pyc
|
||||
share/python1.4/pyclbr.py
|
||||
share/python1.4/pyclbr.pyc
|
||||
share/python1.4/quopri.py
|
||||
share/python1.4/quopri.pyc
|
||||
share/python1.4/rand.py
|
||||
share/python1.4/rand.pyc
|
||||
share/python1.4/random.py
|
||||
share/python1.4/random.pyc
|
||||
share/python1.4/regex_syntax.py
|
||||
share/python1.4/regex_syntax.pyc
|
||||
share/python1.4/regexp.py
|
||||
share/python1.4/regexp.pyc
|
||||
share/python1.4/regsub.py
|
||||
share/python1.4/regsub.pyc
|
||||
share/python1.4/repr.py
|
||||
share/python1.4/repr.pyc
|
||||
share/python1.4/rexec.py
|
||||
share/python1.4/rexec.pyc
|
||||
share/python1.4/rfc822.py
|
||||
share/python1.4/rfc822.pyc
|
||||
share/python1.4/sched.py
|
||||
share/python1.4/sched.pyc
|
||||
share/python1.4/sgmllib.py
|
||||
share/python1.4/sgmllib.pyc
|
||||
share/python1.4/shelve.py
|
||||
share/python1.4/shelve.pyc
|
||||
share/python1.4/shutil.py
|
||||
share/python1.4/shutil.pyc
|
||||
share/python1.4/site.py
|
||||
share/python1.4/site.pyc
|
||||
share/python1.4/sndhdr.py
|
||||
share/python1.4/sndhdr.pyc
|
||||
share/python1.4/stat.py
|
||||
share/python1.4/stat.pyc
|
||||
share/python1.4/statcache.py
|
||||
share/python1.4/statcache.pyc
|
||||
share/python1.4/string.py
|
||||
share/python1.4/string.pyc
|
||||
share/python1.4/sunau.py
|
||||
share/python1.4/sunau.pyc
|
||||
share/python1.4/sunaudio.py
|
||||
share/python1.4/sunaudio.pyc
|
||||
share/python1.4/symbol.py
|
||||
share/python1.4/symbol.pyc
|
||||
share/python1.4/tb.py
|
||||
share/python1.4/tb.pyc
|
||||
share/python1.4/tempfile.py
|
||||
share/python1.4/tempfile.pyc
|
||||
share/python1.4/toaiff.py
|
||||
share/python1.4/toaiff.pyc
|
||||
share/python1.4/token.py
|
||||
share/python1.4/token.pyc
|
||||
share/python1.4/tokenize.py
|
||||
share/python1.4/tokenize.pyc
|
||||
share/python1.4/traceback.py
|
||||
share/python1.4/traceback.pyc
|
||||
share/python1.4/tty.py
|
||||
share/python1.4/tty.pyc
|
||||
share/python1.4/types.py
|
||||
share/python1.4/types.pyc
|
||||
share/python1.4/tzparse.py
|
||||
share/python1.4/tzparse.pyc
|
||||
share/python1.4/urllib.py
|
||||
share/python1.4/urllib.pyc
|
||||
share/python1.4/urlparse.py
|
||||
share/python1.4/urlparse.pyc
|
||||
share/python1.4/util.py
|
||||
share/python1.4/util.pyc
|
||||
share/python1.4/uu.py
|
||||
share/python1.4/uu.pyc
|
||||
share/python1.4/wave.py
|
||||
share/python1.4/wave.pyc
|
||||
share/python1.4/whatsound.py
|
||||
share/python1.4/whatsound.pyc
|
||||
share/python1.4/whichdb.py
|
||||
share/python1.4/whichdb.pyc
|
||||
share/python1.4/whrandom.py
|
||||
share/python1.4/whrandom.pyc
|
||||
share/python1.4/xdrlib.py
|
||||
share/python1.4/xdrlib.pyc
|
||||
share/python1.4/zmod.py
|
||||
share/python1.4/zmod.pyc
|
||||
share/python1.4/config/Makefile
|
||||
share/python1.4/config/Setup
|
||||
share/python1.4/config/config.c
|
||||
share/python1.4/config/config.c.in
|
||||
share/python1.4/config/config.h
|
||||
share/python1.4/config/frozenmain.c
|
||||
share/python1.4/config/getpath.c
|
||||
share/python1.4/config/libModules.a
|
||||
share/python1.4/config/libObjects.a
|
||||
share/python1.4/config/libParser.a
|
||||
share/python1.4/config/libPython.a
|
||||
share/python1.4/config/main.o
|
||||
share/python1.4/config/makesetup
|
||||
share/python1.4/freebsd2/FCNTL.py
|
||||
share/python1.4/freebsd2/FCNTL.pyc
|
||||
share/python1.4/freebsd2/regen
|
||||
share/python1.4/stdwin/Abstract.py
|
||||
share/python1.4/stdwin/Abstract.pyc
|
||||
share/python1.4/stdwin/BoxParent.py
|
||||
share/python1.4/stdwin/BoxParent.pyc
|
||||
share/python1.4/stdwin/Buttons.py
|
||||
share/python1.4/stdwin/Buttons.pyc
|
||||
share/python1.4/stdwin/CSplit.py
|
||||
share/python1.4/stdwin/CSplit.pyc
|
||||
share/python1.4/stdwin/DirList.py
|
||||
share/python1.4/stdwin/DirList.pyc
|
||||
share/python1.4/stdwin/FormSplit.py
|
||||
share/python1.4/stdwin/FormSplit.pyc
|
||||
share/python1.4/stdwin/HVSplit.py
|
||||
share/python1.4/stdwin/HVSplit.pyc
|
||||
share/python1.4/stdwin/Histogram.py
|
||||
share/python1.4/stdwin/Histogram.pyc
|
||||
share/python1.4/stdwin/Sliders.py
|
||||
share/python1.4/stdwin/Sliders.pyc
|
||||
share/python1.4/stdwin/Soundogram.py
|
||||
share/python1.4/stdwin/Soundogram.pyc
|
||||
share/python1.4/stdwin/Split.py
|
||||
share/python1.4/stdwin/Split.pyc
|
||||
share/python1.4/stdwin/StripChart.py
|
||||
share/python1.4/stdwin/StripChart.pyc
|
||||
share/python1.4/stdwin/TextEdit.py
|
||||
share/python1.4/stdwin/TextEdit.pyc
|
||||
share/python1.4/stdwin/TransParent.py
|
||||
share/python1.4/stdwin/TransParent.pyc
|
||||
share/python1.4/stdwin/VUMeter.py
|
||||
share/python1.4/stdwin/VUMeter.pyc
|
||||
share/python1.4/stdwin/WindowParent.py
|
||||
share/python1.4/stdwin/WindowParent.pyc
|
||||
share/python1.4/stdwin/WindowSched.py
|
||||
share/python1.4/stdwin/WindowSched.pyc
|
||||
share/python1.4/stdwin/anywin.py
|
||||
share/python1.4/stdwin/anywin.pyc
|
||||
share/python1.4/stdwin/basewin.py
|
||||
share/python1.4/stdwin/basewin.pyc
|
||||
share/python1.4/stdwin/dirwin.py
|
||||
share/python1.4/stdwin/dirwin.pyc
|
||||
share/python1.4/stdwin/filewin.py
|
||||
share/python1.4/stdwin/filewin.pyc
|
||||
share/python1.4/stdwin/formatter.py
|
||||
share/python1.4/stdwin/formatter.pyc
|
||||
share/python1.4/stdwin/gwin.py
|
||||
share/python1.4/stdwin/gwin.pyc
|
||||
share/python1.4/stdwin/listwin.py
|
||||
share/python1.4/stdwin/listwin.pyc
|
||||
share/python1.4/stdwin/mainloop.py
|
||||
share/python1.4/stdwin/mainloop.pyc
|
||||
share/python1.4/stdwin/rect.py
|
||||
share/python1.4/stdwin/rect.pyc
|
||||
share/python1.4/stdwin/srcwin.py
|
||||
share/python1.4/stdwin/srcwin.pyc
|
||||
share/python1.4/stdwin/stdwinevents.py
|
||||
share/python1.4/stdwin/stdwinevents.pyc
|
||||
share/python1.4/stdwin/stdwinq.py
|
||||
share/python1.4/stdwin/stdwinq.pyc
|
||||
share/python1.4/stdwin/tablewin.py
|
||||
share/python1.4/stdwin/tablewin.pyc
|
||||
share/python1.4/stdwin/textwin.py
|
||||
share/python1.4/stdwin/textwin.pyc
|
||||
share/python1.4/stdwin/wdb.py
|
||||
share/python1.4/stdwin/wdb.pyc
|
||||
share/python1.4/stdwin/wdbframewin.py
|
||||
share/python1.4/stdwin/wdbframewin.pyc
|
||||
share/python1.4/stdwin/wdbsrcwin.py
|
||||
share/python1.4/stdwin/wdbsrcwin.pyc
|
||||
share/python1.4/test/autotest.py
|
||||
share/python1.4/test/autotest.pyc
|
||||
share/python1.4/test/test.rawimg
|
||||
share/python1.4/test/test.rawimg.rev
|
||||
share/python1.4/test/test.rgb
|
||||
share/python1.4/test/test_audioop.py
|
||||
share/python1.4/test/test_audioop.pyc
|
||||
share/python1.4/test/test_b1.py
|
||||
share/python1.4/test/test_b1.pyc
|
||||
share/python1.4/test/test_b2.py
|
||||
share/python1.4/test/test_b2.pyc
|
||||
share/python1.4/test/test_builtin.py
|
||||
share/python1.4/test/test_builtin.pyc
|
||||
share/python1.4/test/test_exceptions.py
|
||||
share/python1.4/test/test_exceptions.pyc
|
||||
share/python1.4/test/test_grammar.py
|
||||
share/python1.4/test/test_grammar.pyc
|
||||
share/python1.4/test/test_math.py
|
||||
share/python1.4/test/test_math.pyc
|
||||
share/python1.4/test/test_md5.py
|
||||
share/python1.4/test/test_md5.pyc
|
||||
share/python1.4/test/test_opcodes.py
|
||||
share/python1.4/test/test_opcodes.pyc
|
||||
share/python1.4/test/test_operations.py
|
||||
share/python1.4/test/test_operations.pyc
|
||||
share/python1.4/test/test_pow.py
|
||||
share/python1.4/test/test_pow.pyc
|
||||
share/python1.4/test/test_rgbimg.py
|
||||
share/python1.4/test/test_rgbimg.pyc
|
||||
share/python1.4/test/test_select.py
|
||||
share/python1.4/test/test_select.pyc
|
||||
share/python1.4/test/test_signal.py
|
||||
share/python1.4/test/test_signal.pyc
|
||||
share/python1.4/test/test_strop.py
|
||||
share/python1.4/test/test_strop.pyc
|
||||
share/python1.4/test/test_support.py
|
||||
share/python1.4/test/test_support.pyc
|
||||
share/python1.4/test/test_thread.py
|
||||
share/python1.4/test/test_thread.pyc
|
||||
share/python1.4/test/test_types.py
|
||||
share/python1.4/test/test_types.pyc
|
||||
share/python1.4/test/testall.out
|
||||
share/python1.4/test/testall.py
|
||||
share/python1.4/test/testall.pyc
|
||||
share/python1.4/tkinter/Canvas.py
|
||||
share/python1.4/tkinter/Canvas.pyc
|
||||
share/python1.4/tkinter/Dialog.py
|
||||
share/python1.4/tkinter/Dialog.pyc
|
||||
share/python1.4/tkinter/FileDialog.py
|
||||
share/python1.4/tkinter/FileDialog.pyc
|
||||
share/python1.4/tkinter/ScrolledText.py
|
||||
share/python1.4/tkinter/ScrolledText.pyc
|
||||
share/python1.4/tkinter/SimpleDialog.py
|
||||
share/python1.4/tkinter/SimpleDialog.pyc
|
||||
share/python1.4/tkinter/Tix.py
|
||||
share/python1.4/tkinter/Tix.pyc
|
||||
share/python1.4/tkinter/Tkconstants.py
|
||||
share/python1.4/tkinter/Tkconstants.pyc
|
||||
share/python1.4/tkinter/Tkinter.py
|
||||
share/python1.4/tkinter/Tkinter.pyc
|
||||
include/python1.4/Python.h
|
||||
include/python1.4/abstract.h
|
||||
include/python1.4/accessobject.h
|
||||
|
@ -459,4 +61,417 @@ include/python1.4/thread.h
|
|||
include/python1.4/token.h
|
||||
include/python1.4/traceback.h
|
||||
include/python1.4/tupleobject.h
|
||||
lib/python1.4/config/libParser.a
|
||||
lib/python1.4/config/libObjects.a
|
||||
lib/python1.4/config/libPython.a
|
||||
lib/python1.4/config/libModules.a
|
||||
lib/python1.4/config/config.c
|
||||
lib/python1.4/config/getpath.c
|
||||
lib/python1.4/config/config.c.in
|
||||
lib/python1.4/config/Makefile
|
||||
lib/python1.4/config/Setup
|
||||
lib/python1.4/config/makesetup
|
||||
lib/python1.4/config/config.h
|
||||
lib/python1.4/config/frozenmain.c
|
||||
lib/python1.4/config/main.o
|
||||
lib/python1.4/sharedmodules/dbmmodule.so
|
||||
lib/python1.4/sharedmodules/nismodule.so
|
||||
lib/python1.4/sharedmodules/termios.so
|
||||
lib/python1.4/sharedmodules/audioop.so
|
||||
lib/python1.4/sharedmodules/imageop.so
|
||||
lib/python1.4/sharedmodules/rgbimgmodule.so
|
||||
lib/python1.4/sharedmodules/md5module.so
|
||||
lib/python1.4/sharedmodules/_tkinter.so
|
||||
lib/python1.4/sharedmodules/rotormodule.so
|
||||
lib/python1.4/sharedmodules/syslogmodule.so
|
||||
lib/python1.4/sharedmodules/cursesmodule.so
|
||||
lib/python1.4/sharedmodules/bsddbmodule.so
|
||||
lib/python1.4/sharedmodules/binascii.so
|
||||
man/man1/python.1.gz
|
||||
share/python1.4/stdwin/Abstract.pyc
|
||||
share/python1.4/stdwin/Abstract.py
|
||||
share/python1.4/stdwin/BoxParent.py
|
||||
share/python1.4/stdwin/Buttons.py
|
||||
share/python1.4/stdwin/CSplit.py
|
||||
share/python1.4/stdwin/DirList.py
|
||||
share/python1.4/stdwin/FormSplit.py
|
||||
share/python1.4/stdwin/HVSplit.py
|
||||
share/python1.4/stdwin/Histogram.py
|
||||
share/python1.4/stdwin/Sliders.py
|
||||
share/python1.4/stdwin/Soundogram.py
|
||||
share/python1.4/stdwin/Split.py
|
||||
share/python1.4/stdwin/StripChart.py
|
||||
share/python1.4/stdwin/TextEdit.py
|
||||
share/python1.4/stdwin/TransParent.py
|
||||
share/python1.4/stdwin/VUMeter.py
|
||||
share/python1.4/stdwin/WindowParent.py
|
||||
share/python1.4/stdwin/WindowSched.py
|
||||
share/python1.4/stdwin/anywin.py
|
||||
share/python1.4/stdwin/basewin.py
|
||||
share/python1.4/stdwin/dirwin.py
|
||||
share/python1.4/stdwin/filewin.py
|
||||
share/python1.4/stdwin/formatter.py
|
||||
share/python1.4/stdwin/gwin.py
|
||||
share/python1.4/stdwin/listwin.py
|
||||
share/python1.4/stdwin/mainloop.py
|
||||
share/python1.4/stdwin/rect.py
|
||||
share/python1.4/stdwin/srcwin.py
|
||||
share/python1.4/stdwin/stdwinevents.py
|
||||
share/python1.4/stdwin/stdwinq.py
|
||||
share/python1.4/stdwin/tablewin.py
|
||||
share/python1.4/stdwin/textwin.py
|
||||
share/python1.4/stdwin/wdb.py
|
||||
share/python1.4/stdwin/wdbframewin.py
|
||||
share/python1.4/stdwin/wdbsrcwin.py
|
||||
share/python1.4/stdwin/BoxParent.pyc
|
||||
share/python1.4/stdwin/Buttons.pyc
|
||||
share/python1.4/stdwin/CSplit.pyc
|
||||
share/python1.4/stdwin/DirList.pyc
|
||||
share/python1.4/stdwin/FormSplit.pyc
|
||||
share/python1.4/stdwin/HVSplit.pyc
|
||||
share/python1.4/stdwin/Histogram.pyc
|
||||
share/python1.4/stdwin/Sliders.pyc
|
||||
share/python1.4/stdwin/Soundogram.pyc
|
||||
share/python1.4/stdwin/Split.pyc
|
||||
share/python1.4/stdwin/StripChart.pyc
|
||||
share/python1.4/stdwin/TextEdit.pyc
|
||||
share/python1.4/stdwin/TransParent.pyc
|
||||
share/python1.4/stdwin/VUMeter.pyc
|
||||
share/python1.4/stdwin/WindowParent.pyc
|
||||
share/python1.4/stdwin/WindowSched.pyc
|
||||
share/python1.4/stdwin/anywin.pyc
|
||||
share/python1.4/stdwin/basewin.pyc
|
||||
share/python1.4/stdwin/dirwin.pyc
|
||||
share/python1.4/stdwin/filewin.pyc
|
||||
share/python1.4/stdwin/formatter.pyc
|
||||
share/python1.4/stdwin/gwin.pyc
|
||||
share/python1.4/stdwin/listwin.pyc
|
||||
share/python1.4/stdwin/mainloop.pyc
|
||||
share/python1.4/stdwin/rect.pyc
|
||||
share/python1.4/stdwin/srcwin.pyc
|
||||
share/python1.4/stdwin/stdwinevents.pyc
|
||||
share/python1.4/stdwin/stdwinq.pyc
|
||||
share/python1.4/stdwin/tablewin.pyc
|
||||
share/python1.4/stdwin/textwin.pyc
|
||||
share/python1.4/stdwin/wdb.pyc
|
||||
share/python1.4/stdwin/wdbframewin.pyc
|
||||
share/python1.4/stdwin/wdbsrcwin.pyc
|
||||
share/python1.4/tkinter/Canvas.pyc
|
||||
share/python1.4/tkinter/Canvas.py
|
||||
share/python1.4/tkinter/Dialog.py
|
||||
share/python1.4/tkinter/FileDialog.py
|
||||
share/python1.4/tkinter/ScrolledText.py
|
||||
share/python1.4/tkinter/SimpleDialog.py
|
||||
share/python1.4/tkinter/Tkconstants.py
|
||||
share/python1.4/tkinter/Tkinter.py
|
||||
share/python1.4/tkinter/Dialog.pyc
|
||||
share/python1.4/tkinter/FileDialog.pyc
|
||||
share/python1.4/tkinter/ScrolledText.pyc
|
||||
share/python1.4/tkinter/SimpleDialog.pyc
|
||||
share/python1.4/tkinter/Tkconstants.pyc
|
||||
share/python1.4/tkinter/Tkinter.pyc
|
||||
share/python1.4/test/autotest.pyc
|
||||
share/python1.4/test/autotest.py
|
||||
share/python1.4/test/test.rawimg
|
||||
share/python1.4/test/test.rawimg.rev
|
||||
share/python1.4/test/test.rgb
|
||||
share/python1.4/test/test_audioop.py
|
||||
share/python1.4/test/test_b1.py
|
||||
share/python1.4/test/test_b2.py
|
||||
share/python1.4/test/test_builtin.py
|
||||
share/python1.4/test/test_exceptions.py
|
||||
share/python1.4/test/test_grammar.py
|
||||
share/python1.4/test/test_math.py
|
||||
share/python1.4/test/test_md5.py
|
||||
share/python1.4/test/test_opcodes.py
|
||||
share/python1.4/test/test_operations.py
|
||||
share/python1.4/test/test_pow.py
|
||||
share/python1.4/test/test_rgbimg.py
|
||||
share/python1.4/test/test_select.py
|
||||
share/python1.4/test/test_signal.py
|
||||
share/python1.4/test/test_strop.py
|
||||
share/python1.4/test/test_support.py
|
||||
share/python1.4/test/test_thread.py
|
||||
share/python1.4/test/test_types.py
|
||||
share/python1.4/test/testall.out
|
||||
share/python1.4/test/testall.py
|
||||
share/python1.4/test/test_audioop.pyc
|
||||
share/python1.4/test/test_b1.pyc
|
||||
share/python1.4/test/test_b2.pyc
|
||||
share/python1.4/test/test_builtin.pyc
|
||||
share/python1.4/test/test_exceptions.pyc
|
||||
share/python1.4/test/test_grammar.pyc
|
||||
share/python1.4/test/test_math.pyc
|
||||
share/python1.4/test/test_md5.pyc
|
||||
share/python1.4/test/test_opcodes.pyc
|
||||
share/python1.4/test/test_operations.pyc
|
||||
share/python1.4/test/test_pow.pyc
|
||||
share/python1.4/test/test_rgbimg.pyc
|
||||
share/python1.4/test/test_select.pyc
|
||||
share/python1.4/test/test_signal.pyc
|
||||
share/python1.4/test/test_strop.pyc
|
||||
share/python1.4/test/test_support.pyc
|
||||
share/python1.4/test/testall.pyc
|
||||
share/python1.4/test/test_thread.pyc
|
||||
share/python1.4/test/test_types.pyc
|
||||
share/python1.4/freebsd/FCNTL.pyc
|
||||
share/python1.4/freebsd/FCNTL.py
|
||||
share/python1.4/freebsd/IN.pyc
|
||||
share/python1.4/freebsd/IN.py
|
||||
share/python1.4/freebsd/SOCKET.pyc
|
||||
share/python1.4/freebsd/SOCKET.py
|
||||
share/python1.4/freebsd/TERMIOS.pyc
|
||||
share/python1.4/freebsd/TERMIOS.py
|
||||
share/python1.4/freebsd/regen
|
||||
share/python1.4/urllib.py
|
||||
share/python1.4/AST.py
|
||||
share/python1.4/BaseHTTPServer.py
|
||||
share/python1.4/Bastion.py
|
||||
share/python1.4/CGIHTTPServer.py
|
||||
share/python1.4/Complex.py
|
||||
share/python1.4/MimeWriter.py
|
||||
share/python1.4/Para.py
|
||||
share/python1.4/Queue.py
|
||||
share/python1.4/SimpleHTTPServer.py
|
||||
share/python1.4/SocketServer.py
|
||||
share/python1.4/StringIO.py
|
||||
share/python1.4/UserDict.py
|
||||
share/python1.4/UserList.py
|
||||
share/python1.4/addpack.py
|
||||
share/python1.4/aifc.py
|
||||
share/python1.4/anydbm.py
|
||||
share/python1.4/audiodev.py
|
||||
share/python1.4/base64.py
|
||||
share/python1.4/bdb.py
|
||||
share/python1.4/binhex.py
|
||||
share/python1.4/bisect.py
|
||||
share/python1.4/calendar.py
|
||||
share/python1.4/cgi.py
|
||||
share/python1.4/cmd.py
|
||||
share/python1.4/cmp.py
|
||||
share/python1.4/cmpcache.py
|
||||
share/python1.4/codehack.py
|
||||
share/python1.4/colorsys.py
|
||||
share/python1.4/commands.py
|
||||
share/python1.4/compileall.py
|
||||
share/python1.4/copy.py
|
||||
share/python1.4/dbhash.py
|
||||
share/python1.4/dircache.py
|
||||
share/python1.4/dircmp.py
|
||||
share/python1.4/dis.py
|
||||
share/python1.4/dospath.py
|
||||
share/python1.4/dumbdbm.py
|
||||
share/python1.4/dump.py
|
||||
share/python1.4/emacs.py
|
||||
share/python1.4/find.py
|
||||
share/python1.4/fmt.py
|
||||
share/python1.4/fnmatch.py
|
||||
share/python1.4/formatter.py
|
||||
share/python1.4/fpformat.py
|
||||
share/python1.4/ftplib.py
|
||||
share/python1.4/glob.py
|
||||
share/python1.4/getopt.py
|
||||
share/python1.4/gopherlib.py
|
||||
share/python1.4/grep.py
|
||||
share/python1.4/htmlentitydefs.py
|
||||
share/python1.4/htmllib.py
|
||||
share/python1.4/httplib.py
|
||||
share/python1.4/ihooks.py
|
||||
share/python1.4/imghdr.py
|
||||
share/python1.4/linecache.py
|
||||
share/python1.4/lockfile.py
|
||||
share/python1.4/macpath.py
|
||||
share/python1.4/macurl2path.py
|
||||
share/python1.4/mailbox.py
|
||||
share/python1.4/mailcap.py
|
||||
share/python1.4/mhlib.py
|
||||
share/python1.4/mimetools.py
|
||||
share/python1.4/mimify.py
|
||||
share/python1.4/multifile.py
|
||||
share/python1.4/mutex.py
|
||||
share/python1.4/newdir.py
|
||||
share/python1.4/ni.py
|
||||
share/python1.4/nntplib.py
|
||||
share/python1.4/ntpath.py
|
||||
share/python1.4/nturl2path.py
|
||||
share/python1.4/os.py
|
||||
share/python1.4/ospath.py
|
||||
share/python1.4/packmail.py
|
||||
share/python1.4/pdb.py
|
||||
share/python1.4/pickle.py
|
||||
share/python1.4/pipes.py
|
||||
share/python1.4/poly.py
|
||||
share/python1.4/popen2.py
|
||||
share/python1.4/posixfile.py
|
||||
share/python1.4/posixpath.py
|
||||
share/python1.4/profile.py
|
||||
share/python1.4/pstats.py
|
||||
share/python1.4/pty.py
|
||||
share/python1.4/py_compile.py
|
||||
share/python1.4/pyclbr.py
|
||||
share/python1.4/quopri.py
|
||||
share/python1.4/rand.py
|
||||
share/python1.4/random.py
|
||||
share/python1.4/regex_syntax.py
|
||||
share/python1.4/regexp.py
|
||||
share/python1.4/regsub.py
|
||||
share/python1.4/repr.py
|
||||
share/python1.4/rexec.py
|
||||
share/python1.4/rfc822.py
|
||||
share/python1.4/sched.py
|
||||
share/python1.4/sgmllib.py
|
||||
share/python1.4/shelve.py
|
||||
share/python1.4/shutil.py
|
||||
share/python1.4/site.py
|
||||
share/python1.4/sndhdr.py
|
||||
share/python1.4/stat.py
|
||||
share/python1.4/statcache.py
|
||||
share/python1.4/string.py
|
||||
share/python1.4/sunau.py
|
||||
share/python1.4/sunaudio.py
|
||||
share/python1.4/symbol.py
|
||||
share/python1.4/tb.py
|
||||
share/python1.4/tempfile.py
|
||||
share/python1.4/toaiff.py
|
||||
share/python1.4/token.py
|
||||
share/python1.4/tokenize.py
|
||||
share/python1.4/traceback.py
|
||||
share/python1.4/tty.py
|
||||
share/python1.4/types.py
|
||||
share/python1.4/tzparse.py
|
||||
share/python1.4/os.pyc
|
||||
share/python1.4/urlparse.py
|
||||
share/python1.4/util.py
|
||||
share/python1.4/uu.py
|
||||
share/python1.4/wave.py
|
||||
share/python1.4/whatsound.py
|
||||
share/python1.4/whichdb.py
|
||||
share/python1.4/whrandom.py
|
||||
share/python1.4/xdrlib.py
|
||||
share/python1.4/zmod.py
|
||||
share/python1.4/pdb.doc
|
||||
share/python1.4/profile.doc
|
||||
share/python1.4/posixpath.pyc
|
||||
share/python1.4/stat.pyc
|
||||
share/python1.4/UserDict.pyc
|
||||
share/python1.4/py_compile.pyc
|
||||
share/python1.4/getopt.pyc
|
||||
share/python1.4/string.pyc
|
||||
share/python1.4/AST.pyc
|
||||
share/python1.4/BaseHTTPServer.pyc
|
||||
share/python1.4/Bastion.pyc
|
||||
share/python1.4/CGIHTTPServer.pyc
|
||||
share/python1.4/Complex.pyc
|
||||
share/python1.4/MimeWriter.pyc
|
||||
share/python1.4/Para.pyc
|
||||
share/python1.4/Queue.pyc
|
||||
share/python1.4/SimpleHTTPServer.pyc
|
||||
share/python1.4/SocketServer.pyc
|
||||
share/python1.4/StringIO.pyc
|
||||
share/python1.4/UserList.pyc
|
||||
share/python1.4/addpack.pyc
|
||||
share/python1.4/aifc.pyc
|
||||
share/python1.4/anydbm.pyc
|
||||
share/python1.4/audiodev.pyc
|
||||
share/python1.4/base64.pyc
|
||||
share/python1.4/bdb.pyc
|
||||
share/python1.4/binhex.pyc
|
||||
share/python1.4/bisect.pyc
|
||||
share/python1.4/calendar.pyc
|
||||
share/python1.4/cgi.pyc
|
||||
share/python1.4/cmd.pyc
|
||||
share/python1.4/cmp.pyc
|
||||
share/python1.4/cmpcache.pyc
|
||||
share/python1.4/codehack.pyc
|
||||
share/python1.4/colorsys.pyc
|
||||
share/python1.4/commands.pyc
|
||||
share/python1.4/compileall.pyc
|
||||
share/python1.4/copy.pyc
|
||||
share/python1.4/dbhash.pyc
|
||||
share/python1.4/dircache.pyc
|
||||
share/python1.4/dircmp.pyc
|
||||
share/python1.4/dis.pyc
|
||||
share/python1.4/dospath.pyc
|
||||
share/python1.4/dumbdbm.pyc
|
||||
share/python1.4/dump.pyc
|
||||
share/python1.4/emacs.pyc
|
||||
share/python1.4/find.pyc
|
||||
share/python1.4/fmt.pyc
|
||||
share/python1.4/fnmatch.pyc
|
||||
share/python1.4/formatter.pyc
|
||||
share/python1.4/fpformat.pyc
|
||||
share/python1.4/ftplib.pyc
|
||||
share/python1.4/glob.pyc
|
||||
share/python1.4/gopherlib.pyc
|
||||
share/python1.4/grep.pyc
|
||||
share/python1.4/htmlentitydefs.pyc
|
||||
share/python1.4/htmllib.pyc
|
||||
share/python1.4/httplib.pyc
|
||||
share/python1.4/ihooks.pyc
|
||||
share/python1.4/imghdr.pyc
|
||||
share/python1.4/linecache.pyc
|
||||
share/python1.4/lockfile.pyc
|
||||
share/python1.4/macpath.pyc
|
||||
share/python1.4/macurl2path.pyc
|
||||
share/python1.4/mailbox.pyc
|
||||
share/python1.4/mailcap.pyc
|
||||
share/python1.4/mhlib.pyc
|
||||
share/python1.4/mimetools.pyc
|
||||
share/python1.4/mimify.pyc
|
||||
share/python1.4/multifile.pyc
|
||||
share/python1.4/mutex.pyc
|
||||
share/python1.4/newdir.pyc
|
||||
share/python1.4/ni.pyc
|
||||
share/python1.4/nntplib.pyc
|
||||
share/python1.4/ntpath.pyc
|
||||
share/python1.4/nturl2path.pyc
|
||||
share/python1.4/ospath.pyc
|
||||
share/python1.4/packmail.pyc
|
||||
share/python1.4/pdb.pyc
|
||||
share/python1.4/pickle.pyc
|
||||
share/python1.4/pipes.pyc
|
||||
share/python1.4/poly.pyc
|
||||
share/python1.4/popen2.pyc
|
||||
share/python1.4/posixfile.pyc
|
||||
share/python1.4/profile.pyc
|
||||
share/python1.4/pstats.pyc
|
||||
share/python1.4/pty.pyc
|
||||
share/python1.4/pyclbr.pyc
|
||||
share/python1.4/quopri.pyc
|
||||
share/python1.4/rand.pyc
|
||||
share/python1.4/random.pyc
|
||||
share/python1.4/regex_syntax.pyc
|
||||
share/python1.4/regexp.pyc
|
||||
share/python1.4/regsub.pyc
|
||||
share/python1.4/repr.pyc
|
||||
share/python1.4/rexec.pyc
|
||||
share/python1.4/rfc822.pyc
|
||||
share/python1.4/sched.pyc
|
||||
share/python1.4/sgmllib.pyc
|
||||
share/python1.4/shelve.pyc
|
||||
share/python1.4/shutil.pyc
|
||||
share/python1.4/site.pyc
|
||||
share/python1.4/sndhdr.pyc
|
||||
share/python1.4/statcache.pyc
|
||||
share/python1.4/sunau.pyc
|
||||
share/python1.4/sunaudio.pyc
|
||||
share/python1.4/symbol.pyc
|
||||
share/python1.4/tb.pyc
|
||||
share/python1.4/tempfile.pyc
|
||||
share/python1.4/toaiff.pyc
|
||||
share/python1.4/token.pyc
|
||||
share/python1.4/tokenize.pyc
|
||||
share/python1.4/traceback.pyc
|
||||
share/python1.4/tty.pyc
|
||||
share/python1.4/types.pyc
|
||||
share/python1.4/tzparse.pyc
|
||||
share/python1.4/urllib.pyc
|
||||
share/python1.4/urlparse.pyc
|
||||
share/python1.4/uu.pyc
|
||||
share/python1.4/util.pyc
|
||||
share/python1.4/wave.pyc
|
||||
share/python1.4/whatsound.pyc
|
||||
share/python1.4/whichdb.pyc
|
||||
share/python1.4/whrandom.pyc
|
||||
share/python1.4/xdrlib.pyc
|
||||
share/python1.4/zmod.pyc
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# Date created: 08 August 1995
|
||||
# Whom: jkh
|
||||
#
|
||||
# $Id: Makefile,v 1.12 1997/02/21 14:57:01 tg Exp $
|
||||
# $Id: Makefile,v 1.13 1997/04/20 13:19:11 wosch Exp $
|
||||
#
|
||||
|
||||
DISTNAME= python1.4
|
||||
|
@ -13,12 +13,10 @@ MASTER_SITES= ftp://www.python.org/pub/python/src/ \
|
|||
ftp://ftp.cwi.nl/pub/python/src/ \
|
||||
ftp://www.python.org/pub/python/contrib/Graphics/Tkinter/ \
|
||||
ftp://ftp.cwi.nl/pub/python/contrib/Graphics/Tkinter/
|
||||
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} PyTix-1.12.tar.gz
|
||||
|
||||
MAINTAINER= tg@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= tk41\\.1\\.:${PORTSDIR}/x11/tk41 \
|
||||
tix4175\\.1\\.:${PORTSDIR}/x11/tix
|
||||
LIB_DEPENDS= tk41\\.1\\.:${PORTSDIR}/x11/tk41
|
||||
|
||||
WRKSRC= ${WRKDIR}/Python-1.4
|
||||
HAS_CONFIGURE= yes
|
||||
|
@ -27,14 +25,6 @@ MAKE_FLAGS+= 'OPT=${CFLAGS}'
|
|||
INSTALL_TARGET= install
|
||||
MAN1= python.1
|
||||
|
||||
PYTIXSRC= ${WRKDIR}/PyTix-1.12
|
||||
|
||||
post-extract:
|
||||
@${ECHO_MSG} "===> Add PyTix extensions to Python core"
|
||||
${CP} ${PYTIXSRC}/Tkinter.py ${WRKSRC}/Lib/tkinter
|
||||
${CP} ${PYTIXSRC}/Tix.py ${WRKSRC}/Lib/tkinter
|
||||
${CP} ${PYTIXSRC}/_tkinter.c ${WRKSRC}/Modules
|
||||
|
||||
post-configure:
|
||||
${CP} ${FILESDIR}/Setup ${WRKSRC}/Modules
|
||||
|
||||
|
|
|
@ -71,7 +71,7 @@ SITEPATH=:$(DESTLIB)/NumPy
|
|||
TESTPATH=:$(DESTLIB)/test
|
||||
|
||||
# Path for machine- or system-dependent modules (and shared libraries)
|
||||
MACHDEPPATH=:$(DESTLIB)/$(MACHDEP)
|
||||
MACHDEPPATH=:$(DESTLIB)/$(MACHDEP):$(MACHDESTLIB)/sharedmodules
|
||||
|
||||
COREPYTHONPATH=.$(SITEPATH)$(DESTPATH)$(TESTPATH)$(MACHDEPPATH)$(STDWINPATH)$(TKPATH)
|
||||
PYTHONPATH=$(COREPYTHONPATH)
|
||||
|
@ -128,6 +128,7 @@ select selectmodule.c # select(2); not on ancient System V
|
|||
socket socketmodule.c # socket(2); not on ancient System V
|
||||
errno errnomodule.c # posix (UNIX) errno values
|
||||
|
||||
*shared*
|
||||
|
||||
# Some more UNIX dependent modules -- off by default, since these
|
||||
# are not supported by all UNIX systems:
|
||||
|
@ -249,7 +250,7 @@ TKPATH=:$(DESTLIB)/tkinter
|
|||
#_tkinter _tkinter.c -I/usr/openwin/include -I/usr/local/include -L/usr/openwin/lib -L/usr/local/lib -ltk4.1 -ltcl7.5 -lX11
|
||||
# For generic system (may have to add -I/-L options to find X11):
|
||||
#_tkinter _tkinter.c -I/usr/local/include -L/usr/local/lib -ltk4.1 -ltcl7.5 -lX11
|
||||
_tkinter _tkinter.c -I/usr/local/include -I/usr/X11R6/include -L/usr/local/lib -L/usr/X11R6/lib -ltix4175 -ltk41 -ltcl75 -lX11
|
||||
_tkinter _tkinter.c -I/usr/local/include -I/usr/X11R6/include -L/usr/local/lib -L/usr/X11R6/lib -ltk41 -ltcl75 -lX11
|
||||
|
||||
|
||||
# Lance Ellinghaus's modules:
|
||||
|
|
|
@ -1,11 +1,7 @@
|
|||
--- Makefile.in.orig Fri Oct 25 16:37:32 1996
|
||||
+++ Makefile.in Thu Feb 6 12:02:11 1997
|
||||
@@ -95,10 +95,10 @@
|
||||
|
||||
# Expanded directories
|
||||
BINDIR= $(exec_prefix)/bin
|
||||
-LIBDIR= $(exec_prefix)/lib
|
||||
+LIBDIR= $(exec_prefix)/share
|
||||
+++ Makefile.in Mon May 12 21:04:38 1997
|
||||
@@ -98,7 +98,7 @@
|
||||
LIBDIR= $(exec_prefix)/lib
|
||||
MANDIR= $(prefix)/man
|
||||
INCLUDEDIR= $(prefix)/include
|
||||
-SCRIPTDIR= $(prefix)/lib
|
||||
|
|
|
@ -1,403 +1,5 @@
|
|||
bin/python1.4
|
||||
bin/python
|
||||
@exec mkdir -p %D/share/python1.4/sharedmodules
|
||||
@unexec rmdir %D/share/python1.4/sharedmodules
|
||||
share/python1.4/AST.py
|
||||
share/python1.4/AST.pyc
|
||||
share/python1.4/BaseHTTPServer.py
|
||||
share/python1.4/BaseHTTPServer.pyc
|
||||
share/python1.4/Bastion.py
|
||||
share/python1.4/Bastion.pyc
|
||||
share/python1.4/CGIHTTPServer.py
|
||||
share/python1.4/CGIHTTPServer.pyc
|
||||
share/python1.4/Complex.py
|
||||
share/python1.4/Complex.pyc
|
||||
share/python1.4/MimeWriter.py
|
||||
share/python1.4/MimeWriter.pyc
|
||||
share/python1.4/Para.py
|
||||
share/python1.4/Para.pyc
|
||||
share/python1.4/Queue.py
|
||||
share/python1.4/Queue.pyc
|
||||
share/python1.4/SimpleHTTPServer.py
|
||||
share/python1.4/SimpleHTTPServer.pyc
|
||||
share/python1.4/SocketServer.py
|
||||
share/python1.4/SocketServer.pyc
|
||||
share/python1.4/StringIO.py
|
||||
share/python1.4/StringIO.pyc
|
||||
share/python1.4/UserDict.py
|
||||
share/python1.4/UserDict.pyc
|
||||
share/python1.4/UserList.py
|
||||
share/python1.4/UserList.pyc
|
||||
share/python1.4/addpack.py
|
||||
share/python1.4/addpack.pyc
|
||||
share/python1.4/aifc.py
|
||||
share/python1.4/aifc.pyc
|
||||
share/python1.4/anydbm.py
|
||||
share/python1.4/anydbm.pyc
|
||||
share/python1.4/audiodev.py
|
||||
share/python1.4/audiodev.pyc
|
||||
share/python1.4/base64.py
|
||||
share/python1.4/base64.pyc
|
||||
share/python1.4/bdb.py
|
||||
share/python1.4/bdb.pyc
|
||||
share/python1.4/binhex.py
|
||||
share/python1.4/binhex.pyc
|
||||
share/python1.4/bisect.py
|
||||
share/python1.4/bisect.pyc
|
||||
share/python1.4/calendar.py
|
||||
share/python1.4/calendar.pyc
|
||||
share/python1.4/cgi.py
|
||||
share/python1.4/cgi.pyc
|
||||
share/python1.4/cmd.py
|
||||
share/python1.4/cmd.pyc
|
||||
share/python1.4/cmp.py
|
||||
share/python1.4/cmp.pyc
|
||||
share/python1.4/cmpcache.py
|
||||
share/python1.4/cmpcache.pyc
|
||||
share/python1.4/codehack.py
|
||||
share/python1.4/codehack.pyc
|
||||
share/python1.4/colorsys.py
|
||||
share/python1.4/colorsys.pyc
|
||||
share/python1.4/commands.py
|
||||
share/python1.4/commands.pyc
|
||||
share/python1.4/compileall.py
|
||||
share/python1.4/compileall.pyc
|
||||
share/python1.4/copy.py
|
||||
share/python1.4/copy.pyc
|
||||
share/python1.4/dbhash.py
|
||||
share/python1.4/dbhash.pyc
|
||||
share/python1.4/dircache.py
|
||||
share/python1.4/dircache.pyc
|
||||
share/python1.4/dircmp.py
|
||||
share/python1.4/dircmp.pyc
|
||||
share/python1.4/dis.py
|
||||
share/python1.4/dis.pyc
|
||||
share/python1.4/dospath.py
|
||||
share/python1.4/dospath.pyc
|
||||
share/python1.4/dumbdbm.py
|
||||
share/python1.4/dumbdbm.pyc
|
||||
share/python1.4/dump.py
|
||||
share/python1.4/dump.pyc
|
||||
share/python1.4/emacs.py
|
||||
share/python1.4/emacs.pyc
|
||||
share/python1.4/find.py
|
||||
share/python1.4/find.pyc
|
||||
share/python1.4/fmt.py
|
||||
share/python1.4/fmt.pyc
|
||||
share/python1.4/fnmatch.py
|
||||
share/python1.4/fnmatch.pyc
|
||||
share/python1.4/formatter.py
|
||||
share/python1.4/formatter.pyc
|
||||
share/python1.4/fpformat.py
|
||||
share/python1.4/fpformat.pyc
|
||||
share/python1.4/ftplib.py
|
||||
share/python1.4/ftplib.pyc
|
||||
share/python1.4/getopt.py
|
||||
share/python1.4/getopt.pyc
|
||||
share/python1.4/glob.py
|
||||
share/python1.4/glob.pyc
|
||||
share/python1.4/gopherlib.py
|
||||
share/python1.4/gopherlib.pyc
|
||||
share/python1.4/grep.py
|
||||
share/python1.4/grep.pyc
|
||||
share/python1.4/htmlentitydefs.py
|
||||
share/python1.4/htmlentitydefs.pyc
|
||||
share/python1.4/htmllib.py
|
||||
share/python1.4/htmllib.pyc
|
||||
share/python1.4/httplib.py
|
||||
share/python1.4/httplib.pyc
|
||||
share/python1.4/ihooks.py
|
||||
share/python1.4/ihooks.pyc
|
||||
share/python1.4/imghdr.py
|
||||
share/python1.4/imghdr.pyc
|
||||
share/python1.4/linecache.py
|
||||
share/python1.4/linecache.pyc
|
||||
share/python1.4/lockfile.py
|
||||
share/python1.4/lockfile.pyc
|
||||
share/python1.4/macpath.py
|
||||
share/python1.4/macpath.pyc
|
||||
share/python1.4/macurl2path.py
|
||||
share/python1.4/macurl2path.pyc
|
||||
share/python1.4/mailbox.py
|
||||
share/python1.4/mailbox.pyc
|
||||
share/python1.4/mailcap.py
|
||||
share/python1.4/mailcap.pyc
|
||||
share/python1.4/mhlib.py
|
||||
share/python1.4/mhlib.pyc
|
||||
share/python1.4/mimetools.py
|
||||
share/python1.4/mimetools.pyc
|
||||
share/python1.4/mimify.py
|
||||
share/python1.4/mimify.pyc
|
||||
share/python1.4/multifile.py
|
||||
share/python1.4/multifile.pyc
|
||||
share/python1.4/mutex.py
|
||||
share/python1.4/mutex.pyc
|
||||
share/python1.4/newdir.py
|
||||
share/python1.4/newdir.pyc
|
||||
share/python1.4/ni.py
|
||||
share/python1.4/ni.pyc
|
||||
share/python1.4/nntplib.py
|
||||
share/python1.4/nntplib.pyc
|
||||
share/python1.4/ntpath.py
|
||||
share/python1.4/ntpath.pyc
|
||||
share/python1.4/nturl2path.py
|
||||
share/python1.4/nturl2path.pyc
|
||||
share/python1.4/os.py
|
||||
share/python1.4/os.pyc
|
||||
share/python1.4/ospath.py
|
||||
share/python1.4/ospath.pyc
|
||||
share/python1.4/packmail.py
|
||||
share/python1.4/packmail.pyc
|
||||
share/python1.4/pdb.doc
|
||||
share/python1.4/pdb.py
|
||||
share/python1.4/pdb.pyc
|
||||
share/python1.4/pickle.py
|
||||
share/python1.4/pickle.pyc
|
||||
share/python1.4/pipes.py
|
||||
share/python1.4/pipes.pyc
|
||||
share/python1.4/poly.py
|
||||
share/python1.4/poly.pyc
|
||||
share/python1.4/popen2.py
|
||||
share/python1.4/popen2.pyc
|
||||
share/python1.4/posixfile.py
|
||||
share/python1.4/posixfile.pyc
|
||||
share/python1.4/posixpath.py
|
||||
share/python1.4/posixpath.pyc
|
||||
share/python1.4/profile.doc
|
||||
share/python1.4/profile.py
|
||||
share/python1.4/profile.pyc
|
||||
share/python1.4/pstats.py
|
||||
share/python1.4/pstats.pyc
|
||||
share/python1.4/pty.py
|
||||
share/python1.4/pty.pyc
|
||||
share/python1.4/py_compile.py
|
||||
share/python1.4/py_compile.pyc
|
||||
share/python1.4/pyclbr.py
|
||||
share/python1.4/pyclbr.pyc
|
||||
share/python1.4/quopri.py
|
||||
share/python1.4/quopri.pyc
|
||||
share/python1.4/rand.py
|
||||
share/python1.4/rand.pyc
|
||||
share/python1.4/random.py
|
||||
share/python1.4/random.pyc
|
||||
share/python1.4/regex_syntax.py
|
||||
share/python1.4/regex_syntax.pyc
|
||||
share/python1.4/regexp.py
|
||||
share/python1.4/regexp.pyc
|
||||
share/python1.4/regsub.py
|
||||
share/python1.4/regsub.pyc
|
||||
share/python1.4/repr.py
|
||||
share/python1.4/repr.pyc
|
||||
share/python1.4/rexec.py
|
||||
share/python1.4/rexec.pyc
|
||||
share/python1.4/rfc822.py
|
||||
share/python1.4/rfc822.pyc
|
||||
share/python1.4/sched.py
|
||||
share/python1.4/sched.pyc
|
||||
share/python1.4/sgmllib.py
|
||||
share/python1.4/sgmllib.pyc
|
||||
share/python1.4/shelve.py
|
||||
share/python1.4/shelve.pyc
|
||||
share/python1.4/shutil.py
|
||||
share/python1.4/shutil.pyc
|
||||
share/python1.4/site.py
|
||||
share/python1.4/site.pyc
|
||||
share/python1.4/sndhdr.py
|
||||
share/python1.4/sndhdr.pyc
|
||||
share/python1.4/stat.py
|
||||
share/python1.4/stat.pyc
|
||||
share/python1.4/statcache.py
|
||||
share/python1.4/statcache.pyc
|
||||
share/python1.4/string.py
|
||||
share/python1.4/string.pyc
|
||||
share/python1.4/sunau.py
|
||||
share/python1.4/sunau.pyc
|
||||
share/python1.4/sunaudio.py
|
||||
share/python1.4/sunaudio.pyc
|
||||
share/python1.4/symbol.py
|
||||
share/python1.4/symbol.pyc
|
||||
share/python1.4/tb.py
|
||||
share/python1.4/tb.pyc
|
||||
share/python1.4/tempfile.py
|
||||
share/python1.4/tempfile.pyc
|
||||
share/python1.4/toaiff.py
|
||||
share/python1.4/toaiff.pyc
|
||||
share/python1.4/token.py
|
||||
share/python1.4/token.pyc
|
||||
share/python1.4/tokenize.py
|
||||
share/python1.4/tokenize.pyc
|
||||
share/python1.4/traceback.py
|
||||
share/python1.4/traceback.pyc
|
||||
share/python1.4/tty.py
|
||||
share/python1.4/tty.pyc
|
||||
share/python1.4/types.py
|
||||
share/python1.4/types.pyc
|
||||
share/python1.4/tzparse.py
|
||||
share/python1.4/tzparse.pyc
|
||||
share/python1.4/urllib.py
|
||||
share/python1.4/urllib.pyc
|
||||
share/python1.4/urlparse.py
|
||||
share/python1.4/urlparse.pyc
|
||||
share/python1.4/util.py
|
||||
share/python1.4/util.pyc
|
||||
share/python1.4/uu.py
|
||||
share/python1.4/uu.pyc
|
||||
share/python1.4/wave.py
|
||||
share/python1.4/wave.pyc
|
||||
share/python1.4/whatsound.py
|
||||
share/python1.4/whatsound.pyc
|
||||
share/python1.4/whichdb.py
|
||||
share/python1.4/whichdb.pyc
|
||||
share/python1.4/whrandom.py
|
||||
share/python1.4/whrandom.pyc
|
||||
share/python1.4/xdrlib.py
|
||||
share/python1.4/xdrlib.pyc
|
||||
share/python1.4/zmod.py
|
||||
share/python1.4/zmod.pyc
|
||||
share/python1.4/config/Makefile
|
||||
share/python1.4/config/Setup
|
||||
share/python1.4/config/config.c
|
||||
share/python1.4/config/config.c.in
|
||||
share/python1.4/config/config.h
|
||||
share/python1.4/config/frozenmain.c
|
||||
share/python1.4/config/getpath.c
|
||||
share/python1.4/config/libModules.a
|
||||
share/python1.4/config/libObjects.a
|
||||
share/python1.4/config/libParser.a
|
||||
share/python1.4/config/libPython.a
|
||||
share/python1.4/config/main.o
|
||||
share/python1.4/config/makesetup
|
||||
share/python1.4/freebsd2/FCNTL.py
|
||||
share/python1.4/freebsd2/FCNTL.pyc
|
||||
share/python1.4/freebsd2/regen
|
||||
share/python1.4/stdwin/Abstract.py
|
||||
share/python1.4/stdwin/Abstract.pyc
|
||||
share/python1.4/stdwin/BoxParent.py
|
||||
share/python1.4/stdwin/BoxParent.pyc
|
||||
share/python1.4/stdwin/Buttons.py
|
||||
share/python1.4/stdwin/Buttons.pyc
|
||||
share/python1.4/stdwin/CSplit.py
|
||||
share/python1.4/stdwin/CSplit.pyc
|
||||
share/python1.4/stdwin/DirList.py
|
||||
share/python1.4/stdwin/DirList.pyc
|
||||
share/python1.4/stdwin/FormSplit.py
|
||||
share/python1.4/stdwin/FormSplit.pyc
|
||||
share/python1.4/stdwin/HVSplit.py
|
||||
share/python1.4/stdwin/HVSplit.pyc
|
||||
share/python1.4/stdwin/Histogram.py
|
||||
share/python1.4/stdwin/Histogram.pyc
|
||||
share/python1.4/stdwin/Sliders.py
|
||||
share/python1.4/stdwin/Sliders.pyc
|
||||
share/python1.4/stdwin/Soundogram.py
|
||||
share/python1.4/stdwin/Soundogram.pyc
|
||||
share/python1.4/stdwin/Split.py
|
||||
share/python1.4/stdwin/Split.pyc
|
||||
share/python1.4/stdwin/StripChart.py
|
||||
share/python1.4/stdwin/StripChart.pyc
|
||||
share/python1.4/stdwin/TextEdit.py
|
||||
share/python1.4/stdwin/TextEdit.pyc
|
||||
share/python1.4/stdwin/TransParent.py
|
||||
share/python1.4/stdwin/TransParent.pyc
|
||||
share/python1.4/stdwin/VUMeter.py
|
||||
share/python1.4/stdwin/VUMeter.pyc
|
||||
share/python1.4/stdwin/WindowParent.py
|
||||
share/python1.4/stdwin/WindowParent.pyc
|
||||
share/python1.4/stdwin/WindowSched.py
|
||||
share/python1.4/stdwin/WindowSched.pyc
|
||||
share/python1.4/stdwin/anywin.py
|
||||
share/python1.4/stdwin/anywin.pyc
|
||||
share/python1.4/stdwin/basewin.py
|
||||
share/python1.4/stdwin/basewin.pyc
|
||||
share/python1.4/stdwin/dirwin.py
|
||||
share/python1.4/stdwin/dirwin.pyc
|
||||
share/python1.4/stdwin/filewin.py
|
||||
share/python1.4/stdwin/filewin.pyc
|
||||
share/python1.4/stdwin/formatter.py
|
||||
share/python1.4/stdwin/formatter.pyc
|
||||
share/python1.4/stdwin/gwin.py
|
||||
share/python1.4/stdwin/gwin.pyc
|
||||
share/python1.4/stdwin/listwin.py
|
||||
share/python1.4/stdwin/listwin.pyc
|
||||
share/python1.4/stdwin/mainloop.py
|
||||
share/python1.4/stdwin/mainloop.pyc
|
||||
share/python1.4/stdwin/rect.py
|
||||
share/python1.4/stdwin/rect.pyc
|
||||
share/python1.4/stdwin/srcwin.py
|
||||
share/python1.4/stdwin/srcwin.pyc
|
||||
share/python1.4/stdwin/stdwinevents.py
|
||||
share/python1.4/stdwin/stdwinevents.pyc
|
||||
share/python1.4/stdwin/stdwinq.py
|
||||
share/python1.4/stdwin/stdwinq.pyc
|
||||
share/python1.4/stdwin/tablewin.py
|
||||
share/python1.4/stdwin/tablewin.pyc
|
||||
share/python1.4/stdwin/textwin.py
|
||||
share/python1.4/stdwin/textwin.pyc
|
||||
share/python1.4/stdwin/wdb.py
|
||||
share/python1.4/stdwin/wdb.pyc
|
||||
share/python1.4/stdwin/wdbframewin.py
|
||||
share/python1.4/stdwin/wdbframewin.pyc
|
||||
share/python1.4/stdwin/wdbsrcwin.py
|
||||
share/python1.4/stdwin/wdbsrcwin.pyc
|
||||
share/python1.4/test/autotest.py
|
||||
share/python1.4/test/autotest.pyc
|
||||
share/python1.4/test/test.rawimg
|
||||
share/python1.4/test/test.rawimg.rev
|
||||
share/python1.4/test/test.rgb
|
||||
share/python1.4/test/test_audioop.py
|
||||
share/python1.4/test/test_audioop.pyc
|
||||
share/python1.4/test/test_b1.py
|
||||
share/python1.4/test/test_b1.pyc
|
||||
share/python1.4/test/test_b2.py
|
||||
share/python1.4/test/test_b2.pyc
|
||||
share/python1.4/test/test_builtin.py
|
||||
share/python1.4/test/test_builtin.pyc
|
||||
share/python1.4/test/test_exceptions.py
|
||||
share/python1.4/test/test_exceptions.pyc
|
||||
share/python1.4/test/test_grammar.py
|
||||
share/python1.4/test/test_grammar.pyc
|
||||
share/python1.4/test/test_math.py
|
||||
share/python1.4/test/test_math.pyc
|
||||
share/python1.4/test/test_md5.py
|
||||
share/python1.4/test/test_md5.pyc
|
||||
share/python1.4/test/test_opcodes.py
|
||||
share/python1.4/test/test_opcodes.pyc
|
||||
share/python1.4/test/test_operations.py
|
||||
share/python1.4/test/test_operations.pyc
|
||||
share/python1.4/test/test_pow.py
|
||||
share/python1.4/test/test_pow.pyc
|
||||
share/python1.4/test/test_rgbimg.py
|
||||
share/python1.4/test/test_rgbimg.pyc
|
||||
share/python1.4/test/test_select.py
|
||||
share/python1.4/test/test_select.pyc
|
||||
share/python1.4/test/test_signal.py
|
||||
share/python1.4/test/test_signal.pyc
|
||||
share/python1.4/test/test_strop.py
|
||||
share/python1.4/test/test_strop.pyc
|
||||
share/python1.4/test/test_support.py
|
||||
share/python1.4/test/test_support.pyc
|
||||
share/python1.4/test/test_thread.py
|
||||
share/python1.4/test/test_thread.pyc
|
||||
share/python1.4/test/test_types.py
|
||||
share/python1.4/test/test_types.pyc
|
||||
share/python1.4/test/testall.out
|
||||
share/python1.4/test/testall.py
|
||||
share/python1.4/test/testall.pyc
|
||||
share/python1.4/tkinter/Canvas.py
|
||||
share/python1.4/tkinter/Canvas.pyc
|
||||
share/python1.4/tkinter/Dialog.py
|
||||
share/python1.4/tkinter/Dialog.pyc
|
||||
share/python1.4/tkinter/FileDialog.py
|
||||
share/python1.4/tkinter/FileDialog.pyc
|
||||
share/python1.4/tkinter/ScrolledText.py
|
||||
share/python1.4/tkinter/ScrolledText.pyc
|
||||
share/python1.4/tkinter/SimpleDialog.py
|
||||
share/python1.4/tkinter/SimpleDialog.pyc
|
||||
share/python1.4/tkinter/Tix.py
|
||||
share/python1.4/tkinter/Tix.pyc
|
||||
share/python1.4/tkinter/Tkconstants.py
|
||||
share/python1.4/tkinter/Tkconstants.pyc
|
||||
share/python1.4/tkinter/Tkinter.py
|
||||
share/python1.4/tkinter/Tkinter.pyc
|
||||
include/python1.4/Python.h
|
||||
include/python1.4/abstract.h
|
||||
include/python1.4/accessobject.h
|
||||
|
@ -459,4 +61,417 @@ include/python1.4/thread.h
|
|||
include/python1.4/token.h
|
||||
include/python1.4/traceback.h
|
||||
include/python1.4/tupleobject.h
|
||||
lib/python1.4/config/libParser.a
|
||||
lib/python1.4/config/libObjects.a
|
||||
lib/python1.4/config/libPython.a
|
||||
lib/python1.4/config/libModules.a
|
||||
lib/python1.4/config/config.c
|
||||
lib/python1.4/config/getpath.c
|
||||
lib/python1.4/config/config.c.in
|
||||
lib/python1.4/config/Makefile
|
||||
lib/python1.4/config/Setup
|
||||
lib/python1.4/config/makesetup
|
||||
lib/python1.4/config/config.h
|
||||
lib/python1.4/config/frozenmain.c
|
||||
lib/python1.4/config/main.o
|
||||
lib/python1.4/sharedmodules/dbmmodule.so
|
||||
lib/python1.4/sharedmodules/nismodule.so
|
||||
lib/python1.4/sharedmodules/termios.so
|
||||
lib/python1.4/sharedmodules/audioop.so
|
||||
lib/python1.4/sharedmodules/imageop.so
|
||||
lib/python1.4/sharedmodules/rgbimgmodule.so
|
||||
lib/python1.4/sharedmodules/md5module.so
|
||||
lib/python1.4/sharedmodules/_tkinter.so
|
||||
lib/python1.4/sharedmodules/rotormodule.so
|
||||
lib/python1.4/sharedmodules/syslogmodule.so
|
||||
lib/python1.4/sharedmodules/cursesmodule.so
|
||||
lib/python1.4/sharedmodules/bsddbmodule.so
|
||||
lib/python1.4/sharedmodules/binascii.so
|
||||
man/man1/python.1.gz
|
||||
share/python1.4/stdwin/Abstract.pyc
|
||||
share/python1.4/stdwin/Abstract.py
|
||||
share/python1.4/stdwin/BoxParent.py
|
||||
share/python1.4/stdwin/Buttons.py
|
||||
share/python1.4/stdwin/CSplit.py
|
||||
share/python1.4/stdwin/DirList.py
|
||||
share/python1.4/stdwin/FormSplit.py
|
||||
share/python1.4/stdwin/HVSplit.py
|
||||
share/python1.4/stdwin/Histogram.py
|
||||
share/python1.4/stdwin/Sliders.py
|
||||
share/python1.4/stdwin/Soundogram.py
|
||||
share/python1.4/stdwin/Split.py
|
||||
share/python1.4/stdwin/StripChart.py
|
||||
share/python1.4/stdwin/TextEdit.py
|
||||
share/python1.4/stdwin/TransParent.py
|
||||
share/python1.4/stdwin/VUMeter.py
|
||||
share/python1.4/stdwin/WindowParent.py
|
||||
share/python1.4/stdwin/WindowSched.py
|
||||
share/python1.4/stdwin/anywin.py
|
||||
share/python1.4/stdwin/basewin.py
|
||||
share/python1.4/stdwin/dirwin.py
|
||||
share/python1.4/stdwin/filewin.py
|
||||
share/python1.4/stdwin/formatter.py
|
||||
share/python1.4/stdwin/gwin.py
|
||||
share/python1.4/stdwin/listwin.py
|
||||
share/python1.4/stdwin/mainloop.py
|
||||
share/python1.4/stdwin/rect.py
|
||||
share/python1.4/stdwin/srcwin.py
|
||||
share/python1.4/stdwin/stdwinevents.py
|
||||
share/python1.4/stdwin/stdwinq.py
|
||||
share/python1.4/stdwin/tablewin.py
|
||||
share/python1.4/stdwin/textwin.py
|
||||
share/python1.4/stdwin/wdb.py
|
||||
share/python1.4/stdwin/wdbframewin.py
|
||||
share/python1.4/stdwin/wdbsrcwin.py
|
||||
share/python1.4/stdwin/BoxParent.pyc
|
||||
share/python1.4/stdwin/Buttons.pyc
|
||||
share/python1.4/stdwin/CSplit.pyc
|
||||
share/python1.4/stdwin/DirList.pyc
|
||||
share/python1.4/stdwin/FormSplit.pyc
|
||||
share/python1.4/stdwin/HVSplit.pyc
|
||||
share/python1.4/stdwin/Histogram.pyc
|
||||
share/python1.4/stdwin/Sliders.pyc
|
||||
share/python1.4/stdwin/Soundogram.pyc
|
||||
share/python1.4/stdwin/Split.pyc
|
||||
share/python1.4/stdwin/StripChart.pyc
|
||||
share/python1.4/stdwin/TextEdit.pyc
|
||||
share/python1.4/stdwin/TransParent.pyc
|
||||
share/python1.4/stdwin/VUMeter.pyc
|
||||
share/python1.4/stdwin/WindowParent.pyc
|
||||
share/python1.4/stdwin/WindowSched.pyc
|
||||
share/python1.4/stdwin/anywin.pyc
|
||||
share/python1.4/stdwin/basewin.pyc
|
||||
share/python1.4/stdwin/dirwin.pyc
|
||||
share/python1.4/stdwin/filewin.pyc
|
||||
share/python1.4/stdwin/formatter.pyc
|
||||
share/python1.4/stdwin/gwin.pyc
|
||||
share/python1.4/stdwin/listwin.pyc
|
||||
share/python1.4/stdwin/mainloop.pyc
|
||||
share/python1.4/stdwin/rect.pyc
|
||||
share/python1.4/stdwin/srcwin.pyc
|
||||
share/python1.4/stdwin/stdwinevents.pyc
|
||||
share/python1.4/stdwin/stdwinq.pyc
|
||||
share/python1.4/stdwin/tablewin.pyc
|
||||
share/python1.4/stdwin/textwin.pyc
|
||||
share/python1.4/stdwin/wdb.pyc
|
||||
share/python1.4/stdwin/wdbframewin.pyc
|
||||
share/python1.4/stdwin/wdbsrcwin.pyc
|
||||
share/python1.4/tkinter/Canvas.pyc
|
||||
share/python1.4/tkinter/Canvas.py
|
||||
share/python1.4/tkinter/Dialog.py
|
||||
share/python1.4/tkinter/FileDialog.py
|
||||
share/python1.4/tkinter/ScrolledText.py
|
||||
share/python1.4/tkinter/SimpleDialog.py
|
||||
share/python1.4/tkinter/Tkconstants.py
|
||||
share/python1.4/tkinter/Tkinter.py
|
||||
share/python1.4/tkinter/Dialog.pyc
|
||||
share/python1.4/tkinter/FileDialog.pyc
|
||||
share/python1.4/tkinter/ScrolledText.pyc
|
||||
share/python1.4/tkinter/SimpleDialog.pyc
|
||||
share/python1.4/tkinter/Tkconstants.pyc
|
||||
share/python1.4/tkinter/Tkinter.pyc
|
||||
share/python1.4/test/autotest.pyc
|
||||
share/python1.4/test/autotest.py
|
||||
share/python1.4/test/test.rawimg
|
||||
share/python1.4/test/test.rawimg.rev
|
||||
share/python1.4/test/test.rgb
|
||||
share/python1.4/test/test_audioop.py
|
||||
share/python1.4/test/test_b1.py
|
||||
share/python1.4/test/test_b2.py
|
||||
share/python1.4/test/test_builtin.py
|
||||
share/python1.4/test/test_exceptions.py
|
||||
share/python1.4/test/test_grammar.py
|
||||
share/python1.4/test/test_math.py
|
||||
share/python1.4/test/test_md5.py
|
||||
share/python1.4/test/test_opcodes.py
|
||||
share/python1.4/test/test_operations.py
|
||||
share/python1.4/test/test_pow.py
|
||||
share/python1.4/test/test_rgbimg.py
|
||||
share/python1.4/test/test_select.py
|
||||
share/python1.4/test/test_signal.py
|
||||
share/python1.4/test/test_strop.py
|
||||
share/python1.4/test/test_support.py
|
||||
share/python1.4/test/test_thread.py
|
||||
share/python1.4/test/test_types.py
|
||||
share/python1.4/test/testall.out
|
||||
share/python1.4/test/testall.py
|
||||
share/python1.4/test/test_audioop.pyc
|
||||
share/python1.4/test/test_b1.pyc
|
||||
share/python1.4/test/test_b2.pyc
|
||||
share/python1.4/test/test_builtin.pyc
|
||||
share/python1.4/test/test_exceptions.pyc
|
||||
share/python1.4/test/test_grammar.pyc
|
||||
share/python1.4/test/test_math.pyc
|
||||
share/python1.4/test/test_md5.pyc
|
||||
share/python1.4/test/test_opcodes.pyc
|
||||
share/python1.4/test/test_operations.pyc
|
||||
share/python1.4/test/test_pow.pyc
|
||||
share/python1.4/test/test_rgbimg.pyc
|
||||
share/python1.4/test/test_select.pyc
|
||||
share/python1.4/test/test_signal.pyc
|
||||
share/python1.4/test/test_strop.pyc
|
||||
share/python1.4/test/test_support.pyc
|
||||
share/python1.4/test/testall.pyc
|
||||
share/python1.4/test/test_thread.pyc
|
||||
share/python1.4/test/test_types.pyc
|
||||
share/python1.4/freebsd/FCNTL.pyc
|
||||
share/python1.4/freebsd/FCNTL.py
|
||||
share/python1.4/freebsd/IN.pyc
|
||||
share/python1.4/freebsd/IN.py
|
||||
share/python1.4/freebsd/SOCKET.pyc
|
||||
share/python1.4/freebsd/SOCKET.py
|
||||
share/python1.4/freebsd/TERMIOS.pyc
|
||||
share/python1.4/freebsd/TERMIOS.py
|
||||
share/python1.4/freebsd/regen
|
||||
share/python1.4/urllib.py
|
||||
share/python1.4/AST.py
|
||||
share/python1.4/BaseHTTPServer.py
|
||||
share/python1.4/Bastion.py
|
||||
share/python1.4/CGIHTTPServer.py
|
||||
share/python1.4/Complex.py
|
||||
share/python1.4/MimeWriter.py
|
||||
share/python1.4/Para.py
|
||||
share/python1.4/Queue.py
|
||||
share/python1.4/SimpleHTTPServer.py
|
||||
share/python1.4/SocketServer.py
|
||||
share/python1.4/StringIO.py
|
||||
share/python1.4/UserDict.py
|
||||
share/python1.4/UserList.py
|
||||
share/python1.4/addpack.py
|
||||
share/python1.4/aifc.py
|
||||
share/python1.4/anydbm.py
|
||||
share/python1.4/audiodev.py
|
||||
share/python1.4/base64.py
|
||||
share/python1.4/bdb.py
|
||||
share/python1.4/binhex.py
|
||||
share/python1.4/bisect.py
|
||||
share/python1.4/calendar.py
|
||||
share/python1.4/cgi.py
|
||||
share/python1.4/cmd.py
|
||||
share/python1.4/cmp.py
|
||||
share/python1.4/cmpcache.py
|
||||
share/python1.4/codehack.py
|
||||
share/python1.4/colorsys.py
|
||||
share/python1.4/commands.py
|
||||
share/python1.4/compileall.py
|
||||
share/python1.4/copy.py
|
||||
share/python1.4/dbhash.py
|
||||
share/python1.4/dircache.py
|
||||
share/python1.4/dircmp.py
|
||||
share/python1.4/dis.py
|
||||
share/python1.4/dospath.py
|
||||
share/python1.4/dumbdbm.py
|
||||
share/python1.4/dump.py
|
||||
share/python1.4/emacs.py
|
||||
share/python1.4/find.py
|
||||
share/python1.4/fmt.py
|
||||
share/python1.4/fnmatch.py
|
||||
share/python1.4/formatter.py
|
||||
share/python1.4/fpformat.py
|
||||
share/python1.4/ftplib.py
|
||||
share/python1.4/glob.py
|
||||
share/python1.4/getopt.py
|
||||
share/python1.4/gopherlib.py
|
||||
share/python1.4/grep.py
|
||||
share/python1.4/htmlentitydefs.py
|
||||
share/python1.4/htmllib.py
|
||||
share/python1.4/httplib.py
|
||||
share/python1.4/ihooks.py
|
||||
share/python1.4/imghdr.py
|
||||
share/python1.4/linecache.py
|
||||
share/python1.4/lockfile.py
|
||||
share/python1.4/macpath.py
|
||||
share/python1.4/macurl2path.py
|
||||
share/python1.4/mailbox.py
|
||||
share/python1.4/mailcap.py
|
||||
share/python1.4/mhlib.py
|
||||
share/python1.4/mimetools.py
|
||||
share/python1.4/mimify.py
|
||||
share/python1.4/multifile.py
|
||||
share/python1.4/mutex.py
|
||||
share/python1.4/newdir.py
|
||||
share/python1.4/ni.py
|
||||
share/python1.4/nntplib.py
|
||||
share/python1.4/ntpath.py
|
||||
share/python1.4/nturl2path.py
|
||||
share/python1.4/os.py
|
||||
share/python1.4/ospath.py
|
||||
share/python1.4/packmail.py
|
||||
share/python1.4/pdb.py
|
||||
share/python1.4/pickle.py
|
||||
share/python1.4/pipes.py
|
||||
share/python1.4/poly.py
|
||||
share/python1.4/popen2.py
|
||||
share/python1.4/posixfile.py
|
||||
share/python1.4/posixpath.py
|
||||
share/python1.4/profile.py
|
||||
share/python1.4/pstats.py
|
||||
share/python1.4/pty.py
|
||||
share/python1.4/py_compile.py
|
||||
share/python1.4/pyclbr.py
|
||||
share/python1.4/quopri.py
|
||||
share/python1.4/rand.py
|
||||
share/python1.4/random.py
|
||||
share/python1.4/regex_syntax.py
|
||||
share/python1.4/regexp.py
|
||||
share/python1.4/regsub.py
|
||||
share/python1.4/repr.py
|
||||
share/python1.4/rexec.py
|
||||
share/python1.4/rfc822.py
|
||||
share/python1.4/sched.py
|
||||
share/python1.4/sgmllib.py
|
||||
share/python1.4/shelve.py
|
||||
share/python1.4/shutil.py
|
||||
share/python1.4/site.py
|
||||
share/python1.4/sndhdr.py
|
||||
share/python1.4/stat.py
|
||||
share/python1.4/statcache.py
|
||||
share/python1.4/string.py
|
||||
share/python1.4/sunau.py
|
||||
share/python1.4/sunaudio.py
|
||||
share/python1.4/symbol.py
|
||||
share/python1.4/tb.py
|
||||
share/python1.4/tempfile.py
|
||||
share/python1.4/toaiff.py
|
||||
share/python1.4/token.py
|
||||
share/python1.4/tokenize.py
|
||||
share/python1.4/traceback.py
|
||||
share/python1.4/tty.py
|
||||
share/python1.4/types.py
|
||||
share/python1.4/tzparse.py
|
||||
share/python1.4/os.pyc
|
||||
share/python1.4/urlparse.py
|
||||
share/python1.4/util.py
|
||||
share/python1.4/uu.py
|
||||
share/python1.4/wave.py
|
||||
share/python1.4/whatsound.py
|
||||
share/python1.4/whichdb.py
|
||||
share/python1.4/whrandom.py
|
||||
share/python1.4/xdrlib.py
|
||||
share/python1.4/zmod.py
|
||||
share/python1.4/pdb.doc
|
||||
share/python1.4/profile.doc
|
||||
share/python1.4/posixpath.pyc
|
||||
share/python1.4/stat.pyc
|
||||
share/python1.4/UserDict.pyc
|
||||
share/python1.4/py_compile.pyc
|
||||
share/python1.4/getopt.pyc
|
||||
share/python1.4/string.pyc
|
||||
share/python1.4/AST.pyc
|
||||
share/python1.4/BaseHTTPServer.pyc
|
||||
share/python1.4/Bastion.pyc
|
||||
share/python1.4/CGIHTTPServer.pyc
|
||||
share/python1.4/Complex.pyc
|
||||
share/python1.4/MimeWriter.pyc
|
||||
share/python1.4/Para.pyc
|
||||
share/python1.4/Queue.pyc
|
||||
share/python1.4/SimpleHTTPServer.pyc
|
||||
share/python1.4/SocketServer.pyc
|
||||
share/python1.4/StringIO.pyc
|
||||
share/python1.4/UserList.pyc
|
||||
share/python1.4/addpack.pyc
|
||||
share/python1.4/aifc.pyc
|
||||
share/python1.4/anydbm.pyc
|
||||
share/python1.4/audiodev.pyc
|
||||
share/python1.4/base64.pyc
|
||||
share/python1.4/bdb.pyc
|
||||
share/python1.4/binhex.pyc
|
||||
share/python1.4/bisect.pyc
|
||||
share/python1.4/calendar.pyc
|
||||
share/python1.4/cgi.pyc
|
||||
share/python1.4/cmd.pyc
|
||||
share/python1.4/cmp.pyc
|
||||
share/python1.4/cmpcache.pyc
|
||||
share/python1.4/codehack.pyc
|
||||
share/python1.4/colorsys.pyc
|
||||
share/python1.4/commands.pyc
|
||||
share/python1.4/compileall.pyc
|
||||
share/python1.4/copy.pyc
|
||||
share/python1.4/dbhash.pyc
|
||||
share/python1.4/dircache.pyc
|
||||
share/python1.4/dircmp.pyc
|
||||
share/python1.4/dis.pyc
|
||||
share/python1.4/dospath.pyc
|
||||
share/python1.4/dumbdbm.pyc
|
||||
share/python1.4/dump.pyc
|
||||
share/python1.4/emacs.pyc
|
||||
share/python1.4/find.pyc
|
||||
share/python1.4/fmt.pyc
|
||||
share/python1.4/fnmatch.pyc
|
||||
share/python1.4/formatter.pyc
|
||||
share/python1.4/fpformat.pyc
|
||||
share/python1.4/ftplib.pyc
|
||||
share/python1.4/glob.pyc
|
||||
share/python1.4/gopherlib.pyc
|
||||
share/python1.4/grep.pyc
|
||||
share/python1.4/htmlentitydefs.pyc
|
||||
share/python1.4/htmllib.pyc
|
||||
share/python1.4/httplib.pyc
|
||||
share/python1.4/ihooks.pyc
|
||||
share/python1.4/imghdr.pyc
|
||||
share/python1.4/linecache.pyc
|
||||
share/python1.4/lockfile.pyc
|
||||
share/python1.4/macpath.pyc
|
||||
share/python1.4/macurl2path.pyc
|
||||
share/python1.4/mailbox.pyc
|
||||
share/python1.4/mailcap.pyc
|
||||
share/python1.4/mhlib.pyc
|
||||
share/python1.4/mimetools.pyc
|
||||
share/python1.4/mimify.pyc
|
||||
share/python1.4/multifile.pyc
|
||||
share/python1.4/mutex.pyc
|
||||
share/python1.4/newdir.pyc
|
||||
share/python1.4/ni.pyc
|
||||
share/python1.4/nntplib.pyc
|
||||
share/python1.4/ntpath.pyc
|
||||
share/python1.4/nturl2path.pyc
|
||||
share/python1.4/ospath.pyc
|
||||
share/python1.4/packmail.pyc
|
||||
share/python1.4/pdb.pyc
|
||||
share/python1.4/pickle.pyc
|
||||
share/python1.4/pipes.pyc
|
||||
share/python1.4/poly.pyc
|
||||
share/python1.4/popen2.pyc
|
||||
share/python1.4/posixfile.pyc
|
||||
share/python1.4/profile.pyc
|
||||
share/python1.4/pstats.pyc
|
||||
share/python1.4/pty.pyc
|
||||
share/python1.4/pyclbr.pyc
|
||||
share/python1.4/quopri.pyc
|
||||
share/python1.4/rand.pyc
|
||||
share/python1.4/random.pyc
|
||||
share/python1.4/regex_syntax.pyc
|
||||
share/python1.4/regexp.pyc
|
||||
share/python1.4/regsub.pyc
|
||||
share/python1.4/repr.pyc
|
||||
share/python1.4/rexec.pyc
|
||||
share/python1.4/rfc822.pyc
|
||||
share/python1.4/sched.pyc
|
||||
share/python1.4/sgmllib.pyc
|
||||
share/python1.4/shelve.pyc
|
||||
share/python1.4/shutil.pyc
|
||||
share/python1.4/site.pyc
|
||||
share/python1.4/sndhdr.pyc
|
||||
share/python1.4/statcache.pyc
|
||||
share/python1.4/sunau.pyc
|
||||
share/python1.4/sunaudio.pyc
|
||||
share/python1.4/symbol.pyc
|
||||
share/python1.4/tb.pyc
|
||||
share/python1.4/tempfile.pyc
|
||||
share/python1.4/toaiff.pyc
|
||||
share/python1.4/token.pyc
|
||||
share/python1.4/tokenize.pyc
|
||||
share/python1.4/traceback.pyc
|
||||
share/python1.4/tty.pyc
|
||||
share/python1.4/types.pyc
|
||||
share/python1.4/tzparse.pyc
|
||||
share/python1.4/urllib.pyc
|
||||
share/python1.4/urlparse.pyc
|
||||
share/python1.4/uu.pyc
|
||||
share/python1.4/util.pyc
|
||||
share/python1.4/wave.pyc
|
||||
share/python1.4/whatsound.pyc
|
||||
share/python1.4/whichdb.pyc
|
||||
share/python1.4/whrandom.pyc
|
||||
share/python1.4/xdrlib.pyc
|
||||
share/python1.4/zmod.pyc
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# Date created: 08 August 1995
|
||||
# Whom: jkh
|
||||
#
|
||||
# $Id: Makefile,v 1.12 1997/02/21 14:57:01 tg Exp $
|
||||
# $Id: Makefile,v 1.13 1997/04/20 13:19:11 wosch Exp $
|
||||
#
|
||||
|
||||
DISTNAME= python1.4
|
||||
|
@ -13,12 +13,10 @@ MASTER_SITES= ftp://www.python.org/pub/python/src/ \
|
|||
ftp://ftp.cwi.nl/pub/python/src/ \
|
||||
ftp://www.python.org/pub/python/contrib/Graphics/Tkinter/ \
|
||||
ftp://ftp.cwi.nl/pub/python/contrib/Graphics/Tkinter/
|
||||
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} PyTix-1.12.tar.gz
|
||||
|
||||
MAINTAINER= tg@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= tk41\\.1\\.:${PORTSDIR}/x11/tk41 \
|
||||
tix4175\\.1\\.:${PORTSDIR}/x11/tix
|
||||
LIB_DEPENDS= tk41\\.1\\.:${PORTSDIR}/x11/tk41
|
||||
|
||||
WRKSRC= ${WRKDIR}/Python-1.4
|
||||
HAS_CONFIGURE= yes
|
||||
|
@ -27,14 +25,6 @@ MAKE_FLAGS+= 'OPT=${CFLAGS}'
|
|||
INSTALL_TARGET= install
|
||||
MAN1= python.1
|
||||
|
||||
PYTIXSRC= ${WRKDIR}/PyTix-1.12
|
||||
|
||||
post-extract:
|
||||
@${ECHO_MSG} "===> Add PyTix extensions to Python core"
|
||||
${CP} ${PYTIXSRC}/Tkinter.py ${WRKSRC}/Lib/tkinter
|
||||
${CP} ${PYTIXSRC}/Tix.py ${WRKSRC}/Lib/tkinter
|
||||
${CP} ${PYTIXSRC}/_tkinter.c ${WRKSRC}/Modules
|
||||
|
||||
post-configure:
|
||||
${CP} ${FILESDIR}/Setup ${WRKSRC}/Modules
|
||||
|
||||
|
|
|
@ -71,7 +71,7 @@ SITEPATH=:$(DESTLIB)/NumPy
|
|||
TESTPATH=:$(DESTLIB)/test
|
||||
|
||||
# Path for machine- or system-dependent modules (and shared libraries)
|
||||
MACHDEPPATH=:$(DESTLIB)/$(MACHDEP)
|
||||
MACHDEPPATH=:$(DESTLIB)/$(MACHDEP):$(MACHDESTLIB)/sharedmodules
|
||||
|
||||
COREPYTHONPATH=.$(SITEPATH)$(DESTPATH)$(TESTPATH)$(MACHDEPPATH)$(STDWINPATH)$(TKPATH)
|
||||
PYTHONPATH=$(COREPYTHONPATH)
|
||||
|
@ -128,6 +128,7 @@ select selectmodule.c # select(2); not on ancient System V
|
|||
socket socketmodule.c # socket(2); not on ancient System V
|
||||
errno errnomodule.c # posix (UNIX) errno values
|
||||
|
||||
*shared*
|
||||
|
||||
# Some more UNIX dependent modules -- off by default, since these
|
||||
# are not supported by all UNIX systems:
|
||||
|
@ -249,7 +250,7 @@ TKPATH=:$(DESTLIB)/tkinter
|
|||
#_tkinter _tkinter.c -I/usr/openwin/include -I/usr/local/include -L/usr/openwin/lib -L/usr/local/lib -ltk4.1 -ltcl7.5 -lX11
|
||||
# For generic system (may have to add -I/-L options to find X11):
|
||||
#_tkinter _tkinter.c -I/usr/local/include -L/usr/local/lib -ltk4.1 -ltcl7.5 -lX11
|
||||
_tkinter _tkinter.c -I/usr/local/include -I/usr/X11R6/include -L/usr/local/lib -L/usr/X11R6/lib -ltix4175 -ltk41 -ltcl75 -lX11
|
||||
_tkinter _tkinter.c -I/usr/local/include -I/usr/X11R6/include -L/usr/local/lib -L/usr/X11R6/lib -ltk41 -ltcl75 -lX11
|
||||
|
||||
|
||||
# Lance Ellinghaus's modules:
|
||||
|
|
|
@ -1,11 +1,7 @@
|
|||
--- Makefile.in.orig Fri Oct 25 16:37:32 1996
|
||||
+++ Makefile.in Thu Feb 6 12:02:11 1997
|
||||
@@ -95,10 +95,10 @@
|
||||
|
||||
# Expanded directories
|
||||
BINDIR= $(exec_prefix)/bin
|
||||
-LIBDIR= $(exec_prefix)/lib
|
||||
+LIBDIR= $(exec_prefix)/share
|
||||
+++ Makefile.in Mon May 12 21:04:38 1997
|
||||
@@ -98,7 +98,7 @@
|
||||
LIBDIR= $(exec_prefix)/lib
|
||||
MANDIR= $(prefix)/man
|
||||
INCLUDEDIR= $(prefix)/include
|
||||
-SCRIPTDIR= $(prefix)/lib
|
||||
|
|
|
@ -1,403 +1,5 @@
|
|||
bin/python1.4
|
||||
bin/python
|
||||
@exec mkdir -p %D/share/python1.4/sharedmodules
|
||||
@unexec rmdir %D/share/python1.4/sharedmodules
|
||||
share/python1.4/AST.py
|
||||
share/python1.4/AST.pyc
|
||||
share/python1.4/BaseHTTPServer.py
|
||||
share/python1.4/BaseHTTPServer.pyc
|
||||
share/python1.4/Bastion.py
|
||||
share/python1.4/Bastion.pyc
|
||||
share/python1.4/CGIHTTPServer.py
|
||||
share/python1.4/CGIHTTPServer.pyc
|
||||
share/python1.4/Complex.py
|
||||
share/python1.4/Complex.pyc
|
||||
share/python1.4/MimeWriter.py
|
||||
share/python1.4/MimeWriter.pyc
|
||||
share/python1.4/Para.py
|
||||
share/python1.4/Para.pyc
|
||||
share/python1.4/Queue.py
|
||||
share/python1.4/Queue.pyc
|
||||
share/python1.4/SimpleHTTPServer.py
|
||||
share/python1.4/SimpleHTTPServer.pyc
|
||||
share/python1.4/SocketServer.py
|
||||
share/python1.4/SocketServer.pyc
|
||||
share/python1.4/StringIO.py
|
||||
share/python1.4/StringIO.pyc
|
||||
share/python1.4/UserDict.py
|
||||
share/python1.4/UserDict.pyc
|
||||
share/python1.4/UserList.py
|
||||
share/python1.4/UserList.pyc
|
||||
share/python1.4/addpack.py
|
||||
share/python1.4/addpack.pyc
|
||||
share/python1.4/aifc.py
|
||||
share/python1.4/aifc.pyc
|
||||
share/python1.4/anydbm.py
|
||||
share/python1.4/anydbm.pyc
|
||||
share/python1.4/audiodev.py
|
||||
share/python1.4/audiodev.pyc
|
||||
share/python1.4/base64.py
|
||||
share/python1.4/base64.pyc
|
||||
share/python1.4/bdb.py
|
||||
share/python1.4/bdb.pyc
|
||||
share/python1.4/binhex.py
|
||||
share/python1.4/binhex.pyc
|
||||
share/python1.4/bisect.py
|
||||
share/python1.4/bisect.pyc
|
||||
share/python1.4/calendar.py
|
||||
share/python1.4/calendar.pyc
|
||||
share/python1.4/cgi.py
|
||||
share/python1.4/cgi.pyc
|
||||
share/python1.4/cmd.py
|
||||
share/python1.4/cmd.pyc
|
||||
share/python1.4/cmp.py
|
||||
share/python1.4/cmp.pyc
|
||||
share/python1.4/cmpcache.py
|
||||
share/python1.4/cmpcache.pyc
|
||||
share/python1.4/codehack.py
|
||||
share/python1.4/codehack.pyc
|
||||
share/python1.4/colorsys.py
|
||||
share/python1.4/colorsys.pyc
|
||||
share/python1.4/commands.py
|
||||
share/python1.4/commands.pyc
|
||||
share/python1.4/compileall.py
|
||||
share/python1.4/compileall.pyc
|
||||
share/python1.4/copy.py
|
||||
share/python1.4/copy.pyc
|
||||
share/python1.4/dbhash.py
|
||||
share/python1.4/dbhash.pyc
|
||||
share/python1.4/dircache.py
|
||||
share/python1.4/dircache.pyc
|
||||
share/python1.4/dircmp.py
|
||||
share/python1.4/dircmp.pyc
|
||||
share/python1.4/dis.py
|
||||
share/python1.4/dis.pyc
|
||||
share/python1.4/dospath.py
|
||||
share/python1.4/dospath.pyc
|
||||
share/python1.4/dumbdbm.py
|
||||
share/python1.4/dumbdbm.pyc
|
||||
share/python1.4/dump.py
|
||||
share/python1.4/dump.pyc
|
||||
share/python1.4/emacs.py
|
||||
share/python1.4/emacs.pyc
|
||||
share/python1.4/find.py
|
||||
share/python1.4/find.pyc
|
||||
share/python1.4/fmt.py
|
||||
share/python1.4/fmt.pyc
|
||||
share/python1.4/fnmatch.py
|
||||
share/python1.4/fnmatch.pyc
|
||||
share/python1.4/formatter.py
|
||||
share/python1.4/formatter.pyc
|
||||
share/python1.4/fpformat.py
|
||||
share/python1.4/fpformat.pyc
|
||||
share/python1.4/ftplib.py
|
||||
share/python1.4/ftplib.pyc
|
||||
share/python1.4/getopt.py
|
||||
share/python1.4/getopt.pyc
|
||||
share/python1.4/glob.py
|
||||
share/python1.4/glob.pyc
|
||||
share/python1.4/gopherlib.py
|
||||
share/python1.4/gopherlib.pyc
|
||||
share/python1.4/grep.py
|
||||
share/python1.4/grep.pyc
|
||||
share/python1.4/htmlentitydefs.py
|
||||
share/python1.4/htmlentitydefs.pyc
|
||||
share/python1.4/htmllib.py
|
||||
share/python1.4/htmllib.pyc
|
||||
share/python1.4/httplib.py
|
||||
share/python1.4/httplib.pyc
|
||||
share/python1.4/ihooks.py
|
||||
share/python1.4/ihooks.pyc
|
||||
share/python1.4/imghdr.py
|
||||
share/python1.4/imghdr.pyc
|
||||
share/python1.4/linecache.py
|
||||
share/python1.4/linecache.pyc
|
||||
share/python1.4/lockfile.py
|
||||
share/python1.4/lockfile.pyc
|
||||
share/python1.4/macpath.py
|
||||
share/python1.4/macpath.pyc
|
||||
share/python1.4/macurl2path.py
|
||||
share/python1.4/macurl2path.pyc
|
||||
share/python1.4/mailbox.py
|
||||
share/python1.4/mailbox.pyc
|
||||
share/python1.4/mailcap.py
|
||||
share/python1.4/mailcap.pyc
|
||||
share/python1.4/mhlib.py
|
||||
share/python1.4/mhlib.pyc
|
||||
share/python1.4/mimetools.py
|
||||
share/python1.4/mimetools.pyc
|
||||
share/python1.4/mimify.py
|
||||
share/python1.4/mimify.pyc
|
||||
share/python1.4/multifile.py
|
||||
share/python1.4/multifile.pyc
|
||||
share/python1.4/mutex.py
|
||||
share/python1.4/mutex.pyc
|
||||
share/python1.4/newdir.py
|
||||
share/python1.4/newdir.pyc
|
||||
share/python1.4/ni.py
|
||||
share/python1.4/ni.pyc
|
||||
share/python1.4/nntplib.py
|
||||
share/python1.4/nntplib.pyc
|
||||
share/python1.4/ntpath.py
|
||||
share/python1.4/ntpath.pyc
|
||||
share/python1.4/nturl2path.py
|
||||
share/python1.4/nturl2path.pyc
|
||||
share/python1.4/os.py
|
||||
share/python1.4/os.pyc
|
||||
share/python1.4/ospath.py
|
||||
share/python1.4/ospath.pyc
|
||||
share/python1.4/packmail.py
|
||||
share/python1.4/packmail.pyc
|
||||
share/python1.4/pdb.doc
|
||||
share/python1.4/pdb.py
|
||||
share/python1.4/pdb.pyc
|
||||
share/python1.4/pickle.py
|
||||
share/python1.4/pickle.pyc
|
||||
share/python1.4/pipes.py
|
||||
share/python1.4/pipes.pyc
|
||||
share/python1.4/poly.py
|
||||
share/python1.4/poly.pyc
|
||||
share/python1.4/popen2.py
|
||||
share/python1.4/popen2.pyc
|
||||
share/python1.4/posixfile.py
|
||||
share/python1.4/posixfile.pyc
|
||||
share/python1.4/posixpath.py
|
||||
share/python1.4/posixpath.pyc
|
||||
share/python1.4/profile.doc
|
||||
share/python1.4/profile.py
|
||||
share/python1.4/profile.pyc
|
||||
share/python1.4/pstats.py
|
||||
share/python1.4/pstats.pyc
|
||||
share/python1.4/pty.py
|
||||
share/python1.4/pty.pyc
|
||||
share/python1.4/py_compile.py
|
||||
share/python1.4/py_compile.pyc
|
||||
share/python1.4/pyclbr.py
|
||||
share/python1.4/pyclbr.pyc
|
||||
share/python1.4/quopri.py
|
||||
share/python1.4/quopri.pyc
|
||||
share/python1.4/rand.py
|
||||
share/python1.4/rand.pyc
|
||||
share/python1.4/random.py
|
||||
share/python1.4/random.pyc
|
||||
share/python1.4/regex_syntax.py
|
||||
share/python1.4/regex_syntax.pyc
|
||||
share/python1.4/regexp.py
|
||||
share/python1.4/regexp.pyc
|
||||
share/python1.4/regsub.py
|
||||
share/python1.4/regsub.pyc
|
||||
share/python1.4/repr.py
|
||||
share/python1.4/repr.pyc
|
||||
share/python1.4/rexec.py
|
||||
share/python1.4/rexec.pyc
|
||||
share/python1.4/rfc822.py
|
||||
share/python1.4/rfc822.pyc
|
||||
share/python1.4/sched.py
|
||||
share/python1.4/sched.pyc
|
||||
share/python1.4/sgmllib.py
|
||||
share/python1.4/sgmllib.pyc
|
||||
share/python1.4/shelve.py
|
||||
share/python1.4/shelve.pyc
|
||||
share/python1.4/shutil.py
|
||||
share/python1.4/shutil.pyc
|
||||
share/python1.4/site.py
|
||||
share/python1.4/site.pyc
|
||||
share/python1.4/sndhdr.py
|
||||
share/python1.4/sndhdr.pyc
|
||||
share/python1.4/stat.py
|
||||
share/python1.4/stat.pyc
|
||||
share/python1.4/statcache.py
|
||||
share/python1.4/statcache.pyc
|
||||
share/python1.4/string.py
|
||||
share/python1.4/string.pyc
|
||||
share/python1.4/sunau.py
|
||||
share/python1.4/sunau.pyc
|
||||
share/python1.4/sunaudio.py
|
||||
share/python1.4/sunaudio.pyc
|
||||
share/python1.4/symbol.py
|
||||
share/python1.4/symbol.pyc
|
||||
share/python1.4/tb.py
|
||||
share/python1.4/tb.pyc
|
||||
share/python1.4/tempfile.py
|
||||
share/python1.4/tempfile.pyc
|
||||
share/python1.4/toaiff.py
|
||||
share/python1.4/toaiff.pyc
|
||||
share/python1.4/token.py
|
||||
share/python1.4/token.pyc
|
||||
share/python1.4/tokenize.py
|
||||
share/python1.4/tokenize.pyc
|
||||
share/python1.4/traceback.py
|
||||
share/python1.4/traceback.pyc
|
||||
share/python1.4/tty.py
|
||||
share/python1.4/tty.pyc
|
||||
share/python1.4/types.py
|
||||
share/python1.4/types.pyc
|
||||
share/python1.4/tzparse.py
|
||||
share/python1.4/tzparse.pyc
|
||||
share/python1.4/urllib.py
|
||||
share/python1.4/urllib.pyc
|
||||
share/python1.4/urlparse.py
|
||||
share/python1.4/urlparse.pyc
|
||||
share/python1.4/util.py
|
||||
share/python1.4/util.pyc
|
||||
share/python1.4/uu.py
|
||||
share/python1.4/uu.pyc
|
||||
share/python1.4/wave.py
|
||||
share/python1.4/wave.pyc
|
||||
share/python1.4/whatsound.py
|
||||
share/python1.4/whatsound.pyc
|
||||
share/python1.4/whichdb.py
|
||||
share/python1.4/whichdb.pyc
|
||||
share/python1.4/whrandom.py
|
||||
share/python1.4/whrandom.pyc
|
||||
share/python1.4/xdrlib.py
|
||||
share/python1.4/xdrlib.pyc
|
||||
share/python1.4/zmod.py
|
||||
share/python1.4/zmod.pyc
|
||||
share/python1.4/config/Makefile
|
||||
share/python1.4/config/Setup
|
||||
share/python1.4/config/config.c
|
||||
share/python1.4/config/config.c.in
|
||||
share/python1.4/config/config.h
|
||||
share/python1.4/config/frozenmain.c
|
||||
share/python1.4/config/getpath.c
|
||||
share/python1.4/config/libModules.a
|
||||
share/python1.4/config/libObjects.a
|
||||
share/python1.4/config/libParser.a
|
||||
share/python1.4/config/libPython.a
|
||||
share/python1.4/config/main.o
|
||||
share/python1.4/config/makesetup
|
||||
share/python1.4/freebsd2/FCNTL.py
|
||||
share/python1.4/freebsd2/FCNTL.pyc
|
||||
share/python1.4/freebsd2/regen
|
||||
share/python1.4/stdwin/Abstract.py
|
||||
share/python1.4/stdwin/Abstract.pyc
|
||||
share/python1.4/stdwin/BoxParent.py
|
||||
share/python1.4/stdwin/BoxParent.pyc
|
||||
share/python1.4/stdwin/Buttons.py
|
||||
share/python1.4/stdwin/Buttons.pyc
|
||||
share/python1.4/stdwin/CSplit.py
|
||||
share/python1.4/stdwin/CSplit.pyc
|
||||
share/python1.4/stdwin/DirList.py
|
||||
share/python1.4/stdwin/DirList.pyc
|
||||
share/python1.4/stdwin/FormSplit.py
|
||||
share/python1.4/stdwin/FormSplit.pyc
|
||||
share/python1.4/stdwin/HVSplit.py
|
||||
share/python1.4/stdwin/HVSplit.pyc
|
||||
share/python1.4/stdwin/Histogram.py
|
||||
share/python1.4/stdwin/Histogram.pyc
|
||||
share/python1.4/stdwin/Sliders.py
|
||||
share/python1.4/stdwin/Sliders.pyc
|
||||
share/python1.4/stdwin/Soundogram.py
|
||||
share/python1.4/stdwin/Soundogram.pyc
|
||||
share/python1.4/stdwin/Split.py
|
||||
share/python1.4/stdwin/Split.pyc
|
||||
share/python1.4/stdwin/StripChart.py
|
||||
share/python1.4/stdwin/StripChart.pyc
|
||||
share/python1.4/stdwin/TextEdit.py
|
||||
share/python1.4/stdwin/TextEdit.pyc
|
||||
share/python1.4/stdwin/TransParent.py
|
||||
share/python1.4/stdwin/TransParent.pyc
|
||||
share/python1.4/stdwin/VUMeter.py
|
||||
share/python1.4/stdwin/VUMeter.pyc
|
||||
share/python1.4/stdwin/WindowParent.py
|
||||
share/python1.4/stdwin/WindowParent.pyc
|
||||
share/python1.4/stdwin/WindowSched.py
|
||||
share/python1.4/stdwin/WindowSched.pyc
|
||||
share/python1.4/stdwin/anywin.py
|
||||
share/python1.4/stdwin/anywin.pyc
|
||||
share/python1.4/stdwin/basewin.py
|
||||
share/python1.4/stdwin/basewin.pyc
|
||||
share/python1.4/stdwin/dirwin.py
|
||||
share/python1.4/stdwin/dirwin.pyc
|
||||
share/python1.4/stdwin/filewin.py
|
||||
share/python1.4/stdwin/filewin.pyc
|
||||
share/python1.4/stdwin/formatter.py
|
||||
share/python1.4/stdwin/formatter.pyc
|
||||
share/python1.4/stdwin/gwin.py
|
||||
share/python1.4/stdwin/gwin.pyc
|
||||
share/python1.4/stdwin/listwin.py
|
||||
share/python1.4/stdwin/listwin.pyc
|
||||
share/python1.4/stdwin/mainloop.py
|
||||
share/python1.4/stdwin/mainloop.pyc
|
||||
share/python1.4/stdwin/rect.py
|
||||
share/python1.4/stdwin/rect.pyc
|
||||
share/python1.4/stdwin/srcwin.py
|
||||
share/python1.4/stdwin/srcwin.pyc
|
||||
share/python1.4/stdwin/stdwinevents.py
|
||||
share/python1.4/stdwin/stdwinevents.pyc
|
||||
share/python1.4/stdwin/stdwinq.py
|
||||
share/python1.4/stdwin/stdwinq.pyc
|
||||
share/python1.4/stdwin/tablewin.py
|
||||
share/python1.4/stdwin/tablewin.pyc
|
||||
share/python1.4/stdwin/textwin.py
|
||||
share/python1.4/stdwin/textwin.pyc
|
||||
share/python1.4/stdwin/wdb.py
|
||||
share/python1.4/stdwin/wdb.pyc
|
||||
share/python1.4/stdwin/wdbframewin.py
|
||||
share/python1.4/stdwin/wdbframewin.pyc
|
||||
share/python1.4/stdwin/wdbsrcwin.py
|
||||
share/python1.4/stdwin/wdbsrcwin.pyc
|
||||
share/python1.4/test/autotest.py
|
||||
share/python1.4/test/autotest.pyc
|
||||
share/python1.4/test/test.rawimg
|
||||
share/python1.4/test/test.rawimg.rev
|
||||
share/python1.4/test/test.rgb
|
||||
share/python1.4/test/test_audioop.py
|
||||
share/python1.4/test/test_audioop.pyc
|
||||
share/python1.4/test/test_b1.py
|
||||
share/python1.4/test/test_b1.pyc
|
||||
share/python1.4/test/test_b2.py
|
||||
share/python1.4/test/test_b2.pyc
|
||||
share/python1.4/test/test_builtin.py
|
||||
share/python1.4/test/test_builtin.pyc
|
||||
share/python1.4/test/test_exceptions.py
|
||||
share/python1.4/test/test_exceptions.pyc
|
||||
share/python1.4/test/test_grammar.py
|
||||
share/python1.4/test/test_grammar.pyc
|
||||
share/python1.4/test/test_math.py
|
||||
share/python1.4/test/test_math.pyc
|
||||
share/python1.4/test/test_md5.py
|
||||
share/python1.4/test/test_md5.pyc
|
||||
share/python1.4/test/test_opcodes.py
|
||||
share/python1.4/test/test_opcodes.pyc
|
||||
share/python1.4/test/test_operations.py
|
||||
share/python1.4/test/test_operations.pyc
|
||||
share/python1.4/test/test_pow.py
|
||||
share/python1.4/test/test_pow.pyc
|
||||
share/python1.4/test/test_rgbimg.py
|
||||
share/python1.4/test/test_rgbimg.pyc
|
||||
share/python1.4/test/test_select.py
|
||||
share/python1.4/test/test_select.pyc
|
||||
share/python1.4/test/test_signal.py
|
||||
share/python1.4/test/test_signal.pyc
|
||||
share/python1.4/test/test_strop.py
|
||||
share/python1.4/test/test_strop.pyc
|
||||
share/python1.4/test/test_support.py
|
||||
share/python1.4/test/test_support.pyc
|
||||
share/python1.4/test/test_thread.py
|
||||
share/python1.4/test/test_thread.pyc
|
||||
share/python1.4/test/test_types.py
|
||||
share/python1.4/test/test_types.pyc
|
||||
share/python1.4/test/testall.out
|
||||
share/python1.4/test/testall.py
|
||||
share/python1.4/test/testall.pyc
|
||||
share/python1.4/tkinter/Canvas.py
|
||||
share/python1.4/tkinter/Canvas.pyc
|
||||
share/python1.4/tkinter/Dialog.py
|
||||
share/python1.4/tkinter/Dialog.pyc
|
||||
share/python1.4/tkinter/FileDialog.py
|
||||
share/python1.4/tkinter/FileDialog.pyc
|
||||
share/python1.4/tkinter/ScrolledText.py
|
||||
share/python1.4/tkinter/ScrolledText.pyc
|
||||
share/python1.4/tkinter/SimpleDialog.py
|
||||
share/python1.4/tkinter/SimpleDialog.pyc
|
||||
share/python1.4/tkinter/Tix.py
|
||||
share/python1.4/tkinter/Tix.pyc
|
||||
share/python1.4/tkinter/Tkconstants.py
|
||||
share/python1.4/tkinter/Tkconstants.pyc
|
||||
share/python1.4/tkinter/Tkinter.py
|
||||
share/python1.4/tkinter/Tkinter.pyc
|
||||
include/python1.4/Python.h
|
||||
include/python1.4/abstract.h
|
||||
include/python1.4/accessobject.h
|
||||
|
@ -459,4 +61,417 @@ include/python1.4/thread.h
|
|||
include/python1.4/token.h
|
||||
include/python1.4/traceback.h
|
||||
include/python1.4/tupleobject.h
|
||||
lib/python1.4/config/libParser.a
|
||||
lib/python1.4/config/libObjects.a
|
||||
lib/python1.4/config/libPython.a
|
||||
lib/python1.4/config/libModules.a
|
||||
lib/python1.4/config/config.c
|
||||
lib/python1.4/config/getpath.c
|
||||
lib/python1.4/config/config.c.in
|
||||
lib/python1.4/config/Makefile
|
||||
lib/python1.4/config/Setup
|
||||
lib/python1.4/config/makesetup
|
||||
lib/python1.4/config/config.h
|
||||
lib/python1.4/config/frozenmain.c
|
||||
lib/python1.4/config/main.o
|
||||
lib/python1.4/sharedmodules/dbmmodule.so
|
||||
lib/python1.4/sharedmodules/nismodule.so
|
||||
lib/python1.4/sharedmodules/termios.so
|
||||
lib/python1.4/sharedmodules/audioop.so
|
||||
lib/python1.4/sharedmodules/imageop.so
|
||||
lib/python1.4/sharedmodules/rgbimgmodule.so
|
||||
lib/python1.4/sharedmodules/md5module.so
|
||||
lib/python1.4/sharedmodules/_tkinter.so
|
||||
lib/python1.4/sharedmodules/rotormodule.so
|
||||
lib/python1.4/sharedmodules/syslogmodule.so
|
||||
lib/python1.4/sharedmodules/cursesmodule.so
|
||||
lib/python1.4/sharedmodules/bsddbmodule.so
|
||||
lib/python1.4/sharedmodules/binascii.so
|
||||
man/man1/python.1.gz
|
||||
share/python1.4/stdwin/Abstract.pyc
|
||||
share/python1.4/stdwin/Abstract.py
|
||||
share/python1.4/stdwin/BoxParent.py
|
||||
share/python1.4/stdwin/Buttons.py
|
||||
share/python1.4/stdwin/CSplit.py
|
||||
share/python1.4/stdwin/DirList.py
|
||||
share/python1.4/stdwin/FormSplit.py
|
||||
share/python1.4/stdwin/HVSplit.py
|
||||
share/python1.4/stdwin/Histogram.py
|
||||
share/python1.4/stdwin/Sliders.py
|
||||
share/python1.4/stdwin/Soundogram.py
|
||||
share/python1.4/stdwin/Split.py
|
||||
share/python1.4/stdwin/StripChart.py
|
||||
share/python1.4/stdwin/TextEdit.py
|
||||
share/python1.4/stdwin/TransParent.py
|
||||
share/python1.4/stdwin/VUMeter.py
|
||||
share/python1.4/stdwin/WindowParent.py
|
||||
share/python1.4/stdwin/WindowSched.py
|
||||
share/python1.4/stdwin/anywin.py
|
||||
share/python1.4/stdwin/basewin.py
|
||||
share/python1.4/stdwin/dirwin.py
|
||||
share/python1.4/stdwin/filewin.py
|
||||
share/python1.4/stdwin/formatter.py
|
||||
share/python1.4/stdwin/gwin.py
|
||||
share/python1.4/stdwin/listwin.py
|
||||
share/python1.4/stdwin/mainloop.py
|
||||
share/python1.4/stdwin/rect.py
|
||||
share/python1.4/stdwin/srcwin.py
|
||||
share/python1.4/stdwin/stdwinevents.py
|
||||
share/python1.4/stdwin/stdwinq.py
|
||||
share/python1.4/stdwin/tablewin.py
|
||||
share/python1.4/stdwin/textwin.py
|
||||
share/python1.4/stdwin/wdb.py
|
||||
share/python1.4/stdwin/wdbframewin.py
|
||||
share/python1.4/stdwin/wdbsrcwin.py
|
||||
share/python1.4/stdwin/BoxParent.pyc
|
||||
share/python1.4/stdwin/Buttons.pyc
|
||||
share/python1.4/stdwin/CSplit.pyc
|
||||
share/python1.4/stdwin/DirList.pyc
|
||||
share/python1.4/stdwin/FormSplit.pyc
|
||||
share/python1.4/stdwin/HVSplit.pyc
|
||||
share/python1.4/stdwin/Histogram.pyc
|
||||
share/python1.4/stdwin/Sliders.pyc
|
||||
share/python1.4/stdwin/Soundogram.pyc
|
||||
share/python1.4/stdwin/Split.pyc
|
||||
share/python1.4/stdwin/StripChart.pyc
|
||||
share/python1.4/stdwin/TextEdit.pyc
|
||||
share/python1.4/stdwin/TransParent.pyc
|
||||
share/python1.4/stdwin/VUMeter.pyc
|
||||
share/python1.4/stdwin/WindowParent.pyc
|
||||
share/python1.4/stdwin/WindowSched.pyc
|
||||
share/python1.4/stdwin/anywin.pyc
|
||||
share/python1.4/stdwin/basewin.pyc
|
||||
share/python1.4/stdwin/dirwin.pyc
|
||||
share/python1.4/stdwin/filewin.pyc
|
||||
share/python1.4/stdwin/formatter.pyc
|
||||
share/python1.4/stdwin/gwin.pyc
|
||||
share/python1.4/stdwin/listwin.pyc
|
||||
share/python1.4/stdwin/mainloop.pyc
|
||||
share/python1.4/stdwin/rect.pyc
|
||||
share/python1.4/stdwin/srcwin.pyc
|
||||
share/python1.4/stdwin/stdwinevents.pyc
|
||||
share/python1.4/stdwin/stdwinq.pyc
|
||||
share/python1.4/stdwin/tablewin.pyc
|
||||
share/python1.4/stdwin/textwin.pyc
|
||||
share/python1.4/stdwin/wdb.pyc
|
||||
share/python1.4/stdwin/wdbframewin.pyc
|
||||
share/python1.4/stdwin/wdbsrcwin.pyc
|
||||
share/python1.4/tkinter/Canvas.pyc
|
||||
share/python1.4/tkinter/Canvas.py
|
||||
share/python1.4/tkinter/Dialog.py
|
||||
share/python1.4/tkinter/FileDialog.py
|
||||
share/python1.4/tkinter/ScrolledText.py
|
||||
share/python1.4/tkinter/SimpleDialog.py
|
||||
share/python1.4/tkinter/Tkconstants.py
|
||||
share/python1.4/tkinter/Tkinter.py
|
||||
share/python1.4/tkinter/Dialog.pyc
|
||||
share/python1.4/tkinter/FileDialog.pyc
|
||||
share/python1.4/tkinter/ScrolledText.pyc
|
||||
share/python1.4/tkinter/SimpleDialog.pyc
|
||||
share/python1.4/tkinter/Tkconstants.pyc
|
||||
share/python1.4/tkinter/Tkinter.pyc
|
||||
share/python1.4/test/autotest.pyc
|
||||
share/python1.4/test/autotest.py
|
||||
share/python1.4/test/test.rawimg
|
||||
share/python1.4/test/test.rawimg.rev
|
||||
share/python1.4/test/test.rgb
|
||||
share/python1.4/test/test_audioop.py
|
||||
share/python1.4/test/test_b1.py
|
||||
share/python1.4/test/test_b2.py
|
||||
share/python1.4/test/test_builtin.py
|
||||
share/python1.4/test/test_exceptions.py
|
||||
share/python1.4/test/test_grammar.py
|
||||
share/python1.4/test/test_math.py
|
||||
share/python1.4/test/test_md5.py
|
||||
share/python1.4/test/test_opcodes.py
|
||||
share/python1.4/test/test_operations.py
|
||||
share/python1.4/test/test_pow.py
|
||||
share/python1.4/test/test_rgbimg.py
|
||||
share/python1.4/test/test_select.py
|
||||
share/python1.4/test/test_signal.py
|
||||
share/python1.4/test/test_strop.py
|
||||
share/python1.4/test/test_support.py
|
||||
share/python1.4/test/test_thread.py
|
||||
share/python1.4/test/test_types.py
|
||||
share/python1.4/test/testall.out
|
||||
share/python1.4/test/testall.py
|
||||
share/python1.4/test/test_audioop.pyc
|
||||
share/python1.4/test/test_b1.pyc
|
||||
share/python1.4/test/test_b2.pyc
|
||||
share/python1.4/test/test_builtin.pyc
|
||||
share/python1.4/test/test_exceptions.pyc
|
||||
share/python1.4/test/test_grammar.pyc
|
||||
share/python1.4/test/test_math.pyc
|
||||
share/python1.4/test/test_md5.pyc
|
||||
share/python1.4/test/test_opcodes.pyc
|
||||
share/python1.4/test/test_operations.pyc
|
||||
share/python1.4/test/test_pow.pyc
|
||||
share/python1.4/test/test_rgbimg.pyc
|
||||
share/python1.4/test/test_select.pyc
|
||||
share/python1.4/test/test_signal.pyc
|
||||
share/python1.4/test/test_strop.pyc
|
||||
share/python1.4/test/test_support.pyc
|
||||
share/python1.4/test/testall.pyc
|
||||
share/python1.4/test/test_thread.pyc
|
||||
share/python1.4/test/test_types.pyc
|
||||
share/python1.4/freebsd/FCNTL.pyc
|
||||
share/python1.4/freebsd/FCNTL.py
|
||||
share/python1.4/freebsd/IN.pyc
|
||||
share/python1.4/freebsd/IN.py
|
||||
share/python1.4/freebsd/SOCKET.pyc
|
||||
share/python1.4/freebsd/SOCKET.py
|
||||
share/python1.4/freebsd/TERMIOS.pyc
|
||||
share/python1.4/freebsd/TERMIOS.py
|
||||
share/python1.4/freebsd/regen
|
||||
share/python1.4/urllib.py
|
||||
share/python1.4/AST.py
|
||||
share/python1.4/BaseHTTPServer.py
|
||||
share/python1.4/Bastion.py
|
||||
share/python1.4/CGIHTTPServer.py
|
||||
share/python1.4/Complex.py
|
||||
share/python1.4/MimeWriter.py
|
||||
share/python1.4/Para.py
|
||||
share/python1.4/Queue.py
|
||||
share/python1.4/SimpleHTTPServer.py
|
||||
share/python1.4/SocketServer.py
|
||||
share/python1.4/StringIO.py
|
||||
share/python1.4/UserDict.py
|
||||
share/python1.4/UserList.py
|
||||
share/python1.4/addpack.py
|
||||
share/python1.4/aifc.py
|
||||
share/python1.4/anydbm.py
|
||||
share/python1.4/audiodev.py
|
||||
share/python1.4/base64.py
|
||||
share/python1.4/bdb.py
|
||||
share/python1.4/binhex.py
|
||||
share/python1.4/bisect.py
|
||||
share/python1.4/calendar.py
|
||||
share/python1.4/cgi.py
|
||||
share/python1.4/cmd.py
|
||||
share/python1.4/cmp.py
|
||||
share/python1.4/cmpcache.py
|
||||
share/python1.4/codehack.py
|
||||
share/python1.4/colorsys.py
|
||||
share/python1.4/commands.py
|
||||
share/python1.4/compileall.py
|
||||
share/python1.4/copy.py
|
||||
share/python1.4/dbhash.py
|
||||
share/python1.4/dircache.py
|
||||
share/python1.4/dircmp.py
|
||||
share/python1.4/dis.py
|
||||
share/python1.4/dospath.py
|
||||
share/python1.4/dumbdbm.py
|
||||
share/python1.4/dump.py
|
||||
share/python1.4/emacs.py
|
||||
share/python1.4/find.py
|
||||
share/python1.4/fmt.py
|
||||
share/python1.4/fnmatch.py
|
||||
share/python1.4/formatter.py
|
||||
share/python1.4/fpformat.py
|
||||
share/python1.4/ftplib.py
|
||||
share/python1.4/glob.py
|
||||
share/python1.4/getopt.py
|
||||
share/python1.4/gopherlib.py
|
||||
share/python1.4/grep.py
|
||||
share/python1.4/htmlentitydefs.py
|
||||
share/python1.4/htmllib.py
|
||||
share/python1.4/httplib.py
|
||||
share/python1.4/ihooks.py
|
||||
share/python1.4/imghdr.py
|
||||
share/python1.4/linecache.py
|
||||
share/python1.4/lockfile.py
|
||||
share/python1.4/macpath.py
|
||||
share/python1.4/macurl2path.py
|
||||
share/python1.4/mailbox.py
|
||||
share/python1.4/mailcap.py
|
||||
share/python1.4/mhlib.py
|
||||
share/python1.4/mimetools.py
|
||||
share/python1.4/mimify.py
|
||||
share/python1.4/multifile.py
|
||||
share/python1.4/mutex.py
|
||||
share/python1.4/newdir.py
|
||||
share/python1.4/ni.py
|
||||
share/python1.4/nntplib.py
|
||||
share/python1.4/ntpath.py
|
||||
share/python1.4/nturl2path.py
|
||||
share/python1.4/os.py
|
||||
share/python1.4/ospath.py
|
||||
share/python1.4/packmail.py
|
||||
share/python1.4/pdb.py
|
||||
share/python1.4/pickle.py
|
||||
share/python1.4/pipes.py
|
||||
share/python1.4/poly.py
|
||||
share/python1.4/popen2.py
|
||||
share/python1.4/posixfile.py
|
||||
share/python1.4/posixpath.py
|
||||
share/python1.4/profile.py
|
||||
share/python1.4/pstats.py
|
||||
share/python1.4/pty.py
|
||||
share/python1.4/py_compile.py
|
||||
share/python1.4/pyclbr.py
|
||||
share/python1.4/quopri.py
|
||||
share/python1.4/rand.py
|
||||
share/python1.4/random.py
|
||||
share/python1.4/regex_syntax.py
|
||||
share/python1.4/regexp.py
|
||||
share/python1.4/regsub.py
|
||||
share/python1.4/repr.py
|
||||
share/python1.4/rexec.py
|
||||
share/python1.4/rfc822.py
|
||||
share/python1.4/sched.py
|
||||
share/python1.4/sgmllib.py
|
||||
share/python1.4/shelve.py
|
||||
share/python1.4/shutil.py
|
||||
share/python1.4/site.py
|
||||
share/python1.4/sndhdr.py
|
||||
share/python1.4/stat.py
|
||||
share/python1.4/statcache.py
|
||||
share/python1.4/string.py
|
||||
share/python1.4/sunau.py
|
||||
share/python1.4/sunaudio.py
|
||||
share/python1.4/symbol.py
|
||||
share/python1.4/tb.py
|
||||
share/python1.4/tempfile.py
|
||||
share/python1.4/toaiff.py
|
||||
share/python1.4/token.py
|
||||
share/python1.4/tokenize.py
|
||||
share/python1.4/traceback.py
|
||||
share/python1.4/tty.py
|
||||
share/python1.4/types.py
|
||||
share/python1.4/tzparse.py
|
||||
share/python1.4/os.pyc
|
||||
share/python1.4/urlparse.py
|
||||
share/python1.4/util.py
|
||||
share/python1.4/uu.py
|
||||
share/python1.4/wave.py
|
||||
share/python1.4/whatsound.py
|
||||
share/python1.4/whichdb.py
|
||||
share/python1.4/whrandom.py
|
||||
share/python1.4/xdrlib.py
|
||||
share/python1.4/zmod.py
|
||||
share/python1.4/pdb.doc
|
||||
share/python1.4/profile.doc
|
||||
share/python1.4/posixpath.pyc
|
||||
share/python1.4/stat.pyc
|
||||
share/python1.4/UserDict.pyc
|
||||
share/python1.4/py_compile.pyc
|
||||
share/python1.4/getopt.pyc
|
||||
share/python1.4/string.pyc
|
||||
share/python1.4/AST.pyc
|
||||
share/python1.4/BaseHTTPServer.pyc
|
||||
share/python1.4/Bastion.pyc
|
||||
share/python1.4/CGIHTTPServer.pyc
|
||||
share/python1.4/Complex.pyc
|
||||
share/python1.4/MimeWriter.pyc
|
||||
share/python1.4/Para.pyc
|
||||
share/python1.4/Queue.pyc
|
||||
share/python1.4/SimpleHTTPServer.pyc
|
||||
share/python1.4/SocketServer.pyc
|
||||
share/python1.4/StringIO.pyc
|
||||
share/python1.4/UserList.pyc
|
||||
share/python1.4/addpack.pyc
|
||||
share/python1.4/aifc.pyc
|
||||
share/python1.4/anydbm.pyc
|
||||
share/python1.4/audiodev.pyc
|
||||
share/python1.4/base64.pyc
|
||||
share/python1.4/bdb.pyc
|
||||
share/python1.4/binhex.pyc
|
||||
share/python1.4/bisect.pyc
|
||||
share/python1.4/calendar.pyc
|
||||
share/python1.4/cgi.pyc
|
||||
share/python1.4/cmd.pyc
|
||||
share/python1.4/cmp.pyc
|
||||
share/python1.4/cmpcache.pyc
|
||||
share/python1.4/codehack.pyc
|
||||
share/python1.4/colorsys.pyc
|
||||
share/python1.4/commands.pyc
|
||||
share/python1.4/compileall.pyc
|
||||
share/python1.4/copy.pyc
|
||||
share/python1.4/dbhash.pyc
|
||||
share/python1.4/dircache.pyc
|
||||
share/python1.4/dircmp.pyc
|
||||
share/python1.4/dis.pyc
|
||||
share/python1.4/dospath.pyc
|
||||
share/python1.4/dumbdbm.pyc
|
||||
share/python1.4/dump.pyc
|
||||
share/python1.4/emacs.pyc
|
||||
share/python1.4/find.pyc
|
||||
share/python1.4/fmt.pyc
|
||||
share/python1.4/fnmatch.pyc
|
||||
share/python1.4/formatter.pyc
|
||||
share/python1.4/fpformat.pyc
|
||||
share/python1.4/ftplib.pyc
|
||||
share/python1.4/glob.pyc
|
||||
share/python1.4/gopherlib.pyc
|
||||
share/python1.4/grep.pyc
|
||||
share/python1.4/htmlentitydefs.pyc
|
||||
share/python1.4/htmllib.pyc
|
||||
share/python1.4/httplib.pyc
|
||||
share/python1.4/ihooks.pyc
|
||||
share/python1.4/imghdr.pyc
|
||||
share/python1.4/linecache.pyc
|
||||
share/python1.4/lockfile.pyc
|
||||
share/python1.4/macpath.pyc
|
||||
share/python1.4/macurl2path.pyc
|
||||
share/python1.4/mailbox.pyc
|
||||
share/python1.4/mailcap.pyc
|
||||
share/python1.4/mhlib.pyc
|
||||
share/python1.4/mimetools.pyc
|
||||
share/python1.4/mimify.pyc
|
||||
share/python1.4/multifile.pyc
|
||||
share/python1.4/mutex.pyc
|
||||
share/python1.4/newdir.pyc
|
||||
share/python1.4/ni.pyc
|
||||
share/python1.4/nntplib.pyc
|
||||
share/python1.4/ntpath.pyc
|
||||
share/python1.4/nturl2path.pyc
|
||||
share/python1.4/ospath.pyc
|
||||
share/python1.4/packmail.pyc
|
||||
share/python1.4/pdb.pyc
|
||||
share/python1.4/pickle.pyc
|
||||
share/python1.4/pipes.pyc
|
||||
share/python1.4/poly.pyc
|
||||
share/python1.4/popen2.pyc
|
||||
share/python1.4/posixfile.pyc
|
||||
share/python1.4/profile.pyc
|
||||
share/python1.4/pstats.pyc
|
||||
share/python1.4/pty.pyc
|
||||
share/python1.4/pyclbr.pyc
|
||||
share/python1.4/quopri.pyc
|
||||
share/python1.4/rand.pyc
|
||||
share/python1.4/random.pyc
|
||||
share/python1.4/regex_syntax.pyc
|
||||
share/python1.4/regexp.pyc
|
||||
share/python1.4/regsub.pyc
|
||||
share/python1.4/repr.pyc
|
||||
share/python1.4/rexec.pyc
|
||||
share/python1.4/rfc822.pyc
|
||||
share/python1.4/sched.pyc
|
||||
share/python1.4/sgmllib.pyc
|
||||
share/python1.4/shelve.pyc
|
||||
share/python1.4/shutil.pyc
|
||||
share/python1.4/site.pyc
|
||||
share/python1.4/sndhdr.pyc
|
||||
share/python1.4/statcache.pyc
|
||||
share/python1.4/sunau.pyc
|
||||
share/python1.4/sunaudio.pyc
|
||||
share/python1.4/symbol.pyc
|
||||
share/python1.4/tb.pyc
|
||||
share/python1.4/tempfile.pyc
|
||||
share/python1.4/toaiff.pyc
|
||||
share/python1.4/token.pyc
|
||||
share/python1.4/tokenize.pyc
|
||||
share/python1.4/traceback.pyc
|
||||
share/python1.4/tty.pyc
|
||||
share/python1.4/types.pyc
|
||||
share/python1.4/tzparse.pyc
|
||||
share/python1.4/urllib.pyc
|
||||
share/python1.4/urlparse.pyc
|
||||
share/python1.4/uu.pyc
|
||||
share/python1.4/util.pyc
|
||||
share/python1.4/wave.pyc
|
||||
share/python1.4/whatsound.pyc
|
||||
share/python1.4/whichdb.pyc
|
||||
share/python1.4/whrandom.pyc
|
||||
share/python1.4/xdrlib.pyc
|
||||
share/python1.4/zmod.pyc
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# Date created: 08 August 1995
|
||||
# Whom: jkh
|
||||
#
|
||||
# $Id: Makefile,v 1.12 1997/02/21 14:57:01 tg Exp $
|
||||
# $Id: Makefile,v 1.13 1997/04/20 13:19:11 wosch Exp $
|
||||
#
|
||||
|
||||
DISTNAME= python1.4
|
||||
|
@ -13,12 +13,10 @@ MASTER_SITES= ftp://www.python.org/pub/python/src/ \
|
|||
ftp://ftp.cwi.nl/pub/python/src/ \
|
||||
ftp://www.python.org/pub/python/contrib/Graphics/Tkinter/ \
|
||||
ftp://ftp.cwi.nl/pub/python/contrib/Graphics/Tkinter/
|
||||
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} PyTix-1.12.tar.gz
|
||||
|
||||
MAINTAINER= tg@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= tk41\\.1\\.:${PORTSDIR}/x11/tk41 \
|
||||
tix4175\\.1\\.:${PORTSDIR}/x11/tix
|
||||
LIB_DEPENDS= tk41\\.1\\.:${PORTSDIR}/x11/tk41
|
||||
|
||||
WRKSRC= ${WRKDIR}/Python-1.4
|
||||
HAS_CONFIGURE= yes
|
||||
|
@ -27,14 +25,6 @@ MAKE_FLAGS+= 'OPT=${CFLAGS}'
|
|||
INSTALL_TARGET= install
|
||||
MAN1= python.1
|
||||
|
||||
PYTIXSRC= ${WRKDIR}/PyTix-1.12
|
||||
|
||||
post-extract:
|
||||
@${ECHO_MSG} "===> Add PyTix extensions to Python core"
|
||||
${CP} ${PYTIXSRC}/Tkinter.py ${WRKSRC}/Lib/tkinter
|
||||
${CP} ${PYTIXSRC}/Tix.py ${WRKSRC}/Lib/tkinter
|
||||
${CP} ${PYTIXSRC}/_tkinter.c ${WRKSRC}/Modules
|
||||
|
||||
post-configure:
|
||||
${CP} ${FILESDIR}/Setup ${WRKSRC}/Modules
|
||||
|
||||
|
|
|
@ -71,7 +71,7 @@ SITEPATH=:$(DESTLIB)/NumPy
|
|||
TESTPATH=:$(DESTLIB)/test
|
||||
|
||||
# Path for machine- or system-dependent modules (and shared libraries)
|
||||
MACHDEPPATH=:$(DESTLIB)/$(MACHDEP)
|
||||
MACHDEPPATH=:$(DESTLIB)/$(MACHDEP):$(MACHDESTLIB)/sharedmodules
|
||||
|
||||
COREPYTHONPATH=.$(SITEPATH)$(DESTPATH)$(TESTPATH)$(MACHDEPPATH)$(STDWINPATH)$(TKPATH)
|
||||
PYTHONPATH=$(COREPYTHONPATH)
|
||||
|
@ -128,6 +128,7 @@ select selectmodule.c # select(2); not on ancient System V
|
|||
socket socketmodule.c # socket(2); not on ancient System V
|
||||
errno errnomodule.c # posix (UNIX) errno values
|
||||
|
||||
*shared*
|
||||
|
||||
# Some more UNIX dependent modules -- off by default, since these
|
||||
# are not supported by all UNIX systems:
|
||||
|
@ -249,7 +250,7 @@ TKPATH=:$(DESTLIB)/tkinter
|
|||
#_tkinter _tkinter.c -I/usr/openwin/include -I/usr/local/include -L/usr/openwin/lib -L/usr/local/lib -ltk4.1 -ltcl7.5 -lX11
|
||||
# For generic system (may have to add -I/-L options to find X11):
|
||||
#_tkinter _tkinter.c -I/usr/local/include -L/usr/local/lib -ltk4.1 -ltcl7.5 -lX11
|
||||
_tkinter _tkinter.c -I/usr/local/include -I/usr/X11R6/include -L/usr/local/lib -L/usr/X11R6/lib -ltix4175 -ltk41 -ltcl75 -lX11
|
||||
_tkinter _tkinter.c -I/usr/local/include -I/usr/X11R6/include -L/usr/local/lib -L/usr/X11R6/lib -ltk41 -ltcl75 -lX11
|
||||
|
||||
|
||||
# Lance Ellinghaus's modules:
|
||||
|
|
|
@ -1,11 +1,7 @@
|
|||
--- Makefile.in.orig Fri Oct 25 16:37:32 1996
|
||||
+++ Makefile.in Thu Feb 6 12:02:11 1997
|
||||
@@ -95,10 +95,10 @@
|
||||
|
||||
# Expanded directories
|
||||
BINDIR= $(exec_prefix)/bin
|
||||
-LIBDIR= $(exec_prefix)/lib
|
||||
+LIBDIR= $(exec_prefix)/share
|
||||
+++ Makefile.in Mon May 12 21:04:38 1997
|
||||
@@ -98,7 +98,7 @@
|
||||
LIBDIR= $(exec_prefix)/lib
|
||||
MANDIR= $(prefix)/man
|
||||
INCLUDEDIR= $(prefix)/include
|
||||
-SCRIPTDIR= $(prefix)/lib
|
||||
|
|
|
@ -1,403 +1,5 @@
|
|||
bin/python1.4
|
||||
bin/python
|
||||
@exec mkdir -p %D/share/python1.4/sharedmodules
|
||||
@unexec rmdir %D/share/python1.4/sharedmodules
|
||||
share/python1.4/AST.py
|
||||
share/python1.4/AST.pyc
|
||||
share/python1.4/BaseHTTPServer.py
|
||||
share/python1.4/BaseHTTPServer.pyc
|
||||
share/python1.4/Bastion.py
|
||||
share/python1.4/Bastion.pyc
|
||||
share/python1.4/CGIHTTPServer.py
|
||||
share/python1.4/CGIHTTPServer.pyc
|
||||
share/python1.4/Complex.py
|
||||
share/python1.4/Complex.pyc
|
||||
share/python1.4/MimeWriter.py
|
||||
share/python1.4/MimeWriter.pyc
|
||||
share/python1.4/Para.py
|
||||
share/python1.4/Para.pyc
|
||||
share/python1.4/Queue.py
|
||||
share/python1.4/Queue.pyc
|
||||
share/python1.4/SimpleHTTPServer.py
|
||||
share/python1.4/SimpleHTTPServer.pyc
|
||||
share/python1.4/SocketServer.py
|
||||
share/python1.4/SocketServer.pyc
|
||||
share/python1.4/StringIO.py
|
||||
share/python1.4/StringIO.pyc
|
||||
share/python1.4/UserDict.py
|
||||
share/python1.4/UserDict.pyc
|
||||
share/python1.4/UserList.py
|
||||
share/python1.4/UserList.pyc
|
||||
share/python1.4/addpack.py
|
||||
share/python1.4/addpack.pyc
|
||||
share/python1.4/aifc.py
|
||||
share/python1.4/aifc.pyc
|
||||
share/python1.4/anydbm.py
|
||||
share/python1.4/anydbm.pyc
|
||||
share/python1.4/audiodev.py
|
||||
share/python1.4/audiodev.pyc
|
||||
share/python1.4/base64.py
|
||||
share/python1.4/base64.pyc
|
||||
share/python1.4/bdb.py
|
||||
share/python1.4/bdb.pyc
|
||||
share/python1.4/binhex.py
|
||||
share/python1.4/binhex.pyc
|
||||
share/python1.4/bisect.py
|
||||
share/python1.4/bisect.pyc
|
||||
share/python1.4/calendar.py
|
||||
share/python1.4/calendar.pyc
|
||||
share/python1.4/cgi.py
|
||||
share/python1.4/cgi.pyc
|
||||
share/python1.4/cmd.py
|
||||
share/python1.4/cmd.pyc
|
||||
share/python1.4/cmp.py
|
||||
share/python1.4/cmp.pyc
|
||||
share/python1.4/cmpcache.py
|
||||
share/python1.4/cmpcache.pyc
|
||||
share/python1.4/codehack.py
|
||||
share/python1.4/codehack.pyc
|
||||
share/python1.4/colorsys.py
|
||||
share/python1.4/colorsys.pyc
|
||||
share/python1.4/commands.py
|
||||
share/python1.4/commands.pyc
|
||||
share/python1.4/compileall.py
|
||||
share/python1.4/compileall.pyc
|
||||
share/python1.4/copy.py
|
||||
share/python1.4/copy.pyc
|
||||
share/python1.4/dbhash.py
|
||||
share/python1.4/dbhash.pyc
|
||||
share/python1.4/dircache.py
|
||||
share/python1.4/dircache.pyc
|
||||
share/python1.4/dircmp.py
|
||||
share/python1.4/dircmp.pyc
|
||||
share/python1.4/dis.py
|
||||
share/python1.4/dis.pyc
|
||||
share/python1.4/dospath.py
|
||||
share/python1.4/dospath.pyc
|
||||
share/python1.4/dumbdbm.py
|
||||
share/python1.4/dumbdbm.pyc
|
||||
share/python1.4/dump.py
|
||||
share/python1.4/dump.pyc
|
||||
share/python1.4/emacs.py
|
||||
share/python1.4/emacs.pyc
|
||||
share/python1.4/find.py
|
||||
share/python1.4/find.pyc
|
||||
share/python1.4/fmt.py
|
||||
share/python1.4/fmt.pyc
|
||||
share/python1.4/fnmatch.py
|
||||
share/python1.4/fnmatch.pyc
|
||||
share/python1.4/formatter.py
|
||||
share/python1.4/formatter.pyc
|
||||
share/python1.4/fpformat.py
|
||||
share/python1.4/fpformat.pyc
|
||||
share/python1.4/ftplib.py
|
||||
share/python1.4/ftplib.pyc
|
||||
share/python1.4/getopt.py
|
||||
share/python1.4/getopt.pyc
|
||||
share/python1.4/glob.py
|
||||
share/python1.4/glob.pyc
|
||||
share/python1.4/gopherlib.py
|
||||
share/python1.4/gopherlib.pyc
|
||||
share/python1.4/grep.py
|
||||
share/python1.4/grep.pyc
|
||||
share/python1.4/htmlentitydefs.py
|
||||
share/python1.4/htmlentitydefs.pyc
|
||||
share/python1.4/htmllib.py
|
||||
share/python1.4/htmllib.pyc
|
||||
share/python1.4/httplib.py
|
||||
share/python1.4/httplib.pyc
|
||||
share/python1.4/ihooks.py
|
||||
share/python1.4/ihooks.pyc
|
||||
share/python1.4/imghdr.py
|
||||
share/python1.4/imghdr.pyc
|
||||
share/python1.4/linecache.py
|
||||
share/python1.4/linecache.pyc
|
||||
share/python1.4/lockfile.py
|
||||
share/python1.4/lockfile.pyc
|
||||
share/python1.4/macpath.py
|
||||
share/python1.4/macpath.pyc
|
||||
share/python1.4/macurl2path.py
|
||||
share/python1.4/macurl2path.pyc
|
||||
share/python1.4/mailbox.py
|
||||
share/python1.4/mailbox.pyc
|
||||
share/python1.4/mailcap.py
|
||||
share/python1.4/mailcap.pyc
|
||||
share/python1.4/mhlib.py
|
||||
share/python1.4/mhlib.pyc
|
||||
share/python1.4/mimetools.py
|
||||
share/python1.4/mimetools.pyc
|
||||
share/python1.4/mimify.py
|
||||
share/python1.4/mimify.pyc
|
||||
share/python1.4/multifile.py
|
||||
share/python1.4/multifile.pyc
|
||||
share/python1.4/mutex.py
|
||||
share/python1.4/mutex.pyc
|
||||
share/python1.4/newdir.py
|
||||
share/python1.4/newdir.pyc
|
||||
share/python1.4/ni.py
|
||||
share/python1.4/ni.pyc
|
||||
share/python1.4/nntplib.py
|
||||
share/python1.4/nntplib.pyc
|
||||
share/python1.4/ntpath.py
|
||||
share/python1.4/ntpath.pyc
|
||||
share/python1.4/nturl2path.py
|
||||
share/python1.4/nturl2path.pyc
|
||||
share/python1.4/os.py
|
||||
share/python1.4/os.pyc
|
||||
share/python1.4/ospath.py
|
||||
share/python1.4/ospath.pyc
|
||||
share/python1.4/packmail.py
|
||||
share/python1.4/packmail.pyc
|
||||
share/python1.4/pdb.doc
|
||||
share/python1.4/pdb.py
|
||||
share/python1.4/pdb.pyc
|
||||
share/python1.4/pickle.py
|
||||
share/python1.4/pickle.pyc
|
||||
share/python1.4/pipes.py
|
||||
share/python1.4/pipes.pyc
|
||||
share/python1.4/poly.py
|
||||
share/python1.4/poly.pyc
|
||||
share/python1.4/popen2.py
|
||||
share/python1.4/popen2.pyc
|
||||
share/python1.4/posixfile.py
|
||||
share/python1.4/posixfile.pyc
|
||||
share/python1.4/posixpath.py
|
||||
share/python1.4/posixpath.pyc
|
||||
share/python1.4/profile.doc
|
||||
share/python1.4/profile.py
|
||||
share/python1.4/profile.pyc
|
||||
share/python1.4/pstats.py
|
||||
share/python1.4/pstats.pyc
|
||||
share/python1.4/pty.py
|
||||
share/python1.4/pty.pyc
|
||||
share/python1.4/py_compile.py
|
||||
share/python1.4/py_compile.pyc
|
||||
share/python1.4/pyclbr.py
|
||||
share/python1.4/pyclbr.pyc
|
||||
share/python1.4/quopri.py
|
||||
share/python1.4/quopri.pyc
|
||||
share/python1.4/rand.py
|
||||
share/python1.4/rand.pyc
|
||||
share/python1.4/random.py
|
||||
share/python1.4/random.pyc
|
||||
share/python1.4/regex_syntax.py
|
||||
share/python1.4/regex_syntax.pyc
|
||||
share/python1.4/regexp.py
|
||||
share/python1.4/regexp.pyc
|
||||
share/python1.4/regsub.py
|
||||
share/python1.4/regsub.pyc
|
||||
share/python1.4/repr.py
|
||||
share/python1.4/repr.pyc
|
||||
share/python1.4/rexec.py
|
||||
share/python1.4/rexec.pyc
|
||||
share/python1.4/rfc822.py
|
||||
share/python1.4/rfc822.pyc
|
||||
share/python1.4/sched.py
|
||||
share/python1.4/sched.pyc
|
||||
share/python1.4/sgmllib.py
|
||||
share/python1.4/sgmllib.pyc
|
||||
share/python1.4/shelve.py
|
||||
share/python1.4/shelve.pyc
|
||||
share/python1.4/shutil.py
|
||||
share/python1.4/shutil.pyc
|
||||
share/python1.4/site.py
|
||||
share/python1.4/site.pyc
|
||||
share/python1.4/sndhdr.py
|
||||
share/python1.4/sndhdr.pyc
|
||||
share/python1.4/stat.py
|
||||
share/python1.4/stat.pyc
|
||||
share/python1.4/statcache.py
|
||||
share/python1.4/statcache.pyc
|
||||
share/python1.4/string.py
|
||||
share/python1.4/string.pyc
|
||||
share/python1.4/sunau.py
|
||||
share/python1.4/sunau.pyc
|
||||
share/python1.4/sunaudio.py
|
||||
share/python1.4/sunaudio.pyc
|
||||
share/python1.4/symbol.py
|
||||
share/python1.4/symbol.pyc
|
||||
share/python1.4/tb.py
|
||||
share/python1.4/tb.pyc
|
||||
share/python1.4/tempfile.py
|
||||
share/python1.4/tempfile.pyc
|
||||
share/python1.4/toaiff.py
|
||||
share/python1.4/toaiff.pyc
|
||||
share/python1.4/token.py
|
||||
share/python1.4/token.pyc
|
||||
share/python1.4/tokenize.py
|
||||
share/python1.4/tokenize.pyc
|
||||
share/python1.4/traceback.py
|
||||
share/python1.4/traceback.pyc
|
||||
share/python1.4/tty.py
|
||||
share/python1.4/tty.pyc
|
||||
share/python1.4/types.py
|
||||
share/python1.4/types.pyc
|
||||
share/python1.4/tzparse.py
|
||||
share/python1.4/tzparse.pyc
|
||||
share/python1.4/urllib.py
|
||||
share/python1.4/urllib.pyc
|
||||
share/python1.4/urlparse.py
|
||||
share/python1.4/urlparse.pyc
|
||||
share/python1.4/util.py
|
||||
share/python1.4/util.pyc
|
||||
share/python1.4/uu.py
|
||||
share/python1.4/uu.pyc
|
||||
share/python1.4/wave.py
|
||||
share/python1.4/wave.pyc
|
||||
share/python1.4/whatsound.py
|
||||
share/python1.4/whatsound.pyc
|
||||
share/python1.4/whichdb.py
|
||||
share/python1.4/whichdb.pyc
|
||||
share/python1.4/whrandom.py
|
||||
share/python1.4/whrandom.pyc
|
||||
share/python1.4/xdrlib.py
|
||||
share/python1.4/xdrlib.pyc
|
||||
share/python1.4/zmod.py
|
||||
share/python1.4/zmod.pyc
|
||||
share/python1.4/config/Makefile
|
||||
share/python1.4/config/Setup
|
||||
share/python1.4/config/config.c
|
||||
share/python1.4/config/config.c.in
|
||||
share/python1.4/config/config.h
|
||||
share/python1.4/config/frozenmain.c
|
||||
share/python1.4/config/getpath.c
|
||||
share/python1.4/config/libModules.a
|
||||
share/python1.4/config/libObjects.a
|
||||
share/python1.4/config/libParser.a
|
||||
share/python1.4/config/libPython.a
|
||||
share/python1.4/config/main.o
|
||||
share/python1.4/config/makesetup
|
||||
share/python1.4/freebsd2/FCNTL.py
|
||||
share/python1.4/freebsd2/FCNTL.pyc
|
||||
share/python1.4/freebsd2/regen
|
||||
share/python1.4/stdwin/Abstract.py
|
||||
share/python1.4/stdwin/Abstract.pyc
|
||||
share/python1.4/stdwin/BoxParent.py
|
||||
share/python1.4/stdwin/BoxParent.pyc
|
||||
share/python1.4/stdwin/Buttons.py
|
||||
share/python1.4/stdwin/Buttons.pyc
|
||||
share/python1.4/stdwin/CSplit.py
|
||||
share/python1.4/stdwin/CSplit.pyc
|
||||
share/python1.4/stdwin/DirList.py
|
||||
share/python1.4/stdwin/DirList.pyc
|
||||
share/python1.4/stdwin/FormSplit.py
|
||||
share/python1.4/stdwin/FormSplit.pyc
|
||||
share/python1.4/stdwin/HVSplit.py
|
||||
share/python1.4/stdwin/HVSplit.pyc
|
||||
share/python1.4/stdwin/Histogram.py
|
||||
share/python1.4/stdwin/Histogram.pyc
|
||||
share/python1.4/stdwin/Sliders.py
|
||||
share/python1.4/stdwin/Sliders.pyc
|
||||
share/python1.4/stdwin/Soundogram.py
|
||||
share/python1.4/stdwin/Soundogram.pyc
|
||||
share/python1.4/stdwin/Split.py
|
||||
share/python1.4/stdwin/Split.pyc
|
||||
share/python1.4/stdwin/StripChart.py
|
||||
share/python1.4/stdwin/StripChart.pyc
|
||||
share/python1.4/stdwin/TextEdit.py
|
||||
share/python1.4/stdwin/TextEdit.pyc
|
||||
share/python1.4/stdwin/TransParent.py
|
||||
share/python1.4/stdwin/TransParent.pyc
|
||||
share/python1.4/stdwin/VUMeter.py
|
||||
share/python1.4/stdwin/VUMeter.pyc
|
||||
share/python1.4/stdwin/WindowParent.py
|
||||
share/python1.4/stdwin/WindowParent.pyc
|
||||
share/python1.4/stdwin/WindowSched.py
|
||||
share/python1.4/stdwin/WindowSched.pyc
|
||||
share/python1.4/stdwin/anywin.py
|
||||
share/python1.4/stdwin/anywin.pyc
|
||||
share/python1.4/stdwin/basewin.py
|
||||
share/python1.4/stdwin/basewin.pyc
|
||||
share/python1.4/stdwin/dirwin.py
|
||||
share/python1.4/stdwin/dirwin.pyc
|
||||
share/python1.4/stdwin/filewin.py
|
||||
share/python1.4/stdwin/filewin.pyc
|
||||
share/python1.4/stdwin/formatter.py
|
||||
share/python1.4/stdwin/formatter.pyc
|
||||
share/python1.4/stdwin/gwin.py
|
||||
share/python1.4/stdwin/gwin.pyc
|
||||
share/python1.4/stdwin/listwin.py
|
||||
share/python1.4/stdwin/listwin.pyc
|
||||
share/python1.4/stdwin/mainloop.py
|
||||
share/python1.4/stdwin/mainloop.pyc
|
||||
share/python1.4/stdwin/rect.py
|
||||
share/python1.4/stdwin/rect.pyc
|
||||
share/python1.4/stdwin/srcwin.py
|
||||
share/python1.4/stdwin/srcwin.pyc
|
||||
share/python1.4/stdwin/stdwinevents.py
|
||||
share/python1.4/stdwin/stdwinevents.pyc
|
||||
share/python1.4/stdwin/stdwinq.py
|
||||
share/python1.4/stdwin/stdwinq.pyc
|
||||
share/python1.4/stdwin/tablewin.py
|
||||
share/python1.4/stdwin/tablewin.pyc
|
||||
share/python1.4/stdwin/textwin.py
|
||||
share/python1.4/stdwin/textwin.pyc
|
||||
share/python1.4/stdwin/wdb.py
|
||||
share/python1.4/stdwin/wdb.pyc
|
||||
share/python1.4/stdwin/wdbframewin.py
|
||||
share/python1.4/stdwin/wdbframewin.pyc
|
||||
share/python1.4/stdwin/wdbsrcwin.py
|
||||
share/python1.4/stdwin/wdbsrcwin.pyc
|
||||
share/python1.4/test/autotest.py
|
||||
share/python1.4/test/autotest.pyc
|
||||
share/python1.4/test/test.rawimg
|
||||
share/python1.4/test/test.rawimg.rev
|
||||
share/python1.4/test/test.rgb
|
||||
share/python1.4/test/test_audioop.py
|
||||
share/python1.4/test/test_audioop.pyc
|
||||
share/python1.4/test/test_b1.py
|
||||
share/python1.4/test/test_b1.pyc
|
||||
share/python1.4/test/test_b2.py
|
||||
share/python1.4/test/test_b2.pyc
|
||||
share/python1.4/test/test_builtin.py
|
||||
share/python1.4/test/test_builtin.pyc
|
||||
share/python1.4/test/test_exceptions.py
|
||||
share/python1.4/test/test_exceptions.pyc
|
||||
share/python1.4/test/test_grammar.py
|
||||
share/python1.4/test/test_grammar.pyc
|
||||
share/python1.4/test/test_math.py
|
||||
share/python1.4/test/test_math.pyc
|
||||
share/python1.4/test/test_md5.py
|
||||
share/python1.4/test/test_md5.pyc
|
||||
share/python1.4/test/test_opcodes.py
|
||||
share/python1.4/test/test_opcodes.pyc
|
||||
share/python1.4/test/test_operations.py
|
||||
share/python1.4/test/test_operations.pyc
|
||||
share/python1.4/test/test_pow.py
|
||||
share/python1.4/test/test_pow.pyc
|
||||
share/python1.4/test/test_rgbimg.py
|
||||
share/python1.4/test/test_rgbimg.pyc
|
||||
share/python1.4/test/test_select.py
|
||||
share/python1.4/test/test_select.pyc
|
||||
share/python1.4/test/test_signal.py
|
||||
share/python1.4/test/test_signal.pyc
|
||||
share/python1.4/test/test_strop.py
|
||||
share/python1.4/test/test_strop.pyc
|
||||
share/python1.4/test/test_support.py
|
||||
share/python1.4/test/test_support.pyc
|
||||
share/python1.4/test/test_thread.py
|
||||
share/python1.4/test/test_thread.pyc
|
||||
share/python1.4/test/test_types.py
|
||||
share/python1.4/test/test_types.pyc
|
||||
share/python1.4/test/testall.out
|
||||
share/python1.4/test/testall.py
|
||||
share/python1.4/test/testall.pyc
|
||||
share/python1.4/tkinter/Canvas.py
|
||||
share/python1.4/tkinter/Canvas.pyc
|
||||
share/python1.4/tkinter/Dialog.py
|
||||
share/python1.4/tkinter/Dialog.pyc
|
||||
share/python1.4/tkinter/FileDialog.py
|
||||
share/python1.4/tkinter/FileDialog.pyc
|
||||
share/python1.4/tkinter/ScrolledText.py
|
||||
share/python1.4/tkinter/ScrolledText.pyc
|
||||
share/python1.4/tkinter/SimpleDialog.py
|
||||
share/python1.4/tkinter/SimpleDialog.pyc
|
||||
share/python1.4/tkinter/Tix.py
|
||||
share/python1.4/tkinter/Tix.pyc
|
||||
share/python1.4/tkinter/Tkconstants.py
|
||||
share/python1.4/tkinter/Tkconstants.pyc
|
||||
share/python1.4/tkinter/Tkinter.py
|
||||
share/python1.4/tkinter/Tkinter.pyc
|
||||
include/python1.4/Python.h
|
||||
include/python1.4/abstract.h
|
||||
include/python1.4/accessobject.h
|
||||
|
@ -459,4 +61,417 @@ include/python1.4/thread.h
|
|||
include/python1.4/token.h
|
||||
include/python1.4/traceback.h
|
||||
include/python1.4/tupleobject.h
|
||||
lib/python1.4/config/libParser.a
|
||||
lib/python1.4/config/libObjects.a
|
||||
lib/python1.4/config/libPython.a
|
||||
lib/python1.4/config/libModules.a
|
||||
lib/python1.4/config/config.c
|
||||
lib/python1.4/config/getpath.c
|
||||
lib/python1.4/config/config.c.in
|
||||
lib/python1.4/config/Makefile
|
||||
lib/python1.4/config/Setup
|
||||
lib/python1.4/config/makesetup
|
||||
lib/python1.4/config/config.h
|
||||
lib/python1.4/config/frozenmain.c
|
||||
lib/python1.4/config/main.o
|
||||
lib/python1.4/sharedmodules/dbmmodule.so
|
||||
lib/python1.4/sharedmodules/nismodule.so
|
||||
lib/python1.4/sharedmodules/termios.so
|
||||
lib/python1.4/sharedmodules/audioop.so
|
||||
lib/python1.4/sharedmodules/imageop.so
|
||||
lib/python1.4/sharedmodules/rgbimgmodule.so
|
||||
lib/python1.4/sharedmodules/md5module.so
|
||||
lib/python1.4/sharedmodules/_tkinter.so
|
||||
lib/python1.4/sharedmodules/rotormodule.so
|
||||
lib/python1.4/sharedmodules/syslogmodule.so
|
||||
lib/python1.4/sharedmodules/cursesmodule.so
|
||||
lib/python1.4/sharedmodules/bsddbmodule.so
|
||||
lib/python1.4/sharedmodules/binascii.so
|
||||
man/man1/python.1.gz
|
||||
share/python1.4/stdwin/Abstract.pyc
|
||||
share/python1.4/stdwin/Abstract.py
|
||||
share/python1.4/stdwin/BoxParent.py
|
||||
share/python1.4/stdwin/Buttons.py
|
||||
share/python1.4/stdwin/CSplit.py
|
||||
share/python1.4/stdwin/DirList.py
|
||||
share/python1.4/stdwin/FormSplit.py
|
||||
share/python1.4/stdwin/HVSplit.py
|
||||
share/python1.4/stdwin/Histogram.py
|
||||
share/python1.4/stdwin/Sliders.py
|
||||
share/python1.4/stdwin/Soundogram.py
|
||||
share/python1.4/stdwin/Split.py
|
||||
share/python1.4/stdwin/StripChart.py
|
||||
share/python1.4/stdwin/TextEdit.py
|
||||
share/python1.4/stdwin/TransParent.py
|
||||
share/python1.4/stdwin/VUMeter.py
|
||||
share/python1.4/stdwin/WindowParent.py
|
||||
share/python1.4/stdwin/WindowSched.py
|
||||
share/python1.4/stdwin/anywin.py
|
||||
share/python1.4/stdwin/basewin.py
|
||||
share/python1.4/stdwin/dirwin.py
|
||||
share/python1.4/stdwin/filewin.py
|
||||
share/python1.4/stdwin/formatter.py
|
||||
share/python1.4/stdwin/gwin.py
|
||||
share/python1.4/stdwin/listwin.py
|
||||
share/python1.4/stdwin/mainloop.py
|
||||
share/python1.4/stdwin/rect.py
|
||||
share/python1.4/stdwin/srcwin.py
|
||||
share/python1.4/stdwin/stdwinevents.py
|
||||
share/python1.4/stdwin/stdwinq.py
|
||||
share/python1.4/stdwin/tablewin.py
|
||||
share/python1.4/stdwin/textwin.py
|
||||
share/python1.4/stdwin/wdb.py
|
||||
share/python1.4/stdwin/wdbframewin.py
|
||||
share/python1.4/stdwin/wdbsrcwin.py
|
||||
share/python1.4/stdwin/BoxParent.pyc
|
||||
share/python1.4/stdwin/Buttons.pyc
|
||||
share/python1.4/stdwin/CSplit.pyc
|
||||
share/python1.4/stdwin/DirList.pyc
|
||||
share/python1.4/stdwin/FormSplit.pyc
|
||||
share/python1.4/stdwin/HVSplit.pyc
|
||||
share/python1.4/stdwin/Histogram.pyc
|
||||
share/python1.4/stdwin/Sliders.pyc
|
||||
share/python1.4/stdwin/Soundogram.pyc
|
||||
share/python1.4/stdwin/Split.pyc
|
||||
share/python1.4/stdwin/StripChart.pyc
|
||||
share/python1.4/stdwin/TextEdit.pyc
|
||||
share/python1.4/stdwin/TransParent.pyc
|
||||
share/python1.4/stdwin/VUMeter.pyc
|
||||
share/python1.4/stdwin/WindowParent.pyc
|
||||
share/python1.4/stdwin/WindowSched.pyc
|
||||
share/python1.4/stdwin/anywin.pyc
|
||||
share/python1.4/stdwin/basewin.pyc
|
||||
share/python1.4/stdwin/dirwin.pyc
|
||||
share/python1.4/stdwin/filewin.pyc
|
||||
share/python1.4/stdwin/formatter.pyc
|
||||
share/python1.4/stdwin/gwin.pyc
|
||||
share/python1.4/stdwin/listwin.pyc
|
||||
share/python1.4/stdwin/mainloop.pyc
|
||||
share/python1.4/stdwin/rect.pyc
|
||||
share/python1.4/stdwin/srcwin.pyc
|
||||
share/python1.4/stdwin/stdwinevents.pyc
|
||||
share/python1.4/stdwin/stdwinq.pyc
|
||||
share/python1.4/stdwin/tablewin.pyc
|
||||
share/python1.4/stdwin/textwin.pyc
|
||||
share/python1.4/stdwin/wdb.pyc
|
||||
share/python1.4/stdwin/wdbframewin.pyc
|
||||
share/python1.4/stdwin/wdbsrcwin.pyc
|
||||
share/python1.4/tkinter/Canvas.pyc
|
||||
share/python1.4/tkinter/Canvas.py
|
||||
share/python1.4/tkinter/Dialog.py
|
||||
share/python1.4/tkinter/FileDialog.py
|
||||
share/python1.4/tkinter/ScrolledText.py
|
||||
share/python1.4/tkinter/SimpleDialog.py
|
||||
share/python1.4/tkinter/Tkconstants.py
|
||||
share/python1.4/tkinter/Tkinter.py
|
||||
share/python1.4/tkinter/Dialog.pyc
|
||||
share/python1.4/tkinter/FileDialog.pyc
|
||||
share/python1.4/tkinter/ScrolledText.pyc
|
||||
share/python1.4/tkinter/SimpleDialog.pyc
|
||||
share/python1.4/tkinter/Tkconstants.pyc
|
||||
share/python1.4/tkinter/Tkinter.pyc
|
||||
share/python1.4/test/autotest.pyc
|
||||
share/python1.4/test/autotest.py
|
||||
share/python1.4/test/test.rawimg
|
||||
share/python1.4/test/test.rawimg.rev
|
||||
share/python1.4/test/test.rgb
|
||||
share/python1.4/test/test_audioop.py
|
||||
share/python1.4/test/test_b1.py
|
||||
share/python1.4/test/test_b2.py
|
||||
share/python1.4/test/test_builtin.py
|
||||
share/python1.4/test/test_exceptions.py
|
||||
share/python1.4/test/test_grammar.py
|
||||
share/python1.4/test/test_math.py
|
||||
share/python1.4/test/test_md5.py
|
||||
share/python1.4/test/test_opcodes.py
|
||||
share/python1.4/test/test_operations.py
|
||||
share/python1.4/test/test_pow.py
|
||||
share/python1.4/test/test_rgbimg.py
|
||||
share/python1.4/test/test_select.py
|
||||
share/python1.4/test/test_signal.py
|
||||
share/python1.4/test/test_strop.py
|
||||
share/python1.4/test/test_support.py
|
||||
share/python1.4/test/test_thread.py
|
||||
share/python1.4/test/test_types.py
|
||||
share/python1.4/test/testall.out
|
||||
share/python1.4/test/testall.py
|
||||
share/python1.4/test/test_audioop.pyc
|
||||
share/python1.4/test/test_b1.pyc
|
||||
share/python1.4/test/test_b2.pyc
|
||||
share/python1.4/test/test_builtin.pyc
|
||||
share/python1.4/test/test_exceptions.pyc
|
||||
share/python1.4/test/test_grammar.pyc
|
||||
share/python1.4/test/test_math.pyc
|
||||
share/python1.4/test/test_md5.pyc
|
||||
share/python1.4/test/test_opcodes.pyc
|
||||
share/python1.4/test/test_operations.pyc
|
||||
share/python1.4/test/test_pow.pyc
|
||||
share/python1.4/test/test_rgbimg.pyc
|
||||
share/python1.4/test/test_select.pyc
|
||||
share/python1.4/test/test_signal.pyc
|
||||
share/python1.4/test/test_strop.pyc
|
||||
share/python1.4/test/test_support.pyc
|
||||
share/python1.4/test/testall.pyc
|
||||
share/python1.4/test/test_thread.pyc
|
||||
share/python1.4/test/test_types.pyc
|
||||
share/python1.4/freebsd/FCNTL.pyc
|
||||
share/python1.4/freebsd/FCNTL.py
|
||||
share/python1.4/freebsd/IN.pyc
|
||||
share/python1.4/freebsd/IN.py
|
||||
share/python1.4/freebsd/SOCKET.pyc
|
||||
share/python1.4/freebsd/SOCKET.py
|
||||
share/python1.4/freebsd/TERMIOS.pyc
|
||||
share/python1.4/freebsd/TERMIOS.py
|
||||
share/python1.4/freebsd/regen
|
||||
share/python1.4/urllib.py
|
||||
share/python1.4/AST.py
|
||||
share/python1.4/BaseHTTPServer.py
|
||||
share/python1.4/Bastion.py
|
||||
share/python1.4/CGIHTTPServer.py
|
||||
share/python1.4/Complex.py
|
||||
share/python1.4/MimeWriter.py
|
||||
share/python1.4/Para.py
|
||||
share/python1.4/Queue.py
|
||||
share/python1.4/SimpleHTTPServer.py
|
||||
share/python1.4/SocketServer.py
|
||||
share/python1.4/StringIO.py
|
||||
share/python1.4/UserDict.py
|
||||
share/python1.4/UserList.py
|
||||
share/python1.4/addpack.py
|
||||
share/python1.4/aifc.py
|
||||
share/python1.4/anydbm.py
|
||||
share/python1.4/audiodev.py
|
||||
share/python1.4/base64.py
|
||||
share/python1.4/bdb.py
|
||||
share/python1.4/binhex.py
|
||||
share/python1.4/bisect.py
|
||||
share/python1.4/calendar.py
|
||||
share/python1.4/cgi.py
|
||||
share/python1.4/cmd.py
|
||||
share/python1.4/cmp.py
|
||||
share/python1.4/cmpcache.py
|
||||
share/python1.4/codehack.py
|
||||
share/python1.4/colorsys.py
|
||||
share/python1.4/commands.py
|
||||
share/python1.4/compileall.py
|
||||
share/python1.4/copy.py
|
||||
share/python1.4/dbhash.py
|
||||
share/python1.4/dircache.py
|
||||
share/python1.4/dircmp.py
|
||||
share/python1.4/dis.py
|
||||
share/python1.4/dospath.py
|
||||
share/python1.4/dumbdbm.py
|
||||
share/python1.4/dump.py
|
||||
share/python1.4/emacs.py
|
||||
share/python1.4/find.py
|
||||
share/python1.4/fmt.py
|
||||
share/python1.4/fnmatch.py
|
||||
share/python1.4/formatter.py
|
||||
share/python1.4/fpformat.py
|
||||
share/python1.4/ftplib.py
|
||||
share/python1.4/glob.py
|
||||
share/python1.4/getopt.py
|
||||
share/python1.4/gopherlib.py
|
||||
share/python1.4/grep.py
|
||||
share/python1.4/htmlentitydefs.py
|
||||
share/python1.4/htmllib.py
|
||||
share/python1.4/httplib.py
|
||||
share/python1.4/ihooks.py
|
||||
share/python1.4/imghdr.py
|
||||
share/python1.4/linecache.py
|
||||
share/python1.4/lockfile.py
|
||||
share/python1.4/macpath.py
|
||||
share/python1.4/macurl2path.py
|
||||
share/python1.4/mailbox.py
|
||||
share/python1.4/mailcap.py
|
||||
share/python1.4/mhlib.py
|
||||
share/python1.4/mimetools.py
|
||||
share/python1.4/mimify.py
|
||||
share/python1.4/multifile.py
|
||||
share/python1.4/mutex.py
|
||||
share/python1.4/newdir.py
|
||||
share/python1.4/ni.py
|
||||
share/python1.4/nntplib.py
|
||||
share/python1.4/ntpath.py
|
||||
share/python1.4/nturl2path.py
|
||||
share/python1.4/os.py
|
||||
share/python1.4/ospath.py
|
||||
share/python1.4/packmail.py
|
||||
share/python1.4/pdb.py
|
||||
share/python1.4/pickle.py
|
||||
share/python1.4/pipes.py
|
||||
share/python1.4/poly.py
|
||||
share/python1.4/popen2.py
|
||||
share/python1.4/posixfile.py
|
||||
share/python1.4/posixpath.py
|
||||
share/python1.4/profile.py
|
||||
share/python1.4/pstats.py
|
||||
share/python1.4/pty.py
|
||||
share/python1.4/py_compile.py
|
||||
share/python1.4/pyclbr.py
|
||||
share/python1.4/quopri.py
|
||||
share/python1.4/rand.py
|
||||
share/python1.4/random.py
|
||||
share/python1.4/regex_syntax.py
|
||||
share/python1.4/regexp.py
|
||||
share/python1.4/regsub.py
|
||||
share/python1.4/repr.py
|
||||
share/python1.4/rexec.py
|
||||
share/python1.4/rfc822.py
|
||||
share/python1.4/sched.py
|
||||
share/python1.4/sgmllib.py
|
||||
share/python1.4/shelve.py
|
||||
share/python1.4/shutil.py
|
||||
share/python1.4/site.py
|
||||
share/python1.4/sndhdr.py
|
||||
share/python1.4/stat.py
|
||||
share/python1.4/statcache.py
|
||||
share/python1.4/string.py
|
||||
share/python1.4/sunau.py
|
||||
share/python1.4/sunaudio.py
|
||||
share/python1.4/symbol.py
|
||||
share/python1.4/tb.py
|
||||
share/python1.4/tempfile.py
|
||||
share/python1.4/toaiff.py
|
||||
share/python1.4/token.py
|
||||
share/python1.4/tokenize.py
|
||||
share/python1.4/traceback.py
|
||||
share/python1.4/tty.py
|
||||
share/python1.4/types.py
|
||||
share/python1.4/tzparse.py
|
||||
share/python1.4/os.pyc
|
||||
share/python1.4/urlparse.py
|
||||
share/python1.4/util.py
|
||||
share/python1.4/uu.py
|
||||
share/python1.4/wave.py
|
||||
share/python1.4/whatsound.py
|
||||
share/python1.4/whichdb.py
|
||||
share/python1.4/whrandom.py
|
||||
share/python1.4/xdrlib.py
|
||||
share/python1.4/zmod.py
|
||||
share/python1.4/pdb.doc
|
||||
share/python1.4/profile.doc
|
||||
share/python1.4/posixpath.pyc
|
||||
share/python1.4/stat.pyc
|
||||
share/python1.4/UserDict.pyc
|
||||
share/python1.4/py_compile.pyc
|
||||
share/python1.4/getopt.pyc
|
||||
share/python1.4/string.pyc
|
||||
share/python1.4/AST.pyc
|
||||
share/python1.4/BaseHTTPServer.pyc
|
||||
share/python1.4/Bastion.pyc
|
||||
share/python1.4/CGIHTTPServer.pyc
|
||||
share/python1.4/Complex.pyc
|
||||
share/python1.4/MimeWriter.pyc
|
||||
share/python1.4/Para.pyc
|
||||
share/python1.4/Queue.pyc
|
||||
share/python1.4/SimpleHTTPServer.pyc
|
||||
share/python1.4/SocketServer.pyc
|
||||
share/python1.4/StringIO.pyc
|
||||
share/python1.4/UserList.pyc
|
||||
share/python1.4/addpack.pyc
|
||||
share/python1.4/aifc.pyc
|
||||
share/python1.4/anydbm.pyc
|
||||
share/python1.4/audiodev.pyc
|
||||
share/python1.4/base64.pyc
|
||||
share/python1.4/bdb.pyc
|
||||
share/python1.4/binhex.pyc
|
||||
share/python1.4/bisect.pyc
|
||||
share/python1.4/calendar.pyc
|
||||
share/python1.4/cgi.pyc
|
||||
share/python1.4/cmd.pyc
|
||||
share/python1.4/cmp.pyc
|
||||
share/python1.4/cmpcache.pyc
|
||||
share/python1.4/codehack.pyc
|
||||
share/python1.4/colorsys.pyc
|
||||
share/python1.4/commands.pyc
|
||||
share/python1.4/compileall.pyc
|
||||
share/python1.4/copy.pyc
|
||||
share/python1.4/dbhash.pyc
|
||||
share/python1.4/dircache.pyc
|
||||
share/python1.4/dircmp.pyc
|
||||
share/python1.4/dis.pyc
|
||||
share/python1.4/dospath.pyc
|
||||
share/python1.4/dumbdbm.pyc
|
||||
share/python1.4/dump.pyc
|
||||
share/python1.4/emacs.pyc
|
||||
share/python1.4/find.pyc
|
||||
share/python1.4/fmt.pyc
|
||||
share/python1.4/fnmatch.pyc
|
||||
share/python1.4/formatter.pyc
|
||||
share/python1.4/fpformat.pyc
|
||||
share/python1.4/ftplib.pyc
|
||||
share/python1.4/glob.pyc
|
||||
share/python1.4/gopherlib.pyc
|
||||
share/python1.4/grep.pyc
|
||||
share/python1.4/htmlentitydefs.pyc
|
||||
share/python1.4/htmllib.pyc
|
||||
share/python1.4/httplib.pyc
|
||||
share/python1.4/ihooks.pyc
|
||||
share/python1.4/imghdr.pyc
|
||||
share/python1.4/linecache.pyc
|
||||
share/python1.4/lockfile.pyc
|
||||
share/python1.4/macpath.pyc
|
||||
share/python1.4/macurl2path.pyc
|
||||
share/python1.4/mailbox.pyc
|
||||
share/python1.4/mailcap.pyc
|
||||
share/python1.4/mhlib.pyc
|
||||
share/python1.4/mimetools.pyc
|
||||
share/python1.4/mimify.pyc
|
||||
share/python1.4/multifile.pyc
|
||||
share/python1.4/mutex.pyc
|
||||
share/python1.4/newdir.pyc
|
||||
share/python1.4/ni.pyc
|
||||
share/python1.4/nntplib.pyc
|
||||
share/python1.4/ntpath.pyc
|
||||
share/python1.4/nturl2path.pyc
|
||||
share/python1.4/ospath.pyc
|
||||
share/python1.4/packmail.pyc
|
||||
share/python1.4/pdb.pyc
|
||||
share/python1.4/pickle.pyc
|
||||
share/python1.4/pipes.pyc
|
||||
share/python1.4/poly.pyc
|
||||
share/python1.4/popen2.pyc
|
||||
share/python1.4/posixfile.pyc
|
||||
share/python1.4/profile.pyc
|
||||
share/python1.4/pstats.pyc
|
||||
share/python1.4/pty.pyc
|
||||
share/python1.4/pyclbr.pyc
|
||||
share/python1.4/quopri.pyc
|
||||
share/python1.4/rand.pyc
|
||||
share/python1.4/random.pyc
|
||||
share/python1.4/regex_syntax.pyc
|
||||
share/python1.4/regexp.pyc
|
||||
share/python1.4/regsub.pyc
|
||||
share/python1.4/repr.pyc
|
||||
share/python1.4/rexec.pyc
|
||||
share/python1.4/rfc822.pyc
|
||||
share/python1.4/sched.pyc
|
||||
share/python1.4/sgmllib.pyc
|
||||
share/python1.4/shelve.pyc
|
||||
share/python1.4/shutil.pyc
|
||||
share/python1.4/site.pyc
|
||||
share/python1.4/sndhdr.pyc
|
||||
share/python1.4/statcache.pyc
|
||||
share/python1.4/sunau.pyc
|
||||
share/python1.4/sunaudio.pyc
|
||||
share/python1.4/symbol.pyc
|
||||
share/python1.4/tb.pyc
|
||||
share/python1.4/tempfile.pyc
|
||||
share/python1.4/toaiff.pyc
|
||||
share/python1.4/token.pyc
|
||||
share/python1.4/tokenize.pyc
|
||||
share/python1.4/traceback.pyc
|
||||
share/python1.4/tty.pyc
|
||||
share/python1.4/types.pyc
|
||||
share/python1.4/tzparse.pyc
|
||||
share/python1.4/urllib.pyc
|
||||
share/python1.4/urlparse.pyc
|
||||
share/python1.4/uu.pyc
|
||||
share/python1.4/util.pyc
|
||||
share/python1.4/wave.pyc
|
||||
share/python1.4/whatsound.pyc
|
||||
share/python1.4/whichdb.pyc
|
||||
share/python1.4/whrandom.pyc
|
||||
share/python1.4/xdrlib.pyc
|
||||
share/python1.4/zmod.pyc
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# Date created: 08 August 1995
|
||||
# Whom: jkh
|
||||
#
|
||||
# $Id: Makefile,v 1.12 1997/02/21 14:57:01 tg Exp $
|
||||
# $Id: Makefile,v 1.13 1997/04/20 13:19:11 wosch Exp $
|
||||
#
|
||||
|
||||
DISTNAME= python1.4
|
||||
|
@ -13,12 +13,10 @@ MASTER_SITES= ftp://www.python.org/pub/python/src/ \
|
|||
ftp://ftp.cwi.nl/pub/python/src/ \
|
||||
ftp://www.python.org/pub/python/contrib/Graphics/Tkinter/ \
|
||||
ftp://ftp.cwi.nl/pub/python/contrib/Graphics/Tkinter/
|
||||
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} PyTix-1.12.tar.gz
|
||||
|
||||
MAINTAINER= tg@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= tk41\\.1\\.:${PORTSDIR}/x11/tk41 \
|
||||
tix4175\\.1\\.:${PORTSDIR}/x11/tix
|
||||
LIB_DEPENDS= tk41\\.1\\.:${PORTSDIR}/x11/tk41
|
||||
|
||||
WRKSRC= ${WRKDIR}/Python-1.4
|
||||
HAS_CONFIGURE= yes
|
||||
|
@ -27,14 +25,6 @@ MAKE_FLAGS+= 'OPT=${CFLAGS}'
|
|||
INSTALL_TARGET= install
|
||||
MAN1= python.1
|
||||
|
||||
PYTIXSRC= ${WRKDIR}/PyTix-1.12
|
||||
|
||||
post-extract:
|
||||
@${ECHO_MSG} "===> Add PyTix extensions to Python core"
|
||||
${CP} ${PYTIXSRC}/Tkinter.py ${WRKSRC}/Lib/tkinter
|
||||
${CP} ${PYTIXSRC}/Tix.py ${WRKSRC}/Lib/tkinter
|
||||
${CP} ${PYTIXSRC}/_tkinter.c ${WRKSRC}/Modules
|
||||
|
||||
post-configure:
|
||||
${CP} ${FILESDIR}/Setup ${WRKSRC}/Modules
|
||||
|
||||
|
|
|
@ -71,7 +71,7 @@ SITEPATH=:$(DESTLIB)/NumPy
|
|||
TESTPATH=:$(DESTLIB)/test
|
||||
|
||||
# Path for machine- or system-dependent modules (and shared libraries)
|
||||
MACHDEPPATH=:$(DESTLIB)/$(MACHDEP)
|
||||
MACHDEPPATH=:$(DESTLIB)/$(MACHDEP):$(MACHDESTLIB)/sharedmodules
|
||||
|
||||
COREPYTHONPATH=.$(SITEPATH)$(DESTPATH)$(TESTPATH)$(MACHDEPPATH)$(STDWINPATH)$(TKPATH)
|
||||
PYTHONPATH=$(COREPYTHONPATH)
|
||||
|
@ -128,6 +128,7 @@ select selectmodule.c # select(2); not on ancient System V
|
|||
socket socketmodule.c # socket(2); not on ancient System V
|
||||
errno errnomodule.c # posix (UNIX) errno values
|
||||
|
||||
*shared*
|
||||
|
||||
# Some more UNIX dependent modules -- off by default, since these
|
||||
# are not supported by all UNIX systems:
|
||||
|
@ -249,7 +250,7 @@ TKPATH=:$(DESTLIB)/tkinter
|
|||
#_tkinter _tkinter.c -I/usr/openwin/include -I/usr/local/include -L/usr/openwin/lib -L/usr/local/lib -ltk4.1 -ltcl7.5 -lX11
|
||||
# For generic system (may have to add -I/-L options to find X11):
|
||||
#_tkinter _tkinter.c -I/usr/local/include -L/usr/local/lib -ltk4.1 -ltcl7.5 -lX11
|
||||
_tkinter _tkinter.c -I/usr/local/include -I/usr/X11R6/include -L/usr/local/lib -L/usr/X11R6/lib -ltix4175 -ltk41 -ltcl75 -lX11
|
||||
_tkinter _tkinter.c -I/usr/local/include -I/usr/X11R6/include -L/usr/local/lib -L/usr/X11R6/lib -ltk41 -ltcl75 -lX11
|
||||
|
||||
|
||||
# Lance Ellinghaus's modules:
|
||||
|
|
|
@ -1,11 +1,7 @@
|
|||
--- Makefile.in.orig Fri Oct 25 16:37:32 1996
|
||||
+++ Makefile.in Thu Feb 6 12:02:11 1997
|
||||
@@ -95,10 +95,10 @@
|
||||
|
||||
# Expanded directories
|
||||
BINDIR= $(exec_prefix)/bin
|
||||
-LIBDIR= $(exec_prefix)/lib
|
||||
+LIBDIR= $(exec_prefix)/share
|
||||
+++ Makefile.in Mon May 12 21:04:38 1997
|
||||
@@ -98,7 +98,7 @@
|
||||
LIBDIR= $(exec_prefix)/lib
|
||||
MANDIR= $(prefix)/man
|
||||
INCLUDEDIR= $(prefix)/include
|
||||
-SCRIPTDIR= $(prefix)/lib
|
||||
|
|
|
@ -1,403 +1,5 @@
|
|||
bin/python1.4
|
||||
bin/python
|
||||
@exec mkdir -p %D/share/python1.4/sharedmodules
|
||||
@unexec rmdir %D/share/python1.4/sharedmodules
|
||||
share/python1.4/AST.py
|
||||
share/python1.4/AST.pyc
|
||||
share/python1.4/BaseHTTPServer.py
|
||||
share/python1.4/BaseHTTPServer.pyc
|
||||
share/python1.4/Bastion.py
|
||||
share/python1.4/Bastion.pyc
|
||||
share/python1.4/CGIHTTPServer.py
|
||||
share/python1.4/CGIHTTPServer.pyc
|
||||
share/python1.4/Complex.py
|
||||
share/python1.4/Complex.pyc
|
||||
share/python1.4/MimeWriter.py
|
||||
share/python1.4/MimeWriter.pyc
|
||||
share/python1.4/Para.py
|
||||
share/python1.4/Para.pyc
|
||||
share/python1.4/Queue.py
|
||||
share/python1.4/Queue.pyc
|
||||
share/python1.4/SimpleHTTPServer.py
|
||||
share/python1.4/SimpleHTTPServer.pyc
|
||||
share/python1.4/SocketServer.py
|
||||
share/python1.4/SocketServer.pyc
|
||||
share/python1.4/StringIO.py
|
||||
share/python1.4/StringIO.pyc
|
||||
share/python1.4/UserDict.py
|
||||
share/python1.4/UserDict.pyc
|
||||
share/python1.4/UserList.py
|
||||
share/python1.4/UserList.pyc
|
||||
share/python1.4/addpack.py
|
||||
share/python1.4/addpack.pyc
|
||||
share/python1.4/aifc.py
|
||||
share/python1.4/aifc.pyc
|
||||
share/python1.4/anydbm.py
|
||||
share/python1.4/anydbm.pyc
|
||||
share/python1.4/audiodev.py
|
||||
share/python1.4/audiodev.pyc
|
||||
share/python1.4/base64.py
|
||||
share/python1.4/base64.pyc
|
||||
share/python1.4/bdb.py
|
||||
share/python1.4/bdb.pyc
|
||||
share/python1.4/binhex.py
|
||||
share/python1.4/binhex.pyc
|
||||
share/python1.4/bisect.py
|
||||
share/python1.4/bisect.pyc
|
||||
share/python1.4/calendar.py
|
||||
share/python1.4/calendar.pyc
|
||||
share/python1.4/cgi.py
|
||||
share/python1.4/cgi.pyc
|
||||
share/python1.4/cmd.py
|
||||
share/python1.4/cmd.pyc
|
||||
share/python1.4/cmp.py
|
||||
share/python1.4/cmp.pyc
|
||||
share/python1.4/cmpcache.py
|
||||
share/python1.4/cmpcache.pyc
|
||||
share/python1.4/codehack.py
|
||||
share/python1.4/codehack.pyc
|
||||
share/python1.4/colorsys.py
|
||||
share/python1.4/colorsys.pyc
|
||||
share/python1.4/commands.py
|
||||
share/python1.4/commands.pyc
|
||||
share/python1.4/compileall.py
|
||||
share/python1.4/compileall.pyc
|
||||
share/python1.4/copy.py
|
||||
share/python1.4/copy.pyc
|
||||
share/python1.4/dbhash.py
|
||||
share/python1.4/dbhash.pyc
|
||||
share/python1.4/dircache.py
|
||||
share/python1.4/dircache.pyc
|
||||
share/python1.4/dircmp.py
|
||||
share/python1.4/dircmp.pyc
|
||||
share/python1.4/dis.py
|
||||
share/python1.4/dis.pyc
|
||||
share/python1.4/dospath.py
|
||||
share/python1.4/dospath.pyc
|
||||
share/python1.4/dumbdbm.py
|
||||
share/python1.4/dumbdbm.pyc
|
||||
share/python1.4/dump.py
|
||||
share/python1.4/dump.pyc
|
||||
share/python1.4/emacs.py
|
||||
share/python1.4/emacs.pyc
|
||||
share/python1.4/find.py
|
||||
share/python1.4/find.pyc
|
||||
share/python1.4/fmt.py
|
||||
share/python1.4/fmt.pyc
|
||||
share/python1.4/fnmatch.py
|
||||
share/python1.4/fnmatch.pyc
|
||||
share/python1.4/formatter.py
|
||||
share/python1.4/formatter.pyc
|
||||
share/python1.4/fpformat.py
|
||||
share/python1.4/fpformat.pyc
|
||||
share/python1.4/ftplib.py
|
||||
share/python1.4/ftplib.pyc
|
||||
share/python1.4/getopt.py
|
||||
share/python1.4/getopt.pyc
|
||||
share/python1.4/glob.py
|
||||
share/python1.4/glob.pyc
|
||||
share/python1.4/gopherlib.py
|
||||
share/python1.4/gopherlib.pyc
|
||||
share/python1.4/grep.py
|
||||
share/python1.4/grep.pyc
|
||||
share/python1.4/htmlentitydefs.py
|
||||
share/python1.4/htmlentitydefs.pyc
|
||||
share/python1.4/htmllib.py
|
||||
share/python1.4/htmllib.pyc
|
||||
share/python1.4/httplib.py
|
||||
share/python1.4/httplib.pyc
|
||||
share/python1.4/ihooks.py
|
||||
share/python1.4/ihooks.pyc
|
||||
share/python1.4/imghdr.py
|
||||
share/python1.4/imghdr.pyc
|
||||
share/python1.4/linecache.py
|
||||
share/python1.4/linecache.pyc
|
||||
share/python1.4/lockfile.py
|
||||
share/python1.4/lockfile.pyc
|
||||
share/python1.4/macpath.py
|
||||
share/python1.4/macpath.pyc
|
||||
share/python1.4/macurl2path.py
|
||||
share/python1.4/macurl2path.pyc
|
||||
share/python1.4/mailbox.py
|
||||
share/python1.4/mailbox.pyc
|
||||
share/python1.4/mailcap.py
|
||||
share/python1.4/mailcap.pyc
|
||||
share/python1.4/mhlib.py
|
||||
share/python1.4/mhlib.pyc
|
||||
share/python1.4/mimetools.py
|
||||
share/python1.4/mimetools.pyc
|
||||
share/python1.4/mimify.py
|
||||
share/python1.4/mimify.pyc
|
||||
share/python1.4/multifile.py
|
||||
share/python1.4/multifile.pyc
|
||||
share/python1.4/mutex.py
|
||||
share/python1.4/mutex.pyc
|
||||
share/python1.4/newdir.py
|
||||
share/python1.4/newdir.pyc
|
||||
share/python1.4/ni.py
|
||||
share/python1.4/ni.pyc
|
||||
share/python1.4/nntplib.py
|
||||
share/python1.4/nntplib.pyc
|
||||
share/python1.4/ntpath.py
|
||||
share/python1.4/ntpath.pyc
|
||||
share/python1.4/nturl2path.py
|
||||
share/python1.4/nturl2path.pyc
|
||||
share/python1.4/os.py
|
||||
share/python1.4/os.pyc
|
||||
share/python1.4/ospath.py
|
||||
share/python1.4/ospath.pyc
|
||||
share/python1.4/packmail.py
|
||||
share/python1.4/packmail.pyc
|
||||
share/python1.4/pdb.doc
|
||||
share/python1.4/pdb.py
|
||||
share/python1.4/pdb.pyc
|
||||
share/python1.4/pickle.py
|
||||
share/python1.4/pickle.pyc
|
||||
share/python1.4/pipes.py
|
||||
share/python1.4/pipes.pyc
|
||||
share/python1.4/poly.py
|
||||
share/python1.4/poly.pyc
|
||||
share/python1.4/popen2.py
|
||||
share/python1.4/popen2.pyc
|
||||
share/python1.4/posixfile.py
|
||||
share/python1.4/posixfile.pyc
|
||||
share/python1.4/posixpath.py
|
||||
share/python1.4/posixpath.pyc
|
||||
share/python1.4/profile.doc
|
||||
share/python1.4/profile.py
|
||||
share/python1.4/profile.pyc
|
||||
share/python1.4/pstats.py
|
||||
share/python1.4/pstats.pyc
|
||||
share/python1.4/pty.py
|
||||
share/python1.4/pty.pyc
|
||||
share/python1.4/py_compile.py
|
||||
share/python1.4/py_compile.pyc
|
||||
share/python1.4/pyclbr.py
|
||||
share/python1.4/pyclbr.pyc
|
||||
share/python1.4/quopri.py
|
||||
share/python1.4/quopri.pyc
|
||||
share/python1.4/rand.py
|
||||
share/python1.4/rand.pyc
|
||||
share/python1.4/random.py
|
||||
share/python1.4/random.pyc
|
||||
share/python1.4/regex_syntax.py
|
||||
share/python1.4/regex_syntax.pyc
|
||||
share/python1.4/regexp.py
|
||||
share/python1.4/regexp.pyc
|
||||
share/python1.4/regsub.py
|
||||
share/python1.4/regsub.pyc
|
||||
share/python1.4/repr.py
|
||||
share/python1.4/repr.pyc
|
||||
share/python1.4/rexec.py
|
||||
share/python1.4/rexec.pyc
|
||||
share/python1.4/rfc822.py
|
||||
share/python1.4/rfc822.pyc
|
||||
share/python1.4/sched.py
|
||||
share/python1.4/sched.pyc
|
||||
share/python1.4/sgmllib.py
|
||||
share/python1.4/sgmllib.pyc
|
||||
share/python1.4/shelve.py
|
||||
share/python1.4/shelve.pyc
|
||||
share/python1.4/shutil.py
|
||||
share/python1.4/shutil.pyc
|
||||
share/python1.4/site.py
|
||||
share/python1.4/site.pyc
|
||||
share/python1.4/sndhdr.py
|
||||
share/python1.4/sndhdr.pyc
|
||||
share/python1.4/stat.py
|
||||
share/python1.4/stat.pyc
|
||||
share/python1.4/statcache.py
|
||||
share/python1.4/statcache.pyc
|
||||
share/python1.4/string.py
|
||||
share/python1.4/string.pyc
|
||||
share/python1.4/sunau.py
|
||||
share/python1.4/sunau.pyc
|
||||
share/python1.4/sunaudio.py
|
||||
share/python1.4/sunaudio.pyc
|
||||
share/python1.4/symbol.py
|
||||
share/python1.4/symbol.pyc
|
||||
share/python1.4/tb.py
|
||||
share/python1.4/tb.pyc
|
||||
share/python1.4/tempfile.py
|
||||
share/python1.4/tempfile.pyc
|
||||
share/python1.4/toaiff.py
|
||||
share/python1.4/toaiff.pyc
|
||||
share/python1.4/token.py
|
||||
share/python1.4/token.pyc
|
||||
share/python1.4/tokenize.py
|
||||
share/python1.4/tokenize.pyc
|
||||
share/python1.4/traceback.py
|
||||
share/python1.4/traceback.pyc
|
||||
share/python1.4/tty.py
|
||||
share/python1.4/tty.pyc
|
||||
share/python1.4/types.py
|
||||
share/python1.4/types.pyc
|
||||
share/python1.4/tzparse.py
|
||||
share/python1.4/tzparse.pyc
|
||||
share/python1.4/urllib.py
|
||||
share/python1.4/urllib.pyc
|
||||
share/python1.4/urlparse.py
|
||||
share/python1.4/urlparse.pyc
|
||||
share/python1.4/util.py
|
||||
share/python1.4/util.pyc
|
||||
share/python1.4/uu.py
|
||||
share/python1.4/uu.pyc
|
||||
share/python1.4/wave.py
|
||||
share/python1.4/wave.pyc
|
||||
share/python1.4/whatsound.py
|
||||
share/python1.4/whatsound.pyc
|
||||
share/python1.4/whichdb.py
|
||||
share/python1.4/whichdb.pyc
|
||||
share/python1.4/whrandom.py
|
||||
share/python1.4/whrandom.pyc
|
||||
share/python1.4/xdrlib.py
|
||||
share/python1.4/xdrlib.pyc
|
||||
share/python1.4/zmod.py
|
||||
share/python1.4/zmod.pyc
|
||||
share/python1.4/config/Makefile
|
||||
share/python1.4/config/Setup
|
||||
share/python1.4/config/config.c
|
||||
share/python1.4/config/config.c.in
|
||||
share/python1.4/config/config.h
|
||||
share/python1.4/config/frozenmain.c
|
||||
share/python1.4/config/getpath.c
|
||||
share/python1.4/config/libModules.a
|
||||
share/python1.4/config/libObjects.a
|
||||
share/python1.4/config/libParser.a
|
||||
share/python1.4/config/libPython.a
|
||||
share/python1.4/config/main.o
|
||||
share/python1.4/config/makesetup
|
||||
share/python1.4/freebsd2/FCNTL.py
|
||||
share/python1.4/freebsd2/FCNTL.pyc
|
||||
share/python1.4/freebsd2/regen
|
||||
share/python1.4/stdwin/Abstract.py
|
||||
share/python1.4/stdwin/Abstract.pyc
|
||||
share/python1.4/stdwin/BoxParent.py
|
||||
share/python1.4/stdwin/BoxParent.pyc
|
||||
share/python1.4/stdwin/Buttons.py
|
||||
share/python1.4/stdwin/Buttons.pyc
|
||||
share/python1.4/stdwin/CSplit.py
|
||||
share/python1.4/stdwin/CSplit.pyc
|
||||
share/python1.4/stdwin/DirList.py
|
||||
share/python1.4/stdwin/DirList.pyc
|
||||
share/python1.4/stdwin/FormSplit.py
|
||||
share/python1.4/stdwin/FormSplit.pyc
|
||||
share/python1.4/stdwin/HVSplit.py
|
||||
share/python1.4/stdwin/HVSplit.pyc
|
||||
share/python1.4/stdwin/Histogram.py
|
||||
share/python1.4/stdwin/Histogram.pyc
|
||||
share/python1.4/stdwin/Sliders.py
|
||||
share/python1.4/stdwin/Sliders.pyc
|
||||
share/python1.4/stdwin/Soundogram.py
|
||||
share/python1.4/stdwin/Soundogram.pyc
|
||||
share/python1.4/stdwin/Split.py
|
||||
share/python1.4/stdwin/Split.pyc
|
||||
share/python1.4/stdwin/StripChart.py
|
||||
share/python1.4/stdwin/StripChart.pyc
|
||||
share/python1.4/stdwin/TextEdit.py
|
||||
share/python1.4/stdwin/TextEdit.pyc
|
||||
share/python1.4/stdwin/TransParent.py
|
||||
share/python1.4/stdwin/TransParent.pyc
|
||||
share/python1.4/stdwin/VUMeter.py
|
||||
share/python1.4/stdwin/VUMeter.pyc
|
||||
share/python1.4/stdwin/WindowParent.py
|
||||
share/python1.4/stdwin/WindowParent.pyc
|
||||
share/python1.4/stdwin/WindowSched.py
|
||||
share/python1.4/stdwin/WindowSched.pyc
|
||||
share/python1.4/stdwin/anywin.py
|
||||
share/python1.4/stdwin/anywin.pyc
|
||||
share/python1.4/stdwin/basewin.py
|
||||
share/python1.4/stdwin/basewin.pyc
|
||||
share/python1.4/stdwin/dirwin.py
|
||||
share/python1.4/stdwin/dirwin.pyc
|
||||
share/python1.4/stdwin/filewin.py
|
||||
share/python1.4/stdwin/filewin.pyc
|
||||
share/python1.4/stdwin/formatter.py
|
||||
share/python1.4/stdwin/formatter.pyc
|
||||
share/python1.4/stdwin/gwin.py
|
||||
share/python1.4/stdwin/gwin.pyc
|
||||
share/python1.4/stdwin/listwin.py
|
||||
share/python1.4/stdwin/listwin.pyc
|
||||
share/python1.4/stdwin/mainloop.py
|
||||
share/python1.4/stdwin/mainloop.pyc
|
||||
share/python1.4/stdwin/rect.py
|
||||
share/python1.4/stdwin/rect.pyc
|
||||
share/python1.4/stdwin/srcwin.py
|
||||
share/python1.4/stdwin/srcwin.pyc
|
||||
share/python1.4/stdwin/stdwinevents.py
|
||||
share/python1.4/stdwin/stdwinevents.pyc
|
||||
share/python1.4/stdwin/stdwinq.py
|
||||
share/python1.4/stdwin/stdwinq.pyc
|
||||
share/python1.4/stdwin/tablewin.py
|
||||
share/python1.4/stdwin/tablewin.pyc
|
||||
share/python1.4/stdwin/textwin.py
|
||||
share/python1.4/stdwin/textwin.pyc
|
||||
share/python1.4/stdwin/wdb.py
|
||||
share/python1.4/stdwin/wdb.pyc
|
||||
share/python1.4/stdwin/wdbframewin.py
|
||||
share/python1.4/stdwin/wdbframewin.pyc
|
||||
share/python1.4/stdwin/wdbsrcwin.py
|
||||
share/python1.4/stdwin/wdbsrcwin.pyc
|
||||
share/python1.4/test/autotest.py
|
||||
share/python1.4/test/autotest.pyc
|
||||
share/python1.4/test/test.rawimg
|
||||
share/python1.4/test/test.rawimg.rev
|
||||
share/python1.4/test/test.rgb
|
||||
share/python1.4/test/test_audioop.py
|
||||
share/python1.4/test/test_audioop.pyc
|
||||
share/python1.4/test/test_b1.py
|
||||
share/python1.4/test/test_b1.pyc
|
||||
share/python1.4/test/test_b2.py
|
||||
share/python1.4/test/test_b2.pyc
|
||||
share/python1.4/test/test_builtin.py
|
||||
share/python1.4/test/test_builtin.pyc
|
||||
share/python1.4/test/test_exceptions.py
|
||||
share/python1.4/test/test_exceptions.pyc
|
||||
share/python1.4/test/test_grammar.py
|
||||
share/python1.4/test/test_grammar.pyc
|
||||
share/python1.4/test/test_math.py
|
||||
share/python1.4/test/test_math.pyc
|
||||
share/python1.4/test/test_md5.py
|
||||
share/python1.4/test/test_md5.pyc
|
||||
share/python1.4/test/test_opcodes.py
|
||||
share/python1.4/test/test_opcodes.pyc
|
||||
share/python1.4/test/test_operations.py
|
||||
share/python1.4/test/test_operations.pyc
|
||||
share/python1.4/test/test_pow.py
|
||||
share/python1.4/test/test_pow.pyc
|
||||
share/python1.4/test/test_rgbimg.py
|
||||
share/python1.4/test/test_rgbimg.pyc
|
||||
share/python1.4/test/test_select.py
|
||||
share/python1.4/test/test_select.pyc
|
||||
share/python1.4/test/test_signal.py
|
||||
share/python1.4/test/test_signal.pyc
|
||||
share/python1.4/test/test_strop.py
|
||||
share/python1.4/test/test_strop.pyc
|
||||
share/python1.4/test/test_support.py
|
||||
share/python1.4/test/test_support.pyc
|
||||
share/python1.4/test/test_thread.py
|
||||
share/python1.4/test/test_thread.pyc
|
||||
share/python1.4/test/test_types.py
|
||||
share/python1.4/test/test_types.pyc
|
||||
share/python1.4/test/testall.out
|
||||
share/python1.4/test/testall.py
|
||||
share/python1.4/test/testall.pyc
|
||||
share/python1.4/tkinter/Canvas.py
|
||||
share/python1.4/tkinter/Canvas.pyc
|
||||
share/python1.4/tkinter/Dialog.py
|
||||
share/python1.4/tkinter/Dialog.pyc
|
||||
share/python1.4/tkinter/FileDialog.py
|
||||
share/python1.4/tkinter/FileDialog.pyc
|
||||
share/python1.4/tkinter/ScrolledText.py
|
||||
share/python1.4/tkinter/ScrolledText.pyc
|
||||
share/python1.4/tkinter/SimpleDialog.py
|
||||
share/python1.4/tkinter/SimpleDialog.pyc
|
||||
share/python1.4/tkinter/Tix.py
|
||||
share/python1.4/tkinter/Tix.pyc
|
||||
share/python1.4/tkinter/Tkconstants.py
|
||||
share/python1.4/tkinter/Tkconstants.pyc
|
||||
share/python1.4/tkinter/Tkinter.py
|
||||
share/python1.4/tkinter/Tkinter.pyc
|
||||
include/python1.4/Python.h
|
||||
include/python1.4/abstract.h
|
||||
include/python1.4/accessobject.h
|
||||
|
@ -459,4 +61,417 @@ include/python1.4/thread.h
|
|||
include/python1.4/token.h
|
||||
include/python1.4/traceback.h
|
||||
include/python1.4/tupleobject.h
|
||||
lib/python1.4/config/libParser.a
|
||||
lib/python1.4/config/libObjects.a
|
||||
lib/python1.4/config/libPython.a
|
||||
lib/python1.4/config/libModules.a
|
||||
lib/python1.4/config/config.c
|
||||
lib/python1.4/config/getpath.c
|
||||
lib/python1.4/config/config.c.in
|
||||
lib/python1.4/config/Makefile
|
||||
lib/python1.4/config/Setup
|
||||
lib/python1.4/config/makesetup
|
||||
lib/python1.4/config/config.h
|
||||
lib/python1.4/config/frozenmain.c
|
||||
lib/python1.4/config/main.o
|
||||
lib/python1.4/sharedmodules/dbmmodule.so
|
||||
lib/python1.4/sharedmodules/nismodule.so
|
||||
lib/python1.4/sharedmodules/termios.so
|
||||
lib/python1.4/sharedmodules/audioop.so
|
||||
lib/python1.4/sharedmodules/imageop.so
|
||||
lib/python1.4/sharedmodules/rgbimgmodule.so
|
||||
lib/python1.4/sharedmodules/md5module.so
|
||||
lib/python1.4/sharedmodules/_tkinter.so
|
||||
lib/python1.4/sharedmodules/rotormodule.so
|
||||
lib/python1.4/sharedmodules/syslogmodule.so
|
||||
lib/python1.4/sharedmodules/cursesmodule.so
|
||||
lib/python1.4/sharedmodules/bsddbmodule.so
|
||||
lib/python1.4/sharedmodules/binascii.so
|
||||
man/man1/python.1.gz
|
||||
share/python1.4/stdwin/Abstract.pyc
|
||||
share/python1.4/stdwin/Abstract.py
|
||||
share/python1.4/stdwin/BoxParent.py
|
||||
share/python1.4/stdwin/Buttons.py
|
||||
share/python1.4/stdwin/CSplit.py
|
||||
share/python1.4/stdwin/DirList.py
|
||||
share/python1.4/stdwin/FormSplit.py
|
||||
share/python1.4/stdwin/HVSplit.py
|
||||
share/python1.4/stdwin/Histogram.py
|
||||
share/python1.4/stdwin/Sliders.py
|
||||
share/python1.4/stdwin/Soundogram.py
|
||||
share/python1.4/stdwin/Split.py
|
||||
share/python1.4/stdwin/StripChart.py
|
||||
share/python1.4/stdwin/TextEdit.py
|
||||
share/python1.4/stdwin/TransParent.py
|
||||
share/python1.4/stdwin/VUMeter.py
|
||||
share/python1.4/stdwin/WindowParent.py
|
||||
share/python1.4/stdwin/WindowSched.py
|
||||
share/python1.4/stdwin/anywin.py
|
||||
share/python1.4/stdwin/basewin.py
|
||||
share/python1.4/stdwin/dirwin.py
|
||||
share/python1.4/stdwin/filewin.py
|
||||
share/python1.4/stdwin/formatter.py
|
||||
share/python1.4/stdwin/gwin.py
|
||||
share/python1.4/stdwin/listwin.py
|
||||
share/python1.4/stdwin/mainloop.py
|
||||
share/python1.4/stdwin/rect.py
|
||||
share/python1.4/stdwin/srcwin.py
|
||||
share/python1.4/stdwin/stdwinevents.py
|
||||
share/python1.4/stdwin/stdwinq.py
|
||||
share/python1.4/stdwin/tablewin.py
|
||||
share/python1.4/stdwin/textwin.py
|
||||
share/python1.4/stdwin/wdb.py
|
||||
share/python1.4/stdwin/wdbframewin.py
|
||||
share/python1.4/stdwin/wdbsrcwin.py
|
||||
share/python1.4/stdwin/BoxParent.pyc
|
||||
share/python1.4/stdwin/Buttons.pyc
|
||||
share/python1.4/stdwin/CSplit.pyc
|
||||
share/python1.4/stdwin/DirList.pyc
|
||||
share/python1.4/stdwin/FormSplit.pyc
|
||||
share/python1.4/stdwin/HVSplit.pyc
|
||||
share/python1.4/stdwin/Histogram.pyc
|
||||
share/python1.4/stdwin/Sliders.pyc
|
||||
share/python1.4/stdwin/Soundogram.pyc
|
||||
share/python1.4/stdwin/Split.pyc
|
||||
share/python1.4/stdwin/StripChart.pyc
|
||||
share/python1.4/stdwin/TextEdit.pyc
|
||||
share/python1.4/stdwin/TransParent.pyc
|
||||
share/python1.4/stdwin/VUMeter.pyc
|
||||
share/python1.4/stdwin/WindowParent.pyc
|
||||
share/python1.4/stdwin/WindowSched.pyc
|
||||
share/python1.4/stdwin/anywin.pyc
|
||||
share/python1.4/stdwin/basewin.pyc
|
||||
share/python1.4/stdwin/dirwin.pyc
|
||||
share/python1.4/stdwin/filewin.pyc
|
||||
share/python1.4/stdwin/formatter.pyc
|
||||
share/python1.4/stdwin/gwin.pyc
|
||||
share/python1.4/stdwin/listwin.pyc
|
||||
share/python1.4/stdwin/mainloop.pyc
|
||||
share/python1.4/stdwin/rect.pyc
|
||||
share/python1.4/stdwin/srcwin.pyc
|
||||
share/python1.4/stdwin/stdwinevents.pyc
|
||||
share/python1.4/stdwin/stdwinq.pyc
|
||||
share/python1.4/stdwin/tablewin.pyc
|
||||
share/python1.4/stdwin/textwin.pyc
|
||||
share/python1.4/stdwin/wdb.pyc
|
||||
share/python1.4/stdwin/wdbframewin.pyc
|
||||
share/python1.4/stdwin/wdbsrcwin.pyc
|
||||
share/python1.4/tkinter/Canvas.pyc
|
||||
share/python1.4/tkinter/Canvas.py
|
||||
share/python1.4/tkinter/Dialog.py
|
||||
share/python1.4/tkinter/FileDialog.py
|
||||
share/python1.4/tkinter/ScrolledText.py
|
||||
share/python1.4/tkinter/SimpleDialog.py
|
||||
share/python1.4/tkinter/Tkconstants.py
|
||||
share/python1.4/tkinter/Tkinter.py
|
||||
share/python1.4/tkinter/Dialog.pyc
|
||||
share/python1.4/tkinter/FileDialog.pyc
|
||||
share/python1.4/tkinter/ScrolledText.pyc
|
||||
share/python1.4/tkinter/SimpleDialog.pyc
|
||||
share/python1.4/tkinter/Tkconstants.pyc
|
||||
share/python1.4/tkinter/Tkinter.pyc
|
||||
share/python1.4/test/autotest.pyc
|
||||
share/python1.4/test/autotest.py
|
||||
share/python1.4/test/test.rawimg
|
||||
share/python1.4/test/test.rawimg.rev
|
||||
share/python1.4/test/test.rgb
|
||||
share/python1.4/test/test_audioop.py
|
||||
share/python1.4/test/test_b1.py
|
||||
share/python1.4/test/test_b2.py
|
||||
share/python1.4/test/test_builtin.py
|
||||
share/python1.4/test/test_exceptions.py
|
||||
share/python1.4/test/test_grammar.py
|
||||
share/python1.4/test/test_math.py
|
||||
share/python1.4/test/test_md5.py
|
||||
share/python1.4/test/test_opcodes.py
|
||||
share/python1.4/test/test_operations.py
|
||||
share/python1.4/test/test_pow.py
|
||||
share/python1.4/test/test_rgbimg.py
|
||||
share/python1.4/test/test_select.py
|
||||
share/python1.4/test/test_signal.py
|
||||
share/python1.4/test/test_strop.py
|
||||
share/python1.4/test/test_support.py
|
||||
share/python1.4/test/test_thread.py
|
||||
share/python1.4/test/test_types.py
|
||||
share/python1.4/test/testall.out
|
||||
share/python1.4/test/testall.py
|
||||
share/python1.4/test/test_audioop.pyc
|
||||
share/python1.4/test/test_b1.pyc
|
||||
share/python1.4/test/test_b2.pyc
|
||||
share/python1.4/test/test_builtin.pyc
|
||||
share/python1.4/test/test_exceptions.pyc
|
||||
share/python1.4/test/test_grammar.pyc
|
||||
share/python1.4/test/test_math.pyc
|
||||
share/python1.4/test/test_md5.pyc
|
||||
share/python1.4/test/test_opcodes.pyc
|
||||
share/python1.4/test/test_operations.pyc
|
||||
share/python1.4/test/test_pow.pyc
|
||||
share/python1.4/test/test_rgbimg.pyc
|
||||
share/python1.4/test/test_select.pyc
|
||||
share/python1.4/test/test_signal.pyc
|
||||
share/python1.4/test/test_strop.pyc
|
||||
share/python1.4/test/test_support.pyc
|
||||
share/python1.4/test/testall.pyc
|
||||
share/python1.4/test/test_thread.pyc
|
||||
share/python1.4/test/test_types.pyc
|
||||
share/python1.4/freebsd/FCNTL.pyc
|
||||
share/python1.4/freebsd/FCNTL.py
|
||||
share/python1.4/freebsd/IN.pyc
|
||||
share/python1.4/freebsd/IN.py
|
||||
share/python1.4/freebsd/SOCKET.pyc
|
||||
share/python1.4/freebsd/SOCKET.py
|
||||
share/python1.4/freebsd/TERMIOS.pyc
|
||||
share/python1.4/freebsd/TERMIOS.py
|
||||
share/python1.4/freebsd/regen
|
||||
share/python1.4/urllib.py
|
||||
share/python1.4/AST.py
|
||||
share/python1.4/BaseHTTPServer.py
|
||||
share/python1.4/Bastion.py
|
||||
share/python1.4/CGIHTTPServer.py
|
||||
share/python1.4/Complex.py
|
||||
share/python1.4/MimeWriter.py
|
||||
share/python1.4/Para.py
|
||||
share/python1.4/Queue.py
|
||||
share/python1.4/SimpleHTTPServer.py
|
||||
share/python1.4/SocketServer.py
|
||||
share/python1.4/StringIO.py
|
||||
share/python1.4/UserDict.py
|
||||
share/python1.4/UserList.py
|
||||
share/python1.4/addpack.py
|
||||
share/python1.4/aifc.py
|
||||
share/python1.4/anydbm.py
|
||||
share/python1.4/audiodev.py
|
||||
share/python1.4/base64.py
|
||||
share/python1.4/bdb.py
|
||||
share/python1.4/binhex.py
|
||||
share/python1.4/bisect.py
|
||||
share/python1.4/calendar.py
|
||||
share/python1.4/cgi.py
|
||||
share/python1.4/cmd.py
|
||||
share/python1.4/cmp.py
|
||||
share/python1.4/cmpcache.py
|
||||
share/python1.4/codehack.py
|
||||
share/python1.4/colorsys.py
|
||||
share/python1.4/commands.py
|
||||
share/python1.4/compileall.py
|
||||
share/python1.4/copy.py
|
||||
share/python1.4/dbhash.py
|
||||
share/python1.4/dircache.py
|
||||
share/python1.4/dircmp.py
|
||||
share/python1.4/dis.py
|
||||
share/python1.4/dospath.py
|
||||
share/python1.4/dumbdbm.py
|
||||
share/python1.4/dump.py
|
||||
share/python1.4/emacs.py
|
||||
share/python1.4/find.py
|
||||
share/python1.4/fmt.py
|
||||
share/python1.4/fnmatch.py
|
||||
share/python1.4/formatter.py
|
||||
share/python1.4/fpformat.py
|
||||
share/python1.4/ftplib.py
|
||||
share/python1.4/glob.py
|
||||
share/python1.4/getopt.py
|
||||
share/python1.4/gopherlib.py
|
||||
share/python1.4/grep.py
|
||||
share/python1.4/htmlentitydefs.py
|
||||
share/python1.4/htmllib.py
|
||||
share/python1.4/httplib.py
|
||||
share/python1.4/ihooks.py
|
||||
share/python1.4/imghdr.py
|
||||
share/python1.4/linecache.py
|
||||
share/python1.4/lockfile.py
|
||||
share/python1.4/macpath.py
|
||||
share/python1.4/macurl2path.py
|
||||
share/python1.4/mailbox.py
|
||||
share/python1.4/mailcap.py
|
||||
share/python1.4/mhlib.py
|
||||
share/python1.4/mimetools.py
|
||||
share/python1.4/mimify.py
|
||||
share/python1.4/multifile.py
|
||||
share/python1.4/mutex.py
|
||||
share/python1.4/newdir.py
|
||||
share/python1.4/ni.py
|
||||
share/python1.4/nntplib.py
|
||||
share/python1.4/ntpath.py
|
||||
share/python1.4/nturl2path.py
|
||||
share/python1.4/os.py
|
||||
share/python1.4/ospath.py
|
||||
share/python1.4/packmail.py
|
||||
share/python1.4/pdb.py
|
||||
share/python1.4/pickle.py
|
||||
share/python1.4/pipes.py
|
||||
share/python1.4/poly.py
|
||||
share/python1.4/popen2.py
|
||||
share/python1.4/posixfile.py
|
||||
share/python1.4/posixpath.py
|
||||
share/python1.4/profile.py
|
||||
share/python1.4/pstats.py
|
||||
share/python1.4/pty.py
|
||||
share/python1.4/py_compile.py
|
||||
share/python1.4/pyclbr.py
|
||||
share/python1.4/quopri.py
|
||||
share/python1.4/rand.py
|
||||
share/python1.4/random.py
|
||||
share/python1.4/regex_syntax.py
|
||||
share/python1.4/regexp.py
|
||||
share/python1.4/regsub.py
|
||||
share/python1.4/repr.py
|
||||
share/python1.4/rexec.py
|
||||
share/python1.4/rfc822.py
|
||||
share/python1.4/sched.py
|
||||
share/python1.4/sgmllib.py
|
||||
share/python1.4/shelve.py
|
||||
share/python1.4/shutil.py
|
||||
share/python1.4/site.py
|
||||
share/python1.4/sndhdr.py
|
||||
share/python1.4/stat.py
|
||||
share/python1.4/statcache.py
|
||||
share/python1.4/string.py
|
||||
share/python1.4/sunau.py
|
||||
share/python1.4/sunaudio.py
|
||||
share/python1.4/symbol.py
|
||||
share/python1.4/tb.py
|
||||
share/python1.4/tempfile.py
|
||||
share/python1.4/toaiff.py
|
||||
share/python1.4/token.py
|
||||
share/python1.4/tokenize.py
|
||||
share/python1.4/traceback.py
|
||||
share/python1.4/tty.py
|
||||
share/python1.4/types.py
|
||||
share/python1.4/tzparse.py
|
||||
share/python1.4/os.pyc
|
||||
share/python1.4/urlparse.py
|
||||
share/python1.4/util.py
|
||||
share/python1.4/uu.py
|
||||
share/python1.4/wave.py
|
||||
share/python1.4/whatsound.py
|
||||
share/python1.4/whichdb.py
|
||||
share/python1.4/whrandom.py
|
||||
share/python1.4/xdrlib.py
|
||||
share/python1.4/zmod.py
|
||||
share/python1.4/pdb.doc
|
||||
share/python1.4/profile.doc
|
||||
share/python1.4/posixpath.pyc
|
||||
share/python1.4/stat.pyc
|
||||
share/python1.4/UserDict.pyc
|
||||
share/python1.4/py_compile.pyc
|
||||
share/python1.4/getopt.pyc
|
||||
share/python1.4/string.pyc
|
||||
share/python1.4/AST.pyc
|
||||
share/python1.4/BaseHTTPServer.pyc
|
||||
share/python1.4/Bastion.pyc
|
||||
share/python1.4/CGIHTTPServer.pyc
|
||||
share/python1.4/Complex.pyc
|
||||
share/python1.4/MimeWriter.pyc
|
||||
share/python1.4/Para.pyc
|
||||
share/python1.4/Queue.pyc
|
||||
share/python1.4/SimpleHTTPServer.pyc
|
||||
share/python1.4/SocketServer.pyc
|
||||
share/python1.4/StringIO.pyc
|
||||
share/python1.4/UserList.pyc
|
||||
share/python1.4/addpack.pyc
|
||||
share/python1.4/aifc.pyc
|
||||
share/python1.4/anydbm.pyc
|
||||
share/python1.4/audiodev.pyc
|
||||
share/python1.4/base64.pyc
|
||||
share/python1.4/bdb.pyc
|
||||
share/python1.4/binhex.pyc
|
||||
share/python1.4/bisect.pyc
|
||||
share/python1.4/calendar.pyc
|
||||
share/python1.4/cgi.pyc
|
||||
share/python1.4/cmd.pyc
|
||||
share/python1.4/cmp.pyc
|
||||
share/python1.4/cmpcache.pyc
|
||||
share/python1.4/codehack.pyc
|
||||
share/python1.4/colorsys.pyc
|
||||
share/python1.4/commands.pyc
|
||||
share/python1.4/compileall.pyc
|
||||
share/python1.4/copy.pyc
|
||||
share/python1.4/dbhash.pyc
|
||||
share/python1.4/dircache.pyc
|
||||
share/python1.4/dircmp.pyc
|
||||
share/python1.4/dis.pyc
|
||||
share/python1.4/dospath.pyc
|
||||
share/python1.4/dumbdbm.pyc
|
||||
share/python1.4/dump.pyc
|
||||
share/python1.4/emacs.pyc
|
||||
share/python1.4/find.pyc
|
||||
share/python1.4/fmt.pyc
|
||||
share/python1.4/fnmatch.pyc
|
||||
share/python1.4/formatter.pyc
|
||||
share/python1.4/fpformat.pyc
|
||||
share/python1.4/ftplib.pyc
|
||||
share/python1.4/glob.pyc
|
||||
share/python1.4/gopherlib.pyc
|
||||
share/python1.4/grep.pyc
|
||||
share/python1.4/htmlentitydefs.pyc
|
||||
share/python1.4/htmllib.pyc
|
||||
share/python1.4/httplib.pyc
|
||||
share/python1.4/ihooks.pyc
|
||||
share/python1.4/imghdr.pyc
|
||||
share/python1.4/linecache.pyc
|
||||
share/python1.4/lockfile.pyc
|
||||
share/python1.4/macpath.pyc
|
||||
share/python1.4/macurl2path.pyc
|
||||
share/python1.4/mailbox.pyc
|
||||
share/python1.4/mailcap.pyc
|
||||
share/python1.4/mhlib.pyc
|
||||
share/python1.4/mimetools.pyc
|
||||
share/python1.4/mimify.pyc
|
||||
share/python1.4/multifile.pyc
|
||||
share/python1.4/mutex.pyc
|
||||
share/python1.4/newdir.pyc
|
||||
share/python1.4/ni.pyc
|
||||
share/python1.4/nntplib.pyc
|
||||
share/python1.4/ntpath.pyc
|
||||
share/python1.4/nturl2path.pyc
|
||||
share/python1.4/ospath.pyc
|
||||
share/python1.4/packmail.pyc
|
||||
share/python1.4/pdb.pyc
|
||||
share/python1.4/pickle.pyc
|
||||
share/python1.4/pipes.pyc
|
||||
share/python1.4/poly.pyc
|
||||
share/python1.4/popen2.pyc
|
||||
share/python1.4/posixfile.pyc
|
||||
share/python1.4/profile.pyc
|
||||
share/python1.4/pstats.pyc
|
||||
share/python1.4/pty.pyc
|
||||
share/python1.4/pyclbr.pyc
|
||||
share/python1.4/quopri.pyc
|
||||
share/python1.4/rand.pyc
|
||||
share/python1.4/random.pyc
|
||||
share/python1.4/regex_syntax.pyc
|
||||
share/python1.4/regexp.pyc
|
||||
share/python1.4/regsub.pyc
|
||||
share/python1.4/repr.pyc
|
||||
share/python1.4/rexec.pyc
|
||||
share/python1.4/rfc822.pyc
|
||||
share/python1.4/sched.pyc
|
||||
share/python1.4/sgmllib.pyc
|
||||
share/python1.4/shelve.pyc
|
||||
share/python1.4/shutil.pyc
|
||||
share/python1.4/site.pyc
|
||||
share/python1.4/sndhdr.pyc
|
||||
share/python1.4/statcache.pyc
|
||||
share/python1.4/sunau.pyc
|
||||
share/python1.4/sunaudio.pyc
|
||||
share/python1.4/symbol.pyc
|
||||
share/python1.4/tb.pyc
|
||||
share/python1.4/tempfile.pyc
|
||||
share/python1.4/toaiff.pyc
|
||||
share/python1.4/token.pyc
|
||||
share/python1.4/tokenize.pyc
|
||||
share/python1.4/traceback.pyc
|
||||
share/python1.4/tty.pyc
|
||||
share/python1.4/types.pyc
|
||||
share/python1.4/tzparse.pyc
|
||||
share/python1.4/urllib.pyc
|
||||
share/python1.4/urlparse.pyc
|
||||
share/python1.4/uu.pyc
|
||||
share/python1.4/util.pyc
|
||||
share/python1.4/wave.pyc
|
||||
share/python1.4/whatsound.pyc
|
||||
share/python1.4/whichdb.pyc
|
||||
share/python1.4/whrandom.pyc
|
||||
share/python1.4/xdrlib.pyc
|
||||
share/python1.4/zmod.pyc
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# Date created: 08 August 1995
|
||||
# Whom: jkh
|
||||
#
|
||||
# $Id: Makefile,v 1.12 1997/02/21 14:57:01 tg Exp $
|
||||
# $Id: Makefile,v 1.13 1997/04/20 13:19:11 wosch Exp $
|
||||
#
|
||||
|
||||
DISTNAME= python1.4
|
||||
|
@ -13,12 +13,10 @@ MASTER_SITES= ftp://www.python.org/pub/python/src/ \
|
|||
ftp://ftp.cwi.nl/pub/python/src/ \
|
||||
ftp://www.python.org/pub/python/contrib/Graphics/Tkinter/ \
|
||||
ftp://ftp.cwi.nl/pub/python/contrib/Graphics/Tkinter/
|
||||
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} PyTix-1.12.tar.gz
|
||||
|
||||
MAINTAINER= tg@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= tk41\\.1\\.:${PORTSDIR}/x11/tk41 \
|
||||
tix4175\\.1\\.:${PORTSDIR}/x11/tix
|
||||
LIB_DEPENDS= tk41\\.1\\.:${PORTSDIR}/x11/tk41
|
||||
|
||||
WRKSRC= ${WRKDIR}/Python-1.4
|
||||
HAS_CONFIGURE= yes
|
||||
|
@ -27,14 +25,6 @@ MAKE_FLAGS+= 'OPT=${CFLAGS}'
|
|||
INSTALL_TARGET= install
|
||||
MAN1= python.1
|
||||
|
||||
PYTIXSRC= ${WRKDIR}/PyTix-1.12
|
||||
|
||||
post-extract:
|
||||
@${ECHO_MSG} "===> Add PyTix extensions to Python core"
|
||||
${CP} ${PYTIXSRC}/Tkinter.py ${WRKSRC}/Lib/tkinter
|
||||
${CP} ${PYTIXSRC}/Tix.py ${WRKSRC}/Lib/tkinter
|
||||
${CP} ${PYTIXSRC}/_tkinter.c ${WRKSRC}/Modules
|
||||
|
||||
post-configure:
|
||||
${CP} ${FILESDIR}/Setup ${WRKSRC}/Modules
|
||||
|
||||
|
|
|
@ -71,7 +71,7 @@ SITEPATH=:$(DESTLIB)/NumPy
|
|||
TESTPATH=:$(DESTLIB)/test
|
||||
|
||||
# Path for machine- or system-dependent modules (and shared libraries)
|
||||
MACHDEPPATH=:$(DESTLIB)/$(MACHDEP)
|
||||
MACHDEPPATH=:$(DESTLIB)/$(MACHDEP):$(MACHDESTLIB)/sharedmodules
|
||||
|
||||
COREPYTHONPATH=.$(SITEPATH)$(DESTPATH)$(TESTPATH)$(MACHDEPPATH)$(STDWINPATH)$(TKPATH)
|
||||
PYTHONPATH=$(COREPYTHONPATH)
|
||||
|
@ -128,6 +128,7 @@ select selectmodule.c # select(2); not on ancient System V
|
|||
socket socketmodule.c # socket(2); not on ancient System V
|
||||
errno errnomodule.c # posix (UNIX) errno values
|
||||
|
||||
*shared*
|
||||
|
||||
# Some more UNIX dependent modules -- off by default, since these
|
||||
# are not supported by all UNIX systems:
|
||||
|
@ -249,7 +250,7 @@ TKPATH=:$(DESTLIB)/tkinter
|
|||
#_tkinter _tkinter.c -I/usr/openwin/include -I/usr/local/include -L/usr/openwin/lib -L/usr/local/lib -ltk4.1 -ltcl7.5 -lX11
|
||||
# For generic system (may have to add -I/-L options to find X11):
|
||||
#_tkinter _tkinter.c -I/usr/local/include -L/usr/local/lib -ltk4.1 -ltcl7.5 -lX11
|
||||
_tkinter _tkinter.c -I/usr/local/include -I/usr/X11R6/include -L/usr/local/lib -L/usr/X11R6/lib -ltix4175 -ltk41 -ltcl75 -lX11
|
||||
_tkinter _tkinter.c -I/usr/local/include -I/usr/X11R6/include -L/usr/local/lib -L/usr/X11R6/lib -ltk41 -ltcl75 -lX11
|
||||
|
||||
|
||||
# Lance Ellinghaus's modules:
|
||||
|
|
|
@ -1,11 +1,7 @@
|
|||
--- Makefile.in.orig Fri Oct 25 16:37:32 1996
|
||||
+++ Makefile.in Thu Feb 6 12:02:11 1997
|
||||
@@ -95,10 +95,10 @@
|
||||
|
||||
# Expanded directories
|
||||
BINDIR= $(exec_prefix)/bin
|
||||
-LIBDIR= $(exec_prefix)/lib
|
||||
+LIBDIR= $(exec_prefix)/share
|
||||
+++ Makefile.in Mon May 12 21:04:38 1997
|
||||
@@ -98,7 +98,7 @@
|
||||
LIBDIR= $(exec_prefix)/lib
|
||||
MANDIR= $(prefix)/man
|
||||
INCLUDEDIR= $(prefix)/include
|
||||
-SCRIPTDIR= $(prefix)/lib
|
||||
|
|
|
@ -1,403 +1,5 @@
|
|||
bin/python1.4
|
||||
bin/python
|
||||
@exec mkdir -p %D/share/python1.4/sharedmodules
|
||||
@unexec rmdir %D/share/python1.4/sharedmodules
|
||||
share/python1.4/AST.py
|
||||
share/python1.4/AST.pyc
|
||||
share/python1.4/BaseHTTPServer.py
|
||||
share/python1.4/BaseHTTPServer.pyc
|
||||
share/python1.4/Bastion.py
|
||||
share/python1.4/Bastion.pyc
|
||||
share/python1.4/CGIHTTPServer.py
|
||||
share/python1.4/CGIHTTPServer.pyc
|
||||
share/python1.4/Complex.py
|
||||
share/python1.4/Complex.pyc
|
||||
share/python1.4/MimeWriter.py
|
||||
share/python1.4/MimeWriter.pyc
|
||||
share/python1.4/Para.py
|
||||
share/python1.4/Para.pyc
|
||||
share/python1.4/Queue.py
|
||||
share/python1.4/Queue.pyc
|
||||
share/python1.4/SimpleHTTPServer.py
|
||||
share/python1.4/SimpleHTTPServer.pyc
|
||||
share/python1.4/SocketServer.py
|
||||
share/python1.4/SocketServer.pyc
|
||||
share/python1.4/StringIO.py
|
||||
share/python1.4/StringIO.pyc
|
||||
share/python1.4/UserDict.py
|
||||
share/python1.4/UserDict.pyc
|
||||
share/python1.4/UserList.py
|
||||
share/python1.4/UserList.pyc
|
||||
share/python1.4/addpack.py
|
||||
share/python1.4/addpack.pyc
|
||||
share/python1.4/aifc.py
|
||||
share/python1.4/aifc.pyc
|
||||
share/python1.4/anydbm.py
|
||||
share/python1.4/anydbm.pyc
|
||||
share/python1.4/audiodev.py
|
||||
share/python1.4/audiodev.pyc
|
||||
share/python1.4/base64.py
|
||||
share/python1.4/base64.pyc
|
||||
share/python1.4/bdb.py
|
||||
share/python1.4/bdb.pyc
|
||||
share/python1.4/binhex.py
|
||||
share/python1.4/binhex.pyc
|
||||
share/python1.4/bisect.py
|
||||
share/python1.4/bisect.pyc
|
||||
share/python1.4/calendar.py
|
||||
share/python1.4/calendar.pyc
|
||||
share/python1.4/cgi.py
|
||||
share/python1.4/cgi.pyc
|
||||
share/python1.4/cmd.py
|
||||
share/python1.4/cmd.pyc
|
||||
share/python1.4/cmp.py
|
||||
share/python1.4/cmp.pyc
|
||||
share/python1.4/cmpcache.py
|
||||
share/python1.4/cmpcache.pyc
|
||||
share/python1.4/codehack.py
|
||||
share/python1.4/codehack.pyc
|
||||
share/python1.4/colorsys.py
|
||||
share/python1.4/colorsys.pyc
|
||||
share/python1.4/commands.py
|
||||
share/python1.4/commands.pyc
|
||||
share/python1.4/compileall.py
|
||||
share/python1.4/compileall.pyc
|
||||
share/python1.4/copy.py
|
||||
share/python1.4/copy.pyc
|
||||
share/python1.4/dbhash.py
|
||||
share/python1.4/dbhash.pyc
|
||||
share/python1.4/dircache.py
|
||||
share/python1.4/dircache.pyc
|
||||
share/python1.4/dircmp.py
|
||||
share/python1.4/dircmp.pyc
|
||||
share/python1.4/dis.py
|
||||
share/python1.4/dis.pyc
|
||||
share/python1.4/dospath.py
|
||||
share/python1.4/dospath.pyc
|
||||
share/python1.4/dumbdbm.py
|
||||
share/python1.4/dumbdbm.pyc
|
||||
share/python1.4/dump.py
|
||||
share/python1.4/dump.pyc
|
||||
share/python1.4/emacs.py
|
||||
share/python1.4/emacs.pyc
|
||||
share/python1.4/find.py
|
||||
share/python1.4/find.pyc
|
||||
share/python1.4/fmt.py
|
||||
share/python1.4/fmt.pyc
|
||||
share/python1.4/fnmatch.py
|
||||
share/python1.4/fnmatch.pyc
|
||||
share/python1.4/formatter.py
|
||||
share/python1.4/formatter.pyc
|
||||
share/python1.4/fpformat.py
|
||||
share/python1.4/fpformat.pyc
|
||||
share/python1.4/ftplib.py
|
||||
share/python1.4/ftplib.pyc
|
||||
share/python1.4/getopt.py
|
||||
share/python1.4/getopt.pyc
|
||||
share/python1.4/glob.py
|
||||
share/python1.4/glob.pyc
|
||||
share/python1.4/gopherlib.py
|
||||
share/python1.4/gopherlib.pyc
|
||||
share/python1.4/grep.py
|
||||
share/python1.4/grep.pyc
|
||||
share/python1.4/htmlentitydefs.py
|
||||
share/python1.4/htmlentitydefs.pyc
|
||||
share/python1.4/htmllib.py
|
||||
share/python1.4/htmllib.pyc
|
||||
share/python1.4/httplib.py
|
||||
share/python1.4/httplib.pyc
|
||||
share/python1.4/ihooks.py
|
||||
share/python1.4/ihooks.pyc
|
||||
share/python1.4/imghdr.py
|
||||
share/python1.4/imghdr.pyc
|
||||
share/python1.4/linecache.py
|
||||
share/python1.4/linecache.pyc
|
||||
share/python1.4/lockfile.py
|
||||
share/python1.4/lockfile.pyc
|
||||
share/python1.4/macpath.py
|
||||
share/python1.4/macpath.pyc
|
||||
share/python1.4/macurl2path.py
|
||||
share/python1.4/macurl2path.pyc
|
||||
share/python1.4/mailbox.py
|
||||
share/python1.4/mailbox.pyc
|
||||
share/python1.4/mailcap.py
|
||||
share/python1.4/mailcap.pyc
|
||||
share/python1.4/mhlib.py
|
||||
share/python1.4/mhlib.pyc
|
||||
share/python1.4/mimetools.py
|
||||
share/python1.4/mimetools.pyc
|
||||
share/python1.4/mimify.py
|
||||
share/python1.4/mimify.pyc
|
||||
share/python1.4/multifile.py
|
||||
share/python1.4/multifile.pyc
|
||||
share/python1.4/mutex.py
|
||||
share/python1.4/mutex.pyc
|
||||
share/python1.4/newdir.py
|
||||
share/python1.4/newdir.pyc
|
||||
share/python1.4/ni.py
|
||||
share/python1.4/ni.pyc
|
||||
share/python1.4/nntplib.py
|
||||
share/python1.4/nntplib.pyc
|
||||
share/python1.4/ntpath.py
|
||||
share/python1.4/ntpath.pyc
|
||||
share/python1.4/nturl2path.py
|
||||
share/python1.4/nturl2path.pyc
|
||||
share/python1.4/os.py
|
||||
share/python1.4/os.pyc
|
||||
share/python1.4/ospath.py
|
||||
share/python1.4/ospath.pyc
|
||||
share/python1.4/packmail.py
|
||||
share/python1.4/packmail.pyc
|
||||
share/python1.4/pdb.doc
|
||||
share/python1.4/pdb.py
|
||||
share/python1.4/pdb.pyc
|
||||
share/python1.4/pickle.py
|
||||
share/python1.4/pickle.pyc
|
||||
share/python1.4/pipes.py
|
||||
share/python1.4/pipes.pyc
|
||||
share/python1.4/poly.py
|
||||
share/python1.4/poly.pyc
|
||||
share/python1.4/popen2.py
|
||||
share/python1.4/popen2.pyc
|
||||
share/python1.4/posixfile.py
|
||||
share/python1.4/posixfile.pyc
|
||||
share/python1.4/posixpath.py
|
||||
share/python1.4/posixpath.pyc
|
||||
share/python1.4/profile.doc
|
||||
share/python1.4/profile.py
|
||||
share/python1.4/profile.pyc
|
||||
share/python1.4/pstats.py
|
||||
share/python1.4/pstats.pyc
|
||||
share/python1.4/pty.py
|
||||
share/python1.4/pty.pyc
|
||||
share/python1.4/py_compile.py
|
||||
share/python1.4/py_compile.pyc
|
||||
share/python1.4/pyclbr.py
|
||||
share/python1.4/pyclbr.pyc
|
||||
share/python1.4/quopri.py
|
||||
share/python1.4/quopri.pyc
|
||||
share/python1.4/rand.py
|
||||
share/python1.4/rand.pyc
|
||||
share/python1.4/random.py
|
||||
share/python1.4/random.pyc
|
||||
share/python1.4/regex_syntax.py
|
||||
share/python1.4/regex_syntax.pyc
|
||||
share/python1.4/regexp.py
|
||||
share/python1.4/regexp.pyc
|
||||
share/python1.4/regsub.py
|
||||
share/python1.4/regsub.pyc
|
||||
share/python1.4/repr.py
|
||||
share/python1.4/repr.pyc
|
||||
share/python1.4/rexec.py
|
||||
share/python1.4/rexec.pyc
|
||||
share/python1.4/rfc822.py
|
||||
share/python1.4/rfc822.pyc
|
||||
share/python1.4/sched.py
|
||||
share/python1.4/sched.pyc
|
||||
share/python1.4/sgmllib.py
|
||||
share/python1.4/sgmllib.pyc
|
||||
share/python1.4/shelve.py
|
||||
share/python1.4/shelve.pyc
|
||||
share/python1.4/shutil.py
|
||||
share/python1.4/shutil.pyc
|
||||
share/python1.4/site.py
|
||||
share/python1.4/site.pyc
|
||||
share/python1.4/sndhdr.py
|
||||
share/python1.4/sndhdr.pyc
|
||||
share/python1.4/stat.py
|
||||
share/python1.4/stat.pyc
|
||||
share/python1.4/statcache.py
|
||||
share/python1.4/statcache.pyc
|
||||
share/python1.4/string.py
|
||||
share/python1.4/string.pyc
|
||||
share/python1.4/sunau.py
|
||||
share/python1.4/sunau.pyc
|
||||
share/python1.4/sunaudio.py
|
||||
share/python1.4/sunaudio.pyc
|
||||
share/python1.4/symbol.py
|
||||
share/python1.4/symbol.pyc
|
||||
share/python1.4/tb.py
|
||||
share/python1.4/tb.pyc
|
||||
share/python1.4/tempfile.py
|
||||
share/python1.4/tempfile.pyc
|
||||
share/python1.4/toaiff.py
|
||||
share/python1.4/toaiff.pyc
|
||||
share/python1.4/token.py
|
||||
share/python1.4/token.pyc
|
||||
share/python1.4/tokenize.py
|
||||
share/python1.4/tokenize.pyc
|
||||
share/python1.4/traceback.py
|
||||
share/python1.4/traceback.pyc
|
||||
share/python1.4/tty.py
|
||||
share/python1.4/tty.pyc
|
||||
share/python1.4/types.py
|
||||
share/python1.4/types.pyc
|
||||
share/python1.4/tzparse.py
|
||||
share/python1.4/tzparse.pyc
|
||||
share/python1.4/urllib.py
|
||||
share/python1.4/urllib.pyc
|
||||
share/python1.4/urlparse.py
|
||||
share/python1.4/urlparse.pyc
|
||||
share/python1.4/util.py
|
||||
share/python1.4/util.pyc
|
||||
share/python1.4/uu.py
|
||||
share/python1.4/uu.pyc
|
||||
share/python1.4/wave.py
|
||||
share/python1.4/wave.pyc
|
||||
share/python1.4/whatsound.py
|
||||
share/python1.4/whatsound.pyc
|
||||
share/python1.4/whichdb.py
|
||||
share/python1.4/whichdb.pyc
|
||||
share/python1.4/whrandom.py
|
||||
share/python1.4/whrandom.pyc
|
||||
share/python1.4/xdrlib.py
|
||||
share/python1.4/xdrlib.pyc
|
||||
share/python1.4/zmod.py
|
||||
share/python1.4/zmod.pyc
|
||||
share/python1.4/config/Makefile
|
||||
share/python1.4/config/Setup
|
||||
share/python1.4/config/config.c
|
||||
share/python1.4/config/config.c.in
|
||||
share/python1.4/config/config.h
|
||||
share/python1.4/config/frozenmain.c
|
||||
share/python1.4/config/getpath.c
|
||||
share/python1.4/config/libModules.a
|
||||
share/python1.4/config/libObjects.a
|
||||
share/python1.4/config/libParser.a
|
||||
share/python1.4/config/libPython.a
|
||||
share/python1.4/config/main.o
|
||||
share/python1.4/config/makesetup
|
||||
share/python1.4/freebsd2/FCNTL.py
|
||||
share/python1.4/freebsd2/FCNTL.pyc
|
||||
share/python1.4/freebsd2/regen
|
||||
share/python1.4/stdwin/Abstract.py
|
||||
share/python1.4/stdwin/Abstract.pyc
|
||||
share/python1.4/stdwin/BoxParent.py
|
||||
share/python1.4/stdwin/BoxParent.pyc
|
||||
share/python1.4/stdwin/Buttons.py
|
||||
share/python1.4/stdwin/Buttons.pyc
|
||||
share/python1.4/stdwin/CSplit.py
|
||||
share/python1.4/stdwin/CSplit.pyc
|
||||
share/python1.4/stdwin/DirList.py
|
||||
share/python1.4/stdwin/DirList.pyc
|
||||
share/python1.4/stdwin/FormSplit.py
|
||||
share/python1.4/stdwin/FormSplit.pyc
|
||||
share/python1.4/stdwin/HVSplit.py
|
||||
share/python1.4/stdwin/HVSplit.pyc
|
||||
share/python1.4/stdwin/Histogram.py
|
||||
share/python1.4/stdwin/Histogram.pyc
|
||||
share/python1.4/stdwin/Sliders.py
|
||||
share/python1.4/stdwin/Sliders.pyc
|
||||
share/python1.4/stdwin/Soundogram.py
|
||||
share/python1.4/stdwin/Soundogram.pyc
|
||||
share/python1.4/stdwin/Split.py
|
||||
share/python1.4/stdwin/Split.pyc
|
||||
share/python1.4/stdwin/StripChart.py
|
||||
share/python1.4/stdwin/StripChart.pyc
|
||||
share/python1.4/stdwin/TextEdit.py
|
||||
share/python1.4/stdwin/TextEdit.pyc
|
||||
share/python1.4/stdwin/TransParent.py
|
||||
share/python1.4/stdwin/TransParent.pyc
|
||||
share/python1.4/stdwin/VUMeter.py
|
||||
share/python1.4/stdwin/VUMeter.pyc
|
||||
share/python1.4/stdwin/WindowParent.py
|
||||
share/python1.4/stdwin/WindowParent.pyc
|
||||
share/python1.4/stdwin/WindowSched.py
|
||||
share/python1.4/stdwin/WindowSched.pyc
|
||||
share/python1.4/stdwin/anywin.py
|
||||
share/python1.4/stdwin/anywin.pyc
|
||||
share/python1.4/stdwin/basewin.py
|
||||
share/python1.4/stdwin/basewin.pyc
|
||||
share/python1.4/stdwin/dirwin.py
|
||||
share/python1.4/stdwin/dirwin.pyc
|
||||
share/python1.4/stdwin/filewin.py
|
||||
share/python1.4/stdwin/filewin.pyc
|
||||
share/python1.4/stdwin/formatter.py
|
||||
share/python1.4/stdwin/formatter.pyc
|
||||
share/python1.4/stdwin/gwin.py
|
||||
share/python1.4/stdwin/gwin.pyc
|
||||
share/python1.4/stdwin/listwin.py
|
||||
share/python1.4/stdwin/listwin.pyc
|
||||
share/python1.4/stdwin/mainloop.py
|
||||
share/python1.4/stdwin/mainloop.pyc
|
||||
share/python1.4/stdwin/rect.py
|
||||
share/python1.4/stdwin/rect.pyc
|
||||
share/python1.4/stdwin/srcwin.py
|
||||
share/python1.4/stdwin/srcwin.pyc
|
||||
share/python1.4/stdwin/stdwinevents.py
|
||||
share/python1.4/stdwin/stdwinevents.pyc
|
||||
share/python1.4/stdwin/stdwinq.py
|
||||
share/python1.4/stdwin/stdwinq.pyc
|
||||
share/python1.4/stdwin/tablewin.py
|
||||
share/python1.4/stdwin/tablewin.pyc
|
||||
share/python1.4/stdwin/textwin.py
|
||||
share/python1.4/stdwin/textwin.pyc
|
||||
share/python1.4/stdwin/wdb.py
|
||||
share/python1.4/stdwin/wdb.pyc
|
||||
share/python1.4/stdwin/wdbframewin.py
|
||||
share/python1.4/stdwin/wdbframewin.pyc
|
||||
share/python1.4/stdwin/wdbsrcwin.py
|
||||
share/python1.4/stdwin/wdbsrcwin.pyc
|
||||
share/python1.4/test/autotest.py
|
||||
share/python1.4/test/autotest.pyc
|
||||
share/python1.4/test/test.rawimg
|
||||
share/python1.4/test/test.rawimg.rev
|
||||
share/python1.4/test/test.rgb
|
||||
share/python1.4/test/test_audioop.py
|
||||
share/python1.4/test/test_audioop.pyc
|
||||
share/python1.4/test/test_b1.py
|
||||
share/python1.4/test/test_b1.pyc
|
||||
share/python1.4/test/test_b2.py
|
||||
share/python1.4/test/test_b2.pyc
|
||||
share/python1.4/test/test_builtin.py
|
||||
share/python1.4/test/test_builtin.pyc
|
||||
share/python1.4/test/test_exceptions.py
|
||||
share/python1.4/test/test_exceptions.pyc
|
||||
share/python1.4/test/test_grammar.py
|
||||
share/python1.4/test/test_grammar.pyc
|
||||
share/python1.4/test/test_math.py
|
||||
share/python1.4/test/test_math.pyc
|
||||
share/python1.4/test/test_md5.py
|
||||
share/python1.4/test/test_md5.pyc
|
||||
share/python1.4/test/test_opcodes.py
|
||||
share/python1.4/test/test_opcodes.pyc
|
||||
share/python1.4/test/test_operations.py
|
||||
share/python1.4/test/test_operations.pyc
|
||||
share/python1.4/test/test_pow.py
|
||||
share/python1.4/test/test_pow.pyc
|
||||
share/python1.4/test/test_rgbimg.py
|
||||
share/python1.4/test/test_rgbimg.pyc
|
||||
share/python1.4/test/test_select.py
|
||||
share/python1.4/test/test_select.pyc
|
||||
share/python1.4/test/test_signal.py
|
||||
share/python1.4/test/test_signal.pyc
|
||||
share/python1.4/test/test_strop.py
|
||||
share/python1.4/test/test_strop.pyc
|
||||
share/python1.4/test/test_support.py
|
||||
share/python1.4/test/test_support.pyc
|
||||
share/python1.4/test/test_thread.py
|
||||
share/python1.4/test/test_thread.pyc
|
||||
share/python1.4/test/test_types.py
|
||||
share/python1.4/test/test_types.pyc
|
||||
share/python1.4/test/testall.out
|
||||
share/python1.4/test/testall.py
|
||||
share/python1.4/test/testall.pyc
|
||||
share/python1.4/tkinter/Canvas.py
|
||||
share/python1.4/tkinter/Canvas.pyc
|
||||
share/python1.4/tkinter/Dialog.py
|
||||
share/python1.4/tkinter/Dialog.pyc
|
||||
share/python1.4/tkinter/FileDialog.py
|
||||
share/python1.4/tkinter/FileDialog.pyc
|
||||
share/python1.4/tkinter/ScrolledText.py
|
||||
share/python1.4/tkinter/ScrolledText.pyc
|
||||
share/python1.4/tkinter/SimpleDialog.py
|
||||
share/python1.4/tkinter/SimpleDialog.pyc
|
||||
share/python1.4/tkinter/Tix.py
|
||||
share/python1.4/tkinter/Tix.pyc
|
||||
share/python1.4/tkinter/Tkconstants.py
|
||||
share/python1.4/tkinter/Tkconstants.pyc
|
||||
share/python1.4/tkinter/Tkinter.py
|
||||
share/python1.4/tkinter/Tkinter.pyc
|
||||
include/python1.4/Python.h
|
||||
include/python1.4/abstract.h
|
||||
include/python1.4/accessobject.h
|
||||
|
@ -459,4 +61,417 @@ include/python1.4/thread.h
|
|||
include/python1.4/token.h
|
||||
include/python1.4/traceback.h
|
||||
include/python1.4/tupleobject.h
|
||||
lib/python1.4/config/libParser.a
|
||||
lib/python1.4/config/libObjects.a
|
||||
lib/python1.4/config/libPython.a
|
||||
lib/python1.4/config/libModules.a
|
||||
lib/python1.4/config/config.c
|
||||
lib/python1.4/config/getpath.c
|
||||
lib/python1.4/config/config.c.in
|
||||
lib/python1.4/config/Makefile
|
||||
lib/python1.4/config/Setup
|
||||
lib/python1.4/config/makesetup
|
||||
lib/python1.4/config/config.h
|
||||
lib/python1.4/config/frozenmain.c
|
||||
lib/python1.4/config/main.o
|
||||
lib/python1.4/sharedmodules/dbmmodule.so
|
||||
lib/python1.4/sharedmodules/nismodule.so
|
||||
lib/python1.4/sharedmodules/termios.so
|
||||
lib/python1.4/sharedmodules/audioop.so
|
||||
lib/python1.4/sharedmodules/imageop.so
|
||||
lib/python1.4/sharedmodules/rgbimgmodule.so
|
||||
lib/python1.4/sharedmodules/md5module.so
|
||||
lib/python1.4/sharedmodules/_tkinter.so
|
||||
lib/python1.4/sharedmodules/rotormodule.so
|
||||
lib/python1.4/sharedmodules/syslogmodule.so
|
||||
lib/python1.4/sharedmodules/cursesmodule.so
|
||||
lib/python1.4/sharedmodules/bsddbmodule.so
|
||||
lib/python1.4/sharedmodules/binascii.so
|
||||
man/man1/python.1.gz
|
||||
share/python1.4/stdwin/Abstract.pyc
|
||||
share/python1.4/stdwin/Abstract.py
|
||||
share/python1.4/stdwin/BoxParent.py
|
||||
share/python1.4/stdwin/Buttons.py
|
||||
share/python1.4/stdwin/CSplit.py
|
||||
share/python1.4/stdwin/DirList.py
|
||||
share/python1.4/stdwin/FormSplit.py
|
||||
share/python1.4/stdwin/HVSplit.py
|
||||
share/python1.4/stdwin/Histogram.py
|
||||
share/python1.4/stdwin/Sliders.py
|
||||
share/python1.4/stdwin/Soundogram.py
|
||||
share/python1.4/stdwin/Split.py
|
||||
share/python1.4/stdwin/StripChart.py
|
||||
share/python1.4/stdwin/TextEdit.py
|
||||
share/python1.4/stdwin/TransParent.py
|
||||
share/python1.4/stdwin/VUMeter.py
|
||||
share/python1.4/stdwin/WindowParent.py
|
||||
share/python1.4/stdwin/WindowSched.py
|
||||
share/python1.4/stdwin/anywin.py
|
||||
share/python1.4/stdwin/basewin.py
|
||||
share/python1.4/stdwin/dirwin.py
|
||||
share/python1.4/stdwin/filewin.py
|
||||
share/python1.4/stdwin/formatter.py
|
||||
share/python1.4/stdwin/gwin.py
|
||||
share/python1.4/stdwin/listwin.py
|
||||
share/python1.4/stdwin/mainloop.py
|
||||
share/python1.4/stdwin/rect.py
|
||||
share/python1.4/stdwin/srcwin.py
|
||||
share/python1.4/stdwin/stdwinevents.py
|
||||
share/python1.4/stdwin/stdwinq.py
|
||||
share/python1.4/stdwin/tablewin.py
|
||||
share/python1.4/stdwin/textwin.py
|
||||
share/python1.4/stdwin/wdb.py
|
||||
share/python1.4/stdwin/wdbframewin.py
|
||||
share/python1.4/stdwin/wdbsrcwin.py
|
||||
share/python1.4/stdwin/BoxParent.pyc
|
||||
share/python1.4/stdwin/Buttons.pyc
|
||||
share/python1.4/stdwin/CSplit.pyc
|
||||
share/python1.4/stdwin/DirList.pyc
|
||||
share/python1.4/stdwin/FormSplit.pyc
|
||||
share/python1.4/stdwin/HVSplit.pyc
|
||||
share/python1.4/stdwin/Histogram.pyc
|
||||
share/python1.4/stdwin/Sliders.pyc
|
||||
share/python1.4/stdwin/Soundogram.pyc
|
||||
share/python1.4/stdwin/Split.pyc
|
||||
share/python1.4/stdwin/StripChart.pyc
|
||||
share/python1.4/stdwin/TextEdit.pyc
|
||||
share/python1.4/stdwin/TransParent.pyc
|
||||
share/python1.4/stdwin/VUMeter.pyc
|
||||
share/python1.4/stdwin/WindowParent.pyc
|
||||
share/python1.4/stdwin/WindowSched.pyc
|
||||
share/python1.4/stdwin/anywin.pyc
|
||||
share/python1.4/stdwin/basewin.pyc
|
||||
share/python1.4/stdwin/dirwin.pyc
|
||||
share/python1.4/stdwin/filewin.pyc
|
||||
share/python1.4/stdwin/formatter.pyc
|
||||
share/python1.4/stdwin/gwin.pyc
|
||||
share/python1.4/stdwin/listwin.pyc
|
||||
share/python1.4/stdwin/mainloop.pyc
|
||||
share/python1.4/stdwin/rect.pyc
|
||||
share/python1.4/stdwin/srcwin.pyc
|
||||
share/python1.4/stdwin/stdwinevents.pyc
|
||||
share/python1.4/stdwin/stdwinq.pyc
|
||||
share/python1.4/stdwin/tablewin.pyc
|
||||
share/python1.4/stdwin/textwin.pyc
|
||||
share/python1.4/stdwin/wdb.pyc
|
||||
share/python1.4/stdwin/wdbframewin.pyc
|
||||
share/python1.4/stdwin/wdbsrcwin.pyc
|
||||
share/python1.4/tkinter/Canvas.pyc
|
||||
share/python1.4/tkinter/Canvas.py
|
||||
share/python1.4/tkinter/Dialog.py
|
||||
share/python1.4/tkinter/FileDialog.py
|
||||
share/python1.4/tkinter/ScrolledText.py
|
||||
share/python1.4/tkinter/SimpleDialog.py
|
||||
share/python1.4/tkinter/Tkconstants.py
|
||||
share/python1.4/tkinter/Tkinter.py
|
||||
share/python1.4/tkinter/Dialog.pyc
|
||||
share/python1.4/tkinter/FileDialog.pyc
|
||||
share/python1.4/tkinter/ScrolledText.pyc
|
||||
share/python1.4/tkinter/SimpleDialog.pyc
|
||||
share/python1.4/tkinter/Tkconstants.pyc
|
||||
share/python1.4/tkinter/Tkinter.pyc
|
||||
share/python1.4/test/autotest.pyc
|
||||
share/python1.4/test/autotest.py
|
||||
share/python1.4/test/test.rawimg
|
||||
share/python1.4/test/test.rawimg.rev
|
||||
share/python1.4/test/test.rgb
|
||||
share/python1.4/test/test_audioop.py
|
||||
share/python1.4/test/test_b1.py
|
||||
share/python1.4/test/test_b2.py
|
||||
share/python1.4/test/test_builtin.py
|
||||
share/python1.4/test/test_exceptions.py
|
||||
share/python1.4/test/test_grammar.py
|
||||
share/python1.4/test/test_math.py
|
||||
share/python1.4/test/test_md5.py
|
||||
share/python1.4/test/test_opcodes.py
|
||||
share/python1.4/test/test_operations.py
|
||||
share/python1.4/test/test_pow.py
|
||||
share/python1.4/test/test_rgbimg.py
|
||||
share/python1.4/test/test_select.py
|
||||
share/python1.4/test/test_signal.py
|
||||
share/python1.4/test/test_strop.py
|
||||
share/python1.4/test/test_support.py
|
||||
share/python1.4/test/test_thread.py
|
||||
share/python1.4/test/test_types.py
|
||||
share/python1.4/test/testall.out
|
||||
share/python1.4/test/testall.py
|
||||
share/python1.4/test/test_audioop.pyc
|
||||
share/python1.4/test/test_b1.pyc
|
||||
share/python1.4/test/test_b2.pyc
|
||||
share/python1.4/test/test_builtin.pyc
|
||||
share/python1.4/test/test_exceptions.pyc
|
||||
share/python1.4/test/test_grammar.pyc
|
||||
share/python1.4/test/test_math.pyc
|
||||
share/python1.4/test/test_md5.pyc
|
||||
share/python1.4/test/test_opcodes.pyc
|
||||
share/python1.4/test/test_operations.pyc
|
||||
share/python1.4/test/test_pow.pyc
|
||||
share/python1.4/test/test_rgbimg.pyc
|
||||
share/python1.4/test/test_select.pyc
|
||||
share/python1.4/test/test_signal.pyc
|
||||
share/python1.4/test/test_strop.pyc
|
||||
share/python1.4/test/test_support.pyc
|
||||
share/python1.4/test/testall.pyc
|
||||
share/python1.4/test/test_thread.pyc
|
||||
share/python1.4/test/test_types.pyc
|
||||
share/python1.4/freebsd/FCNTL.pyc
|
||||
share/python1.4/freebsd/FCNTL.py
|
||||
share/python1.4/freebsd/IN.pyc
|
||||
share/python1.4/freebsd/IN.py
|
||||
share/python1.4/freebsd/SOCKET.pyc
|
||||
share/python1.4/freebsd/SOCKET.py
|
||||
share/python1.4/freebsd/TERMIOS.pyc
|
||||
share/python1.4/freebsd/TERMIOS.py
|
||||
share/python1.4/freebsd/regen
|
||||
share/python1.4/urllib.py
|
||||
share/python1.4/AST.py
|
||||
share/python1.4/BaseHTTPServer.py
|
||||
share/python1.4/Bastion.py
|
||||
share/python1.4/CGIHTTPServer.py
|
||||
share/python1.4/Complex.py
|
||||
share/python1.4/MimeWriter.py
|
||||
share/python1.4/Para.py
|
||||
share/python1.4/Queue.py
|
||||
share/python1.4/SimpleHTTPServer.py
|
||||
share/python1.4/SocketServer.py
|
||||
share/python1.4/StringIO.py
|
||||
share/python1.4/UserDict.py
|
||||
share/python1.4/UserList.py
|
||||
share/python1.4/addpack.py
|
||||
share/python1.4/aifc.py
|
||||
share/python1.4/anydbm.py
|
||||
share/python1.4/audiodev.py
|
||||
share/python1.4/base64.py
|
||||
share/python1.4/bdb.py
|
||||
share/python1.4/binhex.py
|
||||
share/python1.4/bisect.py
|
||||
share/python1.4/calendar.py
|
||||
share/python1.4/cgi.py
|
||||
share/python1.4/cmd.py
|
||||
share/python1.4/cmp.py
|
||||
share/python1.4/cmpcache.py
|
||||
share/python1.4/codehack.py
|
||||
share/python1.4/colorsys.py
|
||||
share/python1.4/commands.py
|
||||
share/python1.4/compileall.py
|
||||
share/python1.4/copy.py
|
||||
share/python1.4/dbhash.py
|
||||
share/python1.4/dircache.py
|
||||
share/python1.4/dircmp.py
|
||||
share/python1.4/dis.py
|
||||
share/python1.4/dospath.py
|
||||
share/python1.4/dumbdbm.py
|
||||
share/python1.4/dump.py
|
||||
share/python1.4/emacs.py
|
||||
share/python1.4/find.py
|
||||
share/python1.4/fmt.py
|
||||
share/python1.4/fnmatch.py
|
||||
share/python1.4/formatter.py
|
||||
share/python1.4/fpformat.py
|
||||
share/python1.4/ftplib.py
|
||||
share/python1.4/glob.py
|
||||
share/python1.4/getopt.py
|
||||
share/python1.4/gopherlib.py
|
||||
share/python1.4/grep.py
|
||||
share/python1.4/htmlentitydefs.py
|
||||
share/python1.4/htmllib.py
|
||||
share/python1.4/httplib.py
|
||||
share/python1.4/ihooks.py
|
||||
share/python1.4/imghdr.py
|
||||
share/python1.4/linecache.py
|
||||
share/python1.4/lockfile.py
|
||||
share/python1.4/macpath.py
|
||||
share/python1.4/macurl2path.py
|
||||
share/python1.4/mailbox.py
|
||||
share/python1.4/mailcap.py
|
||||
share/python1.4/mhlib.py
|
||||
share/python1.4/mimetools.py
|
||||
share/python1.4/mimify.py
|
||||
share/python1.4/multifile.py
|
||||
share/python1.4/mutex.py
|
||||
share/python1.4/newdir.py
|
||||
share/python1.4/ni.py
|
||||
share/python1.4/nntplib.py
|
||||
share/python1.4/ntpath.py
|
||||
share/python1.4/nturl2path.py
|
||||
share/python1.4/os.py
|
||||
share/python1.4/ospath.py
|
||||
share/python1.4/packmail.py
|
||||
share/python1.4/pdb.py
|
||||
share/python1.4/pickle.py
|
||||
share/python1.4/pipes.py
|
||||
share/python1.4/poly.py
|
||||
share/python1.4/popen2.py
|
||||
share/python1.4/posixfile.py
|
||||
share/python1.4/posixpath.py
|
||||
share/python1.4/profile.py
|
||||
share/python1.4/pstats.py
|
||||
share/python1.4/pty.py
|
||||
share/python1.4/py_compile.py
|
||||
share/python1.4/pyclbr.py
|
||||
share/python1.4/quopri.py
|
||||
share/python1.4/rand.py
|
||||
share/python1.4/random.py
|
||||
share/python1.4/regex_syntax.py
|
||||
share/python1.4/regexp.py
|
||||
share/python1.4/regsub.py
|
||||
share/python1.4/repr.py
|
||||
share/python1.4/rexec.py
|
||||
share/python1.4/rfc822.py
|
||||
share/python1.4/sched.py
|
||||
share/python1.4/sgmllib.py
|
||||
share/python1.4/shelve.py
|
||||
share/python1.4/shutil.py
|
||||
share/python1.4/site.py
|
||||
share/python1.4/sndhdr.py
|
||||
share/python1.4/stat.py
|
||||
share/python1.4/statcache.py
|
||||
share/python1.4/string.py
|
||||
share/python1.4/sunau.py
|
||||
share/python1.4/sunaudio.py
|
||||
share/python1.4/symbol.py
|
||||
share/python1.4/tb.py
|
||||
share/python1.4/tempfile.py
|
||||
share/python1.4/toaiff.py
|
||||
share/python1.4/token.py
|
||||
share/python1.4/tokenize.py
|
||||
share/python1.4/traceback.py
|
||||
share/python1.4/tty.py
|
||||
share/python1.4/types.py
|
||||
share/python1.4/tzparse.py
|
||||
share/python1.4/os.pyc
|
||||
share/python1.4/urlparse.py
|
||||
share/python1.4/util.py
|
||||
share/python1.4/uu.py
|
||||
share/python1.4/wave.py
|
||||
share/python1.4/whatsound.py
|
||||
share/python1.4/whichdb.py
|
||||
share/python1.4/whrandom.py
|
||||
share/python1.4/xdrlib.py
|
||||
share/python1.4/zmod.py
|
||||
share/python1.4/pdb.doc
|
||||
share/python1.4/profile.doc
|
||||
share/python1.4/posixpath.pyc
|
||||
share/python1.4/stat.pyc
|
||||
share/python1.4/UserDict.pyc
|
||||
share/python1.4/py_compile.pyc
|
||||
share/python1.4/getopt.pyc
|
||||
share/python1.4/string.pyc
|
||||
share/python1.4/AST.pyc
|
||||
share/python1.4/BaseHTTPServer.pyc
|
||||
share/python1.4/Bastion.pyc
|
||||
share/python1.4/CGIHTTPServer.pyc
|
||||
share/python1.4/Complex.pyc
|
||||
share/python1.4/MimeWriter.pyc
|
||||
share/python1.4/Para.pyc
|
||||
share/python1.4/Queue.pyc
|
||||
share/python1.4/SimpleHTTPServer.pyc
|
||||
share/python1.4/SocketServer.pyc
|
||||
share/python1.4/StringIO.pyc
|
||||
share/python1.4/UserList.pyc
|
||||
share/python1.4/addpack.pyc
|
||||
share/python1.4/aifc.pyc
|
||||
share/python1.4/anydbm.pyc
|
||||
share/python1.4/audiodev.pyc
|
||||
share/python1.4/base64.pyc
|
||||
share/python1.4/bdb.pyc
|
||||
share/python1.4/binhex.pyc
|
||||
share/python1.4/bisect.pyc
|
||||
share/python1.4/calendar.pyc
|
||||
share/python1.4/cgi.pyc
|
||||
share/python1.4/cmd.pyc
|
||||
share/python1.4/cmp.pyc
|
||||
share/python1.4/cmpcache.pyc
|
||||
share/python1.4/codehack.pyc
|
||||
share/python1.4/colorsys.pyc
|
||||
share/python1.4/commands.pyc
|
||||
share/python1.4/compileall.pyc
|
||||
share/python1.4/copy.pyc
|
||||
share/python1.4/dbhash.pyc
|
||||
share/python1.4/dircache.pyc
|
||||
share/python1.4/dircmp.pyc
|
||||
share/python1.4/dis.pyc
|
||||
share/python1.4/dospath.pyc
|
||||
share/python1.4/dumbdbm.pyc
|
||||
share/python1.4/dump.pyc
|
||||
share/python1.4/emacs.pyc
|
||||
share/python1.4/find.pyc
|
||||
share/python1.4/fmt.pyc
|
||||
share/python1.4/fnmatch.pyc
|
||||
share/python1.4/formatter.pyc
|
||||
share/python1.4/fpformat.pyc
|
||||
share/python1.4/ftplib.pyc
|
||||
share/python1.4/glob.pyc
|
||||
share/python1.4/gopherlib.pyc
|
||||
share/python1.4/grep.pyc
|
||||
share/python1.4/htmlentitydefs.pyc
|
||||
share/python1.4/htmllib.pyc
|
||||
share/python1.4/httplib.pyc
|
||||
share/python1.4/ihooks.pyc
|
||||
share/python1.4/imghdr.pyc
|
||||
share/python1.4/linecache.pyc
|
||||
share/python1.4/lockfile.pyc
|
||||
share/python1.4/macpath.pyc
|
||||
share/python1.4/macurl2path.pyc
|
||||
share/python1.4/mailbox.pyc
|
||||
share/python1.4/mailcap.pyc
|
||||
share/python1.4/mhlib.pyc
|
||||
share/python1.4/mimetools.pyc
|
||||
share/python1.4/mimify.pyc
|
||||
share/python1.4/multifile.pyc
|
||||
share/python1.4/mutex.pyc
|
||||
share/python1.4/newdir.pyc
|
||||
share/python1.4/ni.pyc
|
||||
share/python1.4/nntplib.pyc
|
||||
share/python1.4/ntpath.pyc
|
||||
share/python1.4/nturl2path.pyc
|
||||
share/python1.4/ospath.pyc
|
||||
share/python1.4/packmail.pyc
|
||||
share/python1.4/pdb.pyc
|
||||
share/python1.4/pickle.pyc
|
||||
share/python1.4/pipes.pyc
|
||||
share/python1.4/poly.pyc
|
||||
share/python1.4/popen2.pyc
|
||||
share/python1.4/posixfile.pyc
|
||||
share/python1.4/profile.pyc
|
||||
share/python1.4/pstats.pyc
|
||||
share/python1.4/pty.pyc
|
||||
share/python1.4/pyclbr.pyc
|
||||
share/python1.4/quopri.pyc
|
||||
share/python1.4/rand.pyc
|
||||
share/python1.4/random.pyc
|
||||
share/python1.4/regex_syntax.pyc
|
||||
share/python1.4/regexp.pyc
|
||||
share/python1.4/regsub.pyc
|
||||
share/python1.4/repr.pyc
|
||||
share/python1.4/rexec.pyc
|
||||
share/python1.4/rfc822.pyc
|
||||
share/python1.4/sched.pyc
|
||||
share/python1.4/sgmllib.pyc
|
||||
share/python1.4/shelve.pyc
|
||||
share/python1.4/shutil.pyc
|
||||
share/python1.4/site.pyc
|
||||
share/python1.4/sndhdr.pyc
|
||||
share/python1.4/statcache.pyc
|
||||
share/python1.4/sunau.pyc
|
||||
share/python1.4/sunaudio.pyc
|
||||
share/python1.4/symbol.pyc
|
||||
share/python1.4/tb.pyc
|
||||
share/python1.4/tempfile.pyc
|
||||
share/python1.4/toaiff.pyc
|
||||
share/python1.4/token.pyc
|
||||
share/python1.4/tokenize.pyc
|
||||
share/python1.4/traceback.pyc
|
||||
share/python1.4/tty.pyc
|
||||
share/python1.4/types.pyc
|
||||
share/python1.4/tzparse.pyc
|
||||
share/python1.4/urllib.pyc
|
||||
share/python1.4/urlparse.pyc
|
||||
share/python1.4/uu.pyc
|
||||
share/python1.4/util.pyc
|
||||
share/python1.4/wave.pyc
|
||||
share/python1.4/whatsound.pyc
|
||||
share/python1.4/whichdb.pyc
|
||||
share/python1.4/whrandom.pyc
|
||||
share/python1.4/xdrlib.pyc
|
||||
share/python1.4/zmod.pyc
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# Date created: 08 August 1995
|
||||
# Whom: jkh
|
||||
#
|
||||
# $Id: Makefile,v 1.12 1997/02/21 14:57:01 tg Exp $
|
||||
# $Id: Makefile,v 1.13 1997/04/20 13:19:11 wosch Exp $
|
||||
#
|
||||
|
||||
DISTNAME= python1.4
|
||||
|
@ -13,12 +13,10 @@ MASTER_SITES= ftp://www.python.org/pub/python/src/ \
|
|||
ftp://ftp.cwi.nl/pub/python/src/ \
|
||||
ftp://www.python.org/pub/python/contrib/Graphics/Tkinter/ \
|
||||
ftp://ftp.cwi.nl/pub/python/contrib/Graphics/Tkinter/
|
||||
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} PyTix-1.12.tar.gz
|
||||
|
||||
MAINTAINER= tg@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= tk41\\.1\\.:${PORTSDIR}/x11/tk41 \
|
||||
tix4175\\.1\\.:${PORTSDIR}/x11/tix
|
||||
LIB_DEPENDS= tk41\\.1\\.:${PORTSDIR}/x11/tk41
|
||||
|
||||
WRKSRC= ${WRKDIR}/Python-1.4
|
||||
HAS_CONFIGURE= yes
|
||||
|
@ -27,14 +25,6 @@ MAKE_FLAGS+= 'OPT=${CFLAGS}'
|
|||
INSTALL_TARGET= install
|
||||
MAN1= python.1
|
||||
|
||||
PYTIXSRC= ${WRKDIR}/PyTix-1.12
|
||||
|
||||
post-extract:
|
||||
@${ECHO_MSG} "===> Add PyTix extensions to Python core"
|
||||
${CP} ${PYTIXSRC}/Tkinter.py ${WRKSRC}/Lib/tkinter
|
||||
${CP} ${PYTIXSRC}/Tix.py ${WRKSRC}/Lib/tkinter
|
||||
${CP} ${PYTIXSRC}/_tkinter.c ${WRKSRC}/Modules
|
||||
|
||||
post-configure:
|
||||
${CP} ${FILESDIR}/Setup ${WRKSRC}/Modules
|
||||
|
||||
|
|
|
@ -71,7 +71,7 @@ SITEPATH=:$(DESTLIB)/NumPy
|
|||
TESTPATH=:$(DESTLIB)/test
|
||||
|
||||
# Path for machine- or system-dependent modules (and shared libraries)
|
||||
MACHDEPPATH=:$(DESTLIB)/$(MACHDEP)
|
||||
MACHDEPPATH=:$(DESTLIB)/$(MACHDEP):$(MACHDESTLIB)/sharedmodules
|
||||
|
||||
COREPYTHONPATH=.$(SITEPATH)$(DESTPATH)$(TESTPATH)$(MACHDEPPATH)$(STDWINPATH)$(TKPATH)
|
||||
PYTHONPATH=$(COREPYTHONPATH)
|
||||
|
@ -128,6 +128,7 @@ select selectmodule.c # select(2); not on ancient System V
|
|||
socket socketmodule.c # socket(2); not on ancient System V
|
||||
errno errnomodule.c # posix (UNIX) errno values
|
||||
|
||||
*shared*
|
||||
|
||||
# Some more UNIX dependent modules -- off by default, since these
|
||||
# are not supported by all UNIX systems:
|
||||
|
@ -249,7 +250,7 @@ TKPATH=:$(DESTLIB)/tkinter
|
|||
#_tkinter _tkinter.c -I/usr/openwin/include -I/usr/local/include -L/usr/openwin/lib -L/usr/local/lib -ltk4.1 -ltcl7.5 -lX11
|
||||
# For generic system (may have to add -I/-L options to find X11):
|
||||
#_tkinter _tkinter.c -I/usr/local/include -L/usr/local/lib -ltk4.1 -ltcl7.5 -lX11
|
||||
_tkinter _tkinter.c -I/usr/local/include -I/usr/X11R6/include -L/usr/local/lib -L/usr/X11R6/lib -ltix4175 -ltk41 -ltcl75 -lX11
|
||||
_tkinter _tkinter.c -I/usr/local/include -I/usr/X11R6/include -L/usr/local/lib -L/usr/X11R6/lib -ltk41 -ltcl75 -lX11
|
||||
|
||||
|
||||
# Lance Ellinghaus's modules:
|
||||
|
|
|
@ -1,11 +1,7 @@
|
|||
--- Makefile.in.orig Fri Oct 25 16:37:32 1996
|
||||
+++ Makefile.in Thu Feb 6 12:02:11 1997
|
||||
@@ -95,10 +95,10 @@
|
||||
|
||||
# Expanded directories
|
||||
BINDIR= $(exec_prefix)/bin
|
||||
-LIBDIR= $(exec_prefix)/lib
|
||||
+LIBDIR= $(exec_prefix)/share
|
||||
+++ Makefile.in Mon May 12 21:04:38 1997
|
||||
@@ -98,7 +98,7 @@
|
||||
LIBDIR= $(exec_prefix)/lib
|
||||
MANDIR= $(prefix)/man
|
||||
INCLUDEDIR= $(prefix)/include
|
||||
-SCRIPTDIR= $(prefix)/lib
|
||||
|
|
|
@ -1,403 +1,5 @@
|
|||
bin/python1.4
|
||||
bin/python
|
||||
@exec mkdir -p %D/share/python1.4/sharedmodules
|
||||
@unexec rmdir %D/share/python1.4/sharedmodules
|
||||
share/python1.4/AST.py
|
||||
share/python1.4/AST.pyc
|
||||
share/python1.4/BaseHTTPServer.py
|
||||
share/python1.4/BaseHTTPServer.pyc
|
||||
share/python1.4/Bastion.py
|
||||
share/python1.4/Bastion.pyc
|
||||
share/python1.4/CGIHTTPServer.py
|
||||
share/python1.4/CGIHTTPServer.pyc
|
||||
share/python1.4/Complex.py
|
||||
share/python1.4/Complex.pyc
|
||||
share/python1.4/MimeWriter.py
|
||||
share/python1.4/MimeWriter.pyc
|
||||
share/python1.4/Para.py
|
||||
share/python1.4/Para.pyc
|
||||
share/python1.4/Queue.py
|
||||
share/python1.4/Queue.pyc
|
||||
share/python1.4/SimpleHTTPServer.py
|
||||
share/python1.4/SimpleHTTPServer.pyc
|
||||
share/python1.4/SocketServer.py
|
||||
share/python1.4/SocketServer.pyc
|
||||
share/python1.4/StringIO.py
|
||||
share/python1.4/StringIO.pyc
|
||||
share/python1.4/UserDict.py
|
||||
share/python1.4/UserDict.pyc
|
||||
share/python1.4/UserList.py
|
||||
share/python1.4/UserList.pyc
|
||||
share/python1.4/addpack.py
|
||||
share/python1.4/addpack.pyc
|
||||
share/python1.4/aifc.py
|
||||
share/python1.4/aifc.pyc
|
||||
share/python1.4/anydbm.py
|
||||
share/python1.4/anydbm.pyc
|
||||
share/python1.4/audiodev.py
|
||||
share/python1.4/audiodev.pyc
|
||||
share/python1.4/base64.py
|
||||
share/python1.4/base64.pyc
|
||||
share/python1.4/bdb.py
|
||||
share/python1.4/bdb.pyc
|
||||
share/python1.4/binhex.py
|
||||
share/python1.4/binhex.pyc
|
||||
share/python1.4/bisect.py
|
||||
share/python1.4/bisect.pyc
|
||||
share/python1.4/calendar.py
|
||||
share/python1.4/calendar.pyc
|
||||
share/python1.4/cgi.py
|
||||
share/python1.4/cgi.pyc
|
||||
share/python1.4/cmd.py
|
||||
share/python1.4/cmd.pyc
|
||||
share/python1.4/cmp.py
|
||||
share/python1.4/cmp.pyc
|
||||
share/python1.4/cmpcache.py
|
||||
share/python1.4/cmpcache.pyc
|
||||
share/python1.4/codehack.py
|
||||
share/python1.4/codehack.pyc
|
||||
share/python1.4/colorsys.py
|
||||
share/python1.4/colorsys.pyc
|
||||
share/python1.4/commands.py
|
||||
share/python1.4/commands.pyc
|
||||
share/python1.4/compileall.py
|
||||
share/python1.4/compileall.pyc
|
||||
share/python1.4/copy.py
|
||||
share/python1.4/copy.pyc
|
||||
share/python1.4/dbhash.py
|
||||
share/python1.4/dbhash.pyc
|
||||
share/python1.4/dircache.py
|
||||
share/python1.4/dircache.pyc
|
||||
share/python1.4/dircmp.py
|
||||
share/python1.4/dircmp.pyc
|
||||
share/python1.4/dis.py
|
||||
share/python1.4/dis.pyc
|
||||
share/python1.4/dospath.py
|
||||
share/python1.4/dospath.pyc
|
||||
share/python1.4/dumbdbm.py
|
||||
share/python1.4/dumbdbm.pyc
|
||||
share/python1.4/dump.py
|
||||
share/python1.4/dump.pyc
|
||||
share/python1.4/emacs.py
|
||||
share/python1.4/emacs.pyc
|
||||
share/python1.4/find.py
|
||||
share/python1.4/find.pyc
|
||||
share/python1.4/fmt.py
|
||||
share/python1.4/fmt.pyc
|
||||
share/python1.4/fnmatch.py
|
||||
share/python1.4/fnmatch.pyc
|
||||
share/python1.4/formatter.py
|
||||
share/python1.4/formatter.pyc
|
||||
share/python1.4/fpformat.py
|
||||
share/python1.4/fpformat.pyc
|
||||
share/python1.4/ftplib.py
|
||||
share/python1.4/ftplib.pyc
|
||||
share/python1.4/getopt.py
|
||||
share/python1.4/getopt.pyc
|
||||
share/python1.4/glob.py
|
||||
share/python1.4/glob.pyc
|
||||
share/python1.4/gopherlib.py
|
||||
share/python1.4/gopherlib.pyc
|
||||
share/python1.4/grep.py
|
||||
share/python1.4/grep.pyc
|
||||
share/python1.4/htmlentitydefs.py
|
||||
share/python1.4/htmlentitydefs.pyc
|
||||
share/python1.4/htmllib.py
|
||||
share/python1.4/htmllib.pyc
|
||||
share/python1.4/httplib.py
|
||||
share/python1.4/httplib.pyc
|
||||
share/python1.4/ihooks.py
|
||||
share/python1.4/ihooks.pyc
|
||||
share/python1.4/imghdr.py
|
||||
share/python1.4/imghdr.pyc
|
||||
share/python1.4/linecache.py
|
||||
share/python1.4/linecache.pyc
|
||||
share/python1.4/lockfile.py
|
||||
share/python1.4/lockfile.pyc
|
||||
share/python1.4/macpath.py
|
||||
share/python1.4/macpath.pyc
|
||||
share/python1.4/macurl2path.py
|
||||
share/python1.4/macurl2path.pyc
|
||||
share/python1.4/mailbox.py
|
||||
share/python1.4/mailbox.pyc
|
||||
share/python1.4/mailcap.py
|
||||
share/python1.4/mailcap.pyc
|
||||
share/python1.4/mhlib.py
|
||||
share/python1.4/mhlib.pyc
|
||||
share/python1.4/mimetools.py
|
||||
share/python1.4/mimetools.pyc
|
||||
share/python1.4/mimify.py
|
||||
share/python1.4/mimify.pyc
|
||||
share/python1.4/multifile.py
|
||||
share/python1.4/multifile.pyc
|
||||
share/python1.4/mutex.py
|
||||
share/python1.4/mutex.pyc
|
||||
share/python1.4/newdir.py
|
||||
share/python1.4/newdir.pyc
|
||||
share/python1.4/ni.py
|
||||
share/python1.4/ni.pyc
|
||||
share/python1.4/nntplib.py
|
||||
share/python1.4/nntplib.pyc
|
||||
share/python1.4/ntpath.py
|
||||
share/python1.4/ntpath.pyc
|
||||
share/python1.4/nturl2path.py
|
||||
share/python1.4/nturl2path.pyc
|
||||
share/python1.4/os.py
|
||||
share/python1.4/os.pyc
|
||||
share/python1.4/ospath.py
|
||||
share/python1.4/ospath.pyc
|
||||
share/python1.4/packmail.py
|
||||
share/python1.4/packmail.pyc
|
||||
share/python1.4/pdb.doc
|
||||
share/python1.4/pdb.py
|
||||
share/python1.4/pdb.pyc
|
||||
share/python1.4/pickle.py
|
||||
share/python1.4/pickle.pyc
|
||||
share/python1.4/pipes.py
|
||||
share/python1.4/pipes.pyc
|
||||
share/python1.4/poly.py
|
||||
share/python1.4/poly.pyc
|
||||
share/python1.4/popen2.py
|
||||
share/python1.4/popen2.pyc
|
||||
share/python1.4/posixfile.py
|
||||
share/python1.4/posixfile.pyc
|
||||
share/python1.4/posixpath.py
|
||||
share/python1.4/posixpath.pyc
|
||||
share/python1.4/profile.doc
|
||||
share/python1.4/profile.py
|
||||
share/python1.4/profile.pyc
|
||||
share/python1.4/pstats.py
|
||||
share/python1.4/pstats.pyc
|
||||
share/python1.4/pty.py
|
||||
share/python1.4/pty.pyc
|
||||
share/python1.4/py_compile.py
|
||||
share/python1.4/py_compile.pyc
|
||||
share/python1.4/pyclbr.py
|
||||
share/python1.4/pyclbr.pyc
|
||||
share/python1.4/quopri.py
|
||||
share/python1.4/quopri.pyc
|
||||
share/python1.4/rand.py
|
||||
share/python1.4/rand.pyc
|
||||
share/python1.4/random.py
|
||||
share/python1.4/random.pyc
|
||||
share/python1.4/regex_syntax.py
|
||||
share/python1.4/regex_syntax.pyc
|
||||
share/python1.4/regexp.py
|
||||
share/python1.4/regexp.pyc
|
||||
share/python1.4/regsub.py
|
||||
share/python1.4/regsub.pyc
|
||||
share/python1.4/repr.py
|
||||
share/python1.4/repr.pyc
|
||||
share/python1.4/rexec.py
|
||||
share/python1.4/rexec.pyc
|
||||
share/python1.4/rfc822.py
|
||||
share/python1.4/rfc822.pyc
|
||||
share/python1.4/sched.py
|
||||
share/python1.4/sched.pyc
|
||||
share/python1.4/sgmllib.py
|
||||
share/python1.4/sgmllib.pyc
|
||||
share/python1.4/shelve.py
|
||||
share/python1.4/shelve.pyc
|
||||
share/python1.4/shutil.py
|
||||
share/python1.4/shutil.pyc
|
||||
share/python1.4/site.py
|
||||
share/python1.4/site.pyc
|
||||
share/python1.4/sndhdr.py
|
||||
share/python1.4/sndhdr.pyc
|
||||
share/python1.4/stat.py
|
||||
share/python1.4/stat.pyc
|
||||
share/python1.4/statcache.py
|
||||
share/python1.4/statcache.pyc
|
||||
share/python1.4/string.py
|
||||
share/python1.4/string.pyc
|
||||
share/python1.4/sunau.py
|
||||
share/python1.4/sunau.pyc
|
||||
share/python1.4/sunaudio.py
|
||||
share/python1.4/sunaudio.pyc
|
||||
share/python1.4/symbol.py
|
||||
share/python1.4/symbol.pyc
|
||||
share/python1.4/tb.py
|
||||
share/python1.4/tb.pyc
|
||||
share/python1.4/tempfile.py
|
||||
share/python1.4/tempfile.pyc
|
||||
share/python1.4/toaiff.py
|
||||
share/python1.4/toaiff.pyc
|
||||
share/python1.4/token.py
|
||||
share/python1.4/token.pyc
|
||||
share/python1.4/tokenize.py
|
||||
share/python1.4/tokenize.pyc
|
||||
share/python1.4/traceback.py
|
||||
share/python1.4/traceback.pyc
|
||||
share/python1.4/tty.py
|
||||
share/python1.4/tty.pyc
|
||||
share/python1.4/types.py
|
||||
share/python1.4/types.pyc
|
||||
share/python1.4/tzparse.py
|
||||
share/python1.4/tzparse.pyc
|
||||
share/python1.4/urllib.py
|
||||
share/python1.4/urllib.pyc
|
||||
share/python1.4/urlparse.py
|
||||
share/python1.4/urlparse.pyc
|
||||
share/python1.4/util.py
|
||||
share/python1.4/util.pyc
|
||||
share/python1.4/uu.py
|
||||
share/python1.4/uu.pyc
|
||||
share/python1.4/wave.py
|
||||
share/python1.4/wave.pyc
|
||||
share/python1.4/whatsound.py
|
||||
share/python1.4/whatsound.pyc
|
||||
share/python1.4/whichdb.py
|
||||
share/python1.4/whichdb.pyc
|
||||
share/python1.4/whrandom.py
|
||||
share/python1.4/whrandom.pyc
|
||||
share/python1.4/xdrlib.py
|
||||
share/python1.4/xdrlib.pyc
|
||||
share/python1.4/zmod.py
|
||||
share/python1.4/zmod.pyc
|
||||
share/python1.4/config/Makefile
|
||||
share/python1.4/config/Setup
|
||||
share/python1.4/config/config.c
|
||||
share/python1.4/config/config.c.in
|
||||
share/python1.4/config/config.h
|
||||
share/python1.4/config/frozenmain.c
|
||||
share/python1.4/config/getpath.c
|
||||
share/python1.4/config/libModules.a
|
||||
share/python1.4/config/libObjects.a
|
||||
share/python1.4/config/libParser.a
|
||||
share/python1.4/config/libPython.a
|
||||
share/python1.4/config/main.o
|
||||
share/python1.4/config/makesetup
|
||||
share/python1.4/freebsd2/FCNTL.py
|
||||
share/python1.4/freebsd2/FCNTL.pyc
|
||||
share/python1.4/freebsd2/regen
|
||||
share/python1.4/stdwin/Abstract.py
|
||||
share/python1.4/stdwin/Abstract.pyc
|
||||
share/python1.4/stdwin/BoxParent.py
|
||||
share/python1.4/stdwin/BoxParent.pyc
|
||||
share/python1.4/stdwin/Buttons.py
|
||||
share/python1.4/stdwin/Buttons.pyc
|
||||
share/python1.4/stdwin/CSplit.py
|
||||
share/python1.4/stdwin/CSplit.pyc
|
||||
share/python1.4/stdwin/DirList.py
|
||||
share/python1.4/stdwin/DirList.pyc
|
||||
share/python1.4/stdwin/FormSplit.py
|
||||
share/python1.4/stdwin/FormSplit.pyc
|
||||
share/python1.4/stdwin/HVSplit.py
|
||||
share/python1.4/stdwin/HVSplit.pyc
|
||||
share/python1.4/stdwin/Histogram.py
|
||||
share/python1.4/stdwin/Histogram.pyc
|
||||
share/python1.4/stdwin/Sliders.py
|
||||
share/python1.4/stdwin/Sliders.pyc
|
||||
share/python1.4/stdwin/Soundogram.py
|
||||
share/python1.4/stdwin/Soundogram.pyc
|
||||
share/python1.4/stdwin/Split.py
|
||||
share/python1.4/stdwin/Split.pyc
|
||||
share/python1.4/stdwin/StripChart.py
|
||||
share/python1.4/stdwin/StripChart.pyc
|
||||
share/python1.4/stdwin/TextEdit.py
|
||||
share/python1.4/stdwin/TextEdit.pyc
|
||||
share/python1.4/stdwin/TransParent.py
|
||||
share/python1.4/stdwin/TransParent.pyc
|
||||
share/python1.4/stdwin/VUMeter.py
|
||||
share/python1.4/stdwin/VUMeter.pyc
|
||||
share/python1.4/stdwin/WindowParent.py
|
||||
share/python1.4/stdwin/WindowParent.pyc
|
||||
share/python1.4/stdwin/WindowSched.py
|
||||
share/python1.4/stdwin/WindowSched.pyc
|
||||
share/python1.4/stdwin/anywin.py
|
||||
share/python1.4/stdwin/anywin.pyc
|
||||
share/python1.4/stdwin/basewin.py
|
||||
share/python1.4/stdwin/basewin.pyc
|
||||
share/python1.4/stdwin/dirwin.py
|
||||
share/python1.4/stdwin/dirwin.pyc
|
||||
share/python1.4/stdwin/filewin.py
|
||||
share/python1.4/stdwin/filewin.pyc
|
||||
share/python1.4/stdwin/formatter.py
|
||||
share/python1.4/stdwin/formatter.pyc
|
||||
share/python1.4/stdwin/gwin.py
|
||||
share/python1.4/stdwin/gwin.pyc
|
||||
share/python1.4/stdwin/listwin.py
|
||||
share/python1.4/stdwin/listwin.pyc
|
||||
share/python1.4/stdwin/mainloop.py
|
||||
share/python1.4/stdwin/mainloop.pyc
|
||||
share/python1.4/stdwin/rect.py
|
||||
share/python1.4/stdwin/rect.pyc
|
||||
share/python1.4/stdwin/srcwin.py
|
||||
share/python1.4/stdwin/srcwin.pyc
|
||||
share/python1.4/stdwin/stdwinevents.py
|
||||
share/python1.4/stdwin/stdwinevents.pyc
|
||||
share/python1.4/stdwin/stdwinq.py
|
||||
share/python1.4/stdwin/stdwinq.pyc
|
||||
share/python1.4/stdwin/tablewin.py
|
||||
share/python1.4/stdwin/tablewin.pyc
|
||||
share/python1.4/stdwin/textwin.py
|
||||
share/python1.4/stdwin/textwin.pyc
|
||||
share/python1.4/stdwin/wdb.py
|
||||
share/python1.4/stdwin/wdb.pyc
|
||||
share/python1.4/stdwin/wdbframewin.py
|
||||
share/python1.4/stdwin/wdbframewin.pyc
|
||||
share/python1.4/stdwin/wdbsrcwin.py
|
||||
share/python1.4/stdwin/wdbsrcwin.pyc
|
||||
share/python1.4/test/autotest.py
|
||||
share/python1.4/test/autotest.pyc
|
||||
share/python1.4/test/test.rawimg
|
||||
share/python1.4/test/test.rawimg.rev
|
||||
share/python1.4/test/test.rgb
|
||||
share/python1.4/test/test_audioop.py
|
||||
share/python1.4/test/test_audioop.pyc
|
||||
share/python1.4/test/test_b1.py
|
||||
share/python1.4/test/test_b1.pyc
|
||||
share/python1.4/test/test_b2.py
|
||||
share/python1.4/test/test_b2.pyc
|
||||
share/python1.4/test/test_builtin.py
|
||||
share/python1.4/test/test_builtin.pyc
|
||||
share/python1.4/test/test_exceptions.py
|
||||
share/python1.4/test/test_exceptions.pyc
|
||||
share/python1.4/test/test_grammar.py
|
||||
share/python1.4/test/test_grammar.pyc
|
||||
share/python1.4/test/test_math.py
|
||||
share/python1.4/test/test_math.pyc
|
||||
share/python1.4/test/test_md5.py
|
||||
share/python1.4/test/test_md5.pyc
|
||||
share/python1.4/test/test_opcodes.py
|
||||
share/python1.4/test/test_opcodes.pyc
|
||||
share/python1.4/test/test_operations.py
|
||||
share/python1.4/test/test_operations.pyc
|
||||
share/python1.4/test/test_pow.py
|
||||
share/python1.4/test/test_pow.pyc
|
||||
share/python1.4/test/test_rgbimg.py
|
||||
share/python1.4/test/test_rgbimg.pyc
|
||||
share/python1.4/test/test_select.py
|
||||
share/python1.4/test/test_select.pyc
|
||||
share/python1.4/test/test_signal.py
|
||||
share/python1.4/test/test_signal.pyc
|
||||
share/python1.4/test/test_strop.py
|
||||
share/python1.4/test/test_strop.pyc
|
||||
share/python1.4/test/test_support.py
|
||||
share/python1.4/test/test_support.pyc
|
||||
share/python1.4/test/test_thread.py
|
||||
share/python1.4/test/test_thread.pyc
|
||||
share/python1.4/test/test_types.py
|
||||
share/python1.4/test/test_types.pyc
|
||||
share/python1.4/test/testall.out
|
||||
share/python1.4/test/testall.py
|
||||
share/python1.4/test/testall.pyc
|
||||
share/python1.4/tkinter/Canvas.py
|
||||
share/python1.4/tkinter/Canvas.pyc
|
||||
share/python1.4/tkinter/Dialog.py
|
||||
share/python1.4/tkinter/Dialog.pyc
|
||||
share/python1.4/tkinter/FileDialog.py
|
||||
share/python1.4/tkinter/FileDialog.pyc
|
||||
share/python1.4/tkinter/ScrolledText.py
|
||||
share/python1.4/tkinter/ScrolledText.pyc
|
||||
share/python1.4/tkinter/SimpleDialog.py
|
||||
share/python1.4/tkinter/SimpleDialog.pyc
|
||||
share/python1.4/tkinter/Tix.py
|
||||
share/python1.4/tkinter/Tix.pyc
|
||||
share/python1.4/tkinter/Tkconstants.py
|
||||
share/python1.4/tkinter/Tkconstants.pyc
|
||||
share/python1.4/tkinter/Tkinter.py
|
||||
share/python1.4/tkinter/Tkinter.pyc
|
||||
include/python1.4/Python.h
|
||||
include/python1.4/abstract.h
|
||||
include/python1.4/accessobject.h
|
||||
|
@ -459,4 +61,417 @@ include/python1.4/thread.h
|
|||
include/python1.4/token.h
|
||||
include/python1.4/traceback.h
|
||||
include/python1.4/tupleobject.h
|
||||
lib/python1.4/config/libParser.a
|
||||
lib/python1.4/config/libObjects.a
|
||||
lib/python1.4/config/libPython.a
|
||||
lib/python1.4/config/libModules.a
|
||||
lib/python1.4/config/config.c
|
||||
lib/python1.4/config/getpath.c
|
||||
lib/python1.4/config/config.c.in
|
||||
lib/python1.4/config/Makefile
|
||||
lib/python1.4/config/Setup
|
||||
lib/python1.4/config/makesetup
|
||||
lib/python1.4/config/config.h
|
||||
lib/python1.4/config/frozenmain.c
|
||||
lib/python1.4/config/main.o
|
||||
lib/python1.4/sharedmodules/dbmmodule.so
|
||||
lib/python1.4/sharedmodules/nismodule.so
|
||||
lib/python1.4/sharedmodules/termios.so
|
||||
lib/python1.4/sharedmodules/audioop.so
|
||||
lib/python1.4/sharedmodules/imageop.so
|
||||
lib/python1.4/sharedmodules/rgbimgmodule.so
|
||||
lib/python1.4/sharedmodules/md5module.so
|
||||
lib/python1.4/sharedmodules/_tkinter.so
|
||||
lib/python1.4/sharedmodules/rotormodule.so
|
||||
lib/python1.4/sharedmodules/syslogmodule.so
|
||||
lib/python1.4/sharedmodules/cursesmodule.so
|
||||
lib/python1.4/sharedmodules/bsddbmodule.so
|
||||
lib/python1.4/sharedmodules/binascii.so
|
||||
man/man1/python.1.gz
|
||||
share/python1.4/stdwin/Abstract.pyc
|
||||
share/python1.4/stdwin/Abstract.py
|
||||
share/python1.4/stdwin/BoxParent.py
|
||||
share/python1.4/stdwin/Buttons.py
|
||||
share/python1.4/stdwin/CSplit.py
|
||||
share/python1.4/stdwin/DirList.py
|
||||
share/python1.4/stdwin/FormSplit.py
|
||||
share/python1.4/stdwin/HVSplit.py
|
||||
share/python1.4/stdwin/Histogram.py
|
||||
share/python1.4/stdwin/Sliders.py
|
||||
share/python1.4/stdwin/Soundogram.py
|
||||
share/python1.4/stdwin/Split.py
|
||||
share/python1.4/stdwin/StripChart.py
|
||||
share/python1.4/stdwin/TextEdit.py
|
||||
share/python1.4/stdwin/TransParent.py
|
||||
share/python1.4/stdwin/VUMeter.py
|
||||
share/python1.4/stdwin/WindowParent.py
|
||||
share/python1.4/stdwin/WindowSched.py
|
||||
share/python1.4/stdwin/anywin.py
|
||||
share/python1.4/stdwin/basewin.py
|
||||
share/python1.4/stdwin/dirwin.py
|
||||
share/python1.4/stdwin/filewin.py
|
||||
share/python1.4/stdwin/formatter.py
|
||||
share/python1.4/stdwin/gwin.py
|
||||
share/python1.4/stdwin/listwin.py
|
||||
share/python1.4/stdwin/mainloop.py
|
||||
share/python1.4/stdwin/rect.py
|
||||
share/python1.4/stdwin/srcwin.py
|
||||
share/python1.4/stdwin/stdwinevents.py
|
||||
share/python1.4/stdwin/stdwinq.py
|
||||
share/python1.4/stdwin/tablewin.py
|
||||
share/python1.4/stdwin/textwin.py
|
||||
share/python1.4/stdwin/wdb.py
|
||||
share/python1.4/stdwin/wdbframewin.py
|
||||
share/python1.4/stdwin/wdbsrcwin.py
|
||||
share/python1.4/stdwin/BoxParent.pyc
|
||||
share/python1.4/stdwin/Buttons.pyc
|
||||
share/python1.4/stdwin/CSplit.pyc
|
||||
share/python1.4/stdwin/DirList.pyc
|
||||
share/python1.4/stdwin/FormSplit.pyc
|
||||
share/python1.4/stdwin/HVSplit.pyc
|
||||
share/python1.4/stdwin/Histogram.pyc
|
||||
share/python1.4/stdwin/Sliders.pyc
|
||||
share/python1.4/stdwin/Soundogram.pyc
|
||||
share/python1.4/stdwin/Split.pyc
|
||||
share/python1.4/stdwin/StripChart.pyc
|
||||
share/python1.4/stdwin/TextEdit.pyc
|
||||
share/python1.4/stdwin/TransParent.pyc
|
||||
share/python1.4/stdwin/VUMeter.pyc
|
||||
share/python1.4/stdwin/WindowParent.pyc
|
||||
share/python1.4/stdwin/WindowSched.pyc
|
||||
share/python1.4/stdwin/anywin.pyc
|
||||
share/python1.4/stdwin/basewin.pyc
|
||||
share/python1.4/stdwin/dirwin.pyc
|
||||
share/python1.4/stdwin/filewin.pyc
|
||||
share/python1.4/stdwin/formatter.pyc
|
||||
share/python1.4/stdwin/gwin.pyc
|
||||
share/python1.4/stdwin/listwin.pyc
|
||||
share/python1.4/stdwin/mainloop.pyc
|
||||
share/python1.4/stdwin/rect.pyc
|
||||
share/python1.4/stdwin/srcwin.pyc
|
||||
share/python1.4/stdwin/stdwinevents.pyc
|
||||
share/python1.4/stdwin/stdwinq.pyc
|
||||
share/python1.4/stdwin/tablewin.pyc
|
||||
share/python1.4/stdwin/textwin.pyc
|
||||
share/python1.4/stdwin/wdb.pyc
|
||||
share/python1.4/stdwin/wdbframewin.pyc
|
||||
share/python1.4/stdwin/wdbsrcwin.pyc
|
||||
share/python1.4/tkinter/Canvas.pyc
|
||||
share/python1.4/tkinter/Canvas.py
|
||||
share/python1.4/tkinter/Dialog.py
|
||||
share/python1.4/tkinter/FileDialog.py
|
||||
share/python1.4/tkinter/ScrolledText.py
|
||||
share/python1.4/tkinter/SimpleDialog.py
|
||||
share/python1.4/tkinter/Tkconstants.py
|
||||
share/python1.4/tkinter/Tkinter.py
|
||||
share/python1.4/tkinter/Dialog.pyc
|
||||
share/python1.4/tkinter/FileDialog.pyc
|
||||
share/python1.4/tkinter/ScrolledText.pyc
|
||||
share/python1.4/tkinter/SimpleDialog.pyc
|
||||
share/python1.4/tkinter/Tkconstants.pyc
|
||||
share/python1.4/tkinter/Tkinter.pyc
|
||||
share/python1.4/test/autotest.pyc
|
||||
share/python1.4/test/autotest.py
|
||||
share/python1.4/test/test.rawimg
|
||||
share/python1.4/test/test.rawimg.rev
|
||||
share/python1.4/test/test.rgb
|
||||
share/python1.4/test/test_audioop.py
|
||||
share/python1.4/test/test_b1.py
|
||||
share/python1.4/test/test_b2.py
|
||||
share/python1.4/test/test_builtin.py
|
||||
share/python1.4/test/test_exceptions.py
|
||||
share/python1.4/test/test_grammar.py
|
||||
share/python1.4/test/test_math.py
|
||||
share/python1.4/test/test_md5.py
|
||||
share/python1.4/test/test_opcodes.py
|
||||
share/python1.4/test/test_operations.py
|
||||
share/python1.4/test/test_pow.py
|
||||
share/python1.4/test/test_rgbimg.py
|
||||
share/python1.4/test/test_select.py
|
||||
share/python1.4/test/test_signal.py
|
||||
share/python1.4/test/test_strop.py
|
||||
share/python1.4/test/test_support.py
|
||||
share/python1.4/test/test_thread.py
|
||||
share/python1.4/test/test_types.py
|
||||
share/python1.4/test/testall.out
|
||||
share/python1.4/test/testall.py
|
||||
share/python1.4/test/test_audioop.pyc
|
||||
share/python1.4/test/test_b1.pyc
|
||||
share/python1.4/test/test_b2.pyc
|
||||
share/python1.4/test/test_builtin.pyc
|
||||
share/python1.4/test/test_exceptions.pyc
|
||||
share/python1.4/test/test_grammar.pyc
|
||||
share/python1.4/test/test_math.pyc
|
||||
share/python1.4/test/test_md5.pyc
|
||||
share/python1.4/test/test_opcodes.pyc
|
||||
share/python1.4/test/test_operations.pyc
|
||||
share/python1.4/test/test_pow.pyc
|
||||
share/python1.4/test/test_rgbimg.pyc
|
||||
share/python1.4/test/test_select.pyc
|
||||
share/python1.4/test/test_signal.pyc
|
||||
share/python1.4/test/test_strop.pyc
|
||||
share/python1.4/test/test_support.pyc
|
||||
share/python1.4/test/testall.pyc
|
||||
share/python1.4/test/test_thread.pyc
|
||||
share/python1.4/test/test_types.pyc
|
||||
share/python1.4/freebsd/FCNTL.pyc
|
||||
share/python1.4/freebsd/FCNTL.py
|
||||
share/python1.4/freebsd/IN.pyc
|
||||
share/python1.4/freebsd/IN.py
|
||||
share/python1.4/freebsd/SOCKET.pyc
|
||||
share/python1.4/freebsd/SOCKET.py
|
||||
share/python1.4/freebsd/TERMIOS.pyc
|
||||
share/python1.4/freebsd/TERMIOS.py
|
||||
share/python1.4/freebsd/regen
|
||||
share/python1.4/urllib.py
|
||||
share/python1.4/AST.py
|
||||
share/python1.4/BaseHTTPServer.py
|
||||
share/python1.4/Bastion.py
|
||||
share/python1.4/CGIHTTPServer.py
|
||||
share/python1.4/Complex.py
|
||||
share/python1.4/MimeWriter.py
|
||||
share/python1.4/Para.py
|
||||
share/python1.4/Queue.py
|
||||
share/python1.4/SimpleHTTPServer.py
|
||||
share/python1.4/SocketServer.py
|
||||
share/python1.4/StringIO.py
|
||||
share/python1.4/UserDict.py
|
||||
share/python1.4/UserList.py
|
||||
share/python1.4/addpack.py
|
||||
share/python1.4/aifc.py
|
||||
share/python1.4/anydbm.py
|
||||
share/python1.4/audiodev.py
|
||||
share/python1.4/base64.py
|
||||
share/python1.4/bdb.py
|
||||
share/python1.4/binhex.py
|
||||
share/python1.4/bisect.py
|
||||
share/python1.4/calendar.py
|
||||
share/python1.4/cgi.py
|
||||
share/python1.4/cmd.py
|
||||
share/python1.4/cmp.py
|
||||
share/python1.4/cmpcache.py
|
||||
share/python1.4/codehack.py
|
||||
share/python1.4/colorsys.py
|
||||
share/python1.4/commands.py
|
||||
share/python1.4/compileall.py
|
||||
share/python1.4/copy.py
|
||||
share/python1.4/dbhash.py
|
||||
share/python1.4/dircache.py
|
||||
share/python1.4/dircmp.py
|
||||
share/python1.4/dis.py
|
||||
share/python1.4/dospath.py
|
||||
share/python1.4/dumbdbm.py
|
||||
share/python1.4/dump.py
|
||||
share/python1.4/emacs.py
|
||||
share/python1.4/find.py
|
||||
share/python1.4/fmt.py
|
||||
share/python1.4/fnmatch.py
|
||||
share/python1.4/formatter.py
|
||||
share/python1.4/fpformat.py
|
||||
share/python1.4/ftplib.py
|
||||
share/python1.4/glob.py
|
||||
share/python1.4/getopt.py
|
||||
share/python1.4/gopherlib.py
|
||||
share/python1.4/grep.py
|
||||
share/python1.4/htmlentitydefs.py
|
||||
share/python1.4/htmllib.py
|
||||
share/python1.4/httplib.py
|
||||
share/python1.4/ihooks.py
|
||||
share/python1.4/imghdr.py
|
||||
share/python1.4/linecache.py
|
||||
share/python1.4/lockfile.py
|
||||
share/python1.4/macpath.py
|
||||
share/python1.4/macurl2path.py
|
||||
share/python1.4/mailbox.py
|
||||
share/python1.4/mailcap.py
|
||||
share/python1.4/mhlib.py
|
||||
share/python1.4/mimetools.py
|
||||
share/python1.4/mimify.py
|
||||
share/python1.4/multifile.py
|
||||
share/python1.4/mutex.py
|
||||
share/python1.4/newdir.py
|
||||
share/python1.4/ni.py
|
||||
share/python1.4/nntplib.py
|
||||
share/python1.4/ntpath.py
|
||||
share/python1.4/nturl2path.py
|
||||
share/python1.4/os.py
|
||||
share/python1.4/ospath.py
|
||||
share/python1.4/packmail.py
|
||||
share/python1.4/pdb.py
|
||||
share/python1.4/pickle.py
|
||||
share/python1.4/pipes.py
|
||||
share/python1.4/poly.py
|
||||
share/python1.4/popen2.py
|
||||
share/python1.4/posixfile.py
|
||||
share/python1.4/posixpath.py
|
||||
share/python1.4/profile.py
|
||||
share/python1.4/pstats.py
|
||||
share/python1.4/pty.py
|
||||
share/python1.4/py_compile.py
|
||||
share/python1.4/pyclbr.py
|
||||
share/python1.4/quopri.py
|
||||
share/python1.4/rand.py
|
||||
share/python1.4/random.py
|
||||
share/python1.4/regex_syntax.py
|
||||
share/python1.4/regexp.py
|
||||
share/python1.4/regsub.py
|
||||
share/python1.4/repr.py
|
||||
share/python1.4/rexec.py
|
||||
share/python1.4/rfc822.py
|
||||
share/python1.4/sched.py
|
||||
share/python1.4/sgmllib.py
|
||||
share/python1.4/shelve.py
|
||||
share/python1.4/shutil.py
|
||||
share/python1.4/site.py
|
||||
share/python1.4/sndhdr.py
|
||||
share/python1.4/stat.py
|
||||
share/python1.4/statcache.py
|
||||
share/python1.4/string.py
|
||||
share/python1.4/sunau.py
|
||||
share/python1.4/sunaudio.py
|
||||
share/python1.4/symbol.py
|
||||
share/python1.4/tb.py
|
||||
share/python1.4/tempfile.py
|
||||
share/python1.4/toaiff.py
|
||||
share/python1.4/token.py
|
||||
share/python1.4/tokenize.py
|
||||
share/python1.4/traceback.py
|
||||
share/python1.4/tty.py
|
||||
share/python1.4/types.py
|
||||
share/python1.4/tzparse.py
|
||||
share/python1.4/os.pyc
|
||||
share/python1.4/urlparse.py
|
||||
share/python1.4/util.py
|
||||
share/python1.4/uu.py
|
||||
share/python1.4/wave.py
|
||||
share/python1.4/whatsound.py
|
||||
share/python1.4/whichdb.py
|
||||
share/python1.4/whrandom.py
|
||||
share/python1.4/xdrlib.py
|
||||
share/python1.4/zmod.py
|
||||
share/python1.4/pdb.doc
|
||||
share/python1.4/profile.doc
|
||||
share/python1.4/posixpath.pyc
|
||||
share/python1.4/stat.pyc
|
||||
share/python1.4/UserDict.pyc
|
||||
share/python1.4/py_compile.pyc
|
||||
share/python1.4/getopt.pyc
|
||||
share/python1.4/string.pyc
|
||||
share/python1.4/AST.pyc
|
||||
share/python1.4/BaseHTTPServer.pyc
|
||||
share/python1.4/Bastion.pyc
|
||||
share/python1.4/CGIHTTPServer.pyc
|
||||
share/python1.4/Complex.pyc
|
||||
share/python1.4/MimeWriter.pyc
|
||||
share/python1.4/Para.pyc
|
||||
share/python1.4/Queue.pyc
|
||||
share/python1.4/SimpleHTTPServer.pyc
|
||||
share/python1.4/SocketServer.pyc
|
||||
share/python1.4/StringIO.pyc
|
||||
share/python1.4/UserList.pyc
|
||||
share/python1.4/addpack.pyc
|
||||
share/python1.4/aifc.pyc
|
||||
share/python1.4/anydbm.pyc
|
||||
share/python1.4/audiodev.pyc
|
||||
share/python1.4/base64.pyc
|
||||
share/python1.4/bdb.pyc
|
||||
share/python1.4/binhex.pyc
|
||||
share/python1.4/bisect.pyc
|
||||
share/python1.4/calendar.pyc
|
||||
share/python1.4/cgi.pyc
|
||||
share/python1.4/cmd.pyc
|
||||
share/python1.4/cmp.pyc
|
||||
share/python1.4/cmpcache.pyc
|
||||
share/python1.4/codehack.pyc
|
||||
share/python1.4/colorsys.pyc
|
||||
share/python1.4/commands.pyc
|
||||
share/python1.4/compileall.pyc
|
||||
share/python1.4/copy.pyc
|
||||
share/python1.4/dbhash.pyc
|
||||
share/python1.4/dircache.pyc
|
||||
share/python1.4/dircmp.pyc
|
||||
share/python1.4/dis.pyc
|
||||
share/python1.4/dospath.pyc
|
||||
share/python1.4/dumbdbm.pyc
|
||||
share/python1.4/dump.pyc
|
||||
share/python1.4/emacs.pyc
|
||||
share/python1.4/find.pyc
|
||||
share/python1.4/fmt.pyc
|
||||
share/python1.4/fnmatch.pyc
|
||||
share/python1.4/formatter.pyc
|
||||
share/python1.4/fpformat.pyc
|
||||
share/python1.4/ftplib.pyc
|
||||
share/python1.4/glob.pyc
|
||||
share/python1.4/gopherlib.pyc
|
||||
share/python1.4/grep.pyc
|
||||
share/python1.4/htmlentitydefs.pyc
|
||||
share/python1.4/htmllib.pyc
|
||||
share/python1.4/httplib.pyc
|
||||
share/python1.4/ihooks.pyc
|
||||
share/python1.4/imghdr.pyc
|
||||
share/python1.4/linecache.pyc
|
||||
share/python1.4/lockfile.pyc
|
||||
share/python1.4/macpath.pyc
|
||||
share/python1.4/macurl2path.pyc
|
||||
share/python1.4/mailbox.pyc
|
||||
share/python1.4/mailcap.pyc
|
||||
share/python1.4/mhlib.pyc
|
||||
share/python1.4/mimetools.pyc
|
||||
share/python1.4/mimify.pyc
|
||||
share/python1.4/multifile.pyc
|
||||
share/python1.4/mutex.pyc
|
||||
share/python1.4/newdir.pyc
|
||||
share/python1.4/ni.pyc
|
||||
share/python1.4/nntplib.pyc
|
||||
share/python1.4/ntpath.pyc
|
||||
share/python1.4/nturl2path.pyc
|
||||
share/python1.4/ospath.pyc
|
||||
share/python1.4/packmail.pyc
|
||||
share/python1.4/pdb.pyc
|
||||
share/python1.4/pickle.pyc
|
||||
share/python1.4/pipes.pyc
|
||||
share/python1.4/poly.pyc
|
||||
share/python1.4/popen2.pyc
|
||||
share/python1.4/posixfile.pyc
|
||||
share/python1.4/profile.pyc
|
||||
share/python1.4/pstats.pyc
|
||||
share/python1.4/pty.pyc
|
||||
share/python1.4/pyclbr.pyc
|
||||
share/python1.4/quopri.pyc
|
||||
share/python1.4/rand.pyc
|
||||
share/python1.4/random.pyc
|
||||
share/python1.4/regex_syntax.pyc
|
||||
share/python1.4/regexp.pyc
|
||||
share/python1.4/regsub.pyc
|
||||
share/python1.4/repr.pyc
|
||||
share/python1.4/rexec.pyc
|
||||
share/python1.4/rfc822.pyc
|
||||
share/python1.4/sched.pyc
|
||||
share/python1.4/sgmllib.pyc
|
||||
share/python1.4/shelve.pyc
|
||||
share/python1.4/shutil.pyc
|
||||
share/python1.4/site.pyc
|
||||
share/python1.4/sndhdr.pyc
|
||||
share/python1.4/statcache.pyc
|
||||
share/python1.4/sunau.pyc
|
||||
share/python1.4/sunaudio.pyc
|
||||
share/python1.4/symbol.pyc
|
||||
share/python1.4/tb.pyc
|
||||
share/python1.4/tempfile.pyc
|
||||
share/python1.4/toaiff.pyc
|
||||
share/python1.4/token.pyc
|
||||
share/python1.4/tokenize.pyc
|
||||
share/python1.4/traceback.pyc
|
||||
share/python1.4/tty.pyc
|
||||
share/python1.4/types.pyc
|
||||
share/python1.4/tzparse.pyc
|
||||
share/python1.4/urllib.pyc
|
||||
share/python1.4/urlparse.pyc
|
||||
share/python1.4/uu.pyc
|
||||
share/python1.4/util.pyc
|
||||
share/python1.4/wave.pyc
|
||||
share/python1.4/whatsound.pyc
|
||||
share/python1.4/whichdb.pyc
|
||||
share/python1.4/whrandom.pyc
|
||||
share/python1.4/xdrlib.pyc
|
||||
share/python1.4/zmod.pyc
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# Date created: 08 August 1995
|
||||
# Whom: jkh
|
||||
#
|
||||
# $Id: Makefile,v 1.12 1997/02/21 14:57:01 tg Exp $
|
||||
# $Id: Makefile,v 1.13 1997/04/20 13:19:11 wosch Exp $
|
||||
#
|
||||
|
||||
DISTNAME= python1.4
|
||||
|
@ -13,12 +13,10 @@ MASTER_SITES= ftp://www.python.org/pub/python/src/ \
|
|||
ftp://ftp.cwi.nl/pub/python/src/ \
|
||||
ftp://www.python.org/pub/python/contrib/Graphics/Tkinter/ \
|
||||
ftp://ftp.cwi.nl/pub/python/contrib/Graphics/Tkinter/
|
||||
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} PyTix-1.12.tar.gz
|
||||
|
||||
MAINTAINER= tg@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= tk41\\.1\\.:${PORTSDIR}/x11/tk41 \
|
||||
tix4175\\.1\\.:${PORTSDIR}/x11/tix
|
||||
LIB_DEPENDS= tk41\\.1\\.:${PORTSDIR}/x11/tk41
|
||||
|
||||
WRKSRC= ${WRKDIR}/Python-1.4
|
||||
HAS_CONFIGURE= yes
|
||||
|
@ -27,14 +25,6 @@ MAKE_FLAGS+= 'OPT=${CFLAGS}'
|
|||
INSTALL_TARGET= install
|
||||
MAN1= python.1
|
||||
|
||||
PYTIXSRC= ${WRKDIR}/PyTix-1.12
|
||||
|
||||
post-extract:
|
||||
@${ECHO_MSG} "===> Add PyTix extensions to Python core"
|
||||
${CP} ${PYTIXSRC}/Tkinter.py ${WRKSRC}/Lib/tkinter
|
||||
${CP} ${PYTIXSRC}/Tix.py ${WRKSRC}/Lib/tkinter
|
||||
${CP} ${PYTIXSRC}/_tkinter.c ${WRKSRC}/Modules
|
||||
|
||||
post-configure:
|
||||
${CP} ${FILESDIR}/Setup ${WRKSRC}/Modules
|
||||
|
||||
|
|
|
@ -71,7 +71,7 @@ SITEPATH=:$(DESTLIB)/NumPy
|
|||
TESTPATH=:$(DESTLIB)/test
|
||||
|
||||
# Path for machine- or system-dependent modules (and shared libraries)
|
||||
MACHDEPPATH=:$(DESTLIB)/$(MACHDEP)
|
||||
MACHDEPPATH=:$(DESTLIB)/$(MACHDEP):$(MACHDESTLIB)/sharedmodules
|
||||
|
||||
COREPYTHONPATH=.$(SITEPATH)$(DESTPATH)$(TESTPATH)$(MACHDEPPATH)$(STDWINPATH)$(TKPATH)
|
||||
PYTHONPATH=$(COREPYTHONPATH)
|
||||
|
@ -128,6 +128,7 @@ select selectmodule.c # select(2); not on ancient System V
|
|||
socket socketmodule.c # socket(2); not on ancient System V
|
||||
errno errnomodule.c # posix (UNIX) errno values
|
||||
|
||||
*shared*
|
||||
|
||||
# Some more UNIX dependent modules -- off by default, since these
|
||||
# are not supported by all UNIX systems:
|
||||
|
@ -249,7 +250,7 @@ TKPATH=:$(DESTLIB)/tkinter
|
|||
#_tkinter _tkinter.c -I/usr/openwin/include -I/usr/local/include -L/usr/openwin/lib -L/usr/local/lib -ltk4.1 -ltcl7.5 -lX11
|
||||
# For generic system (may have to add -I/-L options to find X11):
|
||||
#_tkinter _tkinter.c -I/usr/local/include -L/usr/local/lib -ltk4.1 -ltcl7.5 -lX11
|
||||
_tkinter _tkinter.c -I/usr/local/include -I/usr/X11R6/include -L/usr/local/lib -L/usr/X11R6/lib -ltix4175 -ltk41 -ltcl75 -lX11
|
||||
_tkinter _tkinter.c -I/usr/local/include -I/usr/X11R6/include -L/usr/local/lib -L/usr/X11R6/lib -ltk41 -ltcl75 -lX11
|
||||
|
||||
|
||||
# Lance Ellinghaus's modules:
|
||||
|
|
|
@ -1,11 +1,7 @@
|
|||
--- Makefile.in.orig Fri Oct 25 16:37:32 1996
|
||||
+++ Makefile.in Thu Feb 6 12:02:11 1997
|
||||
@@ -95,10 +95,10 @@
|
||||
|
||||
# Expanded directories
|
||||
BINDIR= $(exec_prefix)/bin
|
||||
-LIBDIR= $(exec_prefix)/lib
|
||||
+LIBDIR= $(exec_prefix)/share
|
||||
+++ Makefile.in Mon May 12 21:04:38 1997
|
||||
@@ -98,7 +98,7 @@
|
||||
LIBDIR= $(exec_prefix)/lib
|
||||
MANDIR= $(prefix)/man
|
||||
INCLUDEDIR= $(prefix)/include
|
||||
-SCRIPTDIR= $(prefix)/lib
|
||||
|
|
|
@ -1,403 +1,5 @@
|
|||
bin/python1.4
|
||||
bin/python
|
||||
@exec mkdir -p %D/share/python1.4/sharedmodules
|
||||
@unexec rmdir %D/share/python1.4/sharedmodules
|
||||
share/python1.4/AST.py
|
||||
share/python1.4/AST.pyc
|
||||
share/python1.4/BaseHTTPServer.py
|
||||
share/python1.4/BaseHTTPServer.pyc
|
||||
share/python1.4/Bastion.py
|
||||
share/python1.4/Bastion.pyc
|
||||
share/python1.4/CGIHTTPServer.py
|
||||
share/python1.4/CGIHTTPServer.pyc
|
||||
share/python1.4/Complex.py
|
||||
share/python1.4/Complex.pyc
|
||||
share/python1.4/MimeWriter.py
|
||||
share/python1.4/MimeWriter.pyc
|
||||
share/python1.4/Para.py
|
||||
share/python1.4/Para.pyc
|
||||
share/python1.4/Queue.py
|
||||
share/python1.4/Queue.pyc
|
||||
share/python1.4/SimpleHTTPServer.py
|
||||
share/python1.4/SimpleHTTPServer.pyc
|
||||
share/python1.4/SocketServer.py
|
||||
share/python1.4/SocketServer.pyc
|
||||
share/python1.4/StringIO.py
|
||||
share/python1.4/StringIO.pyc
|
||||
share/python1.4/UserDict.py
|
||||
share/python1.4/UserDict.pyc
|
||||
share/python1.4/UserList.py
|
||||
share/python1.4/UserList.pyc
|
||||
share/python1.4/addpack.py
|
||||
share/python1.4/addpack.pyc
|
||||
share/python1.4/aifc.py
|
||||
share/python1.4/aifc.pyc
|
||||
share/python1.4/anydbm.py
|
||||
share/python1.4/anydbm.pyc
|
||||
share/python1.4/audiodev.py
|
||||
share/python1.4/audiodev.pyc
|
||||
share/python1.4/base64.py
|
||||
share/python1.4/base64.pyc
|
||||
share/python1.4/bdb.py
|
||||
share/python1.4/bdb.pyc
|
||||
share/python1.4/binhex.py
|
||||
share/python1.4/binhex.pyc
|
||||
share/python1.4/bisect.py
|
||||
share/python1.4/bisect.pyc
|
||||
share/python1.4/calendar.py
|
||||
share/python1.4/calendar.pyc
|
||||
share/python1.4/cgi.py
|
||||
share/python1.4/cgi.pyc
|
||||
share/python1.4/cmd.py
|
||||
share/python1.4/cmd.pyc
|
||||
share/python1.4/cmp.py
|
||||
share/python1.4/cmp.pyc
|
||||
share/python1.4/cmpcache.py
|
||||
share/python1.4/cmpcache.pyc
|
||||
share/python1.4/codehack.py
|
||||
share/python1.4/codehack.pyc
|
||||
share/python1.4/colorsys.py
|
||||
share/python1.4/colorsys.pyc
|
||||
share/python1.4/commands.py
|
||||
share/python1.4/commands.pyc
|
||||
share/python1.4/compileall.py
|
||||
share/python1.4/compileall.pyc
|
||||
share/python1.4/copy.py
|
||||
share/python1.4/copy.pyc
|
||||
share/python1.4/dbhash.py
|
||||
share/python1.4/dbhash.pyc
|
||||
share/python1.4/dircache.py
|
||||
share/python1.4/dircache.pyc
|
||||
share/python1.4/dircmp.py
|
||||
share/python1.4/dircmp.pyc
|
||||
share/python1.4/dis.py
|
||||
share/python1.4/dis.pyc
|
||||
share/python1.4/dospath.py
|
||||
share/python1.4/dospath.pyc
|
||||
share/python1.4/dumbdbm.py
|
||||
share/python1.4/dumbdbm.pyc
|
||||
share/python1.4/dump.py
|
||||
share/python1.4/dump.pyc
|
||||
share/python1.4/emacs.py
|
||||
share/python1.4/emacs.pyc
|
||||
share/python1.4/find.py
|
||||
share/python1.4/find.pyc
|
||||
share/python1.4/fmt.py
|
||||
share/python1.4/fmt.pyc
|
||||
share/python1.4/fnmatch.py
|
||||
share/python1.4/fnmatch.pyc
|
||||
share/python1.4/formatter.py
|
||||
share/python1.4/formatter.pyc
|
||||
share/python1.4/fpformat.py
|
||||
share/python1.4/fpformat.pyc
|
||||
share/python1.4/ftplib.py
|
||||
share/python1.4/ftplib.pyc
|
||||
share/python1.4/getopt.py
|
||||
share/python1.4/getopt.pyc
|
||||
share/python1.4/glob.py
|
||||
share/python1.4/glob.pyc
|
||||
share/python1.4/gopherlib.py
|
||||
share/python1.4/gopherlib.pyc
|
||||
share/python1.4/grep.py
|
||||
share/python1.4/grep.pyc
|
||||
share/python1.4/htmlentitydefs.py
|
||||
share/python1.4/htmlentitydefs.pyc
|
||||
share/python1.4/htmllib.py
|
||||
share/python1.4/htmllib.pyc
|
||||
share/python1.4/httplib.py
|
||||
share/python1.4/httplib.pyc
|
||||
share/python1.4/ihooks.py
|
||||
share/python1.4/ihooks.pyc
|
||||
share/python1.4/imghdr.py
|
||||
share/python1.4/imghdr.pyc
|
||||
share/python1.4/linecache.py
|
||||
share/python1.4/linecache.pyc
|
||||
share/python1.4/lockfile.py
|
||||
share/python1.4/lockfile.pyc
|
||||
share/python1.4/macpath.py
|
||||
share/python1.4/macpath.pyc
|
||||
share/python1.4/macurl2path.py
|
||||
share/python1.4/macurl2path.pyc
|
||||
share/python1.4/mailbox.py
|
||||
share/python1.4/mailbox.pyc
|
||||
share/python1.4/mailcap.py
|
||||
share/python1.4/mailcap.pyc
|
||||
share/python1.4/mhlib.py
|
||||
share/python1.4/mhlib.pyc
|
||||
share/python1.4/mimetools.py
|
||||
share/python1.4/mimetools.pyc
|
||||
share/python1.4/mimify.py
|
||||
share/python1.4/mimify.pyc
|
||||
share/python1.4/multifile.py
|
||||
share/python1.4/multifile.pyc
|
||||
share/python1.4/mutex.py
|
||||
share/python1.4/mutex.pyc
|
||||
share/python1.4/newdir.py
|
||||
share/python1.4/newdir.pyc
|
||||
share/python1.4/ni.py
|
||||
share/python1.4/ni.pyc
|
||||
share/python1.4/nntplib.py
|
||||
share/python1.4/nntplib.pyc
|
||||
share/python1.4/ntpath.py
|
||||
share/python1.4/ntpath.pyc
|
||||
share/python1.4/nturl2path.py
|
||||
share/python1.4/nturl2path.pyc
|
||||
share/python1.4/os.py
|
||||
share/python1.4/os.pyc
|
||||
share/python1.4/ospath.py
|
||||
share/python1.4/ospath.pyc
|
||||
share/python1.4/packmail.py
|
||||
share/python1.4/packmail.pyc
|
||||
share/python1.4/pdb.doc
|
||||
share/python1.4/pdb.py
|
||||
share/python1.4/pdb.pyc
|
||||
share/python1.4/pickle.py
|
||||
share/python1.4/pickle.pyc
|
||||
share/python1.4/pipes.py
|
||||
share/python1.4/pipes.pyc
|
||||
share/python1.4/poly.py
|
||||
share/python1.4/poly.pyc
|
||||
share/python1.4/popen2.py
|
||||
share/python1.4/popen2.pyc
|
||||
share/python1.4/posixfile.py
|
||||
share/python1.4/posixfile.pyc
|
||||
share/python1.4/posixpath.py
|
||||
share/python1.4/posixpath.pyc
|
||||
share/python1.4/profile.doc
|
||||
share/python1.4/profile.py
|
||||
share/python1.4/profile.pyc
|
||||
share/python1.4/pstats.py
|
||||
share/python1.4/pstats.pyc
|
||||
share/python1.4/pty.py
|
||||
share/python1.4/pty.pyc
|
||||
share/python1.4/py_compile.py
|
||||
share/python1.4/py_compile.pyc
|
||||
share/python1.4/pyclbr.py
|
||||
share/python1.4/pyclbr.pyc
|
||||
share/python1.4/quopri.py
|
||||
share/python1.4/quopri.pyc
|
||||
share/python1.4/rand.py
|
||||
share/python1.4/rand.pyc
|
||||
share/python1.4/random.py
|
||||
share/python1.4/random.pyc
|
||||
share/python1.4/regex_syntax.py
|
||||
share/python1.4/regex_syntax.pyc
|
||||
share/python1.4/regexp.py
|
||||
share/python1.4/regexp.pyc
|
||||
share/python1.4/regsub.py
|
||||
share/python1.4/regsub.pyc
|
||||
share/python1.4/repr.py
|
||||
share/python1.4/repr.pyc
|
||||
share/python1.4/rexec.py
|
||||
share/python1.4/rexec.pyc
|
||||
share/python1.4/rfc822.py
|
||||
share/python1.4/rfc822.pyc
|
||||
share/python1.4/sched.py
|
||||
share/python1.4/sched.pyc
|
||||
share/python1.4/sgmllib.py
|
||||
share/python1.4/sgmllib.pyc
|
||||
share/python1.4/shelve.py
|
||||
share/python1.4/shelve.pyc
|
||||
share/python1.4/shutil.py
|
||||
share/python1.4/shutil.pyc
|
||||
share/python1.4/site.py
|
||||
share/python1.4/site.pyc
|
||||
share/python1.4/sndhdr.py
|
||||
share/python1.4/sndhdr.pyc
|
||||
share/python1.4/stat.py
|
||||
share/python1.4/stat.pyc
|
||||
share/python1.4/statcache.py
|
||||
share/python1.4/statcache.pyc
|
||||
share/python1.4/string.py
|
||||
share/python1.4/string.pyc
|
||||
share/python1.4/sunau.py
|
||||
share/python1.4/sunau.pyc
|
||||
share/python1.4/sunaudio.py
|
||||
share/python1.4/sunaudio.pyc
|
||||
share/python1.4/symbol.py
|
||||
share/python1.4/symbol.pyc
|
||||
share/python1.4/tb.py
|
||||
share/python1.4/tb.pyc
|
||||
share/python1.4/tempfile.py
|
||||
share/python1.4/tempfile.pyc
|
||||
share/python1.4/toaiff.py
|
||||
share/python1.4/toaiff.pyc
|
||||
share/python1.4/token.py
|
||||
share/python1.4/token.pyc
|
||||
share/python1.4/tokenize.py
|
||||
share/python1.4/tokenize.pyc
|
||||
share/python1.4/traceback.py
|
||||
share/python1.4/traceback.pyc
|
||||
share/python1.4/tty.py
|
||||
share/python1.4/tty.pyc
|
||||
share/python1.4/types.py
|
||||
share/python1.4/types.pyc
|
||||
share/python1.4/tzparse.py
|
||||
share/python1.4/tzparse.pyc
|
||||
share/python1.4/urllib.py
|
||||
share/python1.4/urllib.pyc
|
||||
share/python1.4/urlparse.py
|
||||
share/python1.4/urlparse.pyc
|
||||
share/python1.4/util.py
|
||||
share/python1.4/util.pyc
|
||||
share/python1.4/uu.py
|
||||
share/python1.4/uu.pyc
|
||||
share/python1.4/wave.py
|
||||
share/python1.4/wave.pyc
|
||||
share/python1.4/whatsound.py
|
||||
share/python1.4/whatsound.pyc
|
||||
share/python1.4/whichdb.py
|
||||
share/python1.4/whichdb.pyc
|
||||
share/python1.4/whrandom.py
|
||||
share/python1.4/whrandom.pyc
|
||||
share/python1.4/xdrlib.py
|
||||
share/python1.4/xdrlib.pyc
|
||||
share/python1.4/zmod.py
|
||||
share/python1.4/zmod.pyc
|
||||
share/python1.4/config/Makefile
|
||||
share/python1.4/config/Setup
|
||||
share/python1.4/config/config.c
|
||||
share/python1.4/config/config.c.in
|
||||
share/python1.4/config/config.h
|
||||
share/python1.4/config/frozenmain.c
|
||||
share/python1.4/config/getpath.c
|
||||
share/python1.4/config/libModules.a
|
||||
share/python1.4/config/libObjects.a
|
||||
share/python1.4/config/libParser.a
|
||||
share/python1.4/config/libPython.a
|
||||
share/python1.4/config/main.o
|
||||
share/python1.4/config/makesetup
|
||||
share/python1.4/freebsd2/FCNTL.py
|
||||
share/python1.4/freebsd2/FCNTL.pyc
|
||||
share/python1.4/freebsd2/regen
|
||||
share/python1.4/stdwin/Abstract.py
|
||||
share/python1.4/stdwin/Abstract.pyc
|
||||
share/python1.4/stdwin/BoxParent.py
|
||||
share/python1.4/stdwin/BoxParent.pyc
|
||||
share/python1.4/stdwin/Buttons.py
|
||||
share/python1.4/stdwin/Buttons.pyc
|
||||
share/python1.4/stdwin/CSplit.py
|
||||
share/python1.4/stdwin/CSplit.pyc
|
||||
share/python1.4/stdwin/DirList.py
|
||||
share/python1.4/stdwin/DirList.pyc
|
||||
share/python1.4/stdwin/FormSplit.py
|
||||
share/python1.4/stdwin/FormSplit.pyc
|
||||
share/python1.4/stdwin/HVSplit.py
|
||||
share/python1.4/stdwin/HVSplit.pyc
|
||||
share/python1.4/stdwin/Histogram.py
|
||||
share/python1.4/stdwin/Histogram.pyc
|
||||
share/python1.4/stdwin/Sliders.py
|
||||
share/python1.4/stdwin/Sliders.pyc
|
||||
share/python1.4/stdwin/Soundogram.py
|
||||
share/python1.4/stdwin/Soundogram.pyc
|
||||
share/python1.4/stdwin/Split.py
|
||||
share/python1.4/stdwin/Split.pyc
|
||||
share/python1.4/stdwin/StripChart.py
|
||||
share/python1.4/stdwin/StripChart.pyc
|
||||
share/python1.4/stdwin/TextEdit.py
|
||||
share/python1.4/stdwin/TextEdit.pyc
|
||||
share/python1.4/stdwin/TransParent.py
|
||||
share/python1.4/stdwin/TransParent.pyc
|
||||
share/python1.4/stdwin/VUMeter.py
|
||||
share/python1.4/stdwin/VUMeter.pyc
|
||||
share/python1.4/stdwin/WindowParent.py
|
||||
share/python1.4/stdwin/WindowParent.pyc
|
||||
share/python1.4/stdwin/WindowSched.py
|
||||
share/python1.4/stdwin/WindowSched.pyc
|
||||
share/python1.4/stdwin/anywin.py
|
||||
share/python1.4/stdwin/anywin.pyc
|
||||
share/python1.4/stdwin/basewin.py
|
||||
share/python1.4/stdwin/basewin.pyc
|
||||
share/python1.4/stdwin/dirwin.py
|
||||
share/python1.4/stdwin/dirwin.pyc
|
||||
share/python1.4/stdwin/filewin.py
|
||||
share/python1.4/stdwin/filewin.pyc
|
||||
share/python1.4/stdwin/formatter.py
|
||||
share/python1.4/stdwin/formatter.pyc
|
||||
share/python1.4/stdwin/gwin.py
|
||||
share/python1.4/stdwin/gwin.pyc
|
||||
share/python1.4/stdwin/listwin.py
|
||||
share/python1.4/stdwin/listwin.pyc
|
||||
share/python1.4/stdwin/mainloop.py
|
||||
share/python1.4/stdwin/mainloop.pyc
|
||||
share/python1.4/stdwin/rect.py
|
||||
share/python1.4/stdwin/rect.pyc
|
||||
share/python1.4/stdwin/srcwin.py
|
||||
share/python1.4/stdwin/srcwin.pyc
|
||||
share/python1.4/stdwin/stdwinevents.py
|
||||
share/python1.4/stdwin/stdwinevents.pyc
|
||||
share/python1.4/stdwin/stdwinq.py
|
||||
share/python1.4/stdwin/stdwinq.pyc
|
||||
share/python1.4/stdwin/tablewin.py
|
||||
share/python1.4/stdwin/tablewin.pyc
|
||||
share/python1.4/stdwin/textwin.py
|
||||
share/python1.4/stdwin/textwin.pyc
|
||||
share/python1.4/stdwin/wdb.py
|
||||
share/python1.4/stdwin/wdb.pyc
|
||||
share/python1.4/stdwin/wdbframewin.py
|
||||
share/python1.4/stdwin/wdbframewin.pyc
|
||||
share/python1.4/stdwin/wdbsrcwin.py
|
||||
share/python1.4/stdwin/wdbsrcwin.pyc
|
||||
share/python1.4/test/autotest.py
|
||||
share/python1.4/test/autotest.pyc
|
||||
share/python1.4/test/test.rawimg
|
||||
share/python1.4/test/test.rawimg.rev
|
||||
share/python1.4/test/test.rgb
|
||||
share/python1.4/test/test_audioop.py
|
||||
share/python1.4/test/test_audioop.pyc
|
||||
share/python1.4/test/test_b1.py
|
||||
share/python1.4/test/test_b1.pyc
|
||||
share/python1.4/test/test_b2.py
|
||||
share/python1.4/test/test_b2.pyc
|
||||
share/python1.4/test/test_builtin.py
|
||||
share/python1.4/test/test_builtin.pyc
|
||||
share/python1.4/test/test_exceptions.py
|
||||
share/python1.4/test/test_exceptions.pyc
|
||||
share/python1.4/test/test_grammar.py
|
||||
share/python1.4/test/test_grammar.pyc
|
||||
share/python1.4/test/test_math.py
|
||||
share/python1.4/test/test_math.pyc
|
||||
share/python1.4/test/test_md5.py
|
||||
share/python1.4/test/test_md5.pyc
|
||||
share/python1.4/test/test_opcodes.py
|
||||
share/python1.4/test/test_opcodes.pyc
|
||||
share/python1.4/test/test_operations.py
|
||||
share/python1.4/test/test_operations.pyc
|
||||
share/python1.4/test/test_pow.py
|
||||
share/python1.4/test/test_pow.pyc
|
||||
share/python1.4/test/test_rgbimg.py
|
||||
share/python1.4/test/test_rgbimg.pyc
|
||||
share/python1.4/test/test_select.py
|
||||
share/python1.4/test/test_select.pyc
|
||||
share/python1.4/test/test_signal.py
|
||||
share/python1.4/test/test_signal.pyc
|
||||
share/python1.4/test/test_strop.py
|
||||
share/python1.4/test/test_strop.pyc
|
||||
share/python1.4/test/test_support.py
|
||||
share/python1.4/test/test_support.pyc
|
||||
share/python1.4/test/test_thread.py
|
||||
share/python1.4/test/test_thread.pyc
|
||||
share/python1.4/test/test_types.py
|
||||
share/python1.4/test/test_types.pyc
|
||||
share/python1.4/test/testall.out
|
||||
share/python1.4/test/testall.py
|
||||
share/python1.4/test/testall.pyc
|
||||
share/python1.4/tkinter/Canvas.py
|
||||
share/python1.4/tkinter/Canvas.pyc
|
||||
share/python1.4/tkinter/Dialog.py
|
||||
share/python1.4/tkinter/Dialog.pyc
|
||||
share/python1.4/tkinter/FileDialog.py
|
||||
share/python1.4/tkinter/FileDialog.pyc
|
||||
share/python1.4/tkinter/ScrolledText.py
|
||||
share/python1.4/tkinter/ScrolledText.pyc
|
||||
share/python1.4/tkinter/SimpleDialog.py
|
||||
share/python1.4/tkinter/SimpleDialog.pyc
|
||||
share/python1.4/tkinter/Tix.py
|
||||
share/python1.4/tkinter/Tix.pyc
|
||||
share/python1.4/tkinter/Tkconstants.py
|
||||
share/python1.4/tkinter/Tkconstants.pyc
|
||||
share/python1.4/tkinter/Tkinter.py
|
||||
share/python1.4/tkinter/Tkinter.pyc
|
||||
include/python1.4/Python.h
|
||||
include/python1.4/abstract.h
|
||||
include/python1.4/accessobject.h
|
||||
|
@ -459,4 +61,417 @@ include/python1.4/thread.h
|
|||
include/python1.4/token.h
|
||||
include/python1.4/traceback.h
|
||||
include/python1.4/tupleobject.h
|
||||
lib/python1.4/config/libParser.a
|
||||
lib/python1.4/config/libObjects.a
|
||||
lib/python1.4/config/libPython.a
|
||||
lib/python1.4/config/libModules.a
|
||||
lib/python1.4/config/config.c
|
||||
lib/python1.4/config/getpath.c
|
||||
lib/python1.4/config/config.c.in
|
||||
lib/python1.4/config/Makefile
|
||||
lib/python1.4/config/Setup
|
||||
lib/python1.4/config/makesetup
|
||||
lib/python1.4/config/config.h
|
||||
lib/python1.4/config/frozenmain.c
|
||||
lib/python1.4/config/main.o
|
||||
lib/python1.4/sharedmodules/dbmmodule.so
|
||||
lib/python1.4/sharedmodules/nismodule.so
|
||||
lib/python1.4/sharedmodules/termios.so
|
||||
lib/python1.4/sharedmodules/audioop.so
|
||||
lib/python1.4/sharedmodules/imageop.so
|
||||
lib/python1.4/sharedmodules/rgbimgmodule.so
|
||||
lib/python1.4/sharedmodules/md5module.so
|
||||
lib/python1.4/sharedmodules/_tkinter.so
|
||||
lib/python1.4/sharedmodules/rotormodule.so
|
||||
lib/python1.4/sharedmodules/syslogmodule.so
|
||||
lib/python1.4/sharedmodules/cursesmodule.so
|
||||
lib/python1.4/sharedmodules/bsddbmodule.so
|
||||
lib/python1.4/sharedmodules/binascii.so
|
||||
man/man1/python.1.gz
|
||||
share/python1.4/stdwin/Abstract.pyc
|
||||
share/python1.4/stdwin/Abstract.py
|
||||
share/python1.4/stdwin/BoxParent.py
|
||||
share/python1.4/stdwin/Buttons.py
|
||||
share/python1.4/stdwin/CSplit.py
|
||||
share/python1.4/stdwin/DirList.py
|
||||
share/python1.4/stdwin/FormSplit.py
|
||||
share/python1.4/stdwin/HVSplit.py
|
||||
share/python1.4/stdwin/Histogram.py
|
||||
share/python1.4/stdwin/Sliders.py
|
||||
share/python1.4/stdwin/Soundogram.py
|
||||
share/python1.4/stdwin/Split.py
|
||||
share/python1.4/stdwin/StripChart.py
|
||||
share/python1.4/stdwin/TextEdit.py
|
||||
share/python1.4/stdwin/TransParent.py
|
||||
share/python1.4/stdwin/VUMeter.py
|
||||
share/python1.4/stdwin/WindowParent.py
|
||||
share/python1.4/stdwin/WindowSched.py
|
||||
share/python1.4/stdwin/anywin.py
|
||||
share/python1.4/stdwin/basewin.py
|
||||
share/python1.4/stdwin/dirwin.py
|
||||
share/python1.4/stdwin/filewin.py
|
||||
share/python1.4/stdwin/formatter.py
|
||||
share/python1.4/stdwin/gwin.py
|
||||
share/python1.4/stdwin/listwin.py
|
||||
share/python1.4/stdwin/mainloop.py
|
||||
share/python1.4/stdwin/rect.py
|
||||
share/python1.4/stdwin/srcwin.py
|
||||
share/python1.4/stdwin/stdwinevents.py
|
||||
share/python1.4/stdwin/stdwinq.py
|
||||
share/python1.4/stdwin/tablewin.py
|
||||
share/python1.4/stdwin/textwin.py
|
||||
share/python1.4/stdwin/wdb.py
|
||||
share/python1.4/stdwin/wdbframewin.py
|
||||
share/python1.4/stdwin/wdbsrcwin.py
|
||||
share/python1.4/stdwin/BoxParent.pyc
|
||||
share/python1.4/stdwin/Buttons.pyc
|
||||
share/python1.4/stdwin/CSplit.pyc
|
||||
share/python1.4/stdwin/DirList.pyc
|
||||
share/python1.4/stdwin/FormSplit.pyc
|
||||
share/python1.4/stdwin/HVSplit.pyc
|
||||
share/python1.4/stdwin/Histogram.pyc
|
||||
share/python1.4/stdwin/Sliders.pyc
|
||||
share/python1.4/stdwin/Soundogram.pyc
|
||||
share/python1.4/stdwin/Split.pyc
|
||||
share/python1.4/stdwin/StripChart.pyc
|
||||
share/python1.4/stdwin/TextEdit.pyc
|
||||
share/python1.4/stdwin/TransParent.pyc
|
||||
share/python1.4/stdwin/VUMeter.pyc
|
||||
share/python1.4/stdwin/WindowParent.pyc
|
||||
share/python1.4/stdwin/WindowSched.pyc
|
||||
share/python1.4/stdwin/anywin.pyc
|
||||
share/python1.4/stdwin/basewin.pyc
|
||||
share/python1.4/stdwin/dirwin.pyc
|
||||
share/python1.4/stdwin/filewin.pyc
|
||||
share/python1.4/stdwin/formatter.pyc
|
||||
share/python1.4/stdwin/gwin.pyc
|
||||
share/python1.4/stdwin/listwin.pyc
|
||||
share/python1.4/stdwin/mainloop.pyc
|
||||
share/python1.4/stdwin/rect.pyc
|
||||
share/python1.4/stdwin/srcwin.pyc
|
||||
share/python1.4/stdwin/stdwinevents.pyc
|
||||
share/python1.4/stdwin/stdwinq.pyc
|
||||
share/python1.4/stdwin/tablewin.pyc
|
||||
share/python1.4/stdwin/textwin.pyc
|
||||
share/python1.4/stdwin/wdb.pyc
|
||||
share/python1.4/stdwin/wdbframewin.pyc
|
||||
share/python1.4/stdwin/wdbsrcwin.pyc
|
||||
share/python1.4/tkinter/Canvas.pyc
|
||||
share/python1.4/tkinter/Canvas.py
|
||||
share/python1.4/tkinter/Dialog.py
|
||||
share/python1.4/tkinter/FileDialog.py
|
||||
share/python1.4/tkinter/ScrolledText.py
|
||||
share/python1.4/tkinter/SimpleDialog.py
|
||||
share/python1.4/tkinter/Tkconstants.py
|
||||
share/python1.4/tkinter/Tkinter.py
|
||||
share/python1.4/tkinter/Dialog.pyc
|
||||
share/python1.4/tkinter/FileDialog.pyc
|
||||
share/python1.4/tkinter/ScrolledText.pyc
|
||||
share/python1.4/tkinter/SimpleDialog.pyc
|
||||
share/python1.4/tkinter/Tkconstants.pyc
|
||||
share/python1.4/tkinter/Tkinter.pyc
|
||||
share/python1.4/test/autotest.pyc
|
||||
share/python1.4/test/autotest.py
|
||||
share/python1.4/test/test.rawimg
|
||||
share/python1.4/test/test.rawimg.rev
|
||||
share/python1.4/test/test.rgb
|
||||
share/python1.4/test/test_audioop.py
|
||||
share/python1.4/test/test_b1.py
|
||||
share/python1.4/test/test_b2.py
|
||||
share/python1.4/test/test_builtin.py
|
||||
share/python1.4/test/test_exceptions.py
|
||||
share/python1.4/test/test_grammar.py
|
||||
share/python1.4/test/test_math.py
|
||||
share/python1.4/test/test_md5.py
|
||||
share/python1.4/test/test_opcodes.py
|
||||
share/python1.4/test/test_operations.py
|
||||
share/python1.4/test/test_pow.py
|
||||
share/python1.4/test/test_rgbimg.py
|
||||
share/python1.4/test/test_select.py
|
||||
share/python1.4/test/test_signal.py
|
||||
share/python1.4/test/test_strop.py
|
||||
share/python1.4/test/test_support.py
|
||||
share/python1.4/test/test_thread.py
|
||||
share/python1.4/test/test_types.py
|
||||
share/python1.4/test/testall.out
|
||||
share/python1.4/test/testall.py
|
||||
share/python1.4/test/test_audioop.pyc
|
||||
share/python1.4/test/test_b1.pyc
|
||||
share/python1.4/test/test_b2.pyc
|
||||
share/python1.4/test/test_builtin.pyc
|
||||
share/python1.4/test/test_exceptions.pyc
|
||||
share/python1.4/test/test_grammar.pyc
|
||||
share/python1.4/test/test_math.pyc
|
||||
share/python1.4/test/test_md5.pyc
|
||||
share/python1.4/test/test_opcodes.pyc
|
||||
share/python1.4/test/test_operations.pyc
|
||||
share/python1.4/test/test_pow.pyc
|
||||
share/python1.4/test/test_rgbimg.pyc
|
||||
share/python1.4/test/test_select.pyc
|
||||
share/python1.4/test/test_signal.pyc
|
||||
share/python1.4/test/test_strop.pyc
|
||||
share/python1.4/test/test_support.pyc
|
||||
share/python1.4/test/testall.pyc
|
||||
share/python1.4/test/test_thread.pyc
|
||||
share/python1.4/test/test_types.pyc
|
||||
share/python1.4/freebsd/FCNTL.pyc
|
||||
share/python1.4/freebsd/FCNTL.py
|
||||
share/python1.4/freebsd/IN.pyc
|
||||
share/python1.4/freebsd/IN.py
|
||||
share/python1.4/freebsd/SOCKET.pyc
|
||||
share/python1.4/freebsd/SOCKET.py
|
||||
share/python1.4/freebsd/TERMIOS.pyc
|
||||
share/python1.4/freebsd/TERMIOS.py
|
||||
share/python1.4/freebsd/regen
|
||||
share/python1.4/urllib.py
|
||||
share/python1.4/AST.py
|
||||
share/python1.4/BaseHTTPServer.py
|
||||
share/python1.4/Bastion.py
|
||||
share/python1.4/CGIHTTPServer.py
|
||||
share/python1.4/Complex.py
|
||||
share/python1.4/MimeWriter.py
|
||||
share/python1.4/Para.py
|
||||
share/python1.4/Queue.py
|
||||
share/python1.4/SimpleHTTPServer.py
|
||||
share/python1.4/SocketServer.py
|
||||
share/python1.4/StringIO.py
|
||||
share/python1.4/UserDict.py
|
||||
share/python1.4/UserList.py
|
||||
share/python1.4/addpack.py
|
||||
share/python1.4/aifc.py
|
||||
share/python1.4/anydbm.py
|
||||
share/python1.4/audiodev.py
|
||||
share/python1.4/base64.py
|
||||
share/python1.4/bdb.py
|
||||
share/python1.4/binhex.py
|
||||
share/python1.4/bisect.py
|
||||
share/python1.4/calendar.py
|
||||
share/python1.4/cgi.py
|
||||
share/python1.4/cmd.py
|
||||
share/python1.4/cmp.py
|
||||
share/python1.4/cmpcache.py
|
||||
share/python1.4/codehack.py
|
||||
share/python1.4/colorsys.py
|
||||
share/python1.4/commands.py
|
||||
share/python1.4/compileall.py
|
||||
share/python1.4/copy.py
|
||||
share/python1.4/dbhash.py
|
||||
share/python1.4/dircache.py
|
||||
share/python1.4/dircmp.py
|
||||
share/python1.4/dis.py
|
||||
share/python1.4/dospath.py
|
||||
share/python1.4/dumbdbm.py
|
||||
share/python1.4/dump.py
|
||||
share/python1.4/emacs.py
|
||||
share/python1.4/find.py
|
||||
share/python1.4/fmt.py
|
||||
share/python1.4/fnmatch.py
|
||||
share/python1.4/formatter.py
|
||||
share/python1.4/fpformat.py
|
||||
share/python1.4/ftplib.py
|
||||
share/python1.4/glob.py
|
||||
share/python1.4/getopt.py
|
||||
share/python1.4/gopherlib.py
|
||||
share/python1.4/grep.py
|
||||
share/python1.4/htmlentitydefs.py
|
||||
share/python1.4/htmllib.py
|
||||
share/python1.4/httplib.py
|
||||
share/python1.4/ihooks.py
|
||||
share/python1.4/imghdr.py
|
||||
share/python1.4/linecache.py
|
||||
share/python1.4/lockfile.py
|
||||
share/python1.4/macpath.py
|
||||
share/python1.4/macurl2path.py
|
||||
share/python1.4/mailbox.py
|
||||
share/python1.4/mailcap.py
|
||||
share/python1.4/mhlib.py
|
||||
share/python1.4/mimetools.py
|
||||
share/python1.4/mimify.py
|
||||
share/python1.4/multifile.py
|
||||
share/python1.4/mutex.py
|
||||
share/python1.4/newdir.py
|
||||
share/python1.4/ni.py
|
||||
share/python1.4/nntplib.py
|
||||
share/python1.4/ntpath.py
|
||||
share/python1.4/nturl2path.py
|
||||
share/python1.4/os.py
|
||||
share/python1.4/ospath.py
|
||||
share/python1.4/packmail.py
|
||||
share/python1.4/pdb.py
|
||||
share/python1.4/pickle.py
|
||||
share/python1.4/pipes.py
|
||||
share/python1.4/poly.py
|
||||
share/python1.4/popen2.py
|
||||
share/python1.4/posixfile.py
|
||||
share/python1.4/posixpath.py
|
||||
share/python1.4/profile.py
|
||||
share/python1.4/pstats.py
|
||||
share/python1.4/pty.py
|
||||
share/python1.4/py_compile.py
|
||||
share/python1.4/pyclbr.py
|
||||
share/python1.4/quopri.py
|
||||
share/python1.4/rand.py
|
||||
share/python1.4/random.py
|
||||
share/python1.4/regex_syntax.py
|
||||
share/python1.4/regexp.py
|
||||
share/python1.4/regsub.py
|
||||
share/python1.4/repr.py
|
||||
share/python1.4/rexec.py
|
||||
share/python1.4/rfc822.py
|
||||
share/python1.4/sched.py
|
||||
share/python1.4/sgmllib.py
|
||||
share/python1.4/shelve.py
|
||||
share/python1.4/shutil.py
|
||||
share/python1.4/site.py
|
||||
share/python1.4/sndhdr.py
|
||||
share/python1.4/stat.py
|
||||
share/python1.4/statcache.py
|
||||
share/python1.4/string.py
|
||||
share/python1.4/sunau.py
|
||||
share/python1.4/sunaudio.py
|
||||
share/python1.4/symbol.py
|
||||
share/python1.4/tb.py
|
||||
share/python1.4/tempfile.py
|
||||
share/python1.4/toaiff.py
|
||||
share/python1.4/token.py
|
||||
share/python1.4/tokenize.py
|
||||
share/python1.4/traceback.py
|
||||
share/python1.4/tty.py
|
||||
share/python1.4/types.py
|
||||
share/python1.4/tzparse.py
|
||||
share/python1.4/os.pyc
|
||||
share/python1.4/urlparse.py
|
||||
share/python1.4/util.py
|
||||
share/python1.4/uu.py
|
||||
share/python1.4/wave.py
|
||||
share/python1.4/whatsound.py
|
||||
share/python1.4/whichdb.py
|
||||
share/python1.4/whrandom.py
|
||||
share/python1.4/xdrlib.py
|
||||
share/python1.4/zmod.py
|
||||
share/python1.4/pdb.doc
|
||||
share/python1.4/profile.doc
|
||||
share/python1.4/posixpath.pyc
|
||||
share/python1.4/stat.pyc
|
||||
share/python1.4/UserDict.pyc
|
||||
share/python1.4/py_compile.pyc
|
||||
share/python1.4/getopt.pyc
|
||||
share/python1.4/string.pyc
|
||||
share/python1.4/AST.pyc
|
||||
share/python1.4/BaseHTTPServer.pyc
|
||||
share/python1.4/Bastion.pyc
|
||||
share/python1.4/CGIHTTPServer.pyc
|
||||
share/python1.4/Complex.pyc
|
||||
share/python1.4/MimeWriter.pyc
|
||||
share/python1.4/Para.pyc
|
||||
share/python1.4/Queue.pyc
|
||||
share/python1.4/SimpleHTTPServer.pyc
|
||||
share/python1.4/SocketServer.pyc
|
||||
share/python1.4/StringIO.pyc
|
||||
share/python1.4/UserList.pyc
|
||||
share/python1.4/addpack.pyc
|
||||
share/python1.4/aifc.pyc
|
||||
share/python1.4/anydbm.pyc
|
||||
share/python1.4/audiodev.pyc
|
||||
share/python1.4/base64.pyc
|
||||
share/python1.4/bdb.pyc
|
||||
share/python1.4/binhex.pyc
|
||||
share/python1.4/bisect.pyc
|
||||
share/python1.4/calendar.pyc
|
||||
share/python1.4/cgi.pyc
|
||||
share/python1.4/cmd.pyc
|
||||
share/python1.4/cmp.pyc
|
||||
share/python1.4/cmpcache.pyc
|
||||
share/python1.4/codehack.pyc
|
||||
share/python1.4/colorsys.pyc
|
||||
share/python1.4/commands.pyc
|
||||
share/python1.4/compileall.pyc
|
||||
share/python1.4/copy.pyc
|
||||
share/python1.4/dbhash.pyc
|
||||
share/python1.4/dircache.pyc
|
||||
share/python1.4/dircmp.pyc
|
||||
share/python1.4/dis.pyc
|
||||
share/python1.4/dospath.pyc
|
||||
share/python1.4/dumbdbm.pyc
|
||||
share/python1.4/dump.pyc
|
||||
share/python1.4/emacs.pyc
|
||||
share/python1.4/find.pyc
|
||||
share/python1.4/fmt.pyc
|
||||
share/python1.4/fnmatch.pyc
|
||||
share/python1.4/formatter.pyc
|
||||
share/python1.4/fpformat.pyc
|
||||
share/python1.4/ftplib.pyc
|
||||
share/python1.4/glob.pyc
|
||||
share/python1.4/gopherlib.pyc
|
||||
share/python1.4/grep.pyc
|
||||
share/python1.4/htmlentitydefs.pyc
|
||||
share/python1.4/htmllib.pyc
|
||||
share/python1.4/httplib.pyc
|
||||
share/python1.4/ihooks.pyc
|
||||
share/python1.4/imghdr.pyc
|
||||
share/python1.4/linecache.pyc
|
||||
share/python1.4/lockfile.pyc
|
||||
share/python1.4/macpath.pyc
|
||||
share/python1.4/macurl2path.pyc
|
||||
share/python1.4/mailbox.pyc
|
||||
share/python1.4/mailcap.pyc
|
||||
share/python1.4/mhlib.pyc
|
||||
share/python1.4/mimetools.pyc
|
||||
share/python1.4/mimify.pyc
|
||||
share/python1.4/multifile.pyc
|
||||
share/python1.4/mutex.pyc
|
||||
share/python1.4/newdir.pyc
|
||||
share/python1.4/ni.pyc
|
||||
share/python1.4/nntplib.pyc
|
||||
share/python1.4/ntpath.pyc
|
||||
share/python1.4/nturl2path.pyc
|
||||
share/python1.4/ospath.pyc
|
||||
share/python1.4/packmail.pyc
|
||||
share/python1.4/pdb.pyc
|
||||
share/python1.4/pickle.pyc
|
||||
share/python1.4/pipes.pyc
|
||||
share/python1.4/poly.pyc
|
||||
share/python1.4/popen2.pyc
|
||||
share/python1.4/posixfile.pyc
|
||||
share/python1.4/profile.pyc
|
||||
share/python1.4/pstats.pyc
|
||||
share/python1.4/pty.pyc
|
||||
share/python1.4/pyclbr.pyc
|
||||
share/python1.4/quopri.pyc
|
||||
share/python1.4/rand.pyc
|
||||
share/python1.4/random.pyc
|
||||
share/python1.4/regex_syntax.pyc
|
||||
share/python1.4/regexp.pyc
|
||||
share/python1.4/regsub.pyc
|
||||
share/python1.4/repr.pyc
|
||||
share/python1.4/rexec.pyc
|
||||
share/python1.4/rfc822.pyc
|
||||
share/python1.4/sched.pyc
|
||||
share/python1.4/sgmllib.pyc
|
||||
share/python1.4/shelve.pyc
|
||||
share/python1.4/shutil.pyc
|
||||
share/python1.4/site.pyc
|
||||
share/python1.4/sndhdr.pyc
|
||||
share/python1.4/statcache.pyc
|
||||
share/python1.4/sunau.pyc
|
||||
share/python1.4/sunaudio.pyc
|
||||
share/python1.4/symbol.pyc
|
||||
share/python1.4/tb.pyc
|
||||
share/python1.4/tempfile.pyc
|
||||
share/python1.4/toaiff.pyc
|
||||
share/python1.4/token.pyc
|
||||
share/python1.4/tokenize.pyc
|
||||
share/python1.4/traceback.pyc
|
||||
share/python1.4/tty.pyc
|
||||
share/python1.4/types.pyc
|
||||
share/python1.4/tzparse.pyc
|
||||
share/python1.4/urllib.pyc
|
||||
share/python1.4/urlparse.pyc
|
||||
share/python1.4/uu.pyc
|
||||
share/python1.4/util.pyc
|
||||
share/python1.4/wave.pyc
|
||||
share/python1.4/whatsound.pyc
|
||||
share/python1.4/whichdb.pyc
|
||||
share/python1.4/whrandom.pyc
|
||||
share/python1.4/xdrlib.pyc
|
||||
share/python1.4/zmod.pyc
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# Date created: 08 August 1995
|
||||
# Whom: jkh
|
||||
#
|
||||
# $Id: Makefile,v 1.12 1997/02/21 14:57:01 tg Exp $
|
||||
# $Id: Makefile,v 1.13 1997/04/20 13:19:11 wosch Exp $
|
||||
#
|
||||
|
||||
DISTNAME= python1.4
|
||||
|
@ -13,12 +13,10 @@ MASTER_SITES= ftp://www.python.org/pub/python/src/ \
|
|||
ftp://ftp.cwi.nl/pub/python/src/ \
|
||||
ftp://www.python.org/pub/python/contrib/Graphics/Tkinter/ \
|
||||
ftp://ftp.cwi.nl/pub/python/contrib/Graphics/Tkinter/
|
||||
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} PyTix-1.12.tar.gz
|
||||
|
||||
MAINTAINER= tg@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= tk41\\.1\\.:${PORTSDIR}/x11/tk41 \
|
||||
tix4175\\.1\\.:${PORTSDIR}/x11/tix
|
||||
LIB_DEPENDS= tk41\\.1\\.:${PORTSDIR}/x11/tk41
|
||||
|
||||
WRKSRC= ${WRKDIR}/Python-1.4
|
||||
HAS_CONFIGURE= yes
|
||||
|
@ -27,14 +25,6 @@ MAKE_FLAGS+= 'OPT=${CFLAGS}'
|
|||
INSTALL_TARGET= install
|
||||
MAN1= python.1
|
||||
|
||||
PYTIXSRC= ${WRKDIR}/PyTix-1.12
|
||||
|
||||
post-extract:
|
||||
@${ECHO_MSG} "===> Add PyTix extensions to Python core"
|
||||
${CP} ${PYTIXSRC}/Tkinter.py ${WRKSRC}/Lib/tkinter
|
||||
${CP} ${PYTIXSRC}/Tix.py ${WRKSRC}/Lib/tkinter
|
||||
${CP} ${PYTIXSRC}/_tkinter.c ${WRKSRC}/Modules
|
||||
|
||||
post-configure:
|
||||
${CP} ${FILESDIR}/Setup ${WRKSRC}/Modules
|
||||
|
||||
|
|
|
@ -71,7 +71,7 @@ SITEPATH=:$(DESTLIB)/NumPy
|
|||
TESTPATH=:$(DESTLIB)/test
|
||||
|
||||
# Path for machine- or system-dependent modules (and shared libraries)
|
||||
MACHDEPPATH=:$(DESTLIB)/$(MACHDEP)
|
||||
MACHDEPPATH=:$(DESTLIB)/$(MACHDEP):$(MACHDESTLIB)/sharedmodules
|
||||
|
||||
COREPYTHONPATH=.$(SITEPATH)$(DESTPATH)$(TESTPATH)$(MACHDEPPATH)$(STDWINPATH)$(TKPATH)
|
||||
PYTHONPATH=$(COREPYTHONPATH)
|
||||
|
@ -128,6 +128,7 @@ select selectmodule.c # select(2); not on ancient System V
|
|||
socket socketmodule.c # socket(2); not on ancient System V
|
||||
errno errnomodule.c # posix (UNIX) errno values
|
||||
|
||||
*shared*
|
||||
|
||||
# Some more UNIX dependent modules -- off by default, since these
|
||||
# are not supported by all UNIX systems:
|
||||
|
@ -249,7 +250,7 @@ TKPATH=:$(DESTLIB)/tkinter
|
|||
#_tkinter _tkinter.c -I/usr/openwin/include -I/usr/local/include -L/usr/openwin/lib -L/usr/local/lib -ltk4.1 -ltcl7.5 -lX11
|
||||
# For generic system (may have to add -I/-L options to find X11):
|
||||
#_tkinter _tkinter.c -I/usr/local/include -L/usr/local/lib -ltk4.1 -ltcl7.5 -lX11
|
||||
_tkinter _tkinter.c -I/usr/local/include -I/usr/X11R6/include -L/usr/local/lib -L/usr/X11R6/lib -ltix4175 -ltk41 -ltcl75 -lX11
|
||||
_tkinter _tkinter.c -I/usr/local/include -I/usr/X11R6/include -L/usr/local/lib -L/usr/X11R6/lib -ltk41 -ltcl75 -lX11
|
||||
|
||||
|
||||
# Lance Ellinghaus's modules:
|
||||
|
|
|
@ -1,11 +1,7 @@
|
|||
--- Makefile.in.orig Fri Oct 25 16:37:32 1996
|
||||
+++ Makefile.in Thu Feb 6 12:02:11 1997
|
||||
@@ -95,10 +95,10 @@
|
||||
|
||||
# Expanded directories
|
||||
BINDIR= $(exec_prefix)/bin
|
||||
-LIBDIR= $(exec_prefix)/lib
|
||||
+LIBDIR= $(exec_prefix)/share
|
||||
+++ Makefile.in Mon May 12 21:04:38 1997
|
||||
@@ -98,7 +98,7 @@
|
||||
LIBDIR= $(exec_prefix)/lib
|
||||
MANDIR= $(prefix)/man
|
||||
INCLUDEDIR= $(prefix)/include
|
||||
-SCRIPTDIR= $(prefix)/lib
|
||||
|
|
|
@ -1,403 +1,5 @@
|
|||
bin/python1.4
|
||||
bin/python
|
||||
@exec mkdir -p %D/share/python1.4/sharedmodules
|
||||
@unexec rmdir %D/share/python1.4/sharedmodules
|
||||
share/python1.4/AST.py
|
||||
share/python1.4/AST.pyc
|
||||
share/python1.4/BaseHTTPServer.py
|
||||
share/python1.4/BaseHTTPServer.pyc
|
||||
share/python1.4/Bastion.py
|
||||
share/python1.4/Bastion.pyc
|
||||
share/python1.4/CGIHTTPServer.py
|
||||
share/python1.4/CGIHTTPServer.pyc
|
||||
share/python1.4/Complex.py
|
||||
share/python1.4/Complex.pyc
|
||||
share/python1.4/MimeWriter.py
|
||||
share/python1.4/MimeWriter.pyc
|
||||
share/python1.4/Para.py
|
||||
share/python1.4/Para.pyc
|
||||
share/python1.4/Queue.py
|
||||
share/python1.4/Queue.pyc
|
||||
share/python1.4/SimpleHTTPServer.py
|
||||
share/python1.4/SimpleHTTPServer.pyc
|
||||
share/python1.4/SocketServer.py
|
||||
share/python1.4/SocketServer.pyc
|
||||
share/python1.4/StringIO.py
|
||||
share/python1.4/StringIO.pyc
|
||||
share/python1.4/UserDict.py
|
||||
share/python1.4/UserDict.pyc
|
||||
share/python1.4/UserList.py
|
||||
share/python1.4/UserList.pyc
|
||||
share/python1.4/addpack.py
|
||||
share/python1.4/addpack.pyc
|
||||
share/python1.4/aifc.py
|
||||
share/python1.4/aifc.pyc
|
||||
share/python1.4/anydbm.py
|
||||
share/python1.4/anydbm.pyc
|
||||
share/python1.4/audiodev.py
|
||||
share/python1.4/audiodev.pyc
|
||||
share/python1.4/base64.py
|
||||
share/python1.4/base64.pyc
|
||||
share/python1.4/bdb.py
|
||||
share/python1.4/bdb.pyc
|
||||
share/python1.4/binhex.py
|
||||
share/python1.4/binhex.pyc
|
||||
share/python1.4/bisect.py
|
||||
share/python1.4/bisect.pyc
|
||||
share/python1.4/calendar.py
|
||||
share/python1.4/calendar.pyc
|
||||
share/python1.4/cgi.py
|
||||
share/python1.4/cgi.pyc
|
||||
share/python1.4/cmd.py
|
||||
share/python1.4/cmd.pyc
|
||||
share/python1.4/cmp.py
|
||||
share/python1.4/cmp.pyc
|
||||
share/python1.4/cmpcache.py
|
||||
share/python1.4/cmpcache.pyc
|
||||
share/python1.4/codehack.py
|
||||
share/python1.4/codehack.pyc
|
||||
share/python1.4/colorsys.py
|
||||
share/python1.4/colorsys.pyc
|
||||
share/python1.4/commands.py
|
||||
share/python1.4/commands.pyc
|
||||
share/python1.4/compileall.py
|
||||
share/python1.4/compileall.pyc
|
||||
share/python1.4/copy.py
|
||||
share/python1.4/copy.pyc
|
||||
share/python1.4/dbhash.py
|
||||
share/python1.4/dbhash.pyc
|
||||
share/python1.4/dircache.py
|
||||
share/python1.4/dircache.pyc
|
||||
share/python1.4/dircmp.py
|
||||
share/python1.4/dircmp.pyc
|
||||
share/python1.4/dis.py
|
||||
share/python1.4/dis.pyc
|
||||
share/python1.4/dospath.py
|
||||
share/python1.4/dospath.pyc
|
||||
share/python1.4/dumbdbm.py
|
||||
share/python1.4/dumbdbm.pyc
|
||||
share/python1.4/dump.py
|
||||
share/python1.4/dump.pyc
|
||||
share/python1.4/emacs.py
|
||||
share/python1.4/emacs.pyc
|
||||
share/python1.4/find.py
|
||||
share/python1.4/find.pyc
|
||||
share/python1.4/fmt.py
|
||||
share/python1.4/fmt.pyc
|
||||
share/python1.4/fnmatch.py
|
||||
share/python1.4/fnmatch.pyc
|
||||
share/python1.4/formatter.py
|
||||
share/python1.4/formatter.pyc
|
||||
share/python1.4/fpformat.py
|
||||
share/python1.4/fpformat.pyc
|
||||
share/python1.4/ftplib.py
|
||||
share/python1.4/ftplib.pyc
|
||||
share/python1.4/getopt.py
|
||||
share/python1.4/getopt.pyc
|
||||
share/python1.4/glob.py
|
||||
share/python1.4/glob.pyc
|
||||
share/python1.4/gopherlib.py
|
||||
share/python1.4/gopherlib.pyc
|
||||
share/python1.4/grep.py
|
||||
share/python1.4/grep.pyc
|
||||
share/python1.4/htmlentitydefs.py
|
||||
share/python1.4/htmlentitydefs.pyc
|
||||
share/python1.4/htmllib.py
|
||||
share/python1.4/htmllib.pyc
|
||||
share/python1.4/httplib.py
|
||||
share/python1.4/httplib.pyc
|
||||
share/python1.4/ihooks.py
|
||||
share/python1.4/ihooks.pyc
|
||||
share/python1.4/imghdr.py
|
||||
share/python1.4/imghdr.pyc
|
||||
share/python1.4/linecache.py
|
||||
share/python1.4/linecache.pyc
|
||||
share/python1.4/lockfile.py
|
||||
share/python1.4/lockfile.pyc
|
||||
share/python1.4/macpath.py
|
||||
share/python1.4/macpath.pyc
|
||||
share/python1.4/macurl2path.py
|
||||
share/python1.4/macurl2path.pyc
|
||||
share/python1.4/mailbox.py
|
||||
share/python1.4/mailbox.pyc
|
||||
share/python1.4/mailcap.py
|
||||
share/python1.4/mailcap.pyc
|
||||
share/python1.4/mhlib.py
|
||||
share/python1.4/mhlib.pyc
|
||||
share/python1.4/mimetools.py
|
||||
share/python1.4/mimetools.pyc
|
||||
share/python1.4/mimify.py
|
||||
share/python1.4/mimify.pyc
|
||||
share/python1.4/multifile.py
|
||||
share/python1.4/multifile.pyc
|
||||
share/python1.4/mutex.py
|
||||
share/python1.4/mutex.pyc
|
||||
share/python1.4/newdir.py
|
||||
share/python1.4/newdir.pyc
|
||||
share/python1.4/ni.py
|
||||
share/python1.4/ni.pyc
|
||||
share/python1.4/nntplib.py
|
||||
share/python1.4/nntplib.pyc
|
||||
share/python1.4/ntpath.py
|
||||
share/python1.4/ntpath.pyc
|
||||
share/python1.4/nturl2path.py
|
||||
share/python1.4/nturl2path.pyc
|
||||
share/python1.4/os.py
|
||||
share/python1.4/os.pyc
|
||||
share/python1.4/ospath.py
|
||||
share/python1.4/ospath.pyc
|
||||
share/python1.4/packmail.py
|
||||
share/python1.4/packmail.pyc
|
||||
share/python1.4/pdb.doc
|
||||
share/python1.4/pdb.py
|
||||
share/python1.4/pdb.pyc
|
||||
share/python1.4/pickle.py
|
||||
share/python1.4/pickle.pyc
|
||||
share/python1.4/pipes.py
|
||||
share/python1.4/pipes.pyc
|
||||
share/python1.4/poly.py
|
||||
share/python1.4/poly.pyc
|
||||
share/python1.4/popen2.py
|
||||
share/python1.4/popen2.pyc
|
||||
share/python1.4/posixfile.py
|
||||
share/python1.4/posixfile.pyc
|
||||
share/python1.4/posixpath.py
|
||||
share/python1.4/posixpath.pyc
|
||||
share/python1.4/profile.doc
|
||||
share/python1.4/profile.py
|
||||
share/python1.4/profile.pyc
|
||||
share/python1.4/pstats.py
|
||||
share/python1.4/pstats.pyc
|
||||
share/python1.4/pty.py
|
||||
share/python1.4/pty.pyc
|
||||
share/python1.4/py_compile.py
|
||||
share/python1.4/py_compile.pyc
|
||||
share/python1.4/pyclbr.py
|
||||
share/python1.4/pyclbr.pyc
|
||||
share/python1.4/quopri.py
|
||||
share/python1.4/quopri.pyc
|
||||
share/python1.4/rand.py
|
||||
share/python1.4/rand.pyc
|
||||
share/python1.4/random.py
|
||||
share/python1.4/random.pyc
|
||||
share/python1.4/regex_syntax.py
|
||||
share/python1.4/regex_syntax.pyc
|
||||
share/python1.4/regexp.py
|
||||
share/python1.4/regexp.pyc
|
||||
share/python1.4/regsub.py
|
||||
share/python1.4/regsub.pyc
|
||||
share/python1.4/repr.py
|
||||
share/python1.4/repr.pyc
|
||||
share/python1.4/rexec.py
|
||||
share/python1.4/rexec.pyc
|
||||
share/python1.4/rfc822.py
|
||||
share/python1.4/rfc822.pyc
|
||||
share/python1.4/sched.py
|
||||
share/python1.4/sched.pyc
|
||||
share/python1.4/sgmllib.py
|
||||
share/python1.4/sgmllib.pyc
|
||||
share/python1.4/shelve.py
|
||||
share/python1.4/shelve.pyc
|
||||
share/python1.4/shutil.py
|
||||
share/python1.4/shutil.pyc
|
||||
share/python1.4/site.py
|
||||
share/python1.4/site.pyc
|
||||
share/python1.4/sndhdr.py
|
||||
share/python1.4/sndhdr.pyc
|
||||
share/python1.4/stat.py
|
||||
share/python1.4/stat.pyc
|
||||
share/python1.4/statcache.py
|
||||
share/python1.4/statcache.pyc
|
||||
share/python1.4/string.py
|
||||
share/python1.4/string.pyc
|
||||
share/python1.4/sunau.py
|
||||
share/python1.4/sunau.pyc
|
||||
share/python1.4/sunaudio.py
|
||||
share/python1.4/sunaudio.pyc
|
||||
share/python1.4/symbol.py
|
||||
share/python1.4/symbol.pyc
|
||||
share/python1.4/tb.py
|
||||
share/python1.4/tb.pyc
|
||||
share/python1.4/tempfile.py
|
||||
share/python1.4/tempfile.pyc
|
||||
share/python1.4/toaiff.py
|
||||
share/python1.4/toaiff.pyc
|
||||
share/python1.4/token.py
|
||||
share/python1.4/token.pyc
|
||||
share/python1.4/tokenize.py
|
||||
share/python1.4/tokenize.pyc
|
||||
share/python1.4/traceback.py
|
||||
share/python1.4/traceback.pyc
|
||||
share/python1.4/tty.py
|
||||
share/python1.4/tty.pyc
|
||||
share/python1.4/types.py
|
||||
share/python1.4/types.pyc
|
||||
share/python1.4/tzparse.py
|
||||
share/python1.4/tzparse.pyc
|
||||
share/python1.4/urllib.py
|
||||
share/python1.4/urllib.pyc
|
||||
share/python1.4/urlparse.py
|
||||
share/python1.4/urlparse.pyc
|
||||
share/python1.4/util.py
|
||||
share/python1.4/util.pyc
|
||||
share/python1.4/uu.py
|
||||
share/python1.4/uu.pyc
|
||||
share/python1.4/wave.py
|
||||
share/python1.4/wave.pyc
|
||||
share/python1.4/whatsound.py
|
||||
share/python1.4/whatsound.pyc
|
||||
share/python1.4/whichdb.py
|
||||
share/python1.4/whichdb.pyc
|
||||
share/python1.4/whrandom.py
|
||||
share/python1.4/whrandom.pyc
|
||||
share/python1.4/xdrlib.py
|
||||
share/python1.4/xdrlib.pyc
|
||||
share/python1.4/zmod.py
|
||||
share/python1.4/zmod.pyc
|
||||
share/python1.4/config/Makefile
|
||||
share/python1.4/config/Setup
|
||||
share/python1.4/config/config.c
|
||||
share/python1.4/config/config.c.in
|
||||
share/python1.4/config/config.h
|
||||
share/python1.4/config/frozenmain.c
|
||||
share/python1.4/config/getpath.c
|
||||
share/python1.4/config/libModules.a
|
||||
share/python1.4/config/libObjects.a
|
||||
share/python1.4/config/libParser.a
|
||||
share/python1.4/config/libPython.a
|
||||
share/python1.4/config/main.o
|
||||
share/python1.4/config/makesetup
|
||||
share/python1.4/freebsd2/FCNTL.py
|
||||
share/python1.4/freebsd2/FCNTL.pyc
|
||||
share/python1.4/freebsd2/regen
|
||||
share/python1.4/stdwin/Abstract.py
|
||||
share/python1.4/stdwin/Abstract.pyc
|
||||
share/python1.4/stdwin/BoxParent.py
|
||||
share/python1.4/stdwin/BoxParent.pyc
|
||||
share/python1.4/stdwin/Buttons.py
|
||||
share/python1.4/stdwin/Buttons.pyc
|
||||
share/python1.4/stdwin/CSplit.py
|
||||
share/python1.4/stdwin/CSplit.pyc
|
||||
share/python1.4/stdwin/DirList.py
|
||||
share/python1.4/stdwin/DirList.pyc
|
||||
share/python1.4/stdwin/FormSplit.py
|
||||
share/python1.4/stdwin/FormSplit.pyc
|
||||
share/python1.4/stdwin/HVSplit.py
|
||||
share/python1.4/stdwin/HVSplit.pyc
|
||||
share/python1.4/stdwin/Histogram.py
|
||||
share/python1.4/stdwin/Histogram.pyc
|
||||
share/python1.4/stdwin/Sliders.py
|
||||
share/python1.4/stdwin/Sliders.pyc
|
||||
share/python1.4/stdwin/Soundogram.py
|
||||
share/python1.4/stdwin/Soundogram.pyc
|
||||
share/python1.4/stdwin/Split.py
|
||||
share/python1.4/stdwin/Split.pyc
|
||||
share/python1.4/stdwin/StripChart.py
|
||||
share/python1.4/stdwin/StripChart.pyc
|
||||
share/python1.4/stdwin/TextEdit.py
|
||||
share/python1.4/stdwin/TextEdit.pyc
|
||||
share/python1.4/stdwin/TransParent.py
|
||||
share/python1.4/stdwin/TransParent.pyc
|
||||
share/python1.4/stdwin/VUMeter.py
|
||||
share/python1.4/stdwin/VUMeter.pyc
|
||||
share/python1.4/stdwin/WindowParent.py
|
||||
share/python1.4/stdwin/WindowParent.pyc
|
||||
share/python1.4/stdwin/WindowSched.py
|
||||
share/python1.4/stdwin/WindowSched.pyc
|
||||
share/python1.4/stdwin/anywin.py
|
||||
share/python1.4/stdwin/anywin.pyc
|
||||
share/python1.4/stdwin/basewin.py
|
||||
share/python1.4/stdwin/basewin.pyc
|
||||
share/python1.4/stdwin/dirwin.py
|
||||
share/python1.4/stdwin/dirwin.pyc
|
||||
share/python1.4/stdwin/filewin.py
|
||||
share/python1.4/stdwin/filewin.pyc
|
||||
share/python1.4/stdwin/formatter.py
|
||||
share/python1.4/stdwin/formatter.pyc
|
||||
share/python1.4/stdwin/gwin.py
|
||||
share/python1.4/stdwin/gwin.pyc
|
||||
share/python1.4/stdwin/listwin.py
|
||||
share/python1.4/stdwin/listwin.pyc
|
||||
share/python1.4/stdwin/mainloop.py
|
||||
share/python1.4/stdwin/mainloop.pyc
|
||||
share/python1.4/stdwin/rect.py
|
||||
share/python1.4/stdwin/rect.pyc
|
||||
share/python1.4/stdwin/srcwin.py
|
||||
share/python1.4/stdwin/srcwin.pyc
|
||||
share/python1.4/stdwin/stdwinevents.py
|
||||
share/python1.4/stdwin/stdwinevents.pyc
|
||||
share/python1.4/stdwin/stdwinq.py
|
||||
share/python1.4/stdwin/stdwinq.pyc
|
||||
share/python1.4/stdwin/tablewin.py
|
||||
share/python1.4/stdwin/tablewin.pyc
|
||||
share/python1.4/stdwin/textwin.py
|
||||
share/python1.4/stdwin/textwin.pyc
|
||||
share/python1.4/stdwin/wdb.py
|
||||
share/python1.4/stdwin/wdb.pyc
|
||||
share/python1.4/stdwin/wdbframewin.py
|
||||
share/python1.4/stdwin/wdbframewin.pyc
|
||||
share/python1.4/stdwin/wdbsrcwin.py
|
||||
share/python1.4/stdwin/wdbsrcwin.pyc
|
||||
share/python1.4/test/autotest.py
|
||||
share/python1.4/test/autotest.pyc
|
||||
share/python1.4/test/test.rawimg
|
||||
share/python1.4/test/test.rawimg.rev
|
||||
share/python1.4/test/test.rgb
|
||||
share/python1.4/test/test_audioop.py
|
||||
share/python1.4/test/test_audioop.pyc
|
||||
share/python1.4/test/test_b1.py
|
||||
share/python1.4/test/test_b1.pyc
|
||||
share/python1.4/test/test_b2.py
|
||||
share/python1.4/test/test_b2.pyc
|
||||
share/python1.4/test/test_builtin.py
|
||||
share/python1.4/test/test_builtin.pyc
|
||||
share/python1.4/test/test_exceptions.py
|
||||
share/python1.4/test/test_exceptions.pyc
|
||||
share/python1.4/test/test_grammar.py
|
||||
share/python1.4/test/test_grammar.pyc
|
||||
share/python1.4/test/test_math.py
|
||||
share/python1.4/test/test_math.pyc
|
||||
share/python1.4/test/test_md5.py
|
||||
share/python1.4/test/test_md5.pyc
|
||||
share/python1.4/test/test_opcodes.py
|
||||
share/python1.4/test/test_opcodes.pyc
|
||||
share/python1.4/test/test_operations.py
|
||||
share/python1.4/test/test_operations.pyc
|
||||
share/python1.4/test/test_pow.py
|
||||
share/python1.4/test/test_pow.pyc
|
||||
share/python1.4/test/test_rgbimg.py
|
||||
share/python1.4/test/test_rgbimg.pyc
|
||||
share/python1.4/test/test_select.py
|
||||
share/python1.4/test/test_select.pyc
|
||||
share/python1.4/test/test_signal.py
|
||||
share/python1.4/test/test_signal.pyc
|
||||
share/python1.4/test/test_strop.py
|
||||
share/python1.4/test/test_strop.pyc
|
||||
share/python1.4/test/test_support.py
|
||||
share/python1.4/test/test_support.pyc
|
||||
share/python1.4/test/test_thread.py
|
||||
share/python1.4/test/test_thread.pyc
|
||||
share/python1.4/test/test_types.py
|
||||
share/python1.4/test/test_types.pyc
|
||||
share/python1.4/test/testall.out
|
||||
share/python1.4/test/testall.py
|
||||
share/python1.4/test/testall.pyc
|
||||
share/python1.4/tkinter/Canvas.py
|
||||
share/python1.4/tkinter/Canvas.pyc
|
||||
share/python1.4/tkinter/Dialog.py
|
||||
share/python1.4/tkinter/Dialog.pyc
|
||||
share/python1.4/tkinter/FileDialog.py
|
||||
share/python1.4/tkinter/FileDialog.pyc
|
||||
share/python1.4/tkinter/ScrolledText.py
|
||||
share/python1.4/tkinter/ScrolledText.pyc
|
||||
share/python1.4/tkinter/SimpleDialog.py
|
||||
share/python1.4/tkinter/SimpleDialog.pyc
|
||||
share/python1.4/tkinter/Tix.py
|
||||
share/python1.4/tkinter/Tix.pyc
|
||||
share/python1.4/tkinter/Tkconstants.py
|
||||
share/python1.4/tkinter/Tkconstants.pyc
|
||||
share/python1.4/tkinter/Tkinter.py
|
||||
share/python1.4/tkinter/Tkinter.pyc
|
||||
include/python1.4/Python.h
|
||||
include/python1.4/abstract.h
|
||||
include/python1.4/accessobject.h
|
||||
|
@ -459,4 +61,417 @@ include/python1.4/thread.h
|
|||
include/python1.4/token.h
|
||||
include/python1.4/traceback.h
|
||||
include/python1.4/tupleobject.h
|
||||
lib/python1.4/config/libParser.a
|
||||
lib/python1.4/config/libObjects.a
|
||||
lib/python1.4/config/libPython.a
|
||||
lib/python1.4/config/libModules.a
|
||||
lib/python1.4/config/config.c
|
||||
lib/python1.4/config/getpath.c
|
||||
lib/python1.4/config/config.c.in
|
||||
lib/python1.4/config/Makefile
|
||||
lib/python1.4/config/Setup
|
||||
lib/python1.4/config/makesetup
|
||||
lib/python1.4/config/config.h
|
||||
lib/python1.4/config/frozenmain.c
|
||||
lib/python1.4/config/main.o
|
||||
lib/python1.4/sharedmodules/dbmmodule.so
|
||||
lib/python1.4/sharedmodules/nismodule.so
|
||||
lib/python1.4/sharedmodules/termios.so
|
||||
lib/python1.4/sharedmodules/audioop.so
|
||||
lib/python1.4/sharedmodules/imageop.so
|
||||
lib/python1.4/sharedmodules/rgbimgmodule.so
|
||||
lib/python1.4/sharedmodules/md5module.so
|
||||
lib/python1.4/sharedmodules/_tkinter.so
|
||||
lib/python1.4/sharedmodules/rotormodule.so
|
||||
lib/python1.4/sharedmodules/syslogmodule.so
|
||||
lib/python1.4/sharedmodules/cursesmodule.so
|
||||
lib/python1.4/sharedmodules/bsddbmodule.so
|
||||
lib/python1.4/sharedmodules/binascii.so
|
||||
man/man1/python.1.gz
|
||||
share/python1.4/stdwin/Abstract.pyc
|
||||
share/python1.4/stdwin/Abstract.py
|
||||
share/python1.4/stdwin/BoxParent.py
|
||||
share/python1.4/stdwin/Buttons.py
|
||||
share/python1.4/stdwin/CSplit.py
|
||||
share/python1.4/stdwin/DirList.py
|
||||
share/python1.4/stdwin/FormSplit.py
|
||||
share/python1.4/stdwin/HVSplit.py
|
||||
share/python1.4/stdwin/Histogram.py
|
||||
share/python1.4/stdwin/Sliders.py
|
||||
share/python1.4/stdwin/Soundogram.py
|
||||
share/python1.4/stdwin/Split.py
|
||||
share/python1.4/stdwin/StripChart.py
|
||||
share/python1.4/stdwin/TextEdit.py
|
||||
share/python1.4/stdwin/TransParent.py
|
||||
share/python1.4/stdwin/VUMeter.py
|
||||
share/python1.4/stdwin/WindowParent.py
|
||||
share/python1.4/stdwin/WindowSched.py
|
||||
share/python1.4/stdwin/anywin.py
|
||||
share/python1.4/stdwin/basewin.py
|
||||
share/python1.4/stdwin/dirwin.py
|
||||
share/python1.4/stdwin/filewin.py
|
||||
share/python1.4/stdwin/formatter.py
|
||||
share/python1.4/stdwin/gwin.py
|
||||
share/python1.4/stdwin/listwin.py
|
||||
share/python1.4/stdwin/mainloop.py
|
||||
share/python1.4/stdwin/rect.py
|
||||
share/python1.4/stdwin/srcwin.py
|
||||
share/python1.4/stdwin/stdwinevents.py
|
||||
share/python1.4/stdwin/stdwinq.py
|
||||
share/python1.4/stdwin/tablewin.py
|
||||
share/python1.4/stdwin/textwin.py
|
||||
share/python1.4/stdwin/wdb.py
|
||||
share/python1.4/stdwin/wdbframewin.py
|
||||
share/python1.4/stdwin/wdbsrcwin.py
|
||||
share/python1.4/stdwin/BoxParent.pyc
|
||||
share/python1.4/stdwin/Buttons.pyc
|
||||
share/python1.4/stdwin/CSplit.pyc
|
||||
share/python1.4/stdwin/DirList.pyc
|
||||
share/python1.4/stdwin/FormSplit.pyc
|
||||
share/python1.4/stdwin/HVSplit.pyc
|
||||
share/python1.4/stdwin/Histogram.pyc
|
||||
share/python1.4/stdwin/Sliders.pyc
|
||||
share/python1.4/stdwin/Soundogram.pyc
|
||||
share/python1.4/stdwin/Split.pyc
|
||||
share/python1.4/stdwin/StripChart.pyc
|
||||
share/python1.4/stdwin/TextEdit.pyc
|
||||
share/python1.4/stdwin/TransParent.pyc
|
||||
share/python1.4/stdwin/VUMeter.pyc
|
||||
share/python1.4/stdwin/WindowParent.pyc
|
||||
share/python1.4/stdwin/WindowSched.pyc
|
||||
share/python1.4/stdwin/anywin.pyc
|
||||
share/python1.4/stdwin/basewin.pyc
|
||||
share/python1.4/stdwin/dirwin.pyc
|
||||
share/python1.4/stdwin/filewin.pyc
|
||||
share/python1.4/stdwin/formatter.pyc
|
||||
share/python1.4/stdwin/gwin.pyc
|
||||
share/python1.4/stdwin/listwin.pyc
|
||||
share/python1.4/stdwin/mainloop.pyc
|
||||
share/python1.4/stdwin/rect.pyc
|
||||
share/python1.4/stdwin/srcwin.pyc
|
||||
share/python1.4/stdwin/stdwinevents.pyc
|
||||
share/python1.4/stdwin/stdwinq.pyc
|
||||
share/python1.4/stdwin/tablewin.pyc
|
||||
share/python1.4/stdwin/textwin.pyc
|
||||
share/python1.4/stdwin/wdb.pyc
|
||||
share/python1.4/stdwin/wdbframewin.pyc
|
||||
share/python1.4/stdwin/wdbsrcwin.pyc
|
||||
share/python1.4/tkinter/Canvas.pyc
|
||||
share/python1.4/tkinter/Canvas.py
|
||||
share/python1.4/tkinter/Dialog.py
|
||||
share/python1.4/tkinter/FileDialog.py
|
||||
share/python1.4/tkinter/ScrolledText.py
|
||||
share/python1.4/tkinter/SimpleDialog.py
|
||||
share/python1.4/tkinter/Tkconstants.py
|
||||
share/python1.4/tkinter/Tkinter.py
|
||||
share/python1.4/tkinter/Dialog.pyc
|
||||
share/python1.4/tkinter/FileDialog.pyc
|
||||
share/python1.4/tkinter/ScrolledText.pyc
|
||||
share/python1.4/tkinter/SimpleDialog.pyc
|
||||
share/python1.4/tkinter/Tkconstants.pyc
|
||||
share/python1.4/tkinter/Tkinter.pyc
|
||||
share/python1.4/test/autotest.pyc
|
||||
share/python1.4/test/autotest.py
|
||||
share/python1.4/test/test.rawimg
|
||||
share/python1.4/test/test.rawimg.rev
|
||||
share/python1.4/test/test.rgb
|
||||
share/python1.4/test/test_audioop.py
|
||||
share/python1.4/test/test_b1.py
|
||||
share/python1.4/test/test_b2.py
|
||||
share/python1.4/test/test_builtin.py
|
||||
share/python1.4/test/test_exceptions.py
|
||||
share/python1.4/test/test_grammar.py
|
||||
share/python1.4/test/test_math.py
|
||||
share/python1.4/test/test_md5.py
|
||||
share/python1.4/test/test_opcodes.py
|
||||
share/python1.4/test/test_operations.py
|
||||
share/python1.4/test/test_pow.py
|
||||
share/python1.4/test/test_rgbimg.py
|
||||
share/python1.4/test/test_select.py
|
||||
share/python1.4/test/test_signal.py
|
||||
share/python1.4/test/test_strop.py
|
||||
share/python1.4/test/test_support.py
|
||||
share/python1.4/test/test_thread.py
|
||||
share/python1.4/test/test_types.py
|
||||
share/python1.4/test/testall.out
|
||||
share/python1.4/test/testall.py
|
||||
share/python1.4/test/test_audioop.pyc
|
||||
share/python1.4/test/test_b1.pyc
|
||||
share/python1.4/test/test_b2.pyc
|
||||
share/python1.4/test/test_builtin.pyc
|
||||
share/python1.4/test/test_exceptions.pyc
|
||||
share/python1.4/test/test_grammar.pyc
|
||||
share/python1.4/test/test_math.pyc
|
||||
share/python1.4/test/test_md5.pyc
|
||||
share/python1.4/test/test_opcodes.pyc
|
||||
share/python1.4/test/test_operations.pyc
|
||||
share/python1.4/test/test_pow.pyc
|
||||
share/python1.4/test/test_rgbimg.pyc
|
||||
share/python1.4/test/test_select.pyc
|
||||
share/python1.4/test/test_signal.pyc
|
||||
share/python1.4/test/test_strop.pyc
|
||||
share/python1.4/test/test_support.pyc
|
||||
share/python1.4/test/testall.pyc
|
||||
share/python1.4/test/test_thread.pyc
|
||||
share/python1.4/test/test_types.pyc
|
||||
share/python1.4/freebsd/FCNTL.pyc
|
||||
share/python1.4/freebsd/FCNTL.py
|
||||
share/python1.4/freebsd/IN.pyc
|
||||
share/python1.4/freebsd/IN.py
|
||||
share/python1.4/freebsd/SOCKET.pyc
|
||||
share/python1.4/freebsd/SOCKET.py
|
||||
share/python1.4/freebsd/TERMIOS.pyc
|
||||
share/python1.4/freebsd/TERMIOS.py
|
||||
share/python1.4/freebsd/regen
|
||||
share/python1.4/urllib.py
|
||||
share/python1.4/AST.py
|
||||
share/python1.4/BaseHTTPServer.py
|
||||
share/python1.4/Bastion.py
|
||||
share/python1.4/CGIHTTPServer.py
|
||||
share/python1.4/Complex.py
|
||||
share/python1.4/MimeWriter.py
|
||||
share/python1.4/Para.py
|
||||
share/python1.4/Queue.py
|
||||
share/python1.4/SimpleHTTPServer.py
|
||||
share/python1.4/SocketServer.py
|
||||
share/python1.4/StringIO.py
|
||||
share/python1.4/UserDict.py
|
||||
share/python1.4/UserList.py
|
||||
share/python1.4/addpack.py
|
||||
share/python1.4/aifc.py
|
||||
share/python1.4/anydbm.py
|
||||
share/python1.4/audiodev.py
|
||||
share/python1.4/base64.py
|
||||
share/python1.4/bdb.py
|
||||
share/python1.4/binhex.py
|
||||
share/python1.4/bisect.py
|
||||
share/python1.4/calendar.py
|
||||
share/python1.4/cgi.py
|
||||
share/python1.4/cmd.py
|
||||
share/python1.4/cmp.py
|
||||
share/python1.4/cmpcache.py
|
||||
share/python1.4/codehack.py
|
||||
share/python1.4/colorsys.py
|
||||
share/python1.4/commands.py
|
||||
share/python1.4/compileall.py
|
||||
share/python1.4/copy.py
|
||||
share/python1.4/dbhash.py
|
||||
share/python1.4/dircache.py
|
||||
share/python1.4/dircmp.py
|
||||
share/python1.4/dis.py
|
||||
share/python1.4/dospath.py
|
||||
share/python1.4/dumbdbm.py
|
||||
share/python1.4/dump.py
|
||||
share/python1.4/emacs.py
|
||||
share/python1.4/find.py
|
||||
share/python1.4/fmt.py
|
||||
share/python1.4/fnmatch.py
|
||||
share/python1.4/formatter.py
|
||||
share/python1.4/fpformat.py
|
||||
share/python1.4/ftplib.py
|
||||
share/python1.4/glob.py
|
||||
share/python1.4/getopt.py
|
||||
share/python1.4/gopherlib.py
|
||||
share/python1.4/grep.py
|
||||
share/python1.4/htmlentitydefs.py
|
||||
share/python1.4/htmllib.py
|
||||
share/python1.4/httplib.py
|
||||
share/python1.4/ihooks.py
|
||||
share/python1.4/imghdr.py
|
||||
share/python1.4/linecache.py
|
||||
share/python1.4/lockfile.py
|
||||
share/python1.4/macpath.py
|
||||
share/python1.4/macurl2path.py
|
||||
share/python1.4/mailbox.py
|
||||
share/python1.4/mailcap.py
|
||||
share/python1.4/mhlib.py
|
||||
share/python1.4/mimetools.py
|
||||
share/python1.4/mimify.py
|
||||
share/python1.4/multifile.py
|
||||
share/python1.4/mutex.py
|
||||
share/python1.4/newdir.py
|
||||
share/python1.4/ni.py
|
||||
share/python1.4/nntplib.py
|
||||
share/python1.4/ntpath.py
|
||||
share/python1.4/nturl2path.py
|
||||
share/python1.4/os.py
|
||||
share/python1.4/ospath.py
|
||||
share/python1.4/packmail.py
|
||||
share/python1.4/pdb.py
|
||||
share/python1.4/pickle.py
|
||||
share/python1.4/pipes.py
|
||||
share/python1.4/poly.py
|
||||
share/python1.4/popen2.py
|
||||
share/python1.4/posixfile.py
|
||||
share/python1.4/posixpath.py
|
||||
share/python1.4/profile.py
|
||||
share/python1.4/pstats.py
|
||||
share/python1.4/pty.py
|
||||
share/python1.4/py_compile.py
|
||||
share/python1.4/pyclbr.py
|
||||
share/python1.4/quopri.py
|
||||
share/python1.4/rand.py
|
||||
share/python1.4/random.py
|
||||
share/python1.4/regex_syntax.py
|
||||
share/python1.4/regexp.py
|
||||
share/python1.4/regsub.py
|
||||
share/python1.4/repr.py
|
||||
share/python1.4/rexec.py
|
||||
share/python1.4/rfc822.py
|
||||
share/python1.4/sched.py
|
||||
share/python1.4/sgmllib.py
|
||||
share/python1.4/shelve.py
|
||||
share/python1.4/shutil.py
|
||||
share/python1.4/site.py
|
||||
share/python1.4/sndhdr.py
|
||||
share/python1.4/stat.py
|
||||
share/python1.4/statcache.py
|
||||
share/python1.4/string.py
|
||||
share/python1.4/sunau.py
|
||||
share/python1.4/sunaudio.py
|
||||
share/python1.4/symbol.py
|
||||
share/python1.4/tb.py
|
||||
share/python1.4/tempfile.py
|
||||
share/python1.4/toaiff.py
|
||||
share/python1.4/token.py
|
||||
share/python1.4/tokenize.py
|
||||
share/python1.4/traceback.py
|
||||
share/python1.4/tty.py
|
||||
share/python1.4/types.py
|
||||
share/python1.4/tzparse.py
|
||||
share/python1.4/os.pyc
|
||||
share/python1.4/urlparse.py
|
||||
share/python1.4/util.py
|
||||
share/python1.4/uu.py
|
||||
share/python1.4/wave.py
|
||||
share/python1.4/whatsound.py
|
||||
share/python1.4/whichdb.py
|
||||
share/python1.4/whrandom.py
|
||||
share/python1.4/xdrlib.py
|
||||
share/python1.4/zmod.py
|
||||
share/python1.4/pdb.doc
|
||||
share/python1.4/profile.doc
|
||||
share/python1.4/posixpath.pyc
|
||||
share/python1.4/stat.pyc
|
||||
share/python1.4/UserDict.pyc
|
||||
share/python1.4/py_compile.pyc
|
||||
share/python1.4/getopt.pyc
|
||||
share/python1.4/string.pyc
|
||||
share/python1.4/AST.pyc
|
||||
share/python1.4/BaseHTTPServer.pyc
|
||||
share/python1.4/Bastion.pyc
|
||||
share/python1.4/CGIHTTPServer.pyc
|
||||
share/python1.4/Complex.pyc
|
||||
share/python1.4/MimeWriter.pyc
|
||||
share/python1.4/Para.pyc
|
||||
share/python1.4/Queue.pyc
|
||||
share/python1.4/SimpleHTTPServer.pyc
|
||||
share/python1.4/SocketServer.pyc
|
||||
share/python1.4/StringIO.pyc
|
||||
share/python1.4/UserList.pyc
|
||||
share/python1.4/addpack.pyc
|
||||
share/python1.4/aifc.pyc
|
||||
share/python1.4/anydbm.pyc
|
||||
share/python1.4/audiodev.pyc
|
||||
share/python1.4/base64.pyc
|
||||
share/python1.4/bdb.pyc
|
||||
share/python1.4/binhex.pyc
|
||||
share/python1.4/bisect.pyc
|
||||
share/python1.4/calendar.pyc
|
||||
share/python1.4/cgi.pyc
|
||||
share/python1.4/cmd.pyc
|
||||
share/python1.4/cmp.pyc
|
||||
share/python1.4/cmpcache.pyc
|
||||
share/python1.4/codehack.pyc
|
||||
share/python1.4/colorsys.pyc
|
||||
share/python1.4/commands.pyc
|
||||
share/python1.4/compileall.pyc
|
||||
share/python1.4/copy.pyc
|
||||
share/python1.4/dbhash.pyc
|
||||
share/python1.4/dircache.pyc
|
||||
share/python1.4/dircmp.pyc
|
||||
share/python1.4/dis.pyc
|
||||
share/python1.4/dospath.pyc
|
||||
share/python1.4/dumbdbm.pyc
|
||||
share/python1.4/dump.pyc
|
||||
share/python1.4/emacs.pyc
|
||||
share/python1.4/find.pyc
|
||||
share/python1.4/fmt.pyc
|
||||
share/python1.4/fnmatch.pyc
|
||||
share/python1.4/formatter.pyc
|
||||
share/python1.4/fpformat.pyc
|
||||
share/python1.4/ftplib.pyc
|
||||
share/python1.4/glob.pyc
|
||||
share/python1.4/gopherlib.pyc
|
||||
share/python1.4/grep.pyc
|
||||
share/python1.4/htmlentitydefs.pyc
|
||||
share/python1.4/htmllib.pyc
|
||||
share/python1.4/httplib.pyc
|
||||
share/python1.4/ihooks.pyc
|
||||
share/python1.4/imghdr.pyc
|
||||
share/python1.4/linecache.pyc
|
||||
share/python1.4/lockfile.pyc
|
||||
share/python1.4/macpath.pyc
|
||||
share/python1.4/macurl2path.pyc
|
||||
share/python1.4/mailbox.pyc
|
||||
share/python1.4/mailcap.pyc
|
||||
share/python1.4/mhlib.pyc
|
||||
share/python1.4/mimetools.pyc
|
||||
share/python1.4/mimify.pyc
|
||||
share/python1.4/multifile.pyc
|
||||
share/python1.4/mutex.pyc
|
||||
share/python1.4/newdir.pyc
|
||||
share/python1.4/ni.pyc
|
||||
share/python1.4/nntplib.pyc
|
||||
share/python1.4/ntpath.pyc
|
||||
share/python1.4/nturl2path.pyc
|
||||
share/python1.4/ospath.pyc
|
||||
share/python1.4/packmail.pyc
|
||||
share/python1.4/pdb.pyc
|
||||
share/python1.4/pickle.pyc
|
||||
share/python1.4/pipes.pyc
|
||||
share/python1.4/poly.pyc
|
||||
share/python1.4/popen2.pyc
|
||||
share/python1.4/posixfile.pyc
|
||||
share/python1.4/profile.pyc
|
||||
share/python1.4/pstats.pyc
|
||||
share/python1.4/pty.pyc
|
||||
share/python1.4/pyclbr.pyc
|
||||
share/python1.4/quopri.pyc
|
||||
share/python1.4/rand.pyc
|
||||
share/python1.4/random.pyc
|
||||
share/python1.4/regex_syntax.pyc
|
||||
share/python1.4/regexp.pyc
|
||||
share/python1.4/regsub.pyc
|
||||
share/python1.4/repr.pyc
|
||||
share/python1.4/rexec.pyc
|
||||
share/python1.4/rfc822.pyc
|
||||
share/python1.4/sched.pyc
|
||||
share/python1.4/sgmllib.pyc
|
||||
share/python1.4/shelve.pyc
|
||||
share/python1.4/shutil.pyc
|
||||
share/python1.4/site.pyc
|
||||
share/python1.4/sndhdr.pyc
|
||||
share/python1.4/statcache.pyc
|
||||
share/python1.4/sunau.pyc
|
||||
share/python1.4/sunaudio.pyc
|
||||
share/python1.4/symbol.pyc
|
||||
share/python1.4/tb.pyc
|
||||
share/python1.4/tempfile.pyc
|
||||
share/python1.4/toaiff.pyc
|
||||
share/python1.4/token.pyc
|
||||
share/python1.4/tokenize.pyc
|
||||
share/python1.4/traceback.pyc
|
||||
share/python1.4/tty.pyc
|
||||
share/python1.4/types.pyc
|
||||
share/python1.4/tzparse.pyc
|
||||
share/python1.4/urllib.pyc
|
||||
share/python1.4/urlparse.pyc
|
||||
share/python1.4/uu.pyc
|
||||
share/python1.4/util.pyc
|
||||
share/python1.4/wave.pyc
|
||||
share/python1.4/whatsound.pyc
|
||||
share/python1.4/whichdb.pyc
|
||||
share/python1.4/whrandom.pyc
|
||||
share/python1.4/xdrlib.pyc
|
||||
share/python1.4/zmod.pyc
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# Date created: 08 August 1995
|
||||
# Whom: jkh
|
||||
#
|
||||
# $Id: Makefile,v 1.12 1997/02/21 14:57:01 tg Exp $
|
||||
# $Id: Makefile,v 1.13 1997/04/20 13:19:11 wosch Exp $
|
||||
#
|
||||
|
||||
DISTNAME= python1.4
|
||||
|
@ -13,12 +13,10 @@ MASTER_SITES= ftp://www.python.org/pub/python/src/ \
|
|||
ftp://ftp.cwi.nl/pub/python/src/ \
|
||||
ftp://www.python.org/pub/python/contrib/Graphics/Tkinter/ \
|
||||
ftp://ftp.cwi.nl/pub/python/contrib/Graphics/Tkinter/
|
||||
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} PyTix-1.12.tar.gz
|
||||
|
||||
MAINTAINER= tg@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= tk41\\.1\\.:${PORTSDIR}/x11/tk41 \
|
||||
tix4175\\.1\\.:${PORTSDIR}/x11/tix
|
||||
LIB_DEPENDS= tk41\\.1\\.:${PORTSDIR}/x11/tk41
|
||||
|
||||
WRKSRC= ${WRKDIR}/Python-1.4
|
||||
HAS_CONFIGURE= yes
|
||||
|
@ -27,14 +25,6 @@ MAKE_FLAGS+= 'OPT=${CFLAGS}'
|
|||
INSTALL_TARGET= install
|
||||
MAN1= python.1
|
||||
|
||||
PYTIXSRC= ${WRKDIR}/PyTix-1.12
|
||||
|
||||
post-extract:
|
||||
@${ECHO_MSG} "===> Add PyTix extensions to Python core"
|
||||
${CP} ${PYTIXSRC}/Tkinter.py ${WRKSRC}/Lib/tkinter
|
||||
${CP} ${PYTIXSRC}/Tix.py ${WRKSRC}/Lib/tkinter
|
||||
${CP} ${PYTIXSRC}/_tkinter.c ${WRKSRC}/Modules
|
||||
|
||||
post-configure:
|
||||
${CP} ${FILESDIR}/Setup ${WRKSRC}/Modules
|
||||
|
||||
|
|
|
@ -71,7 +71,7 @@ SITEPATH=:$(DESTLIB)/NumPy
|
|||
TESTPATH=:$(DESTLIB)/test
|
||||
|
||||
# Path for machine- or system-dependent modules (and shared libraries)
|
||||
MACHDEPPATH=:$(DESTLIB)/$(MACHDEP)
|
||||
MACHDEPPATH=:$(DESTLIB)/$(MACHDEP):$(MACHDESTLIB)/sharedmodules
|
||||
|
||||
COREPYTHONPATH=.$(SITEPATH)$(DESTPATH)$(TESTPATH)$(MACHDEPPATH)$(STDWINPATH)$(TKPATH)
|
||||
PYTHONPATH=$(COREPYTHONPATH)
|
||||
|
@ -128,6 +128,7 @@ select selectmodule.c # select(2); not on ancient System V
|
|||
socket socketmodule.c # socket(2); not on ancient System V
|
||||
errno errnomodule.c # posix (UNIX) errno values
|
||||
|
||||
*shared*
|
||||
|
||||
# Some more UNIX dependent modules -- off by default, since these
|
||||
# are not supported by all UNIX systems:
|
||||
|
@ -249,7 +250,7 @@ TKPATH=:$(DESTLIB)/tkinter
|
|||
#_tkinter _tkinter.c -I/usr/openwin/include -I/usr/local/include -L/usr/openwin/lib -L/usr/local/lib -ltk4.1 -ltcl7.5 -lX11
|
||||
# For generic system (may have to add -I/-L options to find X11):
|
||||
#_tkinter _tkinter.c -I/usr/local/include -L/usr/local/lib -ltk4.1 -ltcl7.5 -lX11
|
||||
_tkinter _tkinter.c -I/usr/local/include -I/usr/X11R6/include -L/usr/local/lib -L/usr/X11R6/lib -ltix4175 -ltk41 -ltcl75 -lX11
|
||||
_tkinter _tkinter.c -I/usr/local/include -I/usr/X11R6/include -L/usr/local/lib -L/usr/X11R6/lib -ltk41 -ltcl75 -lX11
|
||||
|
||||
|
||||
# Lance Ellinghaus's modules:
|
||||
|
|
|
@ -1,11 +1,7 @@
|
|||
--- Makefile.in.orig Fri Oct 25 16:37:32 1996
|
||||
+++ Makefile.in Thu Feb 6 12:02:11 1997
|
||||
@@ -95,10 +95,10 @@
|
||||
|
||||
# Expanded directories
|
||||
BINDIR= $(exec_prefix)/bin
|
||||
-LIBDIR= $(exec_prefix)/lib
|
||||
+LIBDIR= $(exec_prefix)/share
|
||||
+++ Makefile.in Mon May 12 21:04:38 1997
|
||||
@@ -98,7 +98,7 @@
|
||||
LIBDIR= $(exec_prefix)/lib
|
||||
MANDIR= $(prefix)/man
|
||||
INCLUDEDIR= $(prefix)/include
|
||||
-SCRIPTDIR= $(prefix)/lib
|
||||
|
|
|
@ -1,403 +1,5 @@
|
|||
bin/python1.4
|
||||
bin/python
|
||||
@exec mkdir -p %D/share/python1.4/sharedmodules
|
||||
@unexec rmdir %D/share/python1.4/sharedmodules
|
||||
share/python1.4/AST.py
|
||||
share/python1.4/AST.pyc
|
||||
share/python1.4/BaseHTTPServer.py
|
||||
share/python1.4/BaseHTTPServer.pyc
|
||||
share/python1.4/Bastion.py
|
||||
share/python1.4/Bastion.pyc
|
||||
share/python1.4/CGIHTTPServer.py
|
||||
share/python1.4/CGIHTTPServer.pyc
|
||||
share/python1.4/Complex.py
|
||||
share/python1.4/Complex.pyc
|
||||
share/python1.4/MimeWriter.py
|
||||
share/python1.4/MimeWriter.pyc
|
||||
share/python1.4/Para.py
|
||||
share/python1.4/Para.pyc
|
||||
share/python1.4/Queue.py
|
||||
share/python1.4/Queue.pyc
|
||||
share/python1.4/SimpleHTTPServer.py
|
||||
share/python1.4/SimpleHTTPServer.pyc
|
||||
share/python1.4/SocketServer.py
|
||||
share/python1.4/SocketServer.pyc
|
||||
share/python1.4/StringIO.py
|
||||
share/python1.4/StringIO.pyc
|
||||
share/python1.4/UserDict.py
|
||||
share/python1.4/UserDict.pyc
|
||||
share/python1.4/UserList.py
|
||||
share/python1.4/UserList.pyc
|
||||
share/python1.4/addpack.py
|
||||
share/python1.4/addpack.pyc
|
||||
share/python1.4/aifc.py
|
||||
share/python1.4/aifc.pyc
|
||||
share/python1.4/anydbm.py
|
||||
share/python1.4/anydbm.pyc
|
||||
share/python1.4/audiodev.py
|
||||
share/python1.4/audiodev.pyc
|
||||
share/python1.4/base64.py
|
||||
share/python1.4/base64.pyc
|
||||
share/python1.4/bdb.py
|
||||
share/python1.4/bdb.pyc
|
||||
share/python1.4/binhex.py
|
||||
share/python1.4/binhex.pyc
|
||||
share/python1.4/bisect.py
|
||||
share/python1.4/bisect.pyc
|
||||
share/python1.4/calendar.py
|
||||
share/python1.4/calendar.pyc
|
||||
share/python1.4/cgi.py
|
||||
share/python1.4/cgi.pyc
|
||||
share/python1.4/cmd.py
|
||||
share/python1.4/cmd.pyc
|
||||
share/python1.4/cmp.py
|
||||
share/python1.4/cmp.pyc
|
||||
share/python1.4/cmpcache.py
|
||||
share/python1.4/cmpcache.pyc
|
||||
share/python1.4/codehack.py
|
||||
share/python1.4/codehack.pyc
|
||||
share/python1.4/colorsys.py
|
||||
share/python1.4/colorsys.pyc
|
||||
share/python1.4/commands.py
|
||||
share/python1.4/commands.pyc
|
||||
share/python1.4/compileall.py
|
||||
share/python1.4/compileall.pyc
|
||||
share/python1.4/copy.py
|
||||
share/python1.4/copy.pyc
|
||||
share/python1.4/dbhash.py
|
||||
share/python1.4/dbhash.pyc
|
||||
share/python1.4/dircache.py
|
||||
share/python1.4/dircache.pyc
|
||||
share/python1.4/dircmp.py
|
||||
share/python1.4/dircmp.pyc
|
||||
share/python1.4/dis.py
|
||||
share/python1.4/dis.pyc
|
||||
share/python1.4/dospath.py
|
||||
share/python1.4/dospath.pyc
|
||||
share/python1.4/dumbdbm.py
|
||||
share/python1.4/dumbdbm.pyc
|
||||
share/python1.4/dump.py
|
||||
share/python1.4/dump.pyc
|
||||
share/python1.4/emacs.py
|
||||
share/python1.4/emacs.pyc
|
||||
share/python1.4/find.py
|
||||
share/python1.4/find.pyc
|
||||
share/python1.4/fmt.py
|
||||
share/python1.4/fmt.pyc
|
||||
share/python1.4/fnmatch.py
|
||||
share/python1.4/fnmatch.pyc
|
||||
share/python1.4/formatter.py
|
||||
share/python1.4/formatter.pyc
|
||||
share/python1.4/fpformat.py
|
||||
share/python1.4/fpformat.pyc
|
||||
share/python1.4/ftplib.py
|
||||
share/python1.4/ftplib.pyc
|
||||
share/python1.4/getopt.py
|
||||
share/python1.4/getopt.pyc
|
||||
share/python1.4/glob.py
|
||||
share/python1.4/glob.pyc
|
||||
share/python1.4/gopherlib.py
|
||||
share/python1.4/gopherlib.pyc
|
||||
share/python1.4/grep.py
|
||||
share/python1.4/grep.pyc
|
||||
share/python1.4/htmlentitydefs.py
|
||||
share/python1.4/htmlentitydefs.pyc
|
||||
share/python1.4/htmllib.py
|
||||
share/python1.4/htmllib.pyc
|
||||
share/python1.4/httplib.py
|
||||
share/python1.4/httplib.pyc
|
||||
share/python1.4/ihooks.py
|
||||
share/python1.4/ihooks.pyc
|
||||
share/python1.4/imghdr.py
|
||||
share/python1.4/imghdr.pyc
|
||||
share/python1.4/linecache.py
|
||||
share/python1.4/linecache.pyc
|
||||
share/python1.4/lockfile.py
|
||||
share/python1.4/lockfile.pyc
|
||||
share/python1.4/macpath.py
|
||||
share/python1.4/macpath.pyc
|
||||
share/python1.4/macurl2path.py
|
||||
share/python1.4/macurl2path.pyc
|
||||
share/python1.4/mailbox.py
|
||||
share/python1.4/mailbox.pyc
|
||||
share/python1.4/mailcap.py
|
||||
share/python1.4/mailcap.pyc
|
||||
share/python1.4/mhlib.py
|
||||
share/python1.4/mhlib.pyc
|
||||
share/python1.4/mimetools.py
|
||||
share/python1.4/mimetools.pyc
|
||||
share/python1.4/mimify.py
|
||||
share/python1.4/mimify.pyc
|
||||
share/python1.4/multifile.py
|
||||
share/python1.4/multifile.pyc
|
||||
share/python1.4/mutex.py
|
||||
share/python1.4/mutex.pyc
|
||||
share/python1.4/newdir.py
|
||||
share/python1.4/newdir.pyc
|
||||
share/python1.4/ni.py
|
||||
share/python1.4/ni.pyc
|
||||
share/python1.4/nntplib.py
|
||||
share/python1.4/nntplib.pyc
|
||||
share/python1.4/ntpath.py
|
||||
share/python1.4/ntpath.pyc
|
||||
share/python1.4/nturl2path.py
|
||||
share/python1.4/nturl2path.pyc
|
||||
share/python1.4/os.py
|
||||
share/python1.4/os.pyc
|
||||
share/python1.4/ospath.py
|
||||
share/python1.4/ospath.pyc
|
||||
share/python1.4/packmail.py
|
||||
share/python1.4/packmail.pyc
|
||||
share/python1.4/pdb.doc
|
||||
share/python1.4/pdb.py
|
||||
share/python1.4/pdb.pyc
|
||||
share/python1.4/pickle.py
|
||||
share/python1.4/pickle.pyc
|
||||
share/python1.4/pipes.py
|
||||
share/python1.4/pipes.pyc
|
||||
share/python1.4/poly.py
|
||||
share/python1.4/poly.pyc
|
||||
share/python1.4/popen2.py
|
||||
share/python1.4/popen2.pyc
|
||||
share/python1.4/posixfile.py
|
||||
share/python1.4/posixfile.pyc
|
||||
share/python1.4/posixpath.py
|
||||
share/python1.4/posixpath.pyc
|
||||
share/python1.4/profile.doc
|
||||
share/python1.4/profile.py
|
||||
share/python1.4/profile.pyc
|
||||
share/python1.4/pstats.py
|
||||
share/python1.4/pstats.pyc
|
||||
share/python1.4/pty.py
|
||||
share/python1.4/pty.pyc
|
||||
share/python1.4/py_compile.py
|
||||
share/python1.4/py_compile.pyc
|
||||
share/python1.4/pyclbr.py
|
||||
share/python1.4/pyclbr.pyc
|
||||
share/python1.4/quopri.py
|
||||
share/python1.4/quopri.pyc
|
||||
share/python1.4/rand.py
|
||||
share/python1.4/rand.pyc
|
||||
share/python1.4/random.py
|
||||
share/python1.4/random.pyc
|
||||
share/python1.4/regex_syntax.py
|
||||
share/python1.4/regex_syntax.pyc
|
||||
share/python1.4/regexp.py
|
||||
share/python1.4/regexp.pyc
|
||||
share/python1.4/regsub.py
|
||||
share/python1.4/regsub.pyc
|
||||
share/python1.4/repr.py
|
||||
share/python1.4/repr.pyc
|
||||
share/python1.4/rexec.py
|
||||
share/python1.4/rexec.pyc
|
||||
share/python1.4/rfc822.py
|
||||
share/python1.4/rfc822.pyc
|
||||
share/python1.4/sched.py
|
||||
share/python1.4/sched.pyc
|
||||
share/python1.4/sgmllib.py
|
||||
share/python1.4/sgmllib.pyc
|
||||
share/python1.4/shelve.py
|
||||
share/python1.4/shelve.pyc
|
||||
share/python1.4/shutil.py
|
||||
share/python1.4/shutil.pyc
|
||||
share/python1.4/site.py
|
||||
share/python1.4/site.pyc
|
||||
share/python1.4/sndhdr.py
|
||||
share/python1.4/sndhdr.pyc
|
||||
share/python1.4/stat.py
|
||||
share/python1.4/stat.pyc
|
||||
share/python1.4/statcache.py
|
||||
share/python1.4/statcache.pyc
|
||||
share/python1.4/string.py
|
||||
share/python1.4/string.pyc
|
||||
share/python1.4/sunau.py
|
||||
share/python1.4/sunau.pyc
|
||||
share/python1.4/sunaudio.py
|
||||
share/python1.4/sunaudio.pyc
|
||||
share/python1.4/symbol.py
|
||||
share/python1.4/symbol.pyc
|
||||
share/python1.4/tb.py
|
||||
share/python1.4/tb.pyc
|
||||
share/python1.4/tempfile.py
|
||||
share/python1.4/tempfile.pyc
|
||||
share/python1.4/toaiff.py
|
||||
share/python1.4/toaiff.pyc
|
||||
share/python1.4/token.py
|
||||
share/python1.4/token.pyc
|
||||
share/python1.4/tokenize.py
|
||||
share/python1.4/tokenize.pyc
|
||||
share/python1.4/traceback.py
|
||||
share/python1.4/traceback.pyc
|
||||
share/python1.4/tty.py
|
||||
share/python1.4/tty.pyc
|
||||
share/python1.4/types.py
|
||||
share/python1.4/types.pyc
|
||||
share/python1.4/tzparse.py
|
||||
share/python1.4/tzparse.pyc
|
||||
share/python1.4/urllib.py
|
||||
share/python1.4/urllib.pyc
|
||||
share/python1.4/urlparse.py
|
||||
share/python1.4/urlparse.pyc
|
||||
share/python1.4/util.py
|
||||
share/python1.4/util.pyc
|
||||
share/python1.4/uu.py
|
||||
share/python1.4/uu.pyc
|
||||
share/python1.4/wave.py
|
||||
share/python1.4/wave.pyc
|
||||
share/python1.4/whatsound.py
|
||||
share/python1.4/whatsound.pyc
|
||||
share/python1.4/whichdb.py
|
||||
share/python1.4/whichdb.pyc
|
||||
share/python1.4/whrandom.py
|
||||
share/python1.4/whrandom.pyc
|
||||
share/python1.4/xdrlib.py
|
||||
share/python1.4/xdrlib.pyc
|
||||
share/python1.4/zmod.py
|
||||
share/python1.4/zmod.pyc
|
||||
share/python1.4/config/Makefile
|
||||
share/python1.4/config/Setup
|
||||
share/python1.4/config/config.c
|
||||
share/python1.4/config/config.c.in
|
||||
share/python1.4/config/config.h
|
||||
share/python1.4/config/frozenmain.c
|
||||
share/python1.4/config/getpath.c
|
||||
share/python1.4/config/libModules.a
|
||||
share/python1.4/config/libObjects.a
|
||||
share/python1.4/config/libParser.a
|
||||
share/python1.4/config/libPython.a
|
||||
share/python1.4/config/main.o
|
||||
share/python1.4/config/makesetup
|
||||
share/python1.4/freebsd2/FCNTL.py
|
||||
share/python1.4/freebsd2/FCNTL.pyc
|
||||
share/python1.4/freebsd2/regen
|
||||
share/python1.4/stdwin/Abstract.py
|
||||
share/python1.4/stdwin/Abstract.pyc
|
||||
share/python1.4/stdwin/BoxParent.py
|
||||
share/python1.4/stdwin/BoxParent.pyc
|
||||
share/python1.4/stdwin/Buttons.py
|
||||
share/python1.4/stdwin/Buttons.pyc
|
||||
share/python1.4/stdwin/CSplit.py
|
||||
share/python1.4/stdwin/CSplit.pyc
|
||||
share/python1.4/stdwin/DirList.py
|
||||
share/python1.4/stdwin/DirList.pyc
|
||||
share/python1.4/stdwin/FormSplit.py
|
||||
share/python1.4/stdwin/FormSplit.pyc
|
||||
share/python1.4/stdwin/HVSplit.py
|
||||
share/python1.4/stdwin/HVSplit.pyc
|
||||
share/python1.4/stdwin/Histogram.py
|
||||
share/python1.4/stdwin/Histogram.pyc
|
||||
share/python1.4/stdwin/Sliders.py
|
||||
share/python1.4/stdwin/Sliders.pyc
|
||||
share/python1.4/stdwin/Soundogram.py
|
||||
share/python1.4/stdwin/Soundogram.pyc
|
||||
share/python1.4/stdwin/Split.py
|
||||
share/python1.4/stdwin/Split.pyc
|
||||
share/python1.4/stdwin/StripChart.py
|
||||
share/python1.4/stdwin/StripChart.pyc
|
||||
share/python1.4/stdwin/TextEdit.py
|
||||
share/python1.4/stdwin/TextEdit.pyc
|
||||
share/python1.4/stdwin/TransParent.py
|
||||
share/python1.4/stdwin/TransParent.pyc
|
||||
share/python1.4/stdwin/VUMeter.py
|
||||
share/python1.4/stdwin/VUMeter.pyc
|
||||
share/python1.4/stdwin/WindowParent.py
|
||||
share/python1.4/stdwin/WindowParent.pyc
|
||||
share/python1.4/stdwin/WindowSched.py
|
||||
share/python1.4/stdwin/WindowSched.pyc
|
||||
share/python1.4/stdwin/anywin.py
|
||||
share/python1.4/stdwin/anywin.pyc
|
||||
share/python1.4/stdwin/basewin.py
|
||||
share/python1.4/stdwin/basewin.pyc
|
||||
share/python1.4/stdwin/dirwin.py
|
||||
share/python1.4/stdwin/dirwin.pyc
|
||||
share/python1.4/stdwin/filewin.py
|
||||
share/python1.4/stdwin/filewin.pyc
|
||||
share/python1.4/stdwin/formatter.py
|
||||
share/python1.4/stdwin/formatter.pyc
|
||||
share/python1.4/stdwin/gwin.py
|
||||
share/python1.4/stdwin/gwin.pyc
|
||||
share/python1.4/stdwin/listwin.py
|
||||
share/python1.4/stdwin/listwin.pyc
|
||||
share/python1.4/stdwin/mainloop.py
|
||||
share/python1.4/stdwin/mainloop.pyc
|
||||
share/python1.4/stdwin/rect.py
|
||||
share/python1.4/stdwin/rect.pyc
|
||||
share/python1.4/stdwin/srcwin.py
|
||||
share/python1.4/stdwin/srcwin.pyc
|
||||
share/python1.4/stdwin/stdwinevents.py
|
||||
share/python1.4/stdwin/stdwinevents.pyc
|
||||
share/python1.4/stdwin/stdwinq.py
|
||||
share/python1.4/stdwin/stdwinq.pyc
|
||||
share/python1.4/stdwin/tablewin.py
|
||||
share/python1.4/stdwin/tablewin.pyc
|
||||
share/python1.4/stdwin/textwin.py
|
||||
share/python1.4/stdwin/textwin.pyc
|
||||
share/python1.4/stdwin/wdb.py
|
||||
share/python1.4/stdwin/wdb.pyc
|
||||
share/python1.4/stdwin/wdbframewin.py
|
||||
share/python1.4/stdwin/wdbframewin.pyc
|
||||
share/python1.4/stdwin/wdbsrcwin.py
|
||||
share/python1.4/stdwin/wdbsrcwin.pyc
|
||||
share/python1.4/test/autotest.py
|
||||
share/python1.4/test/autotest.pyc
|
||||
share/python1.4/test/test.rawimg
|
||||
share/python1.4/test/test.rawimg.rev
|
||||
share/python1.4/test/test.rgb
|
||||
share/python1.4/test/test_audioop.py
|
||||
share/python1.4/test/test_audioop.pyc
|
||||
share/python1.4/test/test_b1.py
|
||||
share/python1.4/test/test_b1.pyc
|
||||
share/python1.4/test/test_b2.py
|
||||
share/python1.4/test/test_b2.pyc
|
||||
share/python1.4/test/test_builtin.py
|
||||
share/python1.4/test/test_builtin.pyc
|
||||
share/python1.4/test/test_exceptions.py
|
||||
share/python1.4/test/test_exceptions.pyc
|
||||
share/python1.4/test/test_grammar.py
|
||||
share/python1.4/test/test_grammar.pyc
|
||||
share/python1.4/test/test_math.py
|
||||
share/python1.4/test/test_math.pyc
|
||||
share/python1.4/test/test_md5.py
|
||||
share/python1.4/test/test_md5.pyc
|
||||
share/python1.4/test/test_opcodes.py
|
||||
share/python1.4/test/test_opcodes.pyc
|
||||
share/python1.4/test/test_operations.py
|
||||
share/python1.4/test/test_operations.pyc
|
||||
share/python1.4/test/test_pow.py
|
||||
share/python1.4/test/test_pow.pyc
|
||||
share/python1.4/test/test_rgbimg.py
|
||||
share/python1.4/test/test_rgbimg.pyc
|
||||
share/python1.4/test/test_select.py
|
||||
share/python1.4/test/test_select.pyc
|
||||
share/python1.4/test/test_signal.py
|
||||
share/python1.4/test/test_signal.pyc
|
||||
share/python1.4/test/test_strop.py
|
||||
share/python1.4/test/test_strop.pyc
|
||||
share/python1.4/test/test_support.py
|
||||
share/python1.4/test/test_support.pyc
|
||||
share/python1.4/test/test_thread.py
|
||||
share/python1.4/test/test_thread.pyc
|
||||
share/python1.4/test/test_types.py
|
||||
share/python1.4/test/test_types.pyc
|
||||
share/python1.4/test/testall.out
|
||||
share/python1.4/test/testall.py
|
||||
share/python1.4/test/testall.pyc
|
||||
share/python1.4/tkinter/Canvas.py
|
||||
share/python1.4/tkinter/Canvas.pyc
|
||||
share/python1.4/tkinter/Dialog.py
|
||||
share/python1.4/tkinter/Dialog.pyc
|
||||
share/python1.4/tkinter/FileDialog.py
|
||||
share/python1.4/tkinter/FileDialog.pyc
|
||||
share/python1.4/tkinter/ScrolledText.py
|
||||
share/python1.4/tkinter/ScrolledText.pyc
|
||||
share/python1.4/tkinter/SimpleDialog.py
|
||||
share/python1.4/tkinter/SimpleDialog.pyc
|
||||
share/python1.4/tkinter/Tix.py
|
||||
share/python1.4/tkinter/Tix.pyc
|
||||
share/python1.4/tkinter/Tkconstants.py
|
||||
share/python1.4/tkinter/Tkconstants.pyc
|
||||
share/python1.4/tkinter/Tkinter.py
|
||||
share/python1.4/tkinter/Tkinter.pyc
|
||||
include/python1.4/Python.h
|
||||
include/python1.4/abstract.h
|
||||
include/python1.4/accessobject.h
|
||||
|
@ -459,4 +61,417 @@ include/python1.4/thread.h
|
|||
include/python1.4/token.h
|
||||
include/python1.4/traceback.h
|
||||
include/python1.4/tupleobject.h
|
||||
lib/python1.4/config/libParser.a
|
||||
lib/python1.4/config/libObjects.a
|
||||
lib/python1.4/config/libPython.a
|
||||
lib/python1.4/config/libModules.a
|
||||
lib/python1.4/config/config.c
|
||||
lib/python1.4/config/getpath.c
|
||||
lib/python1.4/config/config.c.in
|
||||
lib/python1.4/config/Makefile
|
||||
lib/python1.4/config/Setup
|
||||
lib/python1.4/config/makesetup
|
||||
lib/python1.4/config/config.h
|
||||
lib/python1.4/config/frozenmain.c
|
||||
lib/python1.4/config/main.o
|
||||
lib/python1.4/sharedmodules/dbmmodule.so
|
||||
lib/python1.4/sharedmodules/nismodule.so
|
||||
lib/python1.4/sharedmodules/termios.so
|
||||
lib/python1.4/sharedmodules/audioop.so
|
||||
lib/python1.4/sharedmodules/imageop.so
|
||||
lib/python1.4/sharedmodules/rgbimgmodule.so
|
||||
lib/python1.4/sharedmodules/md5module.so
|
||||
lib/python1.4/sharedmodules/_tkinter.so
|
||||
lib/python1.4/sharedmodules/rotormodule.so
|
||||
lib/python1.4/sharedmodules/syslogmodule.so
|
||||
lib/python1.4/sharedmodules/cursesmodule.so
|
||||
lib/python1.4/sharedmodules/bsddbmodule.so
|
||||
lib/python1.4/sharedmodules/binascii.so
|
||||
man/man1/python.1.gz
|
||||
share/python1.4/stdwin/Abstract.pyc
|
||||
share/python1.4/stdwin/Abstract.py
|
||||
share/python1.4/stdwin/BoxParent.py
|
||||
share/python1.4/stdwin/Buttons.py
|
||||
share/python1.4/stdwin/CSplit.py
|
||||
share/python1.4/stdwin/DirList.py
|
||||
share/python1.4/stdwin/FormSplit.py
|
||||
share/python1.4/stdwin/HVSplit.py
|
||||
share/python1.4/stdwin/Histogram.py
|
||||
share/python1.4/stdwin/Sliders.py
|
||||
share/python1.4/stdwin/Soundogram.py
|
||||
share/python1.4/stdwin/Split.py
|
||||
share/python1.4/stdwin/StripChart.py
|
||||
share/python1.4/stdwin/TextEdit.py
|
||||
share/python1.4/stdwin/TransParent.py
|
||||
share/python1.4/stdwin/VUMeter.py
|
||||
share/python1.4/stdwin/WindowParent.py
|
||||
share/python1.4/stdwin/WindowSched.py
|
||||
share/python1.4/stdwin/anywin.py
|
||||
share/python1.4/stdwin/basewin.py
|
||||
share/python1.4/stdwin/dirwin.py
|
||||
share/python1.4/stdwin/filewin.py
|
||||
share/python1.4/stdwin/formatter.py
|
||||
share/python1.4/stdwin/gwin.py
|
||||
share/python1.4/stdwin/listwin.py
|
||||
share/python1.4/stdwin/mainloop.py
|
||||
share/python1.4/stdwin/rect.py
|
||||
share/python1.4/stdwin/srcwin.py
|
||||
share/python1.4/stdwin/stdwinevents.py
|
||||
share/python1.4/stdwin/stdwinq.py
|
||||
share/python1.4/stdwin/tablewin.py
|
||||
share/python1.4/stdwin/textwin.py
|
||||
share/python1.4/stdwin/wdb.py
|
||||
share/python1.4/stdwin/wdbframewin.py
|
||||
share/python1.4/stdwin/wdbsrcwin.py
|
||||
share/python1.4/stdwin/BoxParent.pyc
|
||||
share/python1.4/stdwin/Buttons.pyc
|
||||
share/python1.4/stdwin/CSplit.pyc
|
||||
share/python1.4/stdwin/DirList.pyc
|
||||
share/python1.4/stdwin/FormSplit.pyc
|
||||
share/python1.4/stdwin/HVSplit.pyc
|
||||
share/python1.4/stdwin/Histogram.pyc
|
||||
share/python1.4/stdwin/Sliders.pyc
|
||||
share/python1.4/stdwin/Soundogram.pyc
|
||||
share/python1.4/stdwin/Split.pyc
|
||||
share/python1.4/stdwin/StripChart.pyc
|
||||
share/python1.4/stdwin/TextEdit.pyc
|
||||
share/python1.4/stdwin/TransParent.pyc
|
||||
share/python1.4/stdwin/VUMeter.pyc
|
||||
share/python1.4/stdwin/WindowParent.pyc
|
||||
share/python1.4/stdwin/WindowSched.pyc
|
||||
share/python1.4/stdwin/anywin.pyc
|
||||
share/python1.4/stdwin/basewin.pyc
|
||||
share/python1.4/stdwin/dirwin.pyc
|
||||
share/python1.4/stdwin/filewin.pyc
|
||||
share/python1.4/stdwin/formatter.pyc
|
||||
share/python1.4/stdwin/gwin.pyc
|
||||
share/python1.4/stdwin/listwin.pyc
|
||||
share/python1.4/stdwin/mainloop.pyc
|
||||
share/python1.4/stdwin/rect.pyc
|
||||
share/python1.4/stdwin/srcwin.pyc
|
||||
share/python1.4/stdwin/stdwinevents.pyc
|
||||
share/python1.4/stdwin/stdwinq.pyc
|
||||
share/python1.4/stdwin/tablewin.pyc
|
||||
share/python1.4/stdwin/textwin.pyc
|
||||
share/python1.4/stdwin/wdb.pyc
|
||||
share/python1.4/stdwin/wdbframewin.pyc
|
||||
share/python1.4/stdwin/wdbsrcwin.pyc
|
||||
share/python1.4/tkinter/Canvas.pyc
|
||||
share/python1.4/tkinter/Canvas.py
|
||||
share/python1.4/tkinter/Dialog.py
|
||||
share/python1.4/tkinter/FileDialog.py
|
||||
share/python1.4/tkinter/ScrolledText.py
|
||||
share/python1.4/tkinter/SimpleDialog.py
|
||||
share/python1.4/tkinter/Tkconstants.py
|
||||
share/python1.4/tkinter/Tkinter.py
|
||||
share/python1.4/tkinter/Dialog.pyc
|
||||
share/python1.4/tkinter/FileDialog.pyc
|
||||
share/python1.4/tkinter/ScrolledText.pyc
|
||||
share/python1.4/tkinter/SimpleDialog.pyc
|
||||
share/python1.4/tkinter/Tkconstants.pyc
|
||||
share/python1.4/tkinter/Tkinter.pyc
|
||||
share/python1.4/test/autotest.pyc
|
||||
share/python1.4/test/autotest.py
|
||||
share/python1.4/test/test.rawimg
|
||||
share/python1.4/test/test.rawimg.rev
|
||||
share/python1.4/test/test.rgb
|
||||
share/python1.4/test/test_audioop.py
|
||||
share/python1.4/test/test_b1.py
|
||||
share/python1.4/test/test_b2.py
|
||||
share/python1.4/test/test_builtin.py
|
||||
share/python1.4/test/test_exceptions.py
|
||||
share/python1.4/test/test_grammar.py
|
||||
share/python1.4/test/test_math.py
|
||||
share/python1.4/test/test_md5.py
|
||||
share/python1.4/test/test_opcodes.py
|
||||
share/python1.4/test/test_operations.py
|
||||
share/python1.4/test/test_pow.py
|
||||
share/python1.4/test/test_rgbimg.py
|
||||
share/python1.4/test/test_select.py
|
||||
share/python1.4/test/test_signal.py
|
||||
share/python1.4/test/test_strop.py
|
||||
share/python1.4/test/test_support.py
|
||||
share/python1.4/test/test_thread.py
|
||||
share/python1.4/test/test_types.py
|
||||
share/python1.4/test/testall.out
|
||||
share/python1.4/test/testall.py
|
||||
share/python1.4/test/test_audioop.pyc
|
||||
share/python1.4/test/test_b1.pyc
|
||||
share/python1.4/test/test_b2.pyc
|
||||
share/python1.4/test/test_builtin.pyc
|
||||
share/python1.4/test/test_exceptions.pyc
|
||||
share/python1.4/test/test_grammar.pyc
|
||||
share/python1.4/test/test_math.pyc
|
||||
share/python1.4/test/test_md5.pyc
|
||||
share/python1.4/test/test_opcodes.pyc
|
||||
share/python1.4/test/test_operations.pyc
|
||||
share/python1.4/test/test_pow.pyc
|
||||
share/python1.4/test/test_rgbimg.pyc
|
||||
share/python1.4/test/test_select.pyc
|
||||
share/python1.4/test/test_signal.pyc
|
||||
share/python1.4/test/test_strop.pyc
|
||||
share/python1.4/test/test_support.pyc
|
||||
share/python1.4/test/testall.pyc
|
||||
share/python1.4/test/test_thread.pyc
|
||||
share/python1.4/test/test_types.pyc
|
||||
share/python1.4/freebsd/FCNTL.pyc
|
||||
share/python1.4/freebsd/FCNTL.py
|
||||
share/python1.4/freebsd/IN.pyc
|
||||
share/python1.4/freebsd/IN.py
|
||||
share/python1.4/freebsd/SOCKET.pyc
|
||||
share/python1.4/freebsd/SOCKET.py
|
||||
share/python1.4/freebsd/TERMIOS.pyc
|
||||
share/python1.4/freebsd/TERMIOS.py
|
||||
share/python1.4/freebsd/regen
|
||||
share/python1.4/urllib.py
|
||||
share/python1.4/AST.py
|
||||
share/python1.4/BaseHTTPServer.py
|
||||
share/python1.4/Bastion.py
|
||||
share/python1.4/CGIHTTPServer.py
|
||||
share/python1.4/Complex.py
|
||||
share/python1.4/MimeWriter.py
|
||||
share/python1.4/Para.py
|
||||
share/python1.4/Queue.py
|
||||
share/python1.4/SimpleHTTPServer.py
|
||||
share/python1.4/SocketServer.py
|
||||
share/python1.4/StringIO.py
|
||||
share/python1.4/UserDict.py
|
||||
share/python1.4/UserList.py
|
||||
share/python1.4/addpack.py
|
||||
share/python1.4/aifc.py
|
||||
share/python1.4/anydbm.py
|
||||
share/python1.4/audiodev.py
|
||||
share/python1.4/base64.py
|
||||
share/python1.4/bdb.py
|
||||
share/python1.4/binhex.py
|
||||
share/python1.4/bisect.py
|
||||
share/python1.4/calendar.py
|
||||
share/python1.4/cgi.py
|
||||
share/python1.4/cmd.py
|
||||
share/python1.4/cmp.py
|
||||
share/python1.4/cmpcache.py
|
||||
share/python1.4/codehack.py
|
||||
share/python1.4/colorsys.py
|
||||
share/python1.4/commands.py
|
||||
share/python1.4/compileall.py
|
||||
share/python1.4/copy.py
|
||||
share/python1.4/dbhash.py
|
||||
share/python1.4/dircache.py
|
||||
share/python1.4/dircmp.py
|
||||
share/python1.4/dis.py
|
||||
share/python1.4/dospath.py
|
||||
share/python1.4/dumbdbm.py
|
||||
share/python1.4/dump.py
|
||||
share/python1.4/emacs.py
|
||||
share/python1.4/find.py
|
||||
share/python1.4/fmt.py
|
||||
share/python1.4/fnmatch.py
|
||||
share/python1.4/formatter.py
|
||||
share/python1.4/fpformat.py
|
||||
share/python1.4/ftplib.py
|
||||
share/python1.4/glob.py
|
||||
share/python1.4/getopt.py
|
||||
share/python1.4/gopherlib.py
|
||||
share/python1.4/grep.py
|
||||
share/python1.4/htmlentitydefs.py
|
||||
share/python1.4/htmllib.py
|
||||
share/python1.4/httplib.py
|
||||
share/python1.4/ihooks.py
|
||||
share/python1.4/imghdr.py
|
||||
share/python1.4/linecache.py
|
||||
share/python1.4/lockfile.py
|
||||
share/python1.4/macpath.py
|
||||
share/python1.4/macurl2path.py
|
||||
share/python1.4/mailbox.py
|
||||
share/python1.4/mailcap.py
|
||||
share/python1.4/mhlib.py
|
||||
share/python1.4/mimetools.py
|
||||
share/python1.4/mimify.py
|
||||
share/python1.4/multifile.py
|
||||
share/python1.4/mutex.py
|
||||
share/python1.4/newdir.py
|
||||
share/python1.4/ni.py
|
||||
share/python1.4/nntplib.py
|
||||
share/python1.4/ntpath.py
|
||||
share/python1.4/nturl2path.py
|
||||
share/python1.4/os.py
|
||||
share/python1.4/ospath.py
|
||||
share/python1.4/packmail.py
|
||||
share/python1.4/pdb.py
|
||||
share/python1.4/pickle.py
|
||||
share/python1.4/pipes.py
|
||||
share/python1.4/poly.py
|
||||
share/python1.4/popen2.py
|
||||
share/python1.4/posixfile.py
|
||||
share/python1.4/posixpath.py
|
||||
share/python1.4/profile.py
|
||||
share/python1.4/pstats.py
|
||||
share/python1.4/pty.py
|
||||
share/python1.4/py_compile.py
|
||||
share/python1.4/pyclbr.py
|
||||
share/python1.4/quopri.py
|
||||
share/python1.4/rand.py
|
||||
share/python1.4/random.py
|
||||
share/python1.4/regex_syntax.py
|
||||
share/python1.4/regexp.py
|
||||
share/python1.4/regsub.py
|
||||
share/python1.4/repr.py
|
||||
share/python1.4/rexec.py
|
||||
share/python1.4/rfc822.py
|
||||
share/python1.4/sched.py
|
||||
share/python1.4/sgmllib.py
|
||||
share/python1.4/shelve.py
|
||||
share/python1.4/shutil.py
|
||||
share/python1.4/site.py
|
||||
share/python1.4/sndhdr.py
|
||||
share/python1.4/stat.py
|
||||
share/python1.4/statcache.py
|
||||
share/python1.4/string.py
|
||||
share/python1.4/sunau.py
|
||||
share/python1.4/sunaudio.py
|
||||
share/python1.4/symbol.py
|
||||
share/python1.4/tb.py
|
||||
share/python1.4/tempfile.py
|
||||
share/python1.4/toaiff.py
|
||||
share/python1.4/token.py
|
||||
share/python1.4/tokenize.py
|
||||
share/python1.4/traceback.py
|
||||
share/python1.4/tty.py
|
||||
share/python1.4/types.py
|
||||
share/python1.4/tzparse.py
|
||||
share/python1.4/os.pyc
|
||||
share/python1.4/urlparse.py
|
||||
share/python1.4/util.py
|
||||
share/python1.4/uu.py
|
||||
share/python1.4/wave.py
|
||||
share/python1.4/whatsound.py
|
||||
share/python1.4/whichdb.py
|
||||
share/python1.4/whrandom.py
|
||||
share/python1.4/xdrlib.py
|
||||
share/python1.4/zmod.py
|
||||
share/python1.4/pdb.doc
|
||||
share/python1.4/profile.doc
|
||||
share/python1.4/posixpath.pyc
|
||||
share/python1.4/stat.pyc
|
||||
share/python1.4/UserDict.pyc
|
||||
share/python1.4/py_compile.pyc
|
||||
share/python1.4/getopt.pyc
|
||||
share/python1.4/string.pyc
|
||||
share/python1.4/AST.pyc
|
||||
share/python1.4/BaseHTTPServer.pyc
|
||||
share/python1.4/Bastion.pyc
|
||||
share/python1.4/CGIHTTPServer.pyc
|
||||
share/python1.4/Complex.pyc
|
||||
share/python1.4/MimeWriter.pyc
|
||||
share/python1.4/Para.pyc
|
||||
share/python1.4/Queue.pyc
|
||||
share/python1.4/SimpleHTTPServer.pyc
|
||||
share/python1.4/SocketServer.pyc
|
||||
share/python1.4/StringIO.pyc
|
||||
share/python1.4/UserList.pyc
|
||||
share/python1.4/addpack.pyc
|
||||
share/python1.4/aifc.pyc
|
||||
share/python1.4/anydbm.pyc
|
||||
share/python1.4/audiodev.pyc
|
||||
share/python1.4/base64.pyc
|
||||
share/python1.4/bdb.pyc
|
||||
share/python1.4/binhex.pyc
|
||||
share/python1.4/bisect.pyc
|
||||
share/python1.4/calendar.pyc
|
||||
share/python1.4/cgi.pyc
|
||||
share/python1.4/cmd.pyc
|
||||
share/python1.4/cmp.pyc
|
||||
share/python1.4/cmpcache.pyc
|
||||
share/python1.4/codehack.pyc
|
||||
share/python1.4/colorsys.pyc
|
||||
share/python1.4/commands.pyc
|
||||
share/python1.4/compileall.pyc
|
||||
share/python1.4/copy.pyc
|
||||
share/python1.4/dbhash.pyc
|
||||
share/python1.4/dircache.pyc
|
||||
share/python1.4/dircmp.pyc
|
||||
share/python1.4/dis.pyc
|
||||
share/python1.4/dospath.pyc
|
||||
share/python1.4/dumbdbm.pyc
|
||||
share/python1.4/dump.pyc
|
||||
share/python1.4/emacs.pyc
|
||||
share/python1.4/find.pyc
|
||||
share/python1.4/fmt.pyc
|
||||
share/python1.4/fnmatch.pyc
|
||||
share/python1.4/formatter.pyc
|
||||
share/python1.4/fpformat.pyc
|
||||
share/python1.4/ftplib.pyc
|
||||
share/python1.4/glob.pyc
|
||||
share/python1.4/gopherlib.pyc
|
||||
share/python1.4/grep.pyc
|
||||
share/python1.4/htmlentitydefs.pyc
|
||||
share/python1.4/htmllib.pyc
|
||||
share/python1.4/httplib.pyc
|
||||
share/python1.4/ihooks.pyc
|
||||
share/python1.4/imghdr.pyc
|
||||
share/python1.4/linecache.pyc
|
||||
share/python1.4/lockfile.pyc
|
||||
share/python1.4/macpath.pyc
|
||||
share/python1.4/macurl2path.pyc
|
||||
share/python1.4/mailbox.pyc
|
||||
share/python1.4/mailcap.pyc
|
||||
share/python1.4/mhlib.pyc
|
||||
share/python1.4/mimetools.pyc
|
||||
share/python1.4/mimify.pyc
|
||||
share/python1.4/multifile.pyc
|
||||
share/python1.4/mutex.pyc
|
||||
share/python1.4/newdir.pyc
|
||||
share/python1.4/ni.pyc
|
||||
share/python1.4/nntplib.pyc
|
||||
share/python1.4/ntpath.pyc
|
||||
share/python1.4/nturl2path.pyc
|
||||
share/python1.4/ospath.pyc
|
||||
share/python1.4/packmail.pyc
|
||||
share/python1.4/pdb.pyc
|
||||
share/python1.4/pickle.pyc
|
||||
share/python1.4/pipes.pyc
|
||||
share/python1.4/poly.pyc
|
||||
share/python1.4/popen2.pyc
|
||||
share/python1.4/posixfile.pyc
|
||||
share/python1.4/profile.pyc
|
||||
share/python1.4/pstats.pyc
|
||||
share/python1.4/pty.pyc
|
||||
share/python1.4/pyclbr.pyc
|
||||
share/python1.4/quopri.pyc
|
||||
share/python1.4/rand.pyc
|
||||
share/python1.4/random.pyc
|
||||
share/python1.4/regex_syntax.pyc
|
||||
share/python1.4/regexp.pyc
|
||||
share/python1.4/regsub.pyc
|
||||
share/python1.4/repr.pyc
|
||||
share/python1.4/rexec.pyc
|
||||
share/python1.4/rfc822.pyc
|
||||
share/python1.4/sched.pyc
|
||||
share/python1.4/sgmllib.pyc
|
||||
share/python1.4/shelve.pyc
|
||||
share/python1.4/shutil.pyc
|
||||
share/python1.4/site.pyc
|
||||
share/python1.4/sndhdr.pyc
|
||||
share/python1.4/statcache.pyc
|
||||
share/python1.4/sunau.pyc
|
||||
share/python1.4/sunaudio.pyc
|
||||
share/python1.4/symbol.pyc
|
||||
share/python1.4/tb.pyc
|
||||
share/python1.4/tempfile.pyc
|
||||
share/python1.4/toaiff.pyc
|
||||
share/python1.4/token.pyc
|
||||
share/python1.4/tokenize.pyc
|
||||
share/python1.4/traceback.pyc
|
||||
share/python1.4/tty.pyc
|
||||
share/python1.4/types.pyc
|
||||
share/python1.4/tzparse.pyc
|
||||
share/python1.4/urllib.pyc
|
||||
share/python1.4/urlparse.pyc
|
||||
share/python1.4/uu.pyc
|
||||
share/python1.4/util.pyc
|
||||
share/python1.4/wave.pyc
|
||||
share/python1.4/whatsound.pyc
|
||||
share/python1.4/whichdb.pyc
|
||||
share/python1.4/whrandom.pyc
|
||||
share/python1.4/xdrlib.pyc
|
||||
share/python1.4/zmod.pyc
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# Date created: 08 August 1995
|
||||
# Whom: jkh
|
||||
#
|
||||
# $Id: Makefile,v 1.12 1997/02/21 14:57:01 tg Exp $
|
||||
# $Id: Makefile,v 1.13 1997/04/20 13:19:11 wosch Exp $
|
||||
#
|
||||
|
||||
DISTNAME= python1.4
|
||||
|
@ -13,12 +13,10 @@ MASTER_SITES= ftp://www.python.org/pub/python/src/ \
|
|||
ftp://ftp.cwi.nl/pub/python/src/ \
|
||||
ftp://www.python.org/pub/python/contrib/Graphics/Tkinter/ \
|
||||
ftp://ftp.cwi.nl/pub/python/contrib/Graphics/Tkinter/
|
||||
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} PyTix-1.12.tar.gz
|
||||
|
||||
MAINTAINER= tg@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= tk41\\.1\\.:${PORTSDIR}/x11/tk41 \
|
||||
tix4175\\.1\\.:${PORTSDIR}/x11/tix
|
||||
LIB_DEPENDS= tk41\\.1\\.:${PORTSDIR}/x11/tk41
|
||||
|
||||
WRKSRC= ${WRKDIR}/Python-1.4
|
||||
HAS_CONFIGURE= yes
|
||||
|
@ -27,14 +25,6 @@ MAKE_FLAGS+= 'OPT=${CFLAGS}'
|
|||
INSTALL_TARGET= install
|
||||
MAN1= python.1
|
||||
|
||||
PYTIXSRC= ${WRKDIR}/PyTix-1.12
|
||||
|
||||
post-extract:
|
||||
@${ECHO_MSG} "===> Add PyTix extensions to Python core"
|
||||
${CP} ${PYTIXSRC}/Tkinter.py ${WRKSRC}/Lib/tkinter
|
||||
${CP} ${PYTIXSRC}/Tix.py ${WRKSRC}/Lib/tkinter
|
||||
${CP} ${PYTIXSRC}/_tkinter.c ${WRKSRC}/Modules
|
||||
|
||||
post-configure:
|
||||
${CP} ${FILESDIR}/Setup ${WRKSRC}/Modules
|
||||
|
||||
|
|
|
@ -71,7 +71,7 @@ SITEPATH=:$(DESTLIB)/NumPy
|
|||
TESTPATH=:$(DESTLIB)/test
|
||||
|
||||
# Path for machine- or system-dependent modules (and shared libraries)
|
||||
MACHDEPPATH=:$(DESTLIB)/$(MACHDEP)
|
||||
MACHDEPPATH=:$(DESTLIB)/$(MACHDEP):$(MACHDESTLIB)/sharedmodules
|
||||
|
||||
COREPYTHONPATH=.$(SITEPATH)$(DESTPATH)$(TESTPATH)$(MACHDEPPATH)$(STDWINPATH)$(TKPATH)
|
||||
PYTHONPATH=$(COREPYTHONPATH)
|
||||
|
@ -128,6 +128,7 @@ select selectmodule.c # select(2); not on ancient System V
|
|||
socket socketmodule.c # socket(2); not on ancient System V
|
||||
errno errnomodule.c # posix (UNIX) errno values
|
||||
|
||||
*shared*
|
||||
|
||||
# Some more UNIX dependent modules -- off by default, since these
|
||||
# are not supported by all UNIX systems:
|
||||
|
@ -249,7 +250,7 @@ TKPATH=:$(DESTLIB)/tkinter
|
|||
#_tkinter _tkinter.c -I/usr/openwin/include -I/usr/local/include -L/usr/openwin/lib -L/usr/local/lib -ltk4.1 -ltcl7.5 -lX11
|
||||
# For generic system (may have to add -I/-L options to find X11):
|
||||
#_tkinter _tkinter.c -I/usr/local/include -L/usr/local/lib -ltk4.1 -ltcl7.5 -lX11
|
||||
_tkinter _tkinter.c -I/usr/local/include -I/usr/X11R6/include -L/usr/local/lib -L/usr/X11R6/lib -ltix4175 -ltk41 -ltcl75 -lX11
|
||||
_tkinter _tkinter.c -I/usr/local/include -I/usr/X11R6/include -L/usr/local/lib -L/usr/X11R6/lib -ltk41 -ltcl75 -lX11
|
||||
|
||||
|
||||
# Lance Ellinghaus's modules:
|
||||
|
|
|
@ -1,11 +1,7 @@
|
|||
--- Makefile.in.orig Fri Oct 25 16:37:32 1996
|
||||
+++ Makefile.in Thu Feb 6 12:02:11 1997
|
||||
@@ -95,10 +95,10 @@
|
||||
|
||||
# Expanded directories
|
||||
BINDIR= $(exec_prefix)/bin
|
||||
-LIBDIR= $(exec_prefix)/lib
|
||||
+LIBDIR= $(exec_prefix)/share
|
||||
+++ Makefile.in Mon May 12 21:04:38 1997
|
||||
@@ -98,7 +98,7 @@
|
||||
LIBDIR= $(exec_prefix)/lib
|
||||
MANDIR= $(prefix)/man
|
||||
INCLUDEDIR= $(prefix)/include
|
||||
-SCRIPTDIR= $(prefix)/lib
|
||||
|
|
|
@ -1,403 +1,5 @@
|
|||
bin/python1.4
|
||||
bin/python
|
||||
@exec mkdir -p %D/share/python1.4/sharedmodules
|
||||
@unexec rmdir %D/share/python1.4/sharedmodules
|
||||
share/python1.4/AST.py
|
||||
share/python1.4/AST.pyc
|
||||
share/python1.4/BaseHTTPServer.py
|
||||
share/python1.4/BaseHTTPServer.pyc
|
||||
share/python1.4/Bastion.py
|
||||
share/python1.4/Bastion.pyc
|
||||
share/python1.4/CGIHTTPServer.py
|
||||
share/python1.4/CGIHTTPServer.pyc
|
||||
share/python1.4/Complex.py
|
||||
share/python1.4/Complex.pyc
|
||||
share/python1.4/MimeWriter.py
|
||||
share/python1.4/MimeWriter.pyc
|
||||
share/python1.4/Para.py
|
||||
share/python1.4/Para.pyc
|
||||
share/python1.4/Queue.py
|
||||
share/python1.4/Queue.pyc
|
||||
share/python1.4/SimpleHTTPServer.py
|
||||
share/python1.4/SimpleHTTPServer.pyc
|
||||
share/python1.4/SocketServer.py
|
||||
share/python1.4/SocketServer.pyc
|
||||
share/python1.4/StringIO.py
|
||||
share/python1.4/StringIO.pyc
|
||||
share/python1.4/UserDict.py
|
||||
share/python1.4/UserDict.pyc
|
||||
share/python1.4/UserList.py
|
||||
share/python1.4/UserList.pyc
|
||||
share/python1.4/addpack.py
|
||||
share/python1.4/addpack.pyc
|
||||
share/python1.4/aifc.py
|
||||
share/python1.4/aifc.pyc
|
||||
share/python1.4/anydbm.py
|
||||
share/python1.4/anydbm.pyc
|
||||
share/python1.4/audiodev.py
|
||||
share/python1.4/audiodev.pyc
|
||||
share/python1.4/base64.py
|
||||
share/python1.4/base64.pyc
|
||||
share/python1.4/bdb.py
|
||||
share/python1.4/bdb.pyc
|
||||
share/python1.4/binhex.py
|
||||
share/python1.4/binhex.pyc
|
||||
share/python1.4/bisect.py
|
||||
share/python1.4/bisect.pyc
|
||||
share/python1.4/calendar.py
|
||||
share/python1.4/calendar.pyc
|
||||
share/python1.4/cgi.py
|
||||
share/python1.4/cgi.pyc
|
||||
share/python1.4/cmd.py
|
||||
share/python1.4/cmd.pyc
|
||||
share/python1.4/cmp.py
|
||||
share/python1.4/cmp.pyc
|
||||
share/python1.4/cmpcache.py
|
||||
share/python1.4/cmpcache.pyc
|
||||
share/python1.4/codehack.py
|
||||
share/python1.4/codehack.pyc
|
||||
share/python1.4/colorsys.py
|
||||
share/python1.4/colorsys.pyc
|
||||
share/python1.4/commands.py
|
||||
share/python1.4/commands.pyc
|
||||
share/python1.4/compileall.py
|
||||
share/python1.4/compileall.pyc
|
||||
share/python1.4/copy.py
|
||||
share/python1.4/copy.pyc
|
||||
share/python1.4/dbhash.py
|
||||
share/python1.4/dbhash.pyc
|
||||
share/python1.4/dircache.py
|
||||
share/python1.4/dircache.pyc
|
||||
share/python1.4/dircmp.py
|
||||
share/python1.4/dircmp.pyc
|
||||
share/python1.4/dis.py
|
||||
share/python1.4/dis.pyc
|
||||
share/python1.4/dospath.py
|
||||
share/python1.4/dospath.pyc
|
||||
share/python1.4/dumbdbm.py
|
||||
share/python1.4/dumbdbm.pyc
|
||||
share/python1.4/dump.py
|
||||
share/python1.4/dump.pyc
|
||||
share/python1.4/emacs.py
|
||||
share/python1.4/emacs.pyc
|
||||
share/python1.4/find.py
|
||||
share/python1.4/find.pyc
|
||||
share/python1.4/fmt.py
|
||||
share/python1.4/fmt.pyc
|
||||
share/python1.4/fnmatch.py
|
||||
share/python1.4/fnmatch.pyc
|
||||
share/python1.4/formatter.py
|
||||
share/python1.4/formatter.pyc
|
||||
share/python1.4/fpformat.py
|
||||
share/python1.4/fpformat.pyc
|
||||
share/python1.4/ftplib.py
|
||||
share/python1.4/ftplib.pyc
|
||||
share/python1.4/getopt.py
|
||||
share/python1.4/getopt.pyc
|
||||
share/python1.4/glob.py
|
||||
share/python1.4/glob.pyc
|
||||
share/python1.4/gopherlib.py
|
||||
share/python1.4/gopherlib.pyc
|
||||
share/python1.4/grep.py
|
||||
share/python1.4/grep.pyc
|
||||
share/python1.4/htmlentitydefs.py
|
||||
share/python1.4/htmlentitydefs.pyc
|
||||
share/python1.4/htmllib.py
|
||||
share/python1.4/htmllib.pyc
|
||||
share/python1.4/httplib.py
|
||||
share/python1.4/httplib.pyc
|
||||
share/python1.4/ihooks.py
|
||||
share/python1.4/ihooks.pyc
|
||||
share/python1.4/imghdr.py
|
||||
share/python1.4/imghdr.pyc
|
||||
share/python1.4/linecache.py
|
||||
share/python1.4/linecache.pyc
|
||||
share/python1.4/lockfile.py
|
||||
share/python1.4/lockfile.pyc
|
||||
share/python1.4/macpath.py
|
||||
share/python1.4/macpath.pyc
|
||||
share/python1.4/macurl2path.py
|
||||
share/python1.4/macurl2path.pyc
|
||||
share/python1.4/mailbox.py
|
||||
share/python1.4/mailbox.pyc
|
||||
share/python1.4/mailcap.py
|
||||
share/python1.4/mailcap.pyc
|
||||
share/python1.4/mhlib.py
|
||||
share/python1.4/mhlib.pyc
|
||||
share/python1.4/mimetools.py
|
||||
share/python1.4/mimetools.pyc
|
||||
share/python1.4/mimify.py
|
||||
share/python1.4/mimify.pyc
|
||||
share/python1.4/multifile.py
|
||||
share/python1.4/multifile.pyc
|
||||
share/python1.4/mutex.py
|
||||
share/python1.4/mutex.pyc
|
||||
share/python1.4/newdir.py
|
||||
share/python1.4/newdir.pyc
|
||||
share/python1.4/ni.py
|
||||
share/python1.4/ni.pyc
|
||||
share/python1.4/nntplib.py
|
||||
share/python1.4/nntplib.pyc
|
||||
share/python1.4/ntpath.py
|
||||
share/python1.4/ntpath.pyc
|
||||
share/python1.4/nturl2path.py
|
||||
share/python1.4/nturl2path.pyc
|
||||
share/python1.4/os.py
|
||||
share/python1.4/os.pyc
|
||||
share/python1.4/ospath.py
|
||||
share/python1.4/ospath.pyc
|
||||
share/python1.4/packmail.py
|
||||
share/python1.4/packmail.pyc
|
||||
share/python1.4/pdb.doc
|
||||
share/python1.4/pdb.py
|
||||
share/python1.4/pdb.pyc
|
||||
share/python1.4/pickle.py
|
||||
share/python1.4/pickle.pyc
|
||||
share/python1.4/pipes.py
|
||||
share/python1.4/pipes.pyc
|
||||
share/python1.4/poly.py
|
||||
share/python1.4/poly.pyc
|
||||
share/python1.4/popen2.py
|
||||
share/python1.4/popen2.pyc
|
||||
share/python1.4/posixfile.py
|
||||
share/python1.4/posixfile.pyc
|
||||
share/python1.4/posixpath.py
|
||||
share/python1.4/posixpath.pyc
|
||||
share/python1.4/profile.doc
|
||||
share/python1.4/profile.py
|
||||
share/python1.4/profile.pyc
|
||||
share/python1.4/pstats.py
|
||||
share/python1.4/pstats.pyc
|
||||
share/python1.4/pty.py
|
||||
share/python1.4/pty.pyc
|
||||
share/python1.4/py_compile.py
|
||||
share/python1.4/py_compile.pyc
|
||||
share/python1.4/pyclbr.py
|
||||
share/python1.4/pyclbr.pyc
|
||||
share/python1.4/quopri.py
|
||||
share/python1.4/quopri.pyc
|
||||
share/python1.4/rand.py
|
||||
share/python1.4/rand.pyc
|
||||
share/python1.4/random.py
|
||||
share/python1.4/random.pyc
|
||||
share/python1.4/regex_syntax.py
|
||||
share/python1.4/regex_syntax.pyc
|
||||
share/python1.4/regexp.py
|
||||
share/python1.4/regexp.pyc
|
||||
share/python1.4/regsub.py
|
||||
share/python1.4/regsub.pyc
|
||||
share/python1.4/repr.py
|
||||
share/python1.4/repr.pyc
|
||||
share/python1.4/rexec.py
|
||||
share/python1.4/rexec.pyc
|
||||
share/python1.4/rfc822.py
|
||||
share/python1.4/rfc822.pyc
|
||||
share/python1.4/sched.py
|
||||
share/python1.4/sched.pyc
|
||||
share/python1.4/sgmllib.py
|
||||
share/python1.4/sgmllib.pyc
|
||||
share/python1.4/shelve.py
|
||||
share/python1.4/shelve.pyc
|
||||
share/python1.4/shutil.py
|
||||
share/python1.4/shutil.pyc
|
||||
share/python1.4/site.py
|
||||
share/python1.4/site.pyc
|
||||
share/python1.4/sndhdr.py
|
||||
share/python1.4/sndhdr.pyc
|
||||
share/python1.4/stat.py
|
||||
share/python1.4/stat.pyc
|
||||
share/python1.4/statcache.py
|
||||
share/python1.4/statcache.pyc
|
||||
share/python1.4/string.py
|
||||
share/python1.4/string.pyc
|
||||
share/python1.4/sunau.py
|
||||
share/python1.4/sunau.pyc
|
||||
share/python1.4/sunaudio.py
|
||||
share/python1.4/sunaudio.pyc
|
||||
share/python1.4/symbol.py
|
||||
share/python1.4/symbol.pyc
|
||||
share/python1.4/tb.py
|
||||
share/python1.4/tb.pyc
|
||||
share/python1.4/tempfile.py
|
||||
share/python1.4/tempfile.pyc
|
||||
share/python1.4/toaiff.py
|
||||
share/python1.4/toaiff.pyc
|
||||
share/python1.4/token.py
|
||||
share/python1.4/token.pyc
|
||||
share/python1.4/tokenize.py
|
||||
share/python1.4/tokenize.pyc
|
||||
share/python1.4/traceback.py
|
||||
share/python1.4/traceback.pyc
|
||||
share/python1.4/tty.py
|
||||
share/python1.4/tty.pyc
|
||||
share/python1.4/types.py
|
||||
share/python1.4/types.pyc
|
||||
share/python1.4/tzparse.py
|
||||
share/python1.4/tzparse.pyc
|
||||
share/python1.4/urllib.py
|
||||
share/python1.4/urllib.pyc
|
||||
share/python1.4/urlparse.py
|
||||
share/python1.4/urlparse.pyc
|
||||
share/python1.4/util.py
|
||||
share/python1.4/util.pyc
|
||||
share/python1.4/uu.py
|
||||
share/python1.4/uu.pyc
|
||||
share/python1.4/wave.py
|
||||
share/python1.4/wave.pyc
|
||||
share/python1.4/whatsound.py
|
||||
share/python1.4/whatsound.pyc
|
||||
share/python1.4/whichdb.py
|
||||
share/python1.4/whichdb.pyc
|
||||
share/python1.4/whrandom.py
|
||||
share/python1.4/whrandom.pyc
|
||||
share/python1.4/xdrlib.py
|
||||
share/python1.4/xdrlib.pyc
|
||||
share/python1.4/zmod.py
|
||||
share/python1.4/zmod.pyc
|
||||
share/python1.4/config/Makefile
|
||||
share/python1.4/config/Setup
|
||||
share/python1.4/config/config.c
|
||||
share/python1.4/config/config.c.in
|
||||
share/python1.4/config/config.h
|
||||
share/python1.4/config/frozenmain.c
|
||||
share/python1.4/config/getpath.c
|
||||
share/python1.4/config/libModules.a
|
||||
share/python1.4/config/libObjects.a
|
||||
share/python1.4/config/libParser.a
|
||||
share/python1.4/config/libPython.a
|
||||
share/python1.4/config/main.o
|
||||
share/python1.4/config/makesetup
|
||||
share/python1.4/freebsd2/FCNTL.py
|
||||
share/python1.4/freebsd2/FCNTL.pyc
|
||||
share/python1.4/freebsd2/regen
|
||||
share/python1.4/stdwin/Abstract.py
|
||||
share/python1.4/stdwin/Abstract.pyc
|
||||
share/python1.4/stdwin/BoxParent.py
|
||||
share/python1.4/stdwin/BoxParent.pyc
|
||||
share/python1.4/stdwin/Buttons.py
|
||||
share/python1.4/stdwin/Buttons.pyc
|
||||
share/python1.4/stdwin/CSplit.py
|
||||
share/python1.4/stdwin/CSplit.pyc
|
||||
share/python1.4/stdwin/DirList.py
|
||||
share/python1.4/stdwin/DirList.pyc
|
||||
share/python1.4/stdwin/FormSplit.py
|
||||
share/python1.4/stdwin/FormSplit.pyc
|
||||
share/python1.4/stdwin/HVSplit.py
|
||||
share/python1.4/stdwin/HVSplit.pyc
|
||||
share/python1.4/stdwin/Histogram.py
|
||||
share/python1.4/stdwin/Histogram.pyc
|
||||
share/python1.4/stdwin/Sliders.py
|
||||
share/python1.4/stdwin/Sliders.pyc
|
||||
share/python1.4/stdwin/Soundogram.py
|
||||
share/python1.4/stdwin/Soundogram.pyc
|
||||
share/python1.4/stdwin/Split.py
|
||||
share/python1.4/stdwin/Split.pyc
|
||||
share/python1.4/stdwin/StripChart.py
|
||||
share/python1.4/stdwin/StripChart.pyc
|
||||
share/python1.4/stdwin/TextEdit.py
|
||||
share/python1.4/stdwin/TextEdit.pyc
|
||||
share/python1.4/stdwin/TransParent.py
|
||||
share/python1.4/stdwin/TransParent.pyc
|
||||
share/python1.4/stdwin/VUMeter.py
|
||||
share/python1.4/stdwin/VUMeter.pyc
|
||||
share/python1.4/stdwin/WindowParent.py
|
||||
share/python1.4/stdwin/WindowParent.pyc
|
||||
share/python1.4/stdwin/WindowSched.py
|
||||
share/python1.4/stdwin/WindowSched.pyc
|
||||
share/python1.4/stdwin/anywin.py
|
||||
share/python1.4/stdwin/anywin.pyc
|
||||
share/python1.4/stdwin/basewin.py
|
||||
share/python1.4/stdwin/basewin.pyc
|
||||
share/python1.4/stdwin/dirwin.py
|
||||
share/python1.4/stdwin/dirwin.pyc
|
||||
share/python1.4/stdwin/filewin.py
|
||||
share/python1.4/stdwin/filewin.pyc
|
||||
share/python1.4/stdwin/formatter.py
|
||||
share/python1.4/stdwin/formatter.pyc
|
||||
share/python1.4/stdwin/gwin.py
|
||||
share/python1.4/stdwin/gwin.pyc
|
||||
share/python1.4/stdwin/listwin.py
|
||||
share/python1.4/stdwin/listwin.pyc
|
||||
share/python1.4/stdwin/mainloop.py
|
||||
share/python1.4/stdwin/mainloop.pyc
|
||||
share/python1.4/stdwin/rect.py
|
||||
share/python1.4/stdwin/rect.pyc
|
||||
share/python1.4/stdwin/srcwin.py
|
||||
share/python1.4/stdwin/srcwin.pyc
|
||||
share/python1.4/stdwin/stdwinevents.py
|
||||
share/python1.4/stdwin/stdwinevents.pyc
|
||||
share/python1.4/stdwin/stdwinq.py
|
||||
share/python1.4/stdwin/stdwinq.pyc
|
||||
share/python1.4/stdwin/tablewin.py
|
||||
share/python1.4/stdwin/tablewin.pyc
|
||||
share/python1.4/stdwin/textwin.py
|
||||
share/python1.4/stdwin/textwin.pyc
|
||||
share/python1.4/stdwin/wdb.py
|
||||
share/python1.4/stdwin/wdb.pyc
|
||||
share/python1.4/stdwin/wdbframewin.py
|
||||
share/python1.4/stdwin/wdbframewin.pyc
|
||||
share/python1.4/stdwin/wdbsrcwin.py
|
||||
share/python1.4/stdwin/wdbsrcwin.pyc
|
||||
share/python1.4/test/autotest.py
|
||||
share/python1.4/test/autotest.pyc
|
||||
share/python1.4/test/test.rawimg
|
||||
share/python1.4/test/test.rawimg.rev
|
||||
share/python1.4/test/test.rgb
|
||||
share/python1.4/test/test_audioop.py
|
||||
share/python1.4/test/test_audioop.pyc
|
||||
share/python1.4/test/test_b1.py
|
||||
share/python1.4/test/test_b1.pyc
|
||||
share/python1.4/test/test_b2.py
|
||||
share/python1.4/test/test_b2.pyc
|
||||
share/python1.4/test/test_builtin.py
|
||||
share/python1.4/test/test_builtin.pyc
|
||||
share/python1.4/test/test_exceptions.py
|
||||
share/python1.4/test/test_exceptions.pyc
|
||||
share/python1.4/test/test_grammar.py
|
||||
share/python1.4/test/test_grammar.pyc
|
||||
share/python1.4/test/test_math.py
|
||||
share/python1.4/test/test_math.pyc
|
||||
share/python1.4/test/test_md5.py
|
||||
share/python1.4/test/test_md5.pyc
|
||||
share/python1.4/test/test_opcodes.py
|
||||
share/python1.4/test/test_opcodes.pyc
|
||||
share/python1.4/test/test_operations.py
|
||||
share/python1.4/test/test_operations.pyc
|
||||
share/python1.4/test/test_pow.py
|
||||
share/python1.4/test/test_pow.pyc
|
||||
share/python1.4/test/test_rgbimg.py
|
||||
share/python1.4/test/test_rgbimg.pyc
|
||||
share/python1.4/test/test_select.py
|
||||
share/python1.4/test/test_select.pyc
|
||||
share/python1.4/test/test_signal.py
|
||||
share/python1.4/test/test_signal.pyc
|
||||
share/python1.4/test/test_strop.py
|
||||
share/python1.4/test/test_strop.pyc
|
||||
share/python1.4/test/test_support.py
|
||||
share/python1.4/test/test_support.pyc
|
||||
share/python1.4/test/test_thread.py
|
||||
share/python1.4/test/test_thread.pyc
|
||||
share/python1.4/test/test_types.py
|
||||
share/python1.4/test/test_types.pyc
|
||||
share/python1.4/test/testall.out
|
||||
share/python1.4/test/testall.py
|
||||
share/python1.4/test/testall.pyc
|
||||
share/python1.4/tkinter/Canvas.py
|
||||
share/python1.4/tkinter/Canvas.pyc
|
||||
share/python1.4/tkinter/Dialog.py
|
||||
share/python1.4/tkinter/Dialog.pyc
|
||||
share/python1.4/tkinter/FileDialog.py
|
||||
share/python1.4/tkinter/FileDialog.pyc
|
||||
share/python1.4/tkinter/ScrolledText.py
|
||||
share/python1.4/tkinter/ScrolledText.pyc
|
||||
share/python1.4/tkinter/SimpleDialog.py
|
||||
share/python1.4/tkinter/SimpleDialog.pyc
|
||||
share/python1.4/tkinter/Tix.py
|
||||
share/python1.4/tkinter/Tix.pyc
|
||||
share/python1.4/tkinter/Tkconstants.py
|
||||
share/python1.4/tkinter/Tkconstants.pyc
|
||||
share/python1.4/tkinter/Tkinter.py
|
||||
share/python1.4/tkinter/Tkinter.pyc
|
||||
include/python1.4/Python.h
|
||||
include/python1.4/abstract.h
|
||||
include/python1.4/accessobject.h
|
||||
|
@ -459,4 +61,417 @@ include/python1.4/thread.h
|
|||
include/python1.4/token.h
|
||||
include/python1.4/traceback.h
|
||||
include/python1.4/tupleobject.h
|
||||
lib/python1.4/config/libParser.a
|
||||
lib/python1.4/config/libObjects.a
|
||||
lib/python1.4/config/libPython.a
|
||||
lib/python1.4/config/libModules.a
|
||||
lib/python1.4/config/config.c
|
||||
lib/python1.4/config/getpath.c
|
||||
lib/python1.4/config/config.c.in
|
||||
lib/python1.4/config/Makefile
|
||||
lib/python1.4/config/Setup
|
||||
lib/python1.4/config/makesetup
|
||||
lib/python1.4/config/config.h
|
||||
lib/python1.4/config/frozenmain.c
|
||||
lib/python1.4/config/main.o
|
||||
lib/python1.4/sharedmodules/dbmmodule.so
|
||||
lib/python1.4/sharedmodules/nismodule.so
|
||||
lib/python1.4/sharedmodules/termios.so
|
||||
lib/python1.4/sharedmodules/audioop.so
|
||||
lib/python1.4/sharedmodules/imageop.so
|
||||
lib/python1.4/sharedmodules/rgbimgmodule.so
|
||||
lib/python1.4/sharedmodules/md5module.so
|
||||
lib/python1.4/sharedmodules/_tkinter.so
|
||||
lib/python1.4/sharedmodules/rotormodule.so
|
||||
lib/python1.4/sharedmodules/syslogmodule.so
|
||||
lib/python1.4/sharedmodules/cursesmodule.so
|
||||
lib/python1.4/sharedmodules/bsddbmodule.so
|
||||
lib/python1.4/sharedmodules/binascii.so
|
||||
man/man1/python.1.gz
|
||||
share/python1.4/stdwin/Abstract.pyc
|
||||
share/python1.4/stdwin/Abstract.py
|
||||
share/python1.4/stdwin/BoxParent.py
|
||||
share/python1.4/stdwin/Buttons.py
|
||||
share/python1.4/stdwin/CSplit.py
|
||||
share/python1.4/stdwin/DirList.py
|
||||
share/python1.4/stdwin/FormSplit.py
|
||||
share/python1.4/stdwin/HVSplit.py
|
||||
share/python1.4/stdwin/Histogram.py
|
||||
share/python1.4/stdwin/Sliders.py
|
||||
share/python1.4/stdwin/Soundogram.py
|
||||
share/python1.4/stdwin/Split.py
|
||||
share/python1.4/stdwin/StripChart.py
|
||||
share/python1.4/stdwin/TextEdit.py
|
||||
share/python1.4/stdwin/TransParent.py
|
||||
share/python1.4/stdwin/VUMeter.py
|
||||
share/python1.4/stdwin/WindowParent.py
|
||||
share/python1.4/stdwin/WindowSched.py
|
||||
share/python1.4/stdwin/anywin.py
|
||||
share/python1.4/stdwin/basewin.py
|
||||
share/python1.4/stdwin/dirwin.py
|
||||
share/python1.4/stdwin/filewin.py
|
||||
share/python1.4/stdwin/formatter.py
|
||||
share/python1.4/stdwin/gwin.py
|
||||
share/python1.4/stdwin/listwin.py
|
||||
share/python1.4/stdwin/mainloop.py
|
||||
share/python1.4/stdwin/rect.py
|
||||
share/python1.4/stdwin/srcwin.py
|
||||
share/python1.4/stdwin/stdwinevents.py
|
||||
share/python1.4/stdwin/stdwinq.py
|
||||
share/python1.4/stdwin/tablewin.py
|
||||
share/python1.4/stdwin/textwin.py
|
||||
share/python1.4/stdwin/wdb.py
|
||||
share/python1.4/stdwin/wdbframewin.py
|
||||
share/python1.4/stdwin/wdbsrcwin.py
|
||||
share/python1.4/stdwin/BoxParent.pyc
|
||||
share/python1.4/stdwin/Buttons.pyc
|
||||
share/python1.4/stdwin/CSplit.pyc
|
||||
share/python1.4/stdwin/DirList.pyc
|
||||
share/python1.4/stdwin/FormSplit.pyc
|
||||
share/python1.4/stdwin/HVSplit.pyc
|
||||
share/python1.4/stdwin/Histogram.pyc
|
||||
share/python1.4/stdwin/Sliders.pyc
|
||||
share/python1.4/stdwin/Soundogram.pyc
|
||||
share/python1.4/stdwin/Split.pyc
|
||||
share/python1.4/stdwin/StripChart.pyc
|
||||
share/python1.4/stdwin/TextEdit.pyc
|
||||
share/python1.4/stdwin/TransParent.pyc
|
||||
share/python1.4/stdwin/VUMeter.pyc
|
||||
share/python1.4/stdwin/WindowParent.pyc
|
||||
share/python1.4/stdwin/WindowSched.pyc
|
||||
share/python1.4/stdwin/anywin.pyc
|
||||
share/python1.4/stdwin/basewin.pyc
|
||||
share/python1.4/stdwin/dirwin.pyc
|
||||
share/python1.4/stdwin/filewin.pyc
|
||||
share/python1.4/stdwin/formatter.pyc
|
||||
share/python1.4/stdwin/gwin.pyc
|
||||
share/python1.4/stdwin/listwin.pyc
|
||||
share/python1.4/stdwin/mainloop.pyc
|
||||
share/python1.4/stdwin/rect.pyc
|
||||
share/python1.4/stdwin/srcwin.pyc
|
||||
share/python1.4/stdwin/stdwinevents.pyc
|
||||
share/python1.4/stdwin/stdwinq.pyc
|
||||
share/python1.4/stdwin/tablewin.pyc
|
||||
share/python1.4/stdwin/textwin.pyc
|
||||
share/python1.4/stdwin/wdb.pyc
|
||||
share/python1.4/stdwin/wdbframewin.pyc
|
||||
share/python1.4/stdwin/wdbsrcwin.pyc
|
||||
share/python1.4/tkinter/Canvas.pyc
|
||||
share/python1.4/tkinter/Canvas.py
|
||||
share/python1.4/tkinter/Dialog.py
|
||||
share/python1.4/tkinter/FileDialog.py
|
||||
share/python1.4/tkinter/ScrolledText.py
|
||||
share/python1.4/tkinter/SimpleDialog.py
|
||||
share/python1.4/tkinter/Tkconstants.py
|
||||
share/python1.4/tkinter/Tkinter.py
|
||||
share/python1.4/tkinter/Dialog.pyc
|
||||
share/python1.4/tkinter/FileDialog.pyc
|
||||
share/python1.4/tkinter/ScrolledText.pyc
|
||||
share/python1.4/tkinter/SimpleDialog.pyc
|
||||
share/python1.4/tkinter/Tkconstants.pyc
|
||||
share/python1.4/tkinter/Tkinter.pyc
|
||||
share/python1.4/test/autotest.pyc
|
||||
share/python1.4/test/autotest.py
|
||||
share/python1.4/test/test.rawimg
|
||||
share/python1.4/test/test.rawimg.rev
|
||||
share/python1.4/test/test.rgb
|
||||
share/python1.4/test/test_audioop.py
|
||||
share/python1.4/test/test_b1.py
|
||||
share/python1.4/test/test_b2.py
|
||||
share/python1.4/test/test_builtin.py
|
||||
share/python1.4/test/test_exceptions.py
|
||||
share/python1.4/test/test_grammar.py
|
||||
share/python1.4/test/test_math.py
|
||||
share/python1.4/test/test_md5.py
|
||||
share/python1.4/test/test_opcodes.py
|
||||
share/python1.4/test/test_operations.py
|
||||
share/python1.4/test/test_pow.py
|
||||
share/python1.4/test/test_rgbimg.py
|
||||
share/python1.4/test/test_select.py
|
||||
share/python1.4/test/test_signal.py
|
||||
share/python1.4/test/test_strop.py
|
||||
share/python1.4/test/test_support.py
|
||||
share/python1.4/test/test_thread.py
|
||||
share/python1.4/test/test_types.py
|
||||
share/python1.4/test/testall.out
|
||||
share/python1.4/test/testall.py
|
||||
share/python1.4/test/test_audioop.pyc
|
||||
share/python1.4/test/test_b1.pyc
|
||||
share/python1.4/test/test_b2.pyc
|
||||
share/python1.4/test/test_builtin.pyc
|
||||
share/python1.4/test/test_exceptions.pyc
|
||||
share/python1.4/test/test_grammar.pyc
|
||||
share/python1.4/test/test_math.pyc
|
||||
share/python1.4/test/test_md5.pyc
|
||||
share/python1.4/test/test_opcodes.pyc
|
||||
share/python1.4/test/test_operations.pyc
|
||||
share/python1.4/test/test_pow.pyc
|
||||
share/python1.4/test/test_rgbimg.pyc
|
||||
share/python1.4/test/test_select.pyc
|
||||
share/python1.4/test/test_signal.pyc
|
||||
share/python1.4/test/test_strop.pyc
|
||||
share/python1.4/test/test_support.pyc
|
||||
share/python1.4/test/testall.pyc
|
||||
share/python1.4/test/test_thread.pyc
|
||||
share/python1.4/test/test_types.pyc
|
||||
share/python1.4/freebsd/FCNTL.pyc
|
||||
share/python1.4/freebsd/FCNTL.py
|
||||
share/python1.4/freebsd/IN.pyc
|
||||
share/python1.4/freebsd/IN.py
|
||||
share/python1.4/freebsd/SOCKET.pyc
|
||||
share/python1.4/freebsd/SOCKET.py
|
||||
share/python1.4/freebsd/TERMIOS.pyc
|
||||
share/python1.4/freebsd/TERMIOS.py
|
||||
share/python1.4/freebsd/regen
|
||||
share/python1.4/urllib.py
|
||||
share/python1.4/AST.py
|
||||
share/python1.4/BaseHTTPServer.py
|
||||
share/python1.4/Bastion.py
|
||||
share/python1.4/CGIHTTPServer.py
|
||||
share/python1.4/Complex.py
|
||||
share/python1.4/MimeWriter.py
|
||||
share/python1.4/Para.py
|
||||
share/python1.4/Queue.py
|
||||
share/python1.4/SimpleHTTPServer.py
|
||||
share/python1.4/SocketServer.py
|
||||
share/python1.4/StringIO.py
|
||||
share/python1.4/UserDict.py
|
||||
share/python1.4/UserList.py
|
||||
share/python1.4/addpack.py
|
||||
share/python1.4/aifc.py
|
||||
share/python1.4/anydbm.py
|
||||
share/python1.4/audiodev.py
|
||||
share/python1.4/base64.py
|
||||
share/python1.4/bdb.py
|
||||
share/python1.4/binhex.py
|
||||
share/python1.4/bisect.py
|
||||
share/python1.4/calendar.py
|
||||
share/python1.4/cgi.py
|
||||
share/python1.4/cmd.py
|
||||
share/python1.4/cmp.py
|
||||
share/python1.4/cmpcache.py
|
||||
share/python1.4/codehack.py
|
||||
share/python1.4/colorsys.py
|
||||
share/python1.4/commands.py
|
||||
share/python1.4/compileall.py
|
||||
share/python1.4/copy.py
|
||||
share/python1.4/dbhash.py
|
||||
share/python1.4/dircache.py
|
||||
share/python1.4/dircmp.py
|
||||
share/python1.4/dis.py
|
||||
share/python1.4/dospath.py
|
||||
share/python1.4/dumbdbm.py
|
||||
share/python1.4/dump.py
|
||||
share/python1.4/emacs.py
|
||||
share/python1.4/find.py
|
||||
share/python1.4/fmt.py
|
||||
share/python1.4/fnmatch.py
|
||||
share/python1.4/formatter.py
|
||||
share/python1.4/fpformat.py
|
||||
share/python1.4/ftplib.py
|
||||
share/python1.4/glob.py
|
||||
share/python1.4/getopt.py
|
||||
share/python1.4/gopherlib.py
|
||||
share/python1.4/grep.py
|
||||
share/python1.4/htmlentitydefs.py
|
||||
share/python1.4/htmllib.py
|
||||
share/python1.4/httplib.py
|
||||
share/python1.4/ihooks.py
|
||||
share/python1.4/imghdr.py
|
||||
share/python1.4/linecache.py
|
||||
share/python1.4/lockfile.py
|
||||
share/python1.4/macpath.py
|
||||
share/python1.4/macurl2path.py
|
||||
share/python1.4/mailbox.py
|
||||
share/python1.4/mailcap.py
|
||||
share/python1.4/mhlib.py
|
||||
share/python1.4/mimetools.py
|
||||
share/python1.4/mimify.py
|
||||
share/python1.4/multifile.py
|
||||
share/python1.4/mutex.py
|
||||
share/python1.4/newdir.py
|
||||
share/python1.4/ni.py
|
||||
share/python1.4/nntplib.py
|
||||
share/python1.4/ntpath.py
|
||||
share/python1.4/nturl2path.py
|
||||
share/python1.4/os.py
|
||||
share/python1.4/ospath.py
|
||||
share/python1.4/packmail.py
|
||||
share/python1.4/pdb.py
|
||||
share/python1.4/pickle.py
|
||||
share/python1.4/pipes.py
|
||||
share/python1.4/poly.py
|
||||
share/python1.4/popen2.py
|
||||
share/python1.4/posixfile.py
|
||||
share/python1.4/posixpath.py
|
||||
share/python1.4/profile.py
|
||||
share/python1.4/pstats.py
|
||||
share/python1.4/pty.py
|
||||
share/python1.4/py_compile.py
|
||||
share/python1.4/pyclbr.py
|
||||
share/python1.4/quopri.py
|
||||
share/python1.4/rand.py
|
||||
share/python1.4/random.py
|
||||
share/python1.4/regex_syntax.py
|
||||
share/python1.4/regexp.py
|
||||
share/python1.4/regsub.py
|
||||
share/python1.4/repr.py
|
||||
share/python1.4/rexec.py
|
||||
share/python1.4/rfc822.py
|
||||
share/python1.4/sched.py
|
||||
share/python1.4/sgmllib.py
|
||||
share/python1.4/shelve.py
|
||||
share/python1.4/shutil.py
|
||||
share/python1.4/site.py
|
||||
share/python1.4/sndhdr.py
|
||||
share/python1.4/stat.py
|
||||
share/python1.4/statcache.py
|
||||
share/python1.4/string.py
|
||||
share/python1.4/sunau.py
|
||||
share/python1.4/sunaudio.py
|
||||
share/python1.4/symbol.py
|
||||
share/python1.4/tb.py
|
||||
share/python1.4/tempfile.py
|
||||
share/python1.4/toaiff.py
|
||||
share/python1.4/token.py
|
||||
share/python1.4/tokenize.py
|
||||
share/python1.4/traceback.py
|
||||
share/python1.4/tty.py
|
||||
share/python1.4/types.py
|
||||
share/python1.4/tzparse.py
|
||||
share/python1.4/os.pyc
|
||||
share/python1.4/urlparse.py
|
||||
share/python1.4/util.py
|
||||
share/python1.4/uu.py
|
||||
share/python1.4/wave.py
|
||||
share/python1.4/whatsound.py
|
||||
share/python1.4/whichdb.py
|
||||
share/python1.4/whrandom.py
|
||||
share/python1.4/xdrlib.py
|
||||
share/python1.4/zmod.py
|
||||
share/python1.4/pdb.doc
|
||||
share/python1.4/profile.doc
|
||||
share/python1.4/posixpath.pyc
|
||||
share/python1.4/stat.pyc
|
||||
share/python1.4/UserDict.pyc
|
||||
share/python1.4/py_compile.pyc
|
||||
share/python1.4/getopt.pyc
|
||||
share/python1.4/string.pyc
|
||||
share/python1.4/AST.pyc
|
||||
share/python1.4/BaseHTTPServer.pyc
|
||||
share/python1.4/Bastion.pyc
|
||||
share/python1.4/CGIHTTPServer.pyc
|
||||
share/python1.4/Complex.pyc
|
||||
share/python1.4/MimeWriter.pyc
|
||||
share/python1.4/Para.pyc
|
||||
share/python1.4/Queue.pyc
|
||||
share/python1.4/SimpleHTTPServer.pyc
|
||||
share/python1.4/SocketServer.pyc
|
||||
share/python1.4/StringIO.pyc
|
||||
share/python1.4/UserList.pyc
|
||||
share/python1.4/addpack.pyc
|
||||
share/python1.4/aifc.pyc
|
||||
share/python1.4/anydbm.pyc
|
||||
share/python1.4/audiodev.pyc
|
||||
share/python1.4/base64.pyc
|
||||
share/python1.4/bdb.pyc
|
||||
share/python1.4/binhex.pyc
|
||||
share/python1.4/bisect.pyc
|
||||
share/python1.4/calendar.pyc
|
||||
share/python1.4/cgi.pyc
|
||||
share/python1.4/cmd.pyc
|
||||
share/python1.4/cmp.pyc
|
||||
share/python1.4/cmpcache.pyc
|
||||
share/python1.4/codehack.pyc
|
||||
share/python1.4/colorsys.pyc
|
||||
share/python1.4/commands.pyc
|
||||
share/python1.4/compileall.pyc
|
||||
share/python1.4/copy.pyc
|
||||
share/python1.4/dbhash.pyc
|
||||
share/python1.4/dircache.pyc
|
||||
share/python1.4/dircmp.pyc
|
||||
share/python1.4/dis.pyc
|
||||
share/python1.4/dospath.pyc
|
||||
share/python1.4/dumbdbm.pyc
|
||||
share/python1.4/dump.pyc
|
||||
share/python1.4/emacs.pyc
|
||||
share/python1.4/find.pyc
|
||||
share/python1.4/fmt.pyc
|
||||
share/python1.4/fnmatch.pyc
|
||||
share/python1.4/formatter.pyc
|
||||
share/python1.4/fpformat.pyc
|
||||
share/python1.4/ftplib.pyc
|
||||
share/python1.4/glob.pyc
|
||||
share/python1.4/gopherlib.pyc
|
||||
share/python1.4/grep.pyc
|
||||
share/python1.4/htmlentitydefs.pyc
|
||||
share/python1.4/htmllib.pyc
|
||||
share/python1.4/httplib.pyc
|
||||
share/python1.4/ihooks.pyc
|
||||
share/python1.4/imghdr.pyc
|
||||
share/python1.4/linecache.pyc
|
||||
share/python1.4/lockfile.pyc
|
||||
share/python1.4/macpath.pyc
|
||||
share/python1.4/macurl2path.pyc
|
||||
share/python1.4/mailbox.pyc
|
||||
share/python1.4/mailcap.pyc
|
||||
share/python1.4/mhlib.pyc
|
||||
share/python1.4/mimetools.pyc
|
||||
share/python1.4/mimify.pyc
|
||||
share/python1.4/multifile.pyc
|
||||
share/python1.4/mutex.pyc
|
||||
share/python1.4/newdir.pyc
|
||||
share/python1.4/ni.pyc
|
||||
share/python1.4/nntplib.pyc
|
||||
share/python1.4/ntpath.pyc
|
||||
share/python1.4/nturl2path.pyc
|
||||
share/python1.4/ospath.pyc
|
||||
share/python1.4/packmail.pyc
|
||||
share/python1.4/pdb.pyc
|
||||
share/python1.4/pickle.pyc
|
||||
share/python1.4/pipes.pyc
|
||||
share/python1.4/poly.pyc
|
||||
share/python1.4/popen2.pyc
|
||||
share/python1.4/posixfile.pyc
|
||||
share/python1.4/profile.pyc
|
||||
share/python1.4/pstats.pyc
|
||||
share/python1.4/pty.pyc
|
||||
share/python1.4/pyclbr.pyc
|
||||
share/python1.4/quopri.pyc
|
||||
share/python1.4/rand.pyc
|
||||
share/python1.4/random.pyc
|
||||
share/python1.4/regex_syntax.pyc
|
||||
share/python1.4/regexp.pyc
|
||||
share/python1.4/regsub.pyc
|
||||
share/python1.4/repr.pyc
|
||||
share/python1.4/rexec.pyc
|
||||
share/python1.4/rfc822.pyc
|
||||
share/python1.4/sched.pyc
|
||||
share/python1.4/sgmllib.pyc
|
||||
share/python1.4/shelve.pyc
|
||||
share/python1.4/shutil.pyc
|
||||
share/python1.4/site.pyc
|
||||
share/python1.4/sndhdr.pyc
|
||||
share/python1.4/statcache.pyc
|
||||
share/python1.4/sunau.pyc
|
||||
share/python1.4/sunaudio.pyc
|
||||
share/python1.4/symbol.pyc
|
||||
share/python1.4/tb.pyc
|
||||
share/python1.4/tempfile.pyc
|
||||
share/python1.4/toaiff.pyc
|
||||
share/python1.4/token.pyc
|
||||
share/python1.4/tokenize.pyc
|
||||
share/python1.4/traceback.pyc
|
||||
share/python1.4/tty.pyc
|
||||
share/python1.4/types.pyc
|
||||
share/python1.4/tzparse.pyc
|
||||
share/python1.4/urllib.pyc
|
||||
share/python1.4/urlparse.pyc
|
||||
share/python1.4/uu.pyc
|
||||
share/python1.4/util.pyc
|
||||
share/python1.4/wave.pyc
|
||||
share/python1.4/whatsound.pyc
|
||||
share/python1.4/whichdb.pyc
|
||||
share/python1.4/whrandom.pyc
|
||||
share/python1.4/xdrlib.pyc
|
||||
share/python1.4/zmod.pyc
|
||||
|
|
Loading…
Add table
Reference in a new issue