diff options
author | Steve Price <steve@FreeBSD.org> | 1999-12-27 21:43:34 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 1999-12-27 21:43:34 +0000 |
commit | 81a63133444f358adf9f562538e9d974f53a2fc9 (patch) | |
tree | 0d497c2ecee0608b7a5b0c24c79b37b4c5550b1e /lang/smalltalk | |
parent | 9c19de7003210acc51f610be84eef52f5c35f809 (diff) | |
download | ports-81a63133444f358adf9f562538e9d974f53a2fc9.tar.gz ports-81a63133444f358adf9f562538e9d974f53a2fc9.zip |
Update to version 1.6.2.
PR: 15712
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=24173
Diffstat (limited to 'lang/smalltalk')
-rw-r--r-- | lang/smalltalk/Makefile | 38 | ||||
-rw-r--r-- | lang/smalltalk/distinfo | 2 | ||||
-rw-r--r-- | lang/smalltalk/files/patch-aa | 33 | ||||
-rw-r--r-- | lang/smalltalk/files/patch-ad | 30 | ||||
-rw-r--r-- | lang/smalltalk/files/patch-ae | 57 | ||||
-rw-r--r-- | lang/smalltalk/pkg-descr | 11 | ||||
-rw-r--r-- | lang/smalltalk/pkg-plist | 418 |
7 files changed, 333 insertions, 256 deletions
diff --git a/lang/smalltalk/Makefile b/lang/smalltalk/Makefile index 3b6c31ed336b..0f8c934ee868 100644 --- a/lang/smalltalk/Makefile +++ b/lang/smalltalk/Makefile @@ -1,12 +1,12 @@ # New ports collection makefile for: smalltalk -# Version required: 1.1.5 +# Version required: 1.6.2 # Date created: 09 Feb 1995 # Whom: gpalmer # # $FreeBSD$ # -DISTNAME= smalltalk-1.1.5 +DISTNAME= smalltalk-1.6.2 CATEGORIES= lang MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= smalltalk @@ -18,37 +18,9 @@ BUILD_DEPENDS= ${PREFIX}/lib/libgdbm.a:${PORTSDIR}/databases/gdbm GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-optimize --with-readline -IS_INTERACTIVE= yes -NO_PACKAGE= "Installation requires interaction" +MAN1= gst.1 -# For some reason configure doesn't set this up properly and my feeble -# brain can't see how to fix it. -CFLAGS+= -I${X11BASE}/include - -do-install: - @${ECHO_MSG} "Installing method definitions..." - @ if [ ! -d ${PREFIX}/lib/smalltalk ]; then ${MKDIR} ${PREFIX}/lib/smalltalk; fi - @(cd ${WRKSRC}; ${CP} *.st ${PREFIX}/lib/smalltalk) - @(cd ${PREFIX}/lib/smalltalk ; ${CHMOD} +r *.st) - @${ECHO_MSG} - @${ECHO_MSG} "To complete the installation of GNU Smalltalk, do" - @${ECHO_MSG} " cd ${WRKSRC};" - @${ECHO_MSG} "./gst -iV" - @${ECHO_MSG} "to test the interpreter and create the image." - @${ECHO_MSG} - @${ECHO_MSG} "When you are satisfied everything works, do Control-D to quit" - @${ECHO_MSG} "followed by" - @${ECHO_MSG} "cp gst ${PREFIX}/bin" - @${ECHO_MSG} "cp gst.im ${PREFIX}/lib/smalltalk" - @${ECHO_MSG} "to install the interpreter and image." - @${ECHO_MSG} - @${ECHO_MSG} "If Emacs is installed, you may also wish to copy the" - @${ECHO_MSG} "*st.el files to the Emacs Lisp directory. This will enable you" - @${ECHO_MSG} "to configure Emacs for Interactor mode." - @${ECHO_MSG} - @${ECHO_MSG} ">>Please read the file" - @${ECHO_MSG} "${WRKSRC}/info/gst.txi" - @${ECHO_MSG} "for more information.<<" - @${ECHO_MSG} +# Set all-target to test the stuff +ALL_TARGET= all check .include <bsd.port.mk> diff --git a/lang/smalltalk/distinfo b/lang/smalltalk/distinfo index 547f5ee50ce0..a22f61d576af 100644 --- a/lang/smalltalk/distinfo +++ b/lang/smalltalk/distinfo @@ -1 +1 @@ -MD5 (smalltalk-1.1.5.tar.gz) = 6151d3aa1c0eddcef876c419542aef5d +MD5 (smalltalk-1.6.2.tar.gz) = 604ba50197d004e685e6d8b5209e3242 diff --git a/lang/smalltalk/files/patch-aa b/lang/smalltalk/files/patch-aa index e0fb50c6b2cc..cd9dcdea95ec 100644 --- a/lang/smalltalk/files/patch-aa +++ b/lang/smalltalk/files/patch-aa @@ -1,15 +1,18 @@ ---- lib/gst.h.orig Fri Nov 28 21:37:24 1997 -+++ lib/gst.h Fri Nov 28 21:38:09 1997 -@@ -135,10 +135,12 @@ - * define __STDC__ */ - #if (defined (__STDC__) && __STDC__) || defined(_ANSI_C_SOURCE) || defined (__cplusplus) || defined(_WIN32) - -+#ifndef __FreeBSD__ - #define __P(args) args - #define __const const - #define __signed signed - #define __volatile volatile -+#endif - #define __DOTS , ... - - #else /* Not ANSI C or C++. */ +--- lib/lex.c.old Sun Dec 26 10:56:37 1999 ++++ lib/lex.c Sun Dec 26 10:57:50 1999 +@@ -48,6 +48,7 @@ + #include "sysdep.h" + #include <stdio.h> + #include <math.h> ++#include <floatingpoint.h> + #ifdef HAVE_READLINE + #include <readline/readline.h> + #include <readline/history.h> +@@ -693,6 +694,7 @@ + if (isNegative) { + num = -num; + } ++ fpsetmask(0); + + if (dotSeen) { + lvalp->fval = num; diff --git a/lang/smalltalk/files/patch-ad b/lang/smalltalk/files/patch-ad index 93fbaae13724..09d2f964118b 100644 --- a/lang/smalltalk/files/patch-ad +++ b/lang/smalltalk/files/patch-ad @@ -1,19 +1,11 @@ ---- lib/Makefile.in.orig Fri Nov 28 22:28:12 1997 -+++ lib/Makefile.in Fri Nov 28 23:19:37 1997 -@@ -73,7 +73,7 @@ - LIB=@LIB_EXTENSION@ - - # optimization flag -- may become host dependent --OPT_FLAG = -O -+#OPT_FLAG = -O - CDEBUG = @CDEBUG@ - USER_OBJECTS = @USER_OBJECTS@ - -@@ -195,7 +195,6 @@ - $(INSTALL_DATA) libgst.$(LIB) $(smlibdir)/libgst.$(LIB) - $(INSTALL_DATA) gst.h $(includedir)/gst.h - $(INSTALL_DATA) gstpub.h $(includedir)/gstpub.h -- $(INSTALL_DATA) config.h $(includedir)/config.h - - uninstall: - +--- Makefile.rules.old Sun Dec 26 11:51:47 1999 ++++ Makefile.rules Sun Dec 26 11:51:32 1999 +@@ -82,7 +82,7 @@ + -$(INSTALL_DATA) lib/gstpub.h $(oldincludedir)/gstpub.h + $(INSTALL_DATA) lib/libgst.$(LIB) $(smlibdir)/libgst.$(LIB) + (cd $(srcdir)/docs; $(MAKE) install; cd ..) +- ln -s $(bindir)/gst $(stdir)/gst # for regression testing ++ -ln -s $(bindir)/gst $(stdir)/gst # for regression testing + for file in $(INSTALLED_FILES); do \ + $(INSTALL_DATA) $$file $(stdir)/$$file; \ + done diff --git a/lang/smalltalk/files/patch-ae b/lang/smalltalk/files/patch-ae deleted file mode 100644 index d4e7fdcf68b4..000000000000 --- a/lang/smalltalk/files/patch-ae +++ /dev/null @@ -1,57 +0,0 @@ ---- Makefile.in.orig Sun Sep 17 11:49:10 1995 -+++ Makefile.in Sat Nov 29 01:33:15 1997 -@@ -70,7 +70,7 @@ - COMPLETE_MAKE=@COMPLETE_MAKE@ - - # optimization flag -- may become host dependent --OPT_FLAG = -O -+#OPT_FLAG = -O - CDEBUG = @CDEBUG@ - USER_OBJECTS = @USER_OBJECTS@ - -@@ -90,7 +90,7 @@ - # Where to put the system-wide image file - libdir = $(prefix)/lib - smlibdir = $(libdir)/smalltalk --stdir = $(prefix)/smalltalk -+stdir = $(libdir)/smalltalk - - ## Where to put the manual pages. - #mandir = $(prefix)/man -@@ -160,12 +160,12 @@ - Makefile.defs.in Makefile.rules \ - blox/Makefile.body \ - stix/Makefile.body tcp/Makefile.body test/Makefile.body \ -- cxtnsn/Makefile.body examples/Makefile.body contrib/Makefile.body \ -+ examples/Makefile.body contrib/Makefile.body \ - info/Makefile.body - - - # Subdirectories to run make in for the primary targets. --SUBDIRS = lib stix blox info examples contrib cxtnsn test tcp -+SUBDIRS = lib stix blox info examples contrib test tcp - - # Only make TAGS/tags files in these directories, in this order - ###TSUBDIRS= src lib -@@ -197,7 +197,7 @@ - $(RM) gst - $(CC) $(LDFLAGS) $(LDPATH) $(BINDING) -o $@ $(CFLAGS) $(CDEBUG) \ - $(OBJECTS) lib/libgst.a $(LIBS) -- $(COMPLETE_MAKE) -+# $(COMPLETE_MAKE) - - # A hack to force this directory to be reevaluated. - libgst.a: -@@ -219,8 +219,10 @@ - # $(RM) junk.c xmakefile - - installdirs: -- $(SHELL) $(srcdir)/mkinstalldirs $(bindir) $(smlibdir) $(infodir) \ -- $(stdir) -+ if [ ! -d $(smlibdir) ]; then \ -+ $(SHELL) $(srcdir)/mkinstalldirs $(bindir) $(smlibdir) $(infodir) \ -+ $(stdir); \ -+ fi - - install:: installdirs all - $(INSTALL_PROGRAM) gst $(bindir)/$(binprefix)gst diff --git a/lang/smalltalk/pkg-descr b/lang/smalltalk/pkg-descr index f3a16584d2c3..45343ed9d2e6 100644 --- a/lang/smalltalk/pkg-descr +++ b/lang/smalltalk/pkg-descr @@ -1,6 +1,7 @@ -This is GNU Smalltalk version 1.1.5. +The Smalltalk programming language is an object oriented programming +language. +GNU Smalltalk is an implementation that closely follows the +Smalltalk-80 language (tm ParcPlace Systems). -At this time, the install target is disabled as the installation -process is interactive. See the file `mst.texinfo' for more information. - -Gary Palmer <gpalmer@FreeBSD.org> +- Gary Palmer <gpalmer@FreeBSD.org> +- Alexander Langer <alex@big.endian.de> diff --git a/lang/smalltalk/pkg-plist b/lang/smalltalk/pkg-plist index ab4353adf4bf..1c64eea52d60 100644 --- a/lang/smalltalk/pkg-plist +++ b/lang/smalltalk/pkg-plist @@ -1,126 +1,292 @@ -lib/smalltalk/Array.st -lib/smalltalk/ArrayColl.st -lib/smalltalk/Association.st -lib/smalltalk/Autoload.st -lib/smalltalk/Bag.st -lib/smalltalk/Behavior.st -lib/smalltalk/BlkContext.st -lib/smalltalk/Boolean.st -lib/smalltalk/Browser.st -lib/smalltalk/BypassStream.st -lib/smalltalk/ByteArray.st -lib/smalltalk/ByteMemory.st -lib/smalltalk/CDeclNode.st -lib/smalltalk/CExpressionNode.st -lib/smalltalk/CFuncs.st -lib/smalltalk/CObject.st -lib/smalltalk/CPP.st -lib/smalltalk/CPStrConc.st -lib/smalltalk/CPStrUnq.st -lib/smalltalk/CParseType.st -lib/smalltalk/CStruct.st -lib/smalltalk/CSymbol.st -lib/smalltalk/CSymbolTable.st -lib/smalltalk/CTok.st -lib/smalltalk/CToken.st -lib/smalltalk/CTreeBuilder.st -lib/smalltalk/CType.st -lib/smalltalk/CTypeParser.st -lib/smalltalk/Character.st -lib/smalltalk/Class.st -lib/smalltalk/ClassDescr.st -lib/smalltalk/Collection.st -lib/smalltalk/CompildMeth.st -lib/smalltalk/CompilerTokens.st -lib/smalltalk/DLD.st -lib/smalltalk/Date.st -lib/smalltalk/Debugger.st -lib/smalltalk/Delay.st -lib/smalltalk/Dictionary.st -lib/smalltalk/ExpansionStream.st -lib/smalltalk/ExpansionStreamStack.st -lib/smalltalk/False.st -lib/smalltalk/FileSegment.st -lib/smalltalk/FileStream.st -lib/smalltalk/Float.st -lib/smalltalk/Fraction.st -lib/smalltalk/Host.st -lib/smalltalk/IOCtl.st -lib/smalltalk/IdentDict.st -lib/smalltalk/IndentedStream.st -lib/smalltalk/Integer.st -lib/smalltalk/Interval.st -lib/smalltalk/LineStream.st -lib/smalltalk/LineToTokenStream.st -lib/smalltalk/LineTokenStream.st -lib/smalltalk/Link.st -lib/smalltalk/LinkedList.st -lib/smalltalk/LookupKey.st -lib/smalltalk/Magnitude.st -lib/smalltalk/MappedColl.st -lib/smalltalk/Memory.st -lib/smalltalk/Message.st -lib/smalltalk/Metaclass.st -lib/smalltalk/MethodInfo.st -lib/smalltalk/MthContext.st -lib/smalltalk/Number.st -lib/smalltalk/Object.st -lib/smalltalk/OrderColl.st -lib/smalltalk/ParseNodes.st -lib/smalltalk/Parser.st -lib/smalltalk/Point.st -lib/smalltalk/PosStream.st -lib/smalltalk/ProcSched.st -lib/smalltalk/Process.st -lib/smalltalk/PushBackStream.st -lib/smalltalk/RParseNodes.st -lib/smalltalk/RWStream.st -lib/smalltalk/Random.st -lib/smalltalk/ReadStream.st -lib/smalltalk/Rectangle.st -lib/smalltalk/STCompLit.st -lib/smalltalk/STCompiler.st -lib/smalltalk/STSymTable.st -lib/smalltalk/STVarDefn.st -lib/smalltalk/Semaphore.st -lib/smalltalk/SeqCollect.st -lib/smalltalk/Set.st -lib/smalltalk/SharedQueue.st -lib/smalltalk/SortCollect.st -lib/smalltalk/Stream.st -lib/smalltalk/StreamStack.st -lib/smalltalk/String.st -lib/smalltalk/SymLink.st -lib/smalltalk/Symbol.st -lib/smalltalk/SysDict.st -lib/smalltalk/Time.st -lib/smalltalk/Token.st -lib/smalltalk/TokenStream.st -lib/smalltalk/True.st -lib/smalltalk/UndefObject.st -lib/smalltalk/UnixStream.st -lib/smalltalk/Variable.st -lib/smalltalk/WordMemory.st -lib/smalltalk/WriteStream.st -lib/smalltalk/builtins.st -lib/smalltalk/changes.st -lib/smalltalk/cpt.st -lib/smalltalk/dev-t.st -lib/smalltalk/dldtst.st -lib/smalltalk/eval.st -lib/smalltalk/fileout-ps.st -lib/smalltalk/initialize.st -lib/smalltalk/int.st -lib/smalltalk/it.st -lib/smalltalk/large-expr.st -lib/smalltalk/mt.st -lib/smalltalk/mt2.st -lib/smalltalk/t.st -lib/smalltalk/tdl.st -lib/smalltalk/testCPT.st -lib/smalltalk/testXParse.st -lib/smalltalk/testcompile.st -lib/smalltalk/tok.st -lib/smalltalk/tpars.st -lib/smalltalk/tstCPT.st -lib/smalltalk/tstdl2.st +@unexec install-info --delete --info-dir=%D/info %D/info/gst.info +bin/gst +include/gst.h +include/gstconf.h +include/gstpub.h +info/gst.info +info/gst.info-1 +info/gst.info-10 +info/gst.info-11 +info/gst.info-12 +info/gst.info-13 +info/gst.info-2 +info/gst.info-3 +info/gst.info-4 +info/gst.info-5 +info/gst.info-6 +info/gst.info-7 +info/gst.info-8 +info/gst.info-9 +lib/libgst.a +share/smalltalk/Load.st +share/smalltalk/Reload.st +share/smalltalk/blox/BB-Run.st +share/smalltalk/blox/BBrowser.st +share/smalltalk/blox/Blox.st +share/smalltalk/blox/BloxBasic.st +share/smalltalk/blox/BloxCanvas.st +share/smalltalk/blox/BloxText.st +share/smalltalk/blox/BloxWidgets.st +share/smalltalk/blox/BrowShell.st +share/smalltalk/blox/BrowserMain.st +share/smalltalk/blox/ClassBrow.st +share/smalltalk/blox/Colors.txt +share/smalltalk/blox/CtxtInspect.st +share/smalltalk/blox/DictInspect.st +share/smalltalk/blox/ErrInspect.st +share/smalltalk/blox/Form.st +share/smalltalk/blox/GuiData.st +share/smalltalk/blox/Inspector.st +share/smalltalk/blox/Load.st +share/smalltalk/blox/Manager.st +share/smalltalk/blox/Menu.st +share/smalltalk/blox/MethSetBrow.st +share/smalltalk/blox/ModalDialog.st +share/smalltalk/blox/PList.st +share/smalltalk/blox/PRadioBtn.st +share/smalltalk/blox/PText.st +share/smalltalk/blox/Primitive.st +share/smalltalk/blox/Prompter.st +share/smalltalk/blox/README.Browser +share/smalltalk/blox/README.SimpleBrowser +share/smalltalk/blox/RadioForm.st +share/smalltalk/blox/Run.st +share/smalltalk/blox/StkInspect.st +share/smalltalk/blox/StrcInspect.st +share/smalltalk/blox/TextMenu.st +share/smalltalk/blox/TopLevel.st +share/smalltalk/blox/View.st +share/smalltalk/blox/bear.gif +share/smalltalk/blox/test.st +share/smalltalk/cint/CDeclNode.st +share/smalltalk/cint/CExpressionNode.st +share/smalltalk/cint/CPP.st +share/smalltalk/cint/CPStrConc.st +share/smalltalk/cint/CPStrUnq.st +share/smalltalk/cint/CParseType.st +share/smalltalk/cint/CSymbol.st +share/smalltalk/cint/CSymbolTable.st +share/smalltalk/cint/CTok.st +share/smalltalk/cint/CToken.st +share/smalltalk/cint/CTreeBuilder.st +share/smalltalk/cint/CollapsedStream.st +share/smalltalk/cint/ExpansionStream.st +share/smalltalk/cint/ExpansionStreamStack.st +share/smalltalk/cint/LineStream.st +share/smalltalk/cint/LineTokenStream.st +share/smalltalk/cint/README +share/smalltalk/cint/StreamStack.st +share/smalltalk/compiler/Load.st +share/smalltalk/compiler/README +share/smalltalk/compiler/STCompLit.st +share/smalltalk/compiler/STCompiler.st +share/smalltalk/compiler/STFileInParser.st +share/smalltalk/compiler/STParseNodes.st +share/smalltalk/compiler/STParser.st +share/smalltalk/compiler/STSymTable.st +share/smalltalk/compiler/STTok.st +share/smalltalk/compiler/STToken.st +share/smalltalk/compiler/STVariable.st +share/smalltalk/compiler/profcompiler.st +share/smalltalk/examples/Application.st +share/smalltalk/examples/Bench.st +share/smalltalk/examples/CStream.st +share/smalltalk/examples/Case.st +share/smalltalk/examples/CompFileSeg.st +share/smalltalk/examples/DBFile.st +share/smalltalk/examples/Debugger.st +share/smalltalk/examples/Dinner.st +share/smalltalk/examples/EditStream.st +share/smalltalk/examples/GenClasses.st +share/smalltalk/examples/IndStream.st +share/smalltalk/examples/MemUsage.st +share/smalltalk/examples/PrtHier.st +share/smalltalk/examples/Publish.st +share/smalltalk/examples/PushBack.st +share/smalltalk/examples/Queens.st +share/smalltalk/examples/README +share/smalltalk/examples/RandomInt.st +share/smalltalk/examples/RecursLit.st +share/smalltalk/examples/RegExp.st +share/smalltalk/examples/Richards.st +share/smalltalk/examples/Timer.st +share/smalltalk/examples/Tokenizer.st +share/smalltalk/examples/Watchdog.st +share/smalltalk/examples/blox/Man.st +share/smalltalk/examples/blox/Progress.st +share/smalltalk/examples/blox/Tetris.st +share/smalltalk/examples/mixed/BigExpr.st +share/smalltalk/examples/mixed/CInt.st +share/smalltalk/examples/mixed/CPP-test.st +share/smalltalk/examples/mixed/CParseT1.st +share/smalltalk/examples/mixed/CParseT2.st +share/smalltalk/examples/mixed/CParseT3.st +share/smalltalk/examples/mixed/CString.st +share/smalltalk/examples/mixed/Compiler.st +share/smalltalk/examples/mixed/DLD.st +share/smalltalk/examples/mixed/Extensn.st +share/smalltalk/examples/mixed/IfError.st +share/smalltalk/examples/mixed/Interr.st +share/smalltalk/examples/mixed/ParseErr.st +share/smalltalk/examples/mixed/Process1.st +share/smalltalk/examples/mixed/Process2.st +share/smalltalk/examples/mixed/Profile.st +share/smalltalk/examples/mixed/Sorting.st +share/smalltalk/examples/mixed/a.st +share/smalltalk/examples/mixed/ba.st +share/smalltalk/examples/mixed/binary.c +share/smalltalk/examples/mixed/blt.st +share/smalltalk/examples/mixed/bug.st +share/smalltalk/examples/mixed/bug2.st +share/smalltalk/examples/mixed/bug4.st +share/smalltalk/examples/mixed/er2.st +share/smalltalk/examples/mixed/market.st +share/smalltalk/examples/mixed/nt-test.c +share/smalltalk/examples/mixed/resolve.st +share/smalltalk/examples/mixed/self.st +share/smalltalk/examples/mixed/t.st +share/smalltalk/examples/mixed/torture.st +share/smalltalk/examples/shell +share/smalltalk/gdbm/gdbm.st +share/smalltalk/gst.im +share/smalltalk/kernel/Array.st +share/smalltalk/kernel/ArrayColl.st +share/smalltalk/kernel/Association.st +share/smalltalk/kernel/Autoload.st +share/smalltalk/kernel/Bag.st +share/smalltalk/kernel/Behavior.st +share/smalltalk/kernel/BlkClosure.st +share/smalltalk/kernel/BlkContext.st +share/smalltalk/kernel/Boolean.st +share/smalltalk/kernel/Browser.st +share/smalltalk/kernel/Builtins.st +share/smalltalk/kernel/ByteArray.st +share/smalltalk/kernel/ByteMemory.st +share/smalltalk/kernel/ByteStream.st +share/smalltalk/kernel/CFuncs.st +share/smalltalk/kernel/CObject.st +share/smalltalk/kernel/CStruct.st +share/smalltalk/kernel/CType.st +share/smalltalk/kernel/Character.st +share/smalltalk/kernel/Class.st +share/smalltalk/kernel/ClassDesc.st +share/smalltalk/kernel/Collection.st +share/smalltalk/kernel/CompildMeth.st +share/smalltalk/kernel/ContextPart.st +share/smalltalk/kernel/DLD.st +share/smalltalk/kernel/Date.st +share/smalltalk/kernel/Delay.st +share/smalltalk/kernel/Dictionary.st +share/smalltalk/kernel/DirMessage.st +share/smalltalk/kernel/Directory.st +share/smalltalk/kernel/ExcHandling.st +share/smalltalk/kernel/False.st +share/smalltalk/kernel/File.st +share/smalltalk/kernel/FileSegment.st +share/smalltalk/kernel/FileStream.st +share/smalltalk/kernel/Float.st +share/smalltalk/kernel/Fraction.st +share/smalltalk/kernel/IdentDict.st +share/smalltalk/kernel/IdentitySet.st +share/smalltalk/kernel/Integer.st +share/smalltalk/kernel/Interval.st +share/smalltalk/kernel/LargeInt.st +share/smalltalk/kernel/Link.st +share/smalltalk/kernel/LinkedList.st +share/smalltalk/kernel/Magnitude.st +share/smalltalk/kernel/MappedColl.st +share/smalltalk/kernel/Memory.st +share/smalltalk/kernel/Message.st +share/smalltalk/kernel/Metaclass.st +share/smalltalk/kernel/MethodInfo.st +share/smalltalk/kernel/MthContext.st +share/smalltalk/kernel/Number.st +share/smalltalk/kernel/ObjDumper.st +share/smalltalk/kernel/Object.st +share/smalltalk/kernel/OrderColl.st +share/smalltalk/kernel/PkgLoader.st +share/smalltalk/kernel/Point.st +share/smalltalk/kernel/PosStream.st +share/smalltalk/kernel/ProcSched.st +share/smalltalk/kernel/Process.st +share/smalltalk/kernel/RWStream.st +share/smalltalk/kernel/Random.st +share/smalltalk/kernel/ReadStream.st +share/smalltalk/kernel/Rectangle.st +share/smalltalk/kernel/RunArray.st +share/smalltalk/kernel/Semaphore.st +share/smalltalk/kernel/SeqCollect.st +share/smalltalk/kernel/Set.st +share/smalltalk/kernel/SharedQueue.st +share/smalltalk/kernel/SortCollect.st +share/smalltalk/kernel/Stream.st +share/smalltalk/kernel/String.st +share/smalltalk/kernel/SymLink.st +share/smalltalk/kernel/Symbol.st +share/smalltalk/kernel/SysDict.st +share/smalltalk/kernel/Time.st +share/smalltalk/kernel/TokenStream.st +share/smalltalk/kernel/Transcript.st +share/smalltalk/kernel/True.st +share/smalltalk/kernel/UndefObject.st +share/smalltalk/kernel/ValueAdapt.st +share/smalltalk/kernel/WordMemory.st +share/smalltalk/kernel/WriteStream.st +share/smalltalk/kernel/initialize.st +share/smalltalk/tcp/AbstractSocket.st +share/smalltalk/tcp/AbstractSocketImpl.st +share/smalltalk/tcp/ContentHandler.st +share/smalltalk/tcp/Datagram.st +share/smalltalk/tcp/DatagramSocket.st +share/smalltalk/tcp/DatagramSocketImpl.st +share/smalltalk/tcp/IPAddress.st +share/smalltalk/tcp/MulticastSocket.st +share/smalltalk/tcp/ReadBuffer.st +share/smalltalk/tcp/ServerSocket.st +share/smalltalk/tcp/Socket.st +share/smalltalk/tcp/SocketImpl.st +share/smalltalk/tcp/TCP.st +share/smalltalk/tcp/TCPSocketImpl.st +share/smalltalk/tcp/UDPSocketImpl.st +share/smalltalk/tcp/URL.st +share/smalltalk/tcp/UnixStream.st +share/smalltalk/tcp/WriteBuffer.st +share/smalltalk/tcp/cfuncs.st +share/smalltalk/test/arrays.base +share/smalltalk/test/arrays.st +share/smalltalk/test/blocks.base +share/smalltalk/test/blocks.st +share/smalltalk/test/chars.base +share/smalltalk/test/chars.st +share/smalltalk/test/classes.base +share/smalltalk/test/classes.st +share/smalltalk/test/dates.base +share/smalltalk/test/dates.st +share/smalltalk/test/delays.base +share/smalltalk/test/delays.st +share/smalltalk/test/floatmath.base +share/smalltalk/test/floatmath.st +share/smalltalk/test/geometry.base +share/smalltalk/test/geometry.st +share/smalltalk/test/intmath.base +share/smalltalk/test/intmath.st +share/smalltalk/test/objects.base +share/smalltalk/test/objects.st +share/smalltalk/test/processes.base +share/smalltalk/test/processes.st +share/smalltalk/test/run-regression-tests +share/smalltalk/test/strings.base +share/smalltalk/test/strings.st +share/smalltalk/gst +@dirrm share/smalltalk/test +@dirrm share/smalltalk/tcp +@dirrm share/smalltalk/kernel +@dirrm share/smalltalk/gdbm +@dirrm share/smalltalk/examples/mixed +@dirrm share/smalltalk/examples/blox +@dirrm share/smalltalk/examples +@dirrm share/smalltalk/compiler +@dirrm share/smalltalk/cint +@dirrm share/smalltalk/blox +@dirrm share/smalltalk +@exec install-info --info-dir=%D/info %D/info/gst.info |