summaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authortron <tron>1998-03-07 23:41:37 +0000
committertron <tron>1998-03-07 23:41:37 +0000
commitfebba97705c475144ccb4b58578e15a4c019a0f5 (patch)
tree7617cf139ab51aaa9853f0dda0d5c9a938417658 /lang
parent7d548ccae965fd1329941c3468eddd81458f61ad (diff)
downloadpkgsrc-febba97705c475144ccb4b58578e15a4c019a0f5.tar.gz
Initial commit of "tclX-8.0.2" package.
Diffstat (limited to 'lang')
-rw-r--r--lang/tclX80/Makefile33
-rw-r--r--lang/tclX80/files/md51
-rw-r--r--lang/tclX80/patches/patch-aa32
-rw-r--r--lang/tclX80/patches/patch-ab11
-rw-r--r--lang/tclX80/patches/patch-ac11
-rw-r--r--lang/tclX80/patches/patch-ad11
-rw-r--r--lang/tclX80/pkg/COMMENT1
-rw-r--r--lang/tclX80/pkg/DESCR6
-rw-r--r--lang/tclX80/pkg/PLIST319
9 files changed, 425 insertions, 0 deletions
diff --git a/lang/tclX80/Makefile b/lang/tclX80/Makefile
new file mode 100644
index 00000000000..3c88d62d358
--- /dev/null
+++ b/lang/tclX80/Makefile
@@ -0,0 +1,33 @@
+#
+# New packages collection makefile for: tclX8.0
+# Version required: 8.0.2
+# Date Created: 07 March 1998
+# Whom: tron
+#
+# $NetBSD: Makefile,v 1.1 1998/03/07 23:41:37 tron Exp $
+#
+
+DISTNAME= tclX8.0.2
+PKGNAME= tclX-8.0.2
+CATEGORIES= lang
+MASTER_SITES= ftp://ftp.neosoft.com/pub/tcl/tclx-distrib/
+
+MAINTAINER= tron@netbsd.org
+
+LIB_DEPENDS= tk80.1:${PORTSDIR}/x11/tk80
+
+WRKSRC= ${WRKDIR}/tclX8.0.2/unix
+GNU_CONFIGURE= yes
+CONFIGURE_ARGS+= --enable-shared --with-tk
+CONFIGURE_ENV+= PREFIX=${PREFIX} TCL_SHLIB_LD_LIBS=-L${PREFIX}/lib
+
+MAN3= TclCommandWriting.3 Tcl_HandleAlloc.3 Tcl_HandleFree.3 \
+ Tcl_HandleTblInit.3 Tcl_HandleTblRelease.3 Tcl_HandleTblUseCount.3 \
+ Tcl_HandleWalk.3 Tcl_HandleXlate.3 TclX_NewKeyedListObj.3 \
+ TclX_KeyedListGet.3 TclX_KeyedListSet.3 TclX_KeyedListDelete.3 \
+ TclX_KeyedListGetKeys.3 Tclx_Init.3 Tclxcmd_Init.3 TclX_Main.3 \
+ Tkx_Init.3 TkX_Main.3
+MANN= ckalloc.n memory.n ckfree.n Tcl_DisplayMemory.n Tcl_InitMemory.n \
+ Tcl_ValidateAllMemory.n TclX.n
+
+.include <bsd.port.mk>
diff --git a/lang/tclX80/files/md5 b/lang/tclX80/files/md5
new file mode 100644
index 00000000000..cd9910c5404
--- /dev/null
+++ b/lang/tclX80/files/md5
@@ -0,0 +1 @@
+MD5 (tclX8.0.2.tar.gz) = b47fb84616c4d3ce9d8c4862c7bcfc44
diff --git a/lang/tclX80/patches/patch-aa b/lang/tclX80/patches/patch-aa
new file mode 100644
index 00000000000..5a63451de39
--- /dev/null
+++ b/lang/tclX80/patches/patch-aa
@@ -0,0 +1,32 @@
+--- Config.mk.orig Sun Nov 30 00:19:08 1997
++++ Config.mk Sat Mar 7 22:10:02 1998
+@@ -56,10 +56,10 @@
+ # to ${TCL_LIB_SPEC}.
+ #
+
+-TCL_SRC=${srcbasedir}/../tcl8.0
+-TCL_BUILD=${bldbasedir}/../tcl8.0
+-TCL_CONFIG=${TCL_BUILD}/unix/tclConfig.sh
+-TCL_LIB=${TCL_BUILD_LIB_SPEC}
++TCL_SRC=${PREFIX}/include/tcl8.0
++TCL_BUILD=
++TCL_CONFIG=${PREFIX}/lib/tcl8.0/tclConfig.sh
++TCL_LIB=${TCL_LIB_SPEC}
+
+ #------------------------------------------------------------------------------
+ # Unless configure is going to be run with --with-tk=NO, these defines must be
+@@ -68,10 +68,10 @@
+ # neccessary to link with the Tk shared library (libtk8.0.so). If you want to
+ # use the installed Tk library, set TK_LIB to ${TK_LIB_SPEC}.
+
+-TK_SRC=${srcbasedir}/../tk8.0
+-TK_BUILD=${bldbasedir}/../tk8.0
+-TK_CONFIG=${TK_BUILD}/unix/tkConfig.sh
+-TK_LIB=${TK_BUILD_LIB_SPEC}
++TK_SRC=${PREFIX}/include/tk8.0
++TK_BUILD=
++TK_CONFIG=${PREFIX}/lib/tk8.0/tkConfig.sh
++TK_LIB=${TK_LIB_SPEC}
+
+ #------------------------------------------------------------------------------
+ # C compiler and debug/optimization/profiling flag to use. Set by configure,
diff --git a/lang/tclX80/patches/patch-ab b/lang/tclX80/patches/patch-ab
new file mode 100644
index 00000000000..f09fc740385
--- /dev/null
+++ b/lang/tclX80/patches/patch-ab
@@ -0,0 +1,11 @@
+--- ../tcl/unix/Makefile.in.orig Sun Nov 30 00:19:02 1997
++++ ../tcl/unix/Makefile.in Sat Mar 7 22:20:51 1998
+@@ -124,7 +124,7 @@
+ # If a link fails, purge the executable, as some systems leave invalid
+ # executables around.
+ #
+-all: tcl checkup RUNTIME tclXtest
++all: tcl checkup RUNTIME
+
+ static: tcl.static tclXtest.static
+
diff --git a/lang/tclX80/patches/patch-ac b/lang/tclX80/patches/patch-ac
new file mode 100644
index 00000000000..390d66f1230
--- /dev/null
+++ b/lang/tclX80/patches/patch-ac
@@ -0,0 +1,11 @@
+--- ../tk/unix/Makefile.in.orig Sun Nov 30 00:19:07 1997
++++ ../tk/unix/Makefile.in Sat Mar 7 22:22:00 1998
+@@ -85,7 +85,7 @@
+ # If a link fails, purge the executable, as some systems leave invalid
+ # executables around.
+ #
+-all: wishx RUNTIME tktest
++all: wishx RUNTIME
+
+ static: wishx.static tktest.static
+
diff --git a/lang/tclX80/patches/patch-ad b/lang/tclX80/patches/patch-ad
new file mode 100644
index 00000000000..561895e8f66
--- /dev/null
+++ b/lang/tclX80/patches/patch-ad
@@ -0,0 +1,11 @@
+--- Common.mk.in.orig Sun Nov 30 00:19:08 1997
++++ Common.mk.in Sat Mar 7 22:59:30 1998
+@@ -101,7 +101,7 @@
+ TCL_LD_FLAGS = @TCL_LD_FLAGS@
+ TCL_DL_LIBS = @TCL_DL_LIBS@
+ TCL_SHLIB_LD = @TCL_SHLIB_LD@
+-TCL_SHLIB_LD_LIBS = @TCL_SHLIB_LD_LIBS@
++TCL_SHLIB_LD_LIBS = -L${PREFIX}/lib
+ TCL_BUILD_LIB_SPEC = @TCL_BUILD_LIB_SPEC@
+ TCL_LIB_SPEC = @TCL_LIB_SPEC@
+ TCL_LD_SEARCH_FLAGS = @TCL_LD_SEARCH_FLAGS@
diff --git a/lang/tclX80/pkg/COMMENT b/lang/tclX80/pkg/COMMENT
new file mode 100644
index 00000000000..2009b075d6e
--- /dev/null
+++ b/lang/tclX80/pkg/COMMENT
@@ -0,0 +1 @@
+Extended Tcl (TclX)
diff --git a/lang/tclX80/pkg/DESCR b/lang/tclX80/pkg/DESCR
new file mode 100644
index 00000000000..3b93413427f
--- /dev/null
+++ b/lang/tclX80/pkg/DESCR
@@ -0,0 +1,6 @@
+ Extended Tcl (TclX), is a set of extensions to Tcl 8.0, the Tool Command
+Language invented by Dr. John Ousterhout. Tcl is a powerful, yet simple
+embeddable programming language. Extended Tcl is oriented towards system
+programming tasks and large application development. TclX provides additional
+interfaces to the operating system, and adds many new programming constructs,
+text manipulation tools, and debugging tools.
diff --git a/lang/tclX80/pkg/PLIST b/lang/tclX80/pkg/PLIST
new file mode 100644
index 00000000000..58d6ff4a5dc
--- /dev/null
+++ b/lang/tclX80/pkg/PLIST
@@ -0,0 +1,319 @@
+@comment $NetBSD: PLIST,v 1.1 1998/03/07 23:41:38 tron Exp $
+bin/tcl
+bin/tclhelp
+bin/wishx
+include/tclExtend.h
+lib/libtclx802.a
+lib/libtclx802.so.1.0
+lib/libtkx802.a
+lib/libtkx802.so.1.0
+@exec /sbin/ldconfig || /usr/bin/true
+@unexec /sbin/ldconfig || /usr/bin/true
+lib/tclX8.0.2/autoload.tcl
+lib/tclX8.0.2/buildidx.tcl
+lib/tclX8.0.2/help/Tcl.brf
+lib/tclX8.0.2/help/TclX.brf
+lib/tclX8.0.2/help/help
+lib/tclX8.0.2/help/tcl/control/break
+lib/tclX8.0.2/help/tcl/control/case
+lib/tclX8.0.2/help/tcl/control/catch
+lib/tclX8.0.2/help/tcl/control/commandloop
+lib/tclX8.0.2/help/tcl/control/continue
+lib/tclX8.0.2/help/tcl/control/error
+lib/tclX8.0.2/help/tcl/control/eval
+lib/tclX8.0.2/help/tcl/control/exit
+lib/tclX8.0.2/help/tcl/control/for
+lib/tclX8.0.2/help/tcl/control/foreach
+lib/tclX8.0.2/help/tcl/control/if
+lib/tclX8.0.2/help/tcl/control/interp
+lib/tclX8.0.2/help/tcl/control/loop
+lib/tclX8.0.2/help/tcl/control/proc
+lib/tclX8.0.2/help/tcl/control/rename
+lib/tclX8.0.2/help/tcl/control/return
+lib/tclX8.0.2/help/tcl/control/safe
+lib/tclX8.0.2/help/tcl/control/source
+lib/tclX8.0.2/help/tcl/control/switch
+lib/tclX8.0.2/help/tcl/control/tclx_errorHandler
+lib/tclX8.0.2/help/tcl/control/try_eval
+lib/tclX8.0.2/help/tcl/control/uplevel
+lib/tclX8.0.2/help/tcl/control/while
+lib/tclX8.0.2/help/tcl/debug/cmdtrace
+lib/tclX8.0.2/help/tcl/debug/edprocs
+lib/tclX8.0.2/help/tcl/debug/profile
+lib/tclX8.0.2/help/tcl/debug/profrep
+lib/tclX8.0.2/help/tcl/debug/saveprocs
+lib/tclX8.0.2/help/tcl/events/after
+lib/tclX8.0.2/help/tcl/events/background-error
+lib/tclX8.0.2/help/tcl/events/fileevent
+lib/tclX8.0.2/help/tcl/events/mainloop
+lib/tclX8.0.2/help/tcl/events/update
+lib/tclX8.0.2/help/tcl/events/vwait
+lib/tclX8.0.2/help/tcl/files/bsearch
+lib/tclX8.0.2/help/tcl/files/chgrp
+lib/tclX8.0.2/help/tcl/files/chmod
+lib/tclX8.0.2/help/tcl/files/chown
+lib/tclX8.0.2/help/tcl/files/chroot
+lib/tclX8.0.2/help/tcl/files/close
+lib/tclX8.0.2/help/tcl/files/dup
+lib/tclX8.0.2/help/tcl/files/echo
+lib/tclX8.0.2/help/tcl/files/eof
+lib/tclX8.0.2/help/tcl/files/fblocked
+lib/tclX8.0.2/help/tcl/files/fcntl
+lib/tclX8.0.2/help/tcl/files/fconfigure
+lib/tclX8.0.2/help/tcl/files/fcopy
+lib/tclX8.0.2/help/tcl/files/file
+lib/tclX8.0.2/help/tcl/files/filename
+lib/tclX8.0.2/help/tcl/files/flock
+lib/tclX8.0.2/help/tcl/files/flush
+lib/tclX8.0.2/help/tcl/files/for_file
+lib/tclX8.0.2/help/tcl/files/for_recursive_glob
+lib/tclX8.0.2/help/tcl/files/fstat
+lib/tclX8.0.2/help/tcl/files/ftruncate
+lib/tclX8.0.2/help/tcl/files/funlock
+lib/tclX8.0.2/help/tcl/files/gets
+lib/tclX8.0.2/help/tcl/files/glob
+lib/tclX8.0.2/help/tcl/files/lgets
+lib/tclX8.0.2/help/tcl/files/link
+lib/tclX8.0.2/help/tcl/files/open
+lib/tclX8.0.2/help/tcl/files/pipe
+lib/tclX8.0.2/help/tcl/files/puts
+lib/tclX8.0.2/help/tcl/files/read
+lib/tclX8.0.2/help/tcl/files/read_file
+lib/tclX8.0.2/help/tcl/files/readdir
+lib/tclX8.0.2/help/tcl/files/recursive_glob
+lib/tclX8.0.2/help/tcl/files/seek
+lib/tclX8.0.2/help/tcl/files/select
+lib/tclX8.0.2/help/tcl/files/sync
+lib/tclX8.0.2/help/tcl/files/tell
+lib/tclX8.0.2/help/tcl/files/write_file
+lib/tclX8.0.2/help/tcl/filescan/scancontext
+lib/tclX8.0.2/help/tcl/filescan/scanfile
+lib/tclX8.0.2/help/tcl/filescan/scanmatch
+lib/tclX8.0.2/help/tcl/internation/catclose
+lib/tclX8.0.2/help/tcl/internation/catgets
+lib/tclX8.0.2/help/tcl/internation/catopen
+lib/tclX8.0.2/help/tcl/intro/keyedlists
+lib/tclX8.0.2/help/tcl/intro/syntax
+lib/tclX8.0.2/help/tcl/intro/tclsh
+lib/tclX8.0.2/help/tcl/keyedlists/keyldel
+lib/tclX8.0.2/help/tcl/keyedlists/keylget
+lib/tclX8.0.2/help/tcl/keyedlists/keylkeys
+lib/tclX8.0.2/help/tcl/keyedlists/keylset
+lib/tclX8.0.2/help/tcl/libraries/auto_commands
+lib/tclX8.0.2/help/tcl/libraries/auto_load_file
+lib/tclX8.0.2/help/tcl/libraries/auto_packages
+lib/tclX8.0.2/help/tcl/libraries/buildpackageindex
+lib/tclX8.0.2/help/tcl/libraries/convert_lib
+lib/tclX8.0.2/help/tcl/libraries/library
+lib/tclX8.0.2/help/tcl/libraries/load
+lib/tclX8.0.2/help/tcl/libraries/loadlibindex
+lib/tclX8.0.2/help/tcl/libraries/package
+lib/tclX8.0.2/help/tcl/libraries/packagelib
+lib/tclX8.0.2/help/tcl/libraries/pkgMkIndex
+lib/tclX8.0.2/help/tcl/libraries/searchpath
+lib/tclX8.0.2/help/tcl/libraries/unknown
+lib/tclX8.0.2/help/tcl/lists/concat
+lib/tclX8.0.2/help/tcl/lists/intersect
+lib/tclX8.0.2/help/tcl/lists/intersect3
+lib/tclX8.0.2/help/tcl/lists/join
+lib/tclX8.0.2/help/tcl/lists/lappend
+lib/tclX8.0.2/help/tcl/lists/lassign
+lib/tclX8.0.2/help/tcl/lists/lcontain
+lib/tclX8.0.2/help/tcl/lists/lempty
+lib/tclX8.0.2/help/tcl/lists/lindex
+lib/tclX8.0.2/help/tcl/lists/linsert
+lib/tclX8.0.2/help/tcl/lists/list
+lib/tclX8.0.2/help/tcl/lists/llength
+lib/tclX8.0.2/help/tcl/lists/lmatch
+lib/tclX8.0.2/help/tcl/lists/lrange
+lib/tclX8.0.2/help/tcl/lists/lreplace
+lib/tclX8.0.2/help/tcl/lists/lrmdups
+lib/tclX8.0.2/help/tcl/lists/lsearch
+lib/tclX8.0.2/help/tcl/lists/lsort
+lib/tclX8.0.2/help/tcl/lists/lvarcat
+lib/tclX8.0.2/help/tcl/lists/lvarpop
+lib/tclX8.0.2/help/tcl/lists/lvarpush
+lib/tclX8.0.2/help/tcl/lists/split
+lib/tclX8.0.2/help/tcl/lists/union
+lib/tclX8.0.2/help/tcl/math/expr
+lib/tclX8.0.2/help/tcl/math/fmathcmds
+lib/tclX8.0.2/help/tcl/math/incr
+lib/tclX8.0.2/help/tcl/math/max
+lib/tclX8.0.2/help/tcl/math/min
+lib/tclX8.0.2/help/tcl/math/random
+lib/tclX8.0.2/help/tcl/processes/exec
+lib/tclX8.0.2/help/tcl/processes/execl
+lib/tclX8.0.2/help/tcl/processes/fork
+lib/tclX8.0.2/help/tcl/processes/kill
+lib/tclX8.0.2/help/tcl/processes/nice
+lib/tclX8.0.2/help/tcl/processes/pid
+lib/tclX8.0.2/help/tcl/processes/system
+lib/tclX8.0.2/help/tcl/processes/wait
+lib/tclX8.0.2/help/tcl/signals/signal
+lib/tclX8.0.2/help/tcl/sockets/host_info
+lib/tclX8.0.2/help/tcl/sockets/http
+lib/tclX8.0.2/help/tcl/sockets/socket
+lib/tclX8.0.2/help/tcl/status/cd
+lib/tclX8.0.2/help/tcl/status/dirs
+lib/tclX8.0.2/help/tcl/status/history
+lib/tclX8.0.2/help/tcl/status/id
+lib/tclX8.0.2/help/tcl/status/info
+lib/tclX8.0.2/help/tcl/status/infox
+lib/tclX8.0.2/help/tcl/status/popd
+lib/tclX8.0.2/help/tcl/status/pushd
+lib/tclX8.0.2/help/tcl/status/pwd
+lib/tclX8.0.2/help/tcl/status/showproc
+lib/tclX8.0.2/help/tcl/status/umask
+lib/tclX8.0.2/help/tcl/strings/append
+lib/tclX8.0.2/help/tcl/strings/binary
+lib/tclX8.0.2/help/tcl/strings/ccollate
+lib/tclX8.0.2/help/tcl/strings/cconcat
+lib/tclX8.0.2/help/tcl/strings/cequal
+lib/tclX8.0.2/help/tcl/strings/cindex
+lib/tclX8.0.2/help/tcl/strings/clength
+lib/tclX8.0.2/help/tcl/strings/crange
+lib/tclX8.0.2/help/tcl/strings/csubstr
+lib/tclX8.0.2/help/tcl/strings/ctoken
+lib/tclX8.0.2/help/tcl/strings/ctype
+lib/tclX8.0.2/help/tcl/strings/format
+lib/tclX8.0.2/help/tcl/strings/regexp
+lib/tclX8.0.2/help/tcl/strings/regsub
+lib/tclX8.0.2/help/tcl/strings/replicate
+lib/tclX8.0.2/help/tcl/strings/scan
+lib/tclX8.0.2/help/tcl/strings/string
+lib/tclX8.0.2/help/tcl/strings/subst
+lib/tclX8.0.2/help/tcl/strings/translit
+lib/tclX8.0.2/help/tcl/tclshell/intro
+lib/tclX8.0.2/help/tcl/tclshell/variables
+lib/tclX8.0.2/help/tcl/time/alarm
+lib/tclX8.0.2/help/tcl/time/clock
+lib/tclX8.0.2/help/tcl/time/sleep
+lib/tclX8.0.2/help/tcl/time/time
+lib/tclX8.0.2/help/tcl/time/times
+lib/tclX8.0.2/help/tcl/variables/array
+lib/tclX8.0.2/help/tcl/variables/for_array_keys
+lib/tclX8.0.2/help/tcl/variables/global
+lib/tclX8.0.2/help/tcl/variables/namespace
+lib/tclX8.0.2/help/tcl/variables/set
+lib/tclX8.0.2/help/tcl/variables/stdvars
+lib/tclX8.0.2/help/tcl/variables/trace
+lib/tclX8.0.2/help/tcl/variables/unset
+lib/tclX8.0.2/help/tcl/variables/upvar
+lib/tclX8.0.2/help/tcl/variables/variable
+lib/tclX8.0.2/pkgIndex.tcl
+lib/tclX8.0.2/tcl.tlib
+lib/tclX8.0.2/tcl.tndx
+lib/tclX8.0.2/tclXAppInit.c
+lib/tclX8.0.2/tclx.tcl
+@dirrm lib/tclX8.0.2/help/tcl/variables
+@dirrm lib/tclX8.0.2/help/tcl/time
+@dirrm lib/tclX8.0.2/help/tcl/tclshell
+@dirrm lib/tclX8.0.2/help/tcl/strings
+@dirrm lib/tclX8.0.2/help/tcl/status
+@dirrm lib/tclX8.0.2/help/tcl/sockets
+@dirrm lib/tclX8.0.2/help/tcl/signals
+@dirrm lib/tclX8.0.2/help/tcl/processes
+@dirrm lib/tclX8.0.2/help/tcl/math
+@dirrm lib/tclX8.0.2/help/tcl/lists
+@dirrm lib/tclX8.0.2/help/tcl/libraries
+@dirrm lib/tclX8.0.2/help/tcl/keyedlists
+@dirrm lib/tclX8.0.2/help/tcl/intro
+@dirrm lib/tclX8.0.2/help/tcl/internation
+@dirrm lib/tclX8.0.2/help/tcl/filescan
+@dirrm lib/tclX8.0.2/help/tcl/files
+@dirrm lib/tclX8.0.2/help/tcl/events
+@dirrm lib/tclX8.0.2/help/tcl/debug
+@dirrm lib/tclX8.0.2/help/tcl/control
+@dirrm lib/tclX8.0.2/help/tcl
+@dirrm lib/tclX8.0.2/help
+@dirrm lib/tclX8.0.2
+lib/tclxConfig.sh
+lib/tkX8.0.2/help/Tk.brf
+lib/tkX8.0.2/help/tk/control/bell
+lib/tkX8.0.2/help/tk/control/bind
+lib/tkX8.0.2/help/tk/control/bindtags
+lib/tkX8.0.2/help/tk/control/clipboard
+lib/tkX8.0.2/help/tk/control/destroy
+lib/tkX8.0.2/help/tk/control/event
+lib/tkX8.0.2/help/tk/control/focus
+lib/tkX8.0.2/help/tk/control/font
+lib/tkX8.0.2/help/tk/control/grab
+lib/tkX8.0.2/help/tk/control/grid
+lib/tkX8.0.2/help/tk/control/lower
+lib/tkX8.0.2/help/tk/control/option
+lib/tkX8.0.2/help/tk/control/pack
+lib/tkX8.0.2/help/tk/control/pack-old
+lib/tkX8.0.2/help/tk/control/place
+lib/tkX8.0.2/help/tk/control/raise
+lib/tkX8.0.2/help/tk/control/selection
+lib/tkX8.0.2/help/tk/control/send
+lib/tkX8.0.2/help/tk/control/tk
+lib/tkX8.0.2/help/tk/control/tk_bisque
+lib/tkX8.0.2/help/tk/control/tk_focusNext
+lib/tkX8.0.2/help/tk/control/tk_setPalette
+lib/tkX8.0.2/help/tk/control/tkerror
+lib/tkX8.0.2/help/tk/control/tkvars
+lib/tkX8.0.2/help/tk/control/tkwait
+lib/tkX8.0.2/help/tk/control/winfo
+lib/tkX8.0.2/help/tk/control/wm
+lib/tkX8.0.2/help/tk/images/bitmap
+lib/tkX8.0.2/help/tk/images/image
+lib/tkX8.0.2/help/tk/images/photo
+lib/tkX8.0.2/help/tk/widgets/button
+lib/tkX8.0.2/help/tk/widgets/canvas
+lib/tkX8.0.2/help/tk/widgets/checkbutton
+lib/tkX8.0.2/help/tk/widgets/entry
+lib/tkX8.0.2/help/tk/widgets/frame
+lib/tkX8.0.2/help/tk/widgets/label
+lib/tkX8.0.2/help/tk/widgets/listbox
+lib/tkX8.0.2/help/tk/widgets/menu
+lib/tkX8.0.2/help/tk/widgets/menubutton
+lib/tkX8.0.2/help/tk/widgets/message
+lib/tkX8.0.2/help/tk/widgets/options
+lib/tkX8.0.2/help/tk/widgets/radiobutton
+lib/tkX8.0.2/help/tk/widgets/scale
+lib/tkX8.0.2/help/tk/widgets/scrollbar
+lib/tkX8.0.2/help/tk/widgets/text
+lib/tkX8.0.2/help/tk/widgets/tk_chooseColor
+lib/tkX8.0.2/help/tk/widgets/tk_dialog
+lib/tkX8.0.2/help/tk/widgets/tk_getOpenFile
+lib/tkX8.0.2/help/tk/widgets/tk_menuBar
+lib/tkX8.0.2/help/tk/widgets/tk_messageBox
+lib/tkX8.0.2/help/tk/widgets/tk_optionMenu
+lib/tkX8.0.2/help/tk/widgets/tk_popup
+lib/tkX8.0.2/help/tk/widgets/toplevel
+lib/tkX8.0.2/pkgIndex.tcl
+lib/tkX8.0.2/tkXAppInit.c
+lib/tkX8.0.2/tkx.tcl
+@dirrm lib/tkX8.0.2/help/tk/widgets
+@dirrm lib/tkX8.0.2/help/tk/images
+@dirrm lib/tkX8.0.2/help/tk/control
+@dirrm lib/tkX8.0.2/help/tk
+@dirrm lib/tkX8.0.2/help
+@dirrm lib/tkX8.0.2
+lib/tkxConfig.sh
+man/man3/TclCommandWriting.3
+man/man3/TclX_KeyedListDelete.3
+man/man3/TclX_KeyedListGet.3
+man/man3/TclX_KeyedListGetKeys.3
+man/man3/TclX_KeyedListSet.3
+man/man3/TclX_Main.3
+man/man3/TclX_NewKeyedListObj.3
+man/man3/Tcl_HandleAlloc.3
+man/man3/Tcl_HandleFree.3
+man/man3/Tcl_HandleTblInit.3
+man/man3/Tcl_HandleTblRelease.3
+man/man3/Tcl_HandleTblUseCount.3
+man/man3/Tcl_HandleWalk.3
+man/man3/Tcl_HandleXlate.3
+man/man3/Tclx_Init.3
+man/man3/Tclxcmd_Init.3
+man/man3/TkX_Main.3
+man/man3/Tkx_Init.3
+man/mann/TclX.n
+man/mann/Tcl_DisplayMemory.n
+man/mann/Tcl_InitMemory.n
+man/mann/Tcl_ValidateAllMemory.n
+man/mann/ckalloc.n
+man/mann/ckfree.n
+man/mann/memory.n