* Update to 4.0.1, which also fixes DESTDIR/PREFIX handling.

* Fix dynamic loading patches.
* General clean-up.
This commit is contained in:
naddy 2003-05-19 08:50:43 +00:00
parent 58c11b792d
commit 07bfa62c94
13 changed files with 566 additions and 372 deletions

View File

@ -1,8 +1,8 @@
# $OpenBSD: Makefile,v 1.14 2003/03/31 14:11:50 sturm Exp $
# $OpenBSD: Makefile,v 1.15 2003/05/19 08:50:43 naddy Exp $
COMMENT= "scheme interpreter with Tk interface"
COMMENT= "Scheme interpreter with Tk interface"
STK_VERSION= 3.1.1
STK_VERSION= 4.0.1
STK_ARCH= $(OPSYS)-$(OPSYS_VER)-$(MACHINE)
DISTNAME= STk-${STK_VERSION}
CATEGORIES= lang
@ -16,26 +16,12 @@ PERMIT_DISTFILES_FTP= Yes
USE_X11= Yes
CONFIGURE_STYLE=gnu dest
CONFIGURE_STYLE=gnu
CONFIGURE_ARGS= ${NO_SHARED_LIBS:S/Yes/--disable-dynload/}
.if (${MACHINE_ARCH} == "alpha" || ${MACHINE_ARCH} == "arc" || \
${MACHINE_ARCH} == "pmax" || ${MACHINE_ARCH} == "powerpc")
CONFIGURE_ARGS+= --disable-dynload
NO_SHARED_LIBS= Yes
.endif
post-build:
@cd ${WRKSRC} && mv config.make config.make.org && \
sed -e 's,${PREFIX},$${DESTDIR}${PREFIX},' \
<config.make.org >config.make
FAKE_FLAGS= root=${DESTDIR}
NO_REGRESS= Yes
SUBST_VARS= STK_VERSION STK_ARCH
# fix badlink postinstall-wise
post-install:
.for i in stk-${STK_VERSION} snow-${STK_VERSION} stk snow
k=`readlink ${PREFIX}/bin/$i|sed -e 's,${WRKINST},,'`; echo $$k; ln -sf $$k ${PREFIX}/bin/$i
.endfor
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
MD5 (STk-3.1.1.tar.gz) = 7cc038e09dc86132e7c3a12eff28a3f9
RMD160 (STk-3.1.1.tar.gz) = 25bd6ff85f63d5f8a84e6bde442288a4e26ac780
SHA1 (STk-3.1.1.tar.gz) = 2e9fecad0594f1fdfd2f3232e0148cc6e87894f5
MD5 (STk-4.0.1.tar.gz) = 4f21cae40a619193ee081eafaa58a5be
RMD160 (STk-4.0.1.tar.gz) = 58ad3c66f77a6ab33db5d4ca9f2510d50b6b6f0d
SHA1 (STk-4.0.1.tar.gz) = 50dc98c2b64db1c9cca54411cb406feb4cb57600

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-Makefile_in,v 1.1 2003/05/19 08:50:43 naddy Exp $
--- Makefile.in.orig Mon May 19 01:09:04 2003
+++ Makefile.in Mon May 19 01:10:59 2003
@@ -118,7 +118,7 @@ install-no-strip: clean-before
(cd Extensions; $(MAKE) install prefix=$(root)$(prefix))
(cd Demos; $(MAKE) install root=$(root))
(cd Help; $(MAKE) install prefix=$(root)$(prefix))
- (cd Doc; $(MAKE) install prefix=$(root)$(prefix))
+ (cd Doc; $(MAKE) install.man prefix=$(root)$(prefix))
(cd Stack; $(MAKE) install prefix=$(root)$(prefix))
install.libs:

View File

@ -0,0 +1,30 @@
$OpenBSD: patch-Src_dynload_c,v 1.1 2003/05/19 08:50:43 naddy Exp $
--- Src/dynload.c.orig Sun Sep 26 09:02:14 1999
+++ Src/dynload.c Mon May 19 01:03:06 2003
@@ -37,7 +37,7 @@
# define DLOPEN_COMPATIBLE
#endif
-#if defined(LINUX_ELF)
+#if defined(LINUX_ELF) || defined(OPENBSD)
# include <dlfcn.h>
# define DLOPEN_COMPATIBLE
#endif
@@ -172,7 +172,7 @@ static void load_and_call(char *path, ch
#endif /* MSC_VER WIN32 */
-#if defined(SUNOS4) || defined(SUNOS5) || defined(NETBSD1) || defined(FREEBSD) || defined(IRIX5) || defined(OSF1) ||defined(LINUX_ELF)
+#if defined(SUNOS4) || defined(SUNOS5) || defined(NETBSD1) || defined(OPENBSD) || defined(FREEBSD) || defined(IRIX5) || defined(OSF1) ||defined(LINUX_ELF)
#define MAKE_STAT_PTR(p) (STk_make_Cpointer(ANONYMOUS_STAT_PTR_ID, (p), TRUE))
#define MAKE_DYN_PTR(p) (STk_make_Cpointer(ANONYMOUS_DYN_PTR_ID, (p), FALSE))
@@ -360,7 +360,7 @@ void STk_load_object_file(char *path)
for (p = path, slash = p-1; *p; p++) /* Find position of last '/' */
if (*p == '/') slash = p;
-#if defined(NETBSD1)
+#if !defined(__ELF__)
sprintf(fct_name, "_STk_init_%s", slash + 1);
#else
sprintf(fct_name, "STk_init_%s", slash + 1);

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-Tk_unix_Makefile_in,v 1.1 2003/05/19 08:50:43 naddy Exp $
--- Tk/unix/Makefile.in.orig Mon May 19 00:54:51 2003
+++ Tk/unix/Makefile.in Mon May 19 00:55:03 2003
@@ -98,7 +98,7 @@ LIBS = @TCL_BUILD_LIB_SPEC@ @LIBS@ $(X11
# To change the compiler switches, for example to change from -O
# to -g, change the following line:
-CFLAGS = -O
+#CFLAGS = -O
# To turn off the security checks that disallow incoming sends when
# the X server appears to be insecure, reverse the comments on the

View File

@ -1,28 +0,0 @@
--- Makefile.in.orig Thu Sep 26 17:12:00 1996
+++ Makefile.in Sat Oct 30 22:46:53 1999
@@ -73,7 +73,7 @@
@echo "SH_LDFLAGS = @SH_LDFLAGS@" >> config.make
@echo "SH_LOADER = @SH_LOADER@" >> config.make
@echo "SH_SUFFIX = @SH_SUFFIX@" >> config.make
- @echo "LIB_MALLOC = @LIB_MALLOC@" >> config.make
+ @echo "LIB_MALLOC = " >> config.make
@echo "LIB_DLD = @LIB_DLD@" >> config.make
@echo "STK_LIBRARY = $(libdir)" >> config.make
@@ -105,7 +105,7 @@
demos:
/bin/sh -c "(cd Demos; ../Src/test-stk -f hbrowse README.html)"
-install: clean-before
+install:
(cd Tcl; $(MAKE) install)
(cd Tk; $(MAKE) install)
(cd Mp; $(MAKE) install)
@@ -116,6 +116,7 @@
(cd Extensions; $(MAKE) install)
(cd Demos; $(MAKE) install)
(cd Help; $(MAKE) install)
+ (cd Doc; $(MAKE) install.man)
@echo ""
@echo "Installation completed."

View File

@ -1,29 +0,0 @@
--- configure.orig Sat Oct 30 21:20:01 1999
+++ configure Sat Oct 30 21:18:49 1999
@@ -659,6 +659,7 @@
HP*) OS=HPUX; DFLGS="$DFLGS -Dhpux";;
Linux*) OS=LINUX;;
NetBSD-1*) OS=NETBSD1;;
+ OpenBSD*) OS=OPENBSD;;
FreeBSD*) OS=FREEBSD;;
IRIX-5*) OS=IRIX5;;
*) OS=unknown_system;;
@@ -1528,6 +1529,18 @@
SH_LDFLAGS="-Bshareable -o"
SH_LOADER="ld"
SH_SUFFIX='so';;
+ OPENBSD)
+ case $machine in
+ alpha)
+ echo "Alpha does not support shared libraries.";;
+ powerpc)
+ echo "PowerPC does not support shared libraries.";;
+ *)
+ SH_CCFLAGS="-fpic"
+ SH_LDFLAGS="-Bshareable -Bforcearchive -o"
+ SH_LOADER="ld"
+ SH_SUFFIX='so';;
+ esac;;
HPUX)
SH_CCFLAGS="+Z"
SH_LDFLAGS="-b -o"

View File

@ -1,26 +0,0 @@
--- Tk/unix/Makefile.in.orig Wed Sep 25 10:01:59 1996
+++ Tk/unix/Makefile.in Sat Oct 30 23:08:04 1999
@@ -75,12 +75,12 @@
# X11 include files accessible (the configure script will try to
# set this value, and will cause it to be an empty string if the
# include files are accessible via /usr/include).
-X11_INCLUDES = @XINCLUDES@
+X11_INCLUDES = -I/usr/X11R6/include
# Linker switch(es) to use to link with the X11 library archive (the
# configure script will try to set this value automatically, but you
# can override it).
-X11_LIB_SWITCHES = @XLIBSW@
+X11_LIB_SWITCHES = -L/usr/X11R6/lib
# Libraries to use when linking: must include at least Tk, Tcl, Xlib,
# and the math library (in that order). The "LIBS" part will be
@@ -90,7 +90,7 @@
# To change the compiler switches, for example to change from -O
# to -g, change the following line:
-CFLAGS = -O
+#CFLAGS = -O
# To turn off the security checks that disallow incoming sends when
# the X server appears to be insecure, reverse the comments on the

View File

@ -1,38 +0,0 @@
--- Src/dynload.c.orig Tue Sep 17 07:20:59 1996
+++ Src/dynload.c Tue Nov 23 18:02:17 1999
@@ -37,12 +37,16 @@
#include <dld.h>
#endif
-#if defined(NETBSD1)
+#if defined(NETBSD1) || defined(OPENBSD)
#include <sys/types.h>
#include <nlist.h>
+#ifdef USE_DYNLOAD
#include <link.h>
+#endif
+#if defined(NETBSD1)
#define dlerror() "dlerror" /* dlerror() isn't implemented in NetBSD 1.0 */
#endif
+#endif
#ifdef HPUX
#include <dl.h>
@@ -53,7 +57,7 @@
#ifdef USE_DYNLOAD
static SCM list_of_files = NULL;
-#if defined(SUNOS4) || defined(SUNOS5) || defined(NETBSD1) || defined(FREEBSD) || defined(IRIX5) || defined(OSF1) ||defined(LINUX_ELF)
+#if defined(SUNOS4) || defined(SUNOS5) || defined(NETBSD1) || defined(OPENBSD) || defined(FREEBSD) || defined(IRIX5) || defined(OSF1) ||defined(LINUX_ELF)
static void load_and_call(char *path, char *fct_name)
{
@@ -224,7 +228,7 @@
for (p = path, slash = p-1; *p; p++) /* Find position of last '/' */
if (*p == '/') slash = p;
-#if defined(NETBSD1) || defined(FREEBSD)
+#if defined(NETBSD1) || defined(OPENBSD) || defined(FREEBSD)
sprintf(fct_name, "_STk_init_%s", slash + 1);
#else
sprintf(fct_name, "STk_init_%s", slash + 1);

View File

@ -0,0 +1,23 @@
$OpenBSD: patch-configure,v 1.1 2003/05/19 08:50:43 naddy Exp $
--- configure.orig Mon May 19 00:51:01 2003
+++ configure Mon May 19 00:52:15 2003
@@ -692,6 +692,7 @@ case $MACHINE in
HP*) OS=HPUX; DFLGS="$DFLGS -Dhpux";;
Linux*) OS=LINUX;;
NetBSD-1*) OS=NETBSD1;;
+ OpenBSD*) OS=OPENBSD;;
FreeBSD*) OS=FREEBSD;;
IRIX-5*) OS=IRIX5;;
IRIX*-6*) OS=IRIX5;;
@@ -2277,6 +2278,11 @@ case $OS in
SH_CCFLAGS="-fpic"
SH_LDFLAGS="-Bshareable -o"
SH_LOADER="ld"
+ SH_SUFFIX='so';;
+ OPENBSD)
+ SH_CCFLAGS="-fpic"
+ SH_LDFLAGS="-shared -o"
+ SH_LOADER="${CC}"
SH_SUFFIX='so';;
HPUX)
SH_CCFLAGS="+Z"

View File

@ -1,9 +1,7 @@
STk is a Scheme interpreter which can access to the Tk graphical package.
Concretely it can be seen as the John Ousterhout's Tk package where
the Tcl language has been replaced by Scheme.
STk is a R4RS Scheme interpreter which can access the Tk graphical
package. Concretely it can be seen as the John Ousterhout's Tk
package where the Tcl language has been replaced by Scheme.
The Scheme interpreter is now R4RS conformant.
This release provides an efficient object oriented system called STklos.
STklos is a full OO system with multi-inheritance, generic functions,
multi-methods and a true meta object protocol).
STk also provides an efficient object oriented system called STklos.
STklos is an extensive OO system with multiple inheritance, generic
functions, multi-methods and a Meta Object Protocol).

View File

@ -1,8 +1,11 @@
@comment $OpenBSD: PFRAG.shared,v 1.1 2000/09/02 14:54:33 espie Exp $
lib/stk/${STK_VERSION}/${STK_ARCH}/sregexp.so
lib/stk/${STK_VERSION}/${STK_ARCH}/html.so
lib/stk/${STK_VERSION}/${STK_ARCH}/process.so
lib/stk/${STK_VERSION}/${STK_ARCH}/pixmap.so
lib/stk/${STK_VERSION}/${STK_ARCH}/socket.so
lib/stk/${STK_VERSION}/${STK_ARCH}/posix.so
@comment $OpenBSD: PFRAG.shared,v 1.2 2003/05/19 08:50:43 naddy Exp $
lib/stk/${STK_VERSION}/${STK_ARCH}/base64.so
lib/stk/${STK_VERSION}/${STK_ARCH}/hash.so
lib/stk/${STK_VERSION}/${STK_ARCH}/html.so
lib/stk/${STK_VERSION}/${STK_ARCH}/jpeg.so
lib/stk/${STK_VERSION}/${STK_ARCH}/locale.so
lib/stk/${STK_VERSION}/${STK_ARCH}/pixmap.so
lib/stk/${STK_VERSION}/${STK_ARCH}/posix.so
lib/stk/${STK_VERSION}/${STK_ARCH}/process.so
lib/stk/${STK_VERSION}/${STK_ARCH}/socket.so
lib/stk/${STK_VERSION}/${STK_ARCH}/sregexp.so

View File

@ -1,251 +1,480 @@
@comment $OpenBSD: PLIST,v 1.3 2000/09/02 14:54:33 espie Exp $
bin/stk
bin/stk-${STK_VERSION}
@comment $OpenBSD: PLIST,v 1.4 2003/05/19 08:50:43 naddy Exp $
bin/snow
bin/snow-${STK_VERSION}
lib/stk/${STK_VERSION}/${STK_ARCH}/stk
lib/stk/${STK_VERSION}/${STK_ARCH}/snow
%%SHARED%%
bin/stk
bin/stk-${STK_VERSION}
lib/stk/${STK_VERSION}/Demos/Html-Demos/Images/STk-tiny.gif
lib/stk/${STK_VERSION}/Demos/Html-Demos/Images/amib-tiny.gif
lib/stk/${STK_VERSION}/Demos/Html-Demos/Images/amib.gif
lib/stk/${STK_VERSION}/Demos/Html-Demos/Images/backward.gif
lib/stk/${STK_VERSION}/Demos/Html-Demos/Images/compo-all.gif
lib/stk/${STK_VERSION}/Demos/Html-Demos/Images/en.gif
lib/stk/${STK_VERSION}/Demos/Html-Demos/Images/entry.gif
lib/stk/${STK_VERSION}/Demos/Html-Demos/Images/envdraw.gif
lib/stk/${STK_VERSION}/Demos/Html-Demos/Images/fr.gif
lib/stk/${STK_VERSION}/Demos/Html-Demos/Images/frame.gif
lib/stk/${STK_VERSION}/Demos/Html-Demos/Images/label.gif
lib/stk/${STK_VERSION}/Demos/Html-Demos/Images/mosaic_01.gif
lib/stk/${STK_VERSION}/Demos/Html-Demos/Images/mosaic_02.gif
lib/stk/${STK_VERSION}/Demos/Html-Demos/Images/mosaic_03.gif
lib/stk/${STK_VERSION}/Demos/Html-Demos/Images/mosaic_04.gif
lib/stk/${STK_VERSION}/Demos/Html-Demos/Images/mosaic_05.gif
lib/stk/${STK_VERSION}/Demos/Html-Demos/Images/mosaic_06.gif
lib/stk/${STK_VERSION}/Demos/Html-Demos/Images/mosaic_07.gif
lib/stk/${STK_VERSION}/Demos/Html-Demos/Images/mosaic_08.gif
lib/stk/${STK_VERSION}/Demos/Html-Demos/Images/mosaic_09.gif
lib/stk/${STK_VERSION}/Demos/Html-Demos/Images/mosaic_10.gif
lib/stk/${STK_VERSION}/Demos/Html-Demos/Images/mosaic_11.gif
lib/stk/${STK_VERSION}/Demos/Html-Demos/Images/mosaic_12.gif
lib/stk/${STK_VERSION}/Demos/Html-Demos/Images/mosaic_13.gif
lib/stk/${STK_VERSION}/Demos/Html-Demos/Images/mosaic_14.gif
lib/stk/${STK_VERSION}/Demos/Html-Demos/Images/mosaic_15.gif
lib/stk/${STK_VERSION}/Demos/Html-Demos/Images/mosaic_16.gif
lib/stk/${STK_VERSION}/Demos/Html-Demos/Images/mosaic_17.gif
lib/stk/${STK_VERSION}/Demos/Html-Demos/Images/mosaic_18.gif
lib/stk/${STK_VERSION}/Demos/Html-Demos/Images/mosaic_19.gif
lib/stk/${STK_VERSION}/Demos/Html-Demos/Images/mosaic_20.gif
lib/stk/${STK_VERSION}/Demos/Html-Demos/Images/mosaic_21.gif
lib/stk/${STK_VERSION}/Demos/Html-Demos/Images/mosaic_22.gif
lib/stk/${STK_VERSION}/Demos/Html-Demos/Images/mosaic_23.gif
lib/stk/${STK_VERSION}/Demos/Html-Demos/Images/mosaic_24.gif
lib/stk/${STK_VERSION}/Demos/Html-Demos/Images/mosaic_25.gif
lib/stk/${STK_VERSION}/Demos/Html-Demos/S-scape-en.html
lib/stk/${STK_VERSION}/Demos/Html-Demos/S-scape-fr.html
lib/stk/${STK_VERSION}/Demos/Html-Demos/amib-en.html
lib/stk/${STK_VERSION}/Demos/Html-Demos/amib-fr.html
lib/stk/${STK_VERSION}/Demos/Html-Demos/amib.stklos
lib/stk/${STK_VERSION}/Demos/Html-Demos/applet-en.html
lib/stk/${STK_VERSION}/Demos/Html-Demos/applet-fr.html
lib/stk/${STK_VERSION}/Demos/Html-Demos/compo-en.html
lib/stk/${STK_VERSION}/Demos/Html-Demos/compo-fr.html
lib/stk/${STK_VERSION}/Demos/Html-Demos/envdraw-en.html
lib/stk/${STK_VERSION}/Demos/Html-Demos/envdraw-fr.html
lib/stk/${STK_VERSION}/Demos/Html-Demos/intro-en.html
lib/stk/${STK_VERSION}/Demos/Html-Demos/intro-fr.html
lib/stk/${STK_VERSION}/Demos/Html-Demos/main-en.html
lib/stk/${STK_VERSION}/Demos/Html-Demos/main-fr.html
lib/stk/${STK_VERSION}/Demos/Html-Demos/main.html
lib/stk/${STK_VERSION}/Demos/Html-Demos/simple-en.html
lib/stk/${STK_VERSION}/Demos/Html-Demos/simple-fr.html
lib/stk/${STK_VERSION}/Demos/Html-Demos/stklos-widgets
lib/stk/${STK_VERSION}/Demos/README.html
lib/stk/${STK_VERSION}/Demos/S-scape.stklos
lib/stk/${STK_VERSION}/Demos/Warrow.stklos
lib/stk/${STK_VERSION}/Demos/Wbind.stklos
lib/stk/${STK_VERSION}/Demos/Wbitmap.stklos
lib/stk/${STK_VERSION}/Demos/Wbutton.stklos
lib/stk/${STK_VERSION}/Demos/Wcheck.stklos
lib/stk/${STK_VERSION}/Demos/Wcolors.stklos
lib/stk/${STK_VERSION}/Demos/Wcscroll.stklos
lib/stk/${STK_VERSION}/Demos/Wctext.stklos
lib/stk/${STK_VERSION}/Demos/Wdialog1.stklos
lib/stk/${STK_VERSION}/Demos/Wdialog2.stklos
lib/stk/${STK_VERSION}/Demos/Wentry1.stklos
lib/stk/${STK_VERSION}/Demos/Wentry2.stklos
lib/stk/${STK_VERSION}/Demos/Wfloor.stklos
lib/stk/${STK_VERSION}/Demos/Wform.stklos
lib/stk/${STK_VERSION}/Demos/Whscale.stklos
lib/stk/${STK_VERSION}/Demos/Wicon.stklos
lib/stk/${STK_VERSION}/Demos/Wimage1.stklos
lib/stk/${STK_VERSION}/Demos/Wimage2.stklos
lib/stk/${STK_VERSION}/Demos/Witems.stklos
lib/stk/${STK_VERSION}/Demos/Wlabel.stklos
lib/stk/${STK_VERSION}/Demos/Wmenu.stklos
lib/stk/${STK_VERSION}/Demos/Wpuzzle.stklos
lib/stk/${STK_VERSION}/Demos/Wradio.stklos
lib/stk/${STK_VERSION}/Demos/Wruler.stklos
lib/stk/${STK_VERSION}/Demos/Wsayings.stklos
lib/stk/${STK_VERSION}/Demos/Wsearch.stklos
lib/stk/${STK_VERSION}/Demos/Wstates.stklos
lib/stk/${STK_VERSION}/Demos/Wstyles.stklos
lib/stk/${STK_VERSION}/Demos/Wtext.stklos
lib/stk/${STK_VERSION}/Demos/Wvscale.stklos
lib/stk/${STK_VERSION}/Demos/Wwind.stklos
lib/stk/${STK_VERSION}/Demos/amib.stklos
lib/stk/${STK_VERSION}/Demos/browse.stk
lib/stk/${STK_VERSION}/Demos/browse.stklos
lib/stk/${STK_VERSION}/Demos/calc.stklos
lib/stk/${STK_VERSION}/Demos/classbrowse.stklos
lib/stk/${STK_VERSION}/Demos/colormap.stk
lib/stk/${STK_VERSION}/Demos/console-demo.stk
lib/stk/${STK_VERSION}/Demos/filebox.stklos
lib/stk/${STK_VERSION}/Demos/hanoi.stk
lib/stk/${STK_VERSION}/Demos/hello.stk
lib/stk/${STK_VERSION}/Demos/hello.stklos
lib/stk/${STK_VERSION}/Demos/inspector.stk
lib/stk/${STK_VERSION}/Demos/lessons/bind1.stk
lib/stk/${STK_VERSION}/Demos/lessons/bind2.stk
lib/stk/${STK_VERSION}/Demos/lessons/bind3.stk
lib/stk/${STK_VERSION}/Demos/lessons/button1.stk
lib/stk/${STK_VERSION}/Demos/lessons/button2.stk
lib/stk/${STK_VERSION}/Demos/lessons/canvas-animate.stk
lib/stk/${STK_VERSION}/Demos/lessons/canvas-drag.stk
lib/stk/${STK_VERSION}/Demos/lessons/canvas-draw.stk
lib/stk/${STK_VERSION}/Demos/lessons/canvas-funky.stk
lib/stk/${STK_VERSION}/Demos/lessons/canvas-rubber.stk
lib/stk/${STK_VERSION}/Demos/lessons/canvas1.stk
lib/stk/${STK_VERSION}/Demos/lessons/canvas2.stk
lib/stk/${STK_VERSION}/Demos/lessons/canvas3.stk
lib/stk/${STK_VERSION}/Demos/lessons/canvas4.stk
lib/stk/${STK_VERSION}/Demos/lessons/canvas5.stk
lib/stk/${STK_VERSION}/Demos/lessons/canvas6.stk
lib/stk/${STK_VERSION}/Demos/lessons/canvas7.stk
lib/stk/${STK_VERSION}/Demos/lessons/checkbutton.stk
lib/stk/${STK_VERSION}/Demos/lessons/dialogbox.stk
lib/stk/${STK_VERSION}/Demos/lessons/entry1.stk
lib/stk/${STK_VERSION}/Demos/lessons/entry2.stk
lib/stk/${STK_VERSION}/Demos/lessons/frame1.stk
lib/stk/${STK_VERSION}/Demos/lessons/frame2.stk
lib/stk/${STK_VERSION}/Demos/lessons/frame3.stk
lib/stk/${STK_VERSION}/Demos/lessons/grouping.stk
lib/stk/${STK_VERSION}/Demos/lessons/index
lib/stk/${STK_VERSION}/Demos/lessons/label1.stk
lib/stk/${STK_VERSION}/Demos/lessons/label2.stk
lib/stk/${STK_VERSION}/Demos/lessons/label3.stk
lib/stk/${STK_VERSION}/Demos/lessons/listbox1.stk
lib/stk/${STK_VERSION}/Demos/lessons/listbox2.stk
lib/stk/${STK_VERSION}/Demos/lessons/menu1.stk
lib/stk/${STK_VERSION}/Demos/lessons/menu2.stk
lib/stk/${STK_VERSION}/Demos/lessons/message.stk
lib/stk/${STK_VERSION}/Demos/lessons/misc.stk
lib/stk/${STK_VERSION}/Demos/lessons/options.stk
lib/stk/${STK_VERSION}/Demos/lessons/pack1.stk
lib/stk/${STK_VERSION}/Demos/lessons/pack2.stk
lib/stk/${STK_VERSION}/Demos/lessons/pack3.stk
lib/stk/${STK_VERSION}/Demos/lessons/radiobutton.stk
lib/stk/${STK_VERSION}/Demos/lessons/scale1.stk
lib/stk/${STK_VERSION}/Demos/lessons/scale2.stk
lib/stk/${STK_VERSION}/Demos/lessons/selection.stk
lib/stk/${STK_VERSION}/Demos/lessons/text1.stk
lib/stk/${STK_VERSION}/Demos/lessons/text2.stk
lib/stk/${STK_VERSION}/Demos/lessons/text3.stk
lib/stk/${STK_VERSION}/Demos/lessons/text4.stk
lib/stk/${STK_VERSION}/Demos/lessons/text5.stk
lib/stk/${STK_VERSION}/Demos/lessons/tkwait.stk
lib/stk/${STK_VERSION}/Demos/lib/iu.ridge.xbm
lib/stk/${STK_VERSION}/Demos/lib/iu.seal.small.xbm
lib/stk/${STK_VERSION}/Demos/mc-server.stk
lib/stk/${STK_VERSION}/Demos/queens.stk
lib/stk/${STK_VERSION}/Demos/server.stk
lib/stk/${STK_VERSION}/Demos/showvars.stk
lib/stk/${STK_VERSION}/Demos/small-ed.stk
lib/stk/${STK_VERSION}/Demos/stetris.stk
lib/stk/${STK_VERSION}/Demos/stkfontsel.stk
lib/stk/${STK_VERSION}/Demos/stklos-demo.stklos
lib/stk/${STK_VERSION}/Demos/stklos-demo2.stklos
lib/stk/${STK_VERSION}/Demos/stklos-widgets.stklos
lib/stk/${STK_VERSION}/Demos/term.stk
lib/stk/${STK_VERSION}/Demos/tkcolor.stklos
lib/stk/${STK_VERSION}/Demos/ttt.stk
lib/stk/${STK_VERSION}/Demos/turtle.stk
lib/stk/${STK_VERSION}/Demos/widget.stk
lib/stk/${STK_VERSION}/Demos/wtour.stk
lib/stk/${STK_VERSION}/Help/BlueIndex.html
lib/stk/${STK_VERSION}/Help/winfo.n.html
lib/stk/${STK_VERSION}/Help/update.n.html
lib/stk/${STK_VERSION}/Help/toplevel.n.html
lib/stk/${STK_VERSION}/Help/tkwait.n.html
lib/stk/${STK_VERSION}/Help/tkvars.n.html
lib/stk/${STK_VERSION}/Help/tk.n.html
lib/stk/${STK_VERSION}/Help/text.n.html
lib/stk/${STK_VERSION}/Help/stk.1.html
lib/stk/${STK_VERSION}/Help/send.n.html
lib/stk/${STK_VERSION}/Help/selection.n.html
lib/stk/${STK_VERSION}/Help/scrollbar.n.html
lib/stk/${STK_VERSION}/Help/scale.n.html
lib/stk/${STK_VERSION}/Help/report-error.n.html
lib/stk/${STK_VERSION}/Help/raise.n.html
lib/stk/${STK_VERSION}/Help/radiobutton.n.html
lib/stk/${STK_VERSION}/Help/posix.n.html
lib/stk/${STK_VERSION}/Help/popup.n.html
lib/stk/${STK_VERSION}/Help/place.n.html
lib/stk/${STK_VERSION}/Help/photo.n.html
lib/stk/${STK_VERSION}/Help/palette.n.html
lib/stk/${STK_VERSION}/Help/pack.n.html
lib/stk/${STK_VERSION}/Help/options.n.html
lib/stk/${STK_VERSION}/Help/option.n.html
lib/stk/${STK_VERSION}/Help/option-menu.n.html
lib/stk/${STK_VERSION}/Help/message.n.html
lib/stk/${STK_VERSION}/Help/menubutton.n.html
lib/stk/${STK_VERSION}/Help/menu.n.html
lib/stk/${STK_VERSION}/Help/make-dialog.n.html
lib/stk/${STK_VERSION}/Help/lower.n.html
lib/stk/${STK_VERSION}/Help/listener.n.html
lib/stk/${STK_VERSION}/Help/listbox.n.html
lib/stk/${STK_VERSION}/Help/label.n.html
lib/stk/${STK_VERSION}/Help/image.n.html
lib/stk/${STK_VERSION}/Help/grid.n.html
lib/stk/${STK_VERSION}/Help/grab.n.html
lib/stk/${STK_VERSION}/Help/ftp.n.html
lib/stk/${STK_VERSION}/Help/frame.n.html
lib/stk/${STK_VERSION}/Help/focus.n.html
lib/stk/${STK_VERSION}/Help/focus-next.n.html
lib/stk/${STK_VERSION}/Help/fbox-hlp.html
lib/stk/${STK_VERSION}/Help/error-hlp.html
lib/stk/${STK_VERSION}/Help/entry.n.html
lib/stk/${STK_VERSION}/Help/destroy.n.html
lib/stk/${STK_VERSION}/Help/clipboard.n.html
lib/stk/${STK_VERSION}/Help/checkbutton.n.html
lib/stk/${STK_VERSION}/Help/canvas.n.html
lib/stk/${STK_VERSION}/Help/button.n.html
lib/stk/${STK_VERSION}/Help/bitmap.n.html
lib/stk/${STK_VERSION}/Help/bindtags.n.html
lib/stk/${STK_VERSION}/Help/bind.n.html
lib/stk/${STK_VERSION}/Help/bell.n.html
lib/stk/${STK_VERSION}/Help/amib-hlp.html
lib/stk/${STK_VERSION}/Help/amib-abt.html
lib/stk/${STK_VERSION}/Help/after.n.html
lib/stk/${STK_VERSION}/Help/YellowIndex.html
lib/stk/${STK_VERSION}/Help/STk-hlp.html
lib/stk/${STK_VERSION}/Help/GreenIndex.html
lib/stk/${STK_VERSION}/Help/wm.n.html
lib/stk/${STK_VERSION}/Help/Img/BlueBall.gif
lib/stk/${STK_VERSION}/Help/Img/note.gif
lib/stk/${STK_VERSION}/Help/Img/line-red.gif
lib/stk/${STK_VERSION}/Help/Img/home.gif
lib/stk/${STK_VERSION}/Help/Img/colorline.gif
lib/stk/${STK_VERSION}/Help/Img/classeur.gif
lib/stk/${STK_VERSION}/Help/Img/back.gif
lib/stk/${STK_VERSION}/Help/Img/YellowBall.gif
lib/stk/${STK_VERSION}/Help/Img/WhiteBall.gif
lib/stk/${STK_VERSION}/Help/Img/STk-small.gif
lib/stk/${STK_VERSION}/Help/Img/RefBookYellow.gif
lib/stk/${STK_VERSION}/Help/Img/RefBookWhite.gif
lib/stk/${STK_VERSION}/Help/Img/RefBookGreen.gif
lib/stk/${STK_VERSION}/Help/Img/RefBookBlue.gif
lib/stk/${STK_VERSION}/Help/Img/ManPageYellow.gif
lib/stk/${STK_VERSION}/Help/Img/ManPageWhite.gif
lib/stk/${STK_VERSION}/Help/Img/ManPageGreen.gif
lib/stk/${STK_VERSION}/Help/Img/ManPageBlue.gif
lib/stk/${STK_VERSION}/Help/Img/GreenBall.gif
lib/stk/${STK_VERSION}/Help/Img/ManPageBlue.gif
lib/stk/${STK_VERSION}/Help/Img/ManPageGreen.gif
lib/stk/${STK_VERSION}/Help/Img/ManPageWhite.gif
lib/stk/${STK_VERSION}/Help/Img/ManPageYellow.gif
lib/stk/${STK_VERSION}/Help/Img/RefBookBlue.gif
lib/stk/${STK_VERSION}/Help/Img/RefBookGreen.gif
lib/stk/${STK_VERSION}/Help/Img/RefBookWhite.gif
lib/stk/${STK_VERSION}/Help/Img/RefBookYellow.gif
lib/stk/${STK_VERSION}/Help/Img/STk-small.gif
lib/stk/${STK_VERSION}/Help/Img/WhiteBall.gif
lib/stk/${STK_VERSION}/Help/Img/YellowBall.gif
lib/stk/${STK_VERSION}/Help/Img/back.gif
lib/stk/${STK_VERSION}/Help/Img/classeur.gif
lib/stk/${STK_VERSION}/Help/Img/colorline.gif
lib/stk/${STK_VERSION}/Help/Img/home.gif
lib/stk/${STK_VERSION}/Help/Img/line-red.gif
lib/stk/${STK_VERSION}/Help/Img/note.gif
lib/stk/${STK_VERSION}/Help/Img/smile.sad.gif
lib/stk/${STK_VERSION}/Help/STk-hlp.html
lib/stk/${STK_VERSION}/Help/YellowIndex.html
lib/stk/${STK_VERSION}/Help/after.n.html
lib/stk/${STK_VERSION}/Help/amib-abt.html
lib/stk/${STK_VERSION}/Help/amib-hlp.html
lib/stk/${STK_VERSION}/Help/bell.n.html
lib/stk/${STK_VERSION}/Help/bind.n.html
lib/stk/${STK_VERSION}/Help/bindtags.n.html
lib/stk/${STK_VERSION}/Help/bitmap.n.html
lib/stk/${STK_VERSION}/Help/button.n.html
lib/stk/${STK_VERSION}/Help/canvas.n.html
lib/stk/${STK_VERSION}/Help/change-image.n.html
lib/stk/${STK_VERSION}/Help/checkbutton.n.html
lib/stk/${STK_VERSION}/Help/choose-color.n.html
lib/stk/${STK_VERSION}/Help/clipboard.n.html
lib/stk/${STK_VERSION}/Help/destroy.n.html
lib/stk/${STK_VERSION}/Help/ed.n.html
lib/stk/${STK_VERSION}/Help/entry.n.html
lib/stk/${STK_VERSION}/Help/error-hlp.html
lib/stk/${STK_VERSION}/Help/event.n.html
lib/stk/${STK_VERSION}/Help/fbox-hlp.html
lib/stk/${STK_VERSION}/Help/find-image.n.html
lib/stk/${STK_VERSION}/Help/focus-next.n.html
lib/stk/${STK_VERSION}/Help/focus.n.html
lib/stk/${STK_VERSION}/Help/font.n.html
lib/stk/${STK_VERSION}/Help/frame.n.html
lib/stk/${STK_VERSION}/Help/free-image.n.html
lib/stk/${STK_VERSION}/Help/ftp.n.html
lib/stk/${STK_VERSION}/Help/grab.n.html
lib/stk/${STK_VERSION}/Help/grid.n.html
lib/stk/${STK_VERSION}/Help/image.n.html
lib/stk/${STK_VERSION}/Help/inspect-abt.html
lib/stk/${STK_VERSION}/Help/inspect-hlp.html
lib/stk/${STK_VERSION}/Help/jpeg.n.html
lib/stk/${STK_VERSION}/Help/label.n.html
lib/stk/${STK_VERSION}/Help/listbox.n.html
lib/stk/${STK_VERSION}/Help/listener.n.html
lib/stk/${STK_VERSION}/Help/lower.n.html
lib/stk/${STK_VERSION}/Help/make-console.n.html
lib/stk/${STK_VERSION}/Help/make-dialog.n.html
lib/stk/${STK_VERSION}/Help/make-image.n.html
lib/stk/${STK_VERSION}/Help/menu.n.html
lib/stk/${STK_VERSION}/Help/menubutton.n.html
lib/stk/${STK_VERSION}/Help/message-box.n.html
lib/stk/${STK_VERSION}/Help/message.n.html
lib/stk/${STK_VERSION}/Help/option-menu.n.html
lib/stk/${STK_VERSION}/Help/option.n.html
lib/stk/${STK_VERSION}/Help/options.n.html
lib/stk/${STK_VERSION}/Help/pack.n.html
lib/stk/${STK_VERSION}/Help/palette.n.html
lib/stk/${STK_VERSION}/Help/photo.n.html
lib/stk/${STK_VERSION}/Help/pixmap.n.html
lib/stk/${STK_VERSION}/Help/place.n.html
lib/stk/${STK_VERSION}/Help/popup.n.html
lib/stk/${STK_VERSION}/Help/posix.n.html
lib/stk/${STK_VERSION}/Help/radiobutton.n.html
lib/stk/${STK_VERSION}/Help/raise.n.html
lib/stk/${STK_VERSION}/Help/repl-display-prompt.n.html
lib/stk/${STK_VERSION}/Help/repl-display-result.n.html
lib/stk/${STK_VERSION}/Help/report-error.n.html
lib/stk/${STK_VERSION}/Help/scale.n.html
lib/stk/${STK_VERSION}/Help/scrollbar.n.html
lib/stk/${STK_VERSION}/Help/selection.n.html
lib/stk/${STK_VERSION}/Help/send.n.html
lib/stk/${STK_VERSION}/Help/stk.1.html
lib/stk/${STK_VERSION}/Help/text.n.html
lib/stk/${STK_VERSION}/Help/tk.n.html
lib/stk/${STK_VERSION}/Help/tkvars.n.html
lib/stk/${STK_VERSION}/Help/tkwait.n.html
lib/stk/${STK_VERSION}/Help/toplevel.n.html
lib/stk/${STK_VERSION}/Help/update.n.html
lib/stk/${STK_VERSION}/Help/winfo.n.html
lib/stk/${STK_VERSION}/Help/wm.n.html
lib/stk/${STK_VERSION}/Images/Cancel.gif
lib/stk/${STK_VERSION}/Images/Help.gif
lib/stk/${STK_VERSION}/Images/LineLeft.gif
lib/stk/${STK_VERSION}/Images/LineRight.gif
lib/stk/${STK_VERSION}/Images/Ok.gif
lib/stk/${STK_VERSION}/Images/STk-big-logo.gif
lib/stk/${STK_VERSION}/Images/STk-large.gif
lib/stk/${STK_VERSION}/Images/STk-logo.gif
lib/stk/${STK_VERSION}/Images/STk-normal.gif
lib/stk/${STK_VERSION}/Images/STk-small-logo.gif
lib/stk/${STK_VERSION}/Images/STk-tiny-logo.gif
lib/stk/${STK_VERSION}/Images/STk-tiny.gif
lib/stk/${STK_VERSION}/Images/box-minus.gif
lib/stk/${STK_VERSION}/Images/box-plus.gif
lib/stk/${STK_VERSION}/Images/boxes
lib/stk/${STK_VERSION}/Images/colorline.gif
lib/stk/${STK_VERSION}/Images/colors.gif
lib/stk/${STK_VERSION}/Images/cross_weave
lib/stk/${STK_VERSION}/Images/dimple1
lib/stk/${STK_VERSION}/Images/dimple3
lib/stk/${STK_VERSION}/Images/dir.gif
lib/stk/${STK_VERSION}/Images/dir.jpg
lib/stk/${STK_VERSION}/Images/diropen.gif
lib/stk/${STK_VERSION}/Images/down_arrow_8.bm
lib/stk/${STK_VERSION}/Images/earth.gif
lib/stk/${STK_VERSION}/Images/earthris.gif
lib/stk/${STK_VERSION}/Images/error
lib/stk/${STK_VERSION}/Images/error.gif
lib/stk/${STK_VERSION}/Images/face
lib/stk/${STK_VERSION}/Images/file.gif
lib/stk/${STK_VERSION}/Images/flagdown
lib/stk/${STK_VERSION}/Images/flagup
lib/stk/${STK_VERSION}/Images/font.gif
lib/stk/${STK_VERSION}/Images/full
lib/stk/${STK_VERSION}/Images/gray1
lib/stk/${STK_VERSION}/Images/gray3
lib/stk/${STK_VERSION}/Images/grey.25
lib/stk/${STK_VERSION}/Images/grey.5
lib/stk/${STK_VERSION}/Images/grid4
lib/stk/${STK_VERSION}/Images/grid8
lib/stk/${STK_VERSION}/Images/hlines2
lib/stk/${STK_VERSION}/Images/hlines3
lib/stk/${STK_VERSION}/Images/hourglass.gif
lib/stk/${STK_VERSION}/Images/info
lib/stk/${STK_VERSION}/Images/info.gif
lib/stk/${STK_VERSION}/Images/letters
lib/stk/${STK_VERSION}/Images/light_gray
lib/stk/${STK_VERSION}/Images/menu.bm
lib/stk/${STK_VERSION}/Images/mickey.gif
lib/stk/${STK_VERSION}/Images/noletters
lib/stk/${STK_VERSION}/Images/parentdir.gif
lib/stk/${STK_VERSION}/Images/pattern
lib/stk/${STK_VERSION}/Images/queen
lib/stk/${STK_VERSION}/Images/question
lib/stk/${STK_VERSION}/Images/question.gif
lib/stk/${STK_VERSION}/Images/root_weave
lib/stk/${STK_VERSION}/Images/stipple
lib/stk/${STK_VERSION}/Images/tb_back.gif
lib/stk/${STK_VERSION}/Images/tb_console.gif
lib/stk/${STK_VERSION}/Images/tb_copy.gif
lib/stk/${STK_VERSION}/Images/tb_customize.gif
lib/stk/${STK_VERSION}/Images/tb_cut.gif
lib/stk/${STK_VERSION}/Images/tb_edit.gif
lib/stk/${STK_VERSION}/Images/tb_evalbuf.gif
lib/stk/${STK_VERSION}/Images/tb_evalreg.gif
lib/stk/${STK_VERSION}/Images/tb_exit.gif
lib/stk/${STK_VERSION}/Images/tb_fileopen.gif
lib/stk/${STK_VERSION}/Images/tb_floppy.gif
lib/stk/${STK_VERSION}/Images/tb_forward.gif
lib/stk/${STK_VERSION}/Images/tb_hborder.gif
lib/stk/${STK_VERSION}/Images/tb_info.gif
lib/stk/${STK_VERSION}/Images/tb_paste.gif
lib/stk/${STK_VERSION}/Images/tb_reload.gif
lib/stk/${STK_VERSION}/Images/tb_stop.gif
lib/stk/${STK_VERSION}/Images/tb_vborder.gif
lib/stk/${STK_VERSION}/Images/teapot.ppm
lib/stk/${STK_VERSION}/Images/up_arrow_8.bm
lib/stk/${STK_VERSION}/Images/vlines2
lib/stk/${STK_VERSION}/Images/vlines3
lib/stk/${STK_VERSION}/Images/warning
lib/stk/${STK_VERSION}/Images/warning.gif
%%SHARED%%
lib/stk/${STK_VERSION}/${STK_ARCH}/snow
lib/stk/${STK_VERSION}/${STK_ARCH}/stk
lib/stk/${STK_VERSION}/STk/Balloon.stklos
lib/stk/${STK_VERSION}/STk/Basics.stklos
lib/stk/${STK_VERSION}/STk/Button.stklos
lib/stk/${STK_VERSION}/STk/Canvas.stklos
lib/stk/${STK_VERSION}/STk/Canvitem.stklos
lib/stk/${STK_VERSION}/STk/Choicebox.stklos
lib/stk/${STK_VERSION}/STk/Colorbox.stklos
lib/stk/${STK_VERSION}/STk/Combobox.stklos
lib/stk/${STK_VERSION}/STk/Defbutton.stklos
lib/stk/${STK_VERSION}/STk/Entry.stklos
lib/stk/${STK_VERSION}/STk/Filebox.stklos
lib/stk/${STK_VERSION}/STk/Font.stklos
lib/stk/${STK_VERSION}/STk/Frame.stklos
lib/stk/${STK_VERSION}/STk/Gauge.stklos
lib/stk/${STK_VERSION}/STk/Hierarchy.stklos
lib/stk/${STK_VERSION}/STk/Image.stklos
lib/stk/${STK_VERSION}/STk/Lentry.stklos
lib/stk/${STK_VERSION}/STk/Lframe.stklos
lib/stk/${STK_VERSION}/STk/Listbox.stklos
lib/stk/${STK_VERSION}/STk/Match/compiler.scm
lib/stk/${STK_VERSION}/STk/Match/descr.scm
lib/stk/${STK_VERSION}/STk/Match/mexpand.scm
lib/stk/${STK_VERSION}/STk/Match/normalize.scm
lib/stk/${STK_VERSION}/STk/Match/s2cfun.scm
lib/stk/${STK_VERSION}/STk/Menu.stklos
lib/stk/${STK_VERSION}/STk/Message.stklos
lib/stk/${STK_VERSION}/STk/Msgbox.stklos
lib/stk/${STK_VERSION}/STk/Multipaned.stklos
lib/stk/${STK_VERSION}/STk/Multiwin.stklos
lib/stk/${STK_VERSION}/STk/Notepad.stklos
lib/stk/${STK_VERSION}/STk/Paned.stklos
lib/stk/${STK_VERSION}/STk/STF.stklos
lib/stk/${STK_VERSION}/STk/STk.init
lib/stk/${STK_VERSION}/STk/Scale.stklos
lib/stk/${STK_VERSION}/STk/Schemetext.stklos
lib/stk/${STK_VERSION}/STk/Scrollbar.stklos
lib/stk/${STK_VERSION}/STk/Scrollbox.stklos
lib/stk/${STK_VERSION}/STk/Scrollcanvas.stklos
lib/stk/${STK_VERSION}/STk/Scrollframe.stklos
lib/stk/${STK_VERSION}/STk/Scrolltext.stklos
lib/stk/${STK_VERSION}/STk/Text.stklos
lib/stk/${STK_VERSION}/STk/Tk-active.stklos
lib/stk/${STK_VERSION}/STk/Tk-classes.stklos
lib/stk/${STK_VERSION}/STk/Tk-meta.stklos
lib/stk/${STK_VERSION}/STk/Toolbar.stklos
lib/stk/${STK_VERSION}/STk/Toplevel.stklos
lib/stk/${STK_VERSION}/STk/active-slot.stklos
lib/stk/${STK_VERSION}/STk/balloon.stk
lib/stk/${STK_VERSION}/STk/base64.stk
lib/stk/${STK_VERSION}/STk/bigloo.stk
lib/stk/${STK_VERSION}/STk/butbar.stk
lib/stk/${STK_VERSION}/STk/button.stk
lib/stk/${STK_VERSION}/STk/class-browser.stklos
lib/stk/${STK_VERSION}/STk/compatibility.stk
lib/stk/${STK_VERSION}/STk/composite-slot.stklos
lib/stk/${STK_VERSION}/STk/console-customize.stk
lib/stk/${STK_VERSION}/STk/console.stk
lib/stk/${STK_VERSION}/STk/defsyntax.stk
lib/stk/${STK_VERSION}/STk/describe.stklos
lib/stk/${STK_VERSION}/STk/dialog.stk
lib/stk/${STK_VERSION}/STk/edit.stk
lib/stk/${STK_VERSION}/STk/editor.stk
lib/stk/${STK_VERSION}/STk/entry.stk
lib/stk/${STK_VERSION}/STk/error.stk
lib/stk/${STK_VERSION}/STk/extset.stk
lib/stk/${STK_VERSION}/STk/ffi.stk
lib/stk/${STK_VERSION}/STk/fileevent.stk
lib/stk/${STK_VERSION}/STk/focus.stk
lib/stk/${STK_VERSION}/STk/ftp.stk
lib/stk/${STK_VERSION}/STk/font-chooser.stklos
lib/stk/${STK_VERSION}/STk/font-lock.stk
lib/stk/${STK_VERSION}/STk/fs.stk
lib/stk/${STK_VERSION}/STk/ftp.stklos
lib/stk/${STK_VERSION}/STk/hash.stk
lib/stk/${STK_VERSION}/STk/help.stk
lib/stk/${STK_VERSION}/STk/html.stk
lib/stk/${STK_VERSION}/STk/image.stk
lib/stk/${STK_VERSION}/STk/init.stk
lib/stk/${STK_VERSION}/STk/inspect-detail.stk
lib/stk/${STK_VERSION}/STk/inspect-help.stk
lib/stk/${STK_VERSION}/STk/inspect-main.stk
lib/stk/${STK_VERSION}/STk/inspect-misc.stk
lib/stk/${STK_VERSION}/STk/inspect-view.stk
lib/stk/${STK_VERSION}/STk/jpeg.stk
lib/stk/${STK_VERSION}/STk/listbox.stk
lib/stk/${STK_VERSION}/STk/listener.stk
lib/stk/${STK_VERSION}/STk/locale.stk
lib/stk/${STK_VERSION}/STk/match.stk
lib/stk/${STK_VERSION}/STk/menu.stk
lib/stk/${STK_VERSION}/STk/pp.stk
lib/stk/${STK_VERSION}/STk/method-editor.stklos
lib/stk/${STK_VERSION}/STk/palette.stk
lib/stk/${STK_VERSION}/STk/pixmap.stk
lib/stk/${STK_VERSION}/STk/posix.stk
lib/stk/${STK_VERSION}/STk/pp.stk
lib/stk/${STK_VERSION}/STk/process.stk
lib/stk/${STK_VERSION}/STk/regexp.stk
lib/stk/${STK_VERSION}/STk/scale.stk
lib/stk/${STK_VERSION}/STk/scrollbar.stk
lib/stk/${STK_VERSION}/STk/security.stk
lib/stk/${STK_VERSION}/STk/slib.stk
lib/stk/${STK_VERSION}/STk/socket.stk
lib/stk/${STK_VERSION}/STk/srfi-0.stk
lib/stk/${STK_VERSION}/STk/srfi-2.stk
lib/stk/${STK_VERSION}/STk/srfi-7.stk
lib/stk/${STK_VERSION}/STk/srfi-9.stk
lib/stk/${STK_VERSION}/STk/sterm.stk
lib/stk/${STK_VERSION}/STk/tearoff.stk
lib/stk/${STK_VERSION}/STk/stklos.stk
lib/stk/${STK_VERSION}/STk/text.stk
lib/stk/${STK_VERSION}/STk/tk-init.stk
lib/stk/${STK_VERSION}/STk/tk-unix.stk
lib/stk/${STK_VERSION}/STk/trace-gf.stklos
lib/stk/${STK_VERSION}/STk/trace.stk
lib/stk/${STK_VERSION}/STk/unix.stk
lib/stk/${STK_VERSION}/STk/prolog.ps
lib/stk/${STK_VERSION}/STk/STk.init
lib/stk/${STK_VERSION}/STk/describe.stk
lib/stk/${STK_VERSION}/STk/stklos.stk
lib/stk/${STK_VERSION}/STk/Basics.stklos
lib/stk/${STK_VERSION}/STk/Scrollcanvas.stklos
lib/stk/${STK_VERSION}/STk/Scrollbox.stklos
lib/stk/${STK_VERSION}/STk/Paned.stklos
lib/stk/${STK_VERSION}/STk/Text.stklos
lib/stk/${STK_VERSION}/STk/Multiwin.stklos
lib/stk/${STK_VERSION}/STk/Multipaned.stklos
lib/stk/${STK_VERSION}/STk/Lentry.stklos
lib/stk/${STK_VERSION}/STk/Filebox.stklos
lib/stk/${STK_VERSION}/STk/Defbutton.stklos
lib/stk/${STK_VERSION}/STk/Choicebox.stklos
lib/stk/${STK_VERSION}/STk/Toplevel.stklos
lib/stk/${STK_VERSION}/STk/Tk-methods.stklos
lib/stk/${STK_VERSION}/STk/Tk-meta.stklos
lib/stk/${STK_VERSION}/STk/Tk-classes.stklos
lib/stk/${STK_VERSION}/STk/Scrollbar.stklos
lib/stk/${STK_VERSION}/STk/Scale.stklos
lib/stk/${STK_VERSION}/STk/STF.stklos
lib/stk/${STK_VERSION}/STk/Message.stklos
lib/stk/${STK_VERSION}/STk/Menu.stklos
lib/stk/${STK_VERSION}/STk/Listbox.stklos
lib/stk/${STK_VERSION}/STk/Image.stklos
lib/stk/${STK_VERSION}/STk/Frame.stklos
lib/stk/${STK_VERSION}/STk/Entry.stklos
lib/stk/${STK_VERSION}/STk/Canvitem.stklos
lib/stk/${STK_VERSION}/STk/Canvas.stklos
lib/stk/${STK_VERSION}/STk/Button.stklos
lib/stk/${STK_VERSION}/STk/Scrolltext.stklos
lib/stk/${STK_VERSION}/demos/browse.stk
lib/stk/${STK_VERSION}/demos/colormap.stk
lib/stk/${STK_VERSION}/demos/hanoi.stk
lib/stk/${STK_VERSION}/demos/hello.stk
lib/stk/${STK_VERSION}/demos/inspector.stk
lib/stk/${STK_VERSION}/demos/mc-server.stk
lib/stk/${STK_VERSION}/demos/queens.stk
lib/stk/${STK_VERSION}/demos/server.stk
lib/stk/${STK_VERSION}/demos/showvars.stk
lib/stk/${STK_VERSION}/demos/small-ed.stk
lib/stk/${STK_VERSION}/demos/stetris.stk
lib/stk/${STK_VERSION}/demos/term.stk
lib/stk/${STK_VERSION}/demos/ttt.stk
lib/stk/${STK_VERSION}/demos/turtle.stk
lib/stk/${STK_VERSION}/demos/widget.stk
lib/stk/${STK_VERSION}/demos/wtour.stk
lib/stk/${STK_VERSION}/demos/amib.stklos
lib/stk/${STK_VERSION}/demos/browse.stklos
lib/stk/${STK_VERSION}/demos/calc.stklos
lib/stk/${STK_VERSION}/demos/compo-demo.stklos
lib/stk/${STK_VERSION}/demos/filebox.stklos
lib/stk/${STK_VERSION}/demos/hbrowse.stklos
lib/stk/${STK_VERSION}/demos/hello.stklos
lib/stk/${STK_VERSION}/demos/stklos-demo.stklos
lib/stk/${STK_VERSION}/demos/stklos-demo2.stklos
lib/stk/${STK_VERSION}/demos/tkcolor.stklos
lib/stk/${STK_VERSION}/demos/Warrow.stklos
lib/stk/${STK_VERSION}/demos/Wbind.stklos
lib/stk/${STK_VERSION}/demos/Wbitmap.stklos
lib/stk/${STK_VERSION}/demos/Wbutton.stklos
lib/stk/${STK_VERSION}/demos/Wcheck.stklos
lib/stk/${STK_VERSION}/demos/Wcolors.stklos
lib/stk/${STK_VERSION}/demos/Wctext.stklos
lib/stk/${STK_VERSION}/demos/Wdialog1.stklos
lib/stk/${STK_VERSION}/demos/Wdialog2.stklos
lib/stk/${STK_VERSION}/demos/Wentry1.stklos
lib/stk/${STK_VERSION}/demos/Wentry2.stklos
lib/stk/${STK_VERSION}/demos/Wform.stklos
lib/stk/${STK_VERSION}/demos/Whscale.stklos
lib/stk/${STK_VERSION}/demos/Wicon.stklos
lib/stk/${STK_VERSION}/demos/Wimage1.stklos
lib/stk/${STK_VERSION}/demos/Wimage2.stklos
lib/stk/${STK_VERSION}/demos/Witems.stklos
lib/stk/${STK_VERSION}/demos/Wlabel.stklos
lib/stk/${STK_VERSION}/demos/Wmenu.stklos
lib/stk/${STK_VERSION}/demos/Wpuzzle.stklos
lib/stk/${STK_VERSION}/demos/Wradio.stklos
lib/stk/${STK_VERSION}/demos/Wsayings.stklos
lib/stk/${STK_VERSION}/demos/Wsearch.stklos
lib/stk/${STK_VERSION}/demos/Wstates.stklos
lib/stk/${STK_VERSION}/demos/Wstyles.stklos
lib/stk/${STK_VERSION}/demos/Wtext.stklos
lib/stk/${STK_VERSION}/demos/Wvscale.stklos
lib/stk/${STK_VERSION}/demos/Wwind.stklos
lib/stk/${STK_VERSION}/images/Cancel.gif
lib/stk/${STK_VERSION}/images/vlines2
lib/stk/${STK_VERSION}/images/teapot.ppm
lib/stk/${STK_VERSION}/images/stipple
lib/stk/${STK_VERSION}/images/root_weave
lib/stk/${STK_VERSION}/images/queen
lib/stk/${STK_VERSION}/images/pattern
lib/stk/${STK_VERSION}/images/noletters
lib/stk/${STK_VERSION}/images/mickey.gif
lib/stk/${STK_VERSION}/images/menu.bm
lib/stk/${STK_VERSION}/images/light_gray
lib/stk/${STK_VERSION}/images/letters
lib/stk/${STK_VERSION}/images/hlines3
lib/stk/${STK_VERSION}/images/hlines2
lib/stk/${STK_VERSION}/images/grid8
lib/stk/${STK_VERSION}/images/grid4
lib/stk/${STK_VERSION}/images/grey.5
lib/stk/${STK_VERSION}/images/grey.25
lib/stk/${STK_VERSION}/images/gray3
lib/stk/${STK_VERSION}/images/gray1
lib/stk/${STK_VERSION}/images/full
lib/stk/${STK_VERSION}/images/flagup
lib/stk/${STK_VERSION}/images/flagdown
lib/stk/${STK_VERSION}/images/face
lib/stk/${STK_VERSION}/images/earthris.gif
lib/stk/${STK_VERSION}/images/earth.gif
lib/stk/${STK_VERSION}/images/down_arrow_8.bm
lib/stk/${STK_VERSION}/images/dimple3
lib/stk/${STK_VERSION}/images/dimple1
lib/stk/${STK_VERSION}/images/cross_weave
lib/stk/${STK_VERSION}/images/boxes
lib/stk/${STK_VERSION}/images/STk-normal.gif
lib/stk/${STK_VERSION}/images/Ok.gif
lib/stk/${STK_VERSION}/images/Help.gif
lib/stk/${STK_VERSION}/images/vlines3
lib/stk/${STK_VERSION}/STk/win32.stk
lib/stk/${STK_VERSION}/STk/winsocket.stklos
lib/stk/${STK_VERSION}/STk/www-browser.stklos
lib/stk/${STK_VERSION}/STk/www-file.stk
lib/stk/${STK_VERSION}/STk/www-html.stk
lib/stk/${STK_VERSION}/STk/www-http.stk
lib/stk/${STK_VERSION}/STk/www-img.stk
lib/stk/${STK_VERSION}/STk/www-snd.stk
lib/stk/${STK_VERSION}/STk/www-txt.stk
lib/stk/${STK_VERSION}/STk/www-url.stk
lib/stk/${STK_VERSION}/STk/www.stk
lib/stk/${STK_VERSION}/man/man1/STk-man.macros
lib/stk/${STK_VERSION}/man/man1/stk.1
lib/stk/${STK_VERSION}/man/man1/snow.1
lib/stk/${STK_VERSION}/man/man1/stk.1
lib/stk/${STK_VERSION}/man/mann/STk-man.macros
lib/stk/${STK_VERSION}/man/mann/stk_after.n
lib/stk/${STK_VERSION}/man/mann/stk_bell.n
@ -254,24 +483,35 @@ lib/stk/${STK_VERSION}/man/mann/stk_bindtags.n
lib/stk/${STK_VERSION}/man/mann/stk_bitmap.n
lib/stk/${STK_VERSION}/man/mann/stk_button.n
lib/stk/${STK_VERSION}/man/mann/stk_canvas.n
lib/stk/${STK_VERSION}/man/mann/stk_change-image.n
lib/stk/${STK_VERSION}/man/mann/stk_checkbutton.n
lib/stk/${STK_VERSION}/man/mann/stk_choose-color.n
lib/stk/${STK_VERSION}/man/mann/stk_clipboard.n
lib/stk/${STK_VERSION}/man/mann/stk_destroy.n
lib/stk/${STK_VERSION}/man/mann/stk_ed.n
lib/stk/${STK_VERSION}/man/mann/stk_entry.n
lib/stk/${STK_VERSION}/man/mann/stk_event.n
lib/stk/${STK_VERSION}/man/mann/stk_find-image.n
lib/stk/${STK_VERSION}/man/mann/stk_focus-next.n
lib/stk/${STK_VERSION}/man/mann/stk_focus.n
lib/stk/${STK_VERSION}/man/mann/stk_font.n
lib/stk/${STK_VERSION}/man/mann/stk_frame.n
lib/stk/${STK_VERSION}/man/mann/stk_free-image.n
lib/stk/${STK_VERSION}/man/mann/stk_ftp.n
lib/stk/${STK_VERSION}/man/mann/stk_grab.n
lib/stk/${STK_VERSION}/man/mann/stk_grid.n
lib/stk/${STK_VERSION}/man/mann/stk_image.n
lib/stk/${STK_VERSION}/man/mann/stk_jpeg.n
lib/stk/${STK_VERSION}/man/mann/stk_label.n
lib/stk/${STK_VERSION}/man/mann/stk_listbox.n
lib/stk/${STK_VERSION}/man/mann/stk_lower.n
lib/stk/${STK_VERSION}/man/mann/stk_listener.n
lib/stk/${STK_VERSION}/man/mann/stk_lower.n
lib/stk/${STK_VERSION}/man/mann/stk_make-console.n
lib/stk/${STK_VERSION}/man/mann/stk_make-dialog.n
lib/stk/${STK_VERSION}/man/mann/stk_make-image.n
lib/stk/${STK_VERSION}/man/mann/stk_menu.n
lib/stk/${STK_VERSION}/man/mann/stk_menubutton.n
lib/stk/${STK_VERSION}/man/mann/stk_message-box.n
lib/stk/${STK_VERSION}/man/mann/stk_message.n
lib/stk/${STK_VERSION}/man/mann/stk_option-menu.n
lib/stk/${STK_VERSION}/man/mann/stk_option.n
@ -279,11 +519,14 @@ lib/stk/${STK_VERSION}/man/mann/stk_options.n
lib/stk/${STK_VERSION}/man/mann/stk_pack.n
lib/stk/${STK_VERSION}/man/mann/stk_palette.n
lib/stk/${STK_VERSION}/man/mann/stk_photo.n
lib/stk/${STK_VERSION}/man/mann/stk_pixmap.n
lib/stk/${STK_VERSION}/man/mann/stk_place.n
lib/stk/${STK_VERSION}/man/mann/stk_popup.n
lib/stk/${STK_VERSION}/man/mann/stk_posix.n
lib/stk/${STK_VERSION}/man/mann/stk_radiobutton.n
lib/stk/${STK_VERSION}/man/mann/stk_raise.n
lib/stk/${STK_VERSION}/man/mann/stk_repl-display-prompt.n
lib/stk/${STK_VERSION}/man/mann/stk_repl-display-result.n
lib/stk/${STK_VERSION}/man/mann/stk_report-error.n
lib/stk/${STK_VERSION}/man/mann/stk_scale.n
lib/stk/${STK_VERSION}/man/mann/stk_scrollbar.n
@ -298,15 +541,23 @@ lib/stk/${STK_VERSION}/man/mann/stk_update.n
lib/stk/${STK_VERSION}/man/mann/stk_winfo.n
lib/stk/${STK_VERSION}/man/mann/stk_wm.n
lib/stk/man
@exec mkdir -p %D/lib/stk/site-scheme
@dirrm lib/stk/site-scheme
@dirrm lib/stk/${STK_VERSION}/man/mann
@dirrm lib/stk/${STK_VERSION}/man/man1
@dirrm lib/stk/${STK_VERSION}/man
@exec echo "STk-${STK_VERSION} man pages are in %D/lib/stk/${STK_VERSION}/man; you may wish to add this directory to /etc/man.conf"
@unexec echo "Please remove %D/lib/stk/${STK_VERSION}/man from /etc/man.conf manually if needed"
@dirrm lib/stk/${STK_VERSION}/STk/Match
@dirrm lib/stk/${STK_VERSION}/STk
@dirrm lib/stk/${STK_VERSION}/${STK_ARCH}
@dirrm lib/stk/${STK_VERSION}/Images
@dirrm lib/stk/${STK_VERSION}/Help/Img
@dirrm lib/stk/${STK_VERSION}/Help
@dirrm lib/stk/${STK_VERSION}/STk
@dirrm lib/stk/${STK_VERSION}/demos
@dirrm lib/stk/${STK_VERSION}/images
@dirrm lib/stk/${STK_VERSION}/man/man1
@dirrm lib/stk/${STK_VERSION}/man/mann
@dirrm lib/stk/${STK_VERSION}/man
@dirrm lib/stk/${STK_VERSION}/Demos/lib
@dirrm lib/stk/${STK_VERSION}/Demos/lessons
@dirrm lib/stk/${STK_VERSION}/Demos/Html-Demos/Images
@dirrm lib/stk/${STK_VERSION}/Demos/Html-Demos
@dirrm lib/stk/${STK_VERSION}/Demos
@dirrm lib/stk/${STK_VERSION}
@dirrm lib/stk/site-scheme
@dirrm lib/stk