Date: Thu, 30 Mar 2000 13:45:54 +0200 (CEST) From: Alexander Langer <alex@cichlids.com> To: FreeBSD-gnats-submit@freebsd.org Subject: ports/17685: update lang/smalltalk to 1.7.3 Message-ID: <200003301145.NAA24761@cichlids.cichlids.com>
next in thread | raw e-mail | index | archive | help
>Number: 17685 >Category: ports >Synopsis: update lang/smalltalk to 1.7.3 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Mar 30 03:50:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Alexander Langer >Release: FreeBSD 5.0-CURRENT i386 >Organization: foo >Environment: recent env. >Description: This port updates the lang/smalltalk port to version 1.7.3. I am the maintainer of this port, but I had no time and the smalltalk needed an update. I asked KATO Tsuguru <tkato@prontomail.ne.jp> if he could update the port, and he did :-) So, please list him as submitter, when you commit it: Submitted by: KATO Tsuguru <tkato@prontomail.ne.jp> >How-To-Repeat: n/a >Fix: diff -urN /usr/ports/lang/smalltalk/Makefile lang/smalltalk/Makefile --- /usr/ports/lang/smalltalk/Makefile Tue Mar 21 17:30:08 2000 +++ lang/smalltalk/Makefile Mon Mar 27 04:00:06 2000 @@ -1,26 +1,24 @@ # New ports collection makefile for: smalltalk -# Version required: 1.6.2 +# Version required: 1.7.3 # Date created: 09 Feb 1995 # Whom: gpalmer # # $FreeBSD: ports/lang/smalltalk/Makefile,v 1.22 2000/03/21 08:30:08 mharo Exp $ # -DISTNAME= smalltalk-1.6.2 +DISTNAME= smalltalk-1.7.3 CATEGORIES= lang MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= smalltalk MAINTAINER= alex@big.endian.de -BUILD_DEPENDS= ${LOCALBASE}/lib/libgdbm.a:${PORTSDIR}/databases/gdbm - +USE_GMAKE= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-optimize --with-readline MAN1= gst.1 # Set all-target to test the stuff -ALL_TARGET= all check +ALL_TARGET= optimize info check .include <bsd.port.mk> diff -urN /usr/ports/lang/smalltalk/files/md5 lang/smalltalk/files/md5 --- /usr/ports/lang/smalltalk/files/md5 Tue Dec 28 06:43:32 1999 +++ lang/smalltalk/files/md5 Mon Mar 27 03:37:12 2000 @@ -1 +1 @@ -MD5 (smalltalk-1.6.2.tar.gz) = 604ba50197d004e685e6d8b5209e3242 +MD5 (smalltalk-1.7.3.tar.gz) = 71ec44421fb8dc9c51002cf80c8377bc diff -urN /usr/ports/lang/smalltalk/patches/patch-aa lang/smalltalk/patches/patch-aa --- /usr/ports/lang/smalltalk/patches/patch-aa Tue Dec 28 06:43:32 1999 +++ lang/smalltalk/patches/patch-aa Mon Mar 27 04:03:20 2000 @@ -1,18 +1,22 @@ ---- 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" +--- lib/lex.c.orig Mon Feb 21 19:05:50 2000 ++++ lib/lex.c Sat Mar 25 21:43:17 2000 +@@ -50,6 +50,9 @@ + #include <stdio.h> #include <math.h> ++#if defined(__FreeBSD__) +#include <floatingpoint.h> ++#endif + #ifdef HAVE_READLINE #include <readline/readline.h> - #include <readline/history.h> -@@ -693,6 +694,7 @@ +@@ -735,6 +738,9 @@ if (isNegative) { num = -num; } ++#if defined(__FreeBSD__) + fpsetmask(0); ++#endif - if (dotSeen) { + if (isFloat) { lvalp->fval = num; diff -urN /usr/ports/lang/smalltalk/patches/patch-ab lang/smalltalk/patches/patch-ab --- /usr/ports/lang/smalltalk/patches/patch-ab Tue Dec 28 06:43:32 1999 +++ lang/smalltalk/patches/patch-ab Mon Mar 27 04:42:02 2000 @@ -1,30 +1,10 @@ ---- docs/Makefile.old Sun Dec 26 11:24:54 1999 -+++ docs/Makefile Sun Dec 26 11:28:37 1999 -@@ -36,11 +36,11 @@ - - # MAKEINFO won't fail -- they pass a `:' to us if it's absent - $(INFO): $(SOURCES) -- $(MAKEINFO) $(srcdir)/docs/$< -+ -$(MAKEINFO) $(srcdir)/docs/$(SOURCES) - - # It is ok for this to fail because the program isn't present. - $(DVI): $(SOURCES) texinfo.tex -- -$(TEXI2DVI) $(srcdir)/docs/$< -+ -$(TEXI2DVI) $(srcdir)/docs/$(SOURCES) texinfo.tex - - classes.txi: - cd $(srcdir); \ -@@ -67,11 +67,11 @@ - # Install targets - install: all - $(INSTALL_DATA) gst.1 $(mandir)/man1/gst.1 -- cd $(srcdir); for file in $(INFO)*; do \ -+ cd $(srcdir)/docs; for file in $(INFO)*; do \ +--- docs/Makefile.orig Mon Feb 21 19:05:16 2000 ++++ docs/Makefile Sat Mar 25 22:13:43 2000 +@@ -65,7 +65,7 @@ $(INSTALL_DATA) $$file $(infodir); \ done -- cd $(srcdir); for file in $(INFO); do \ + cd $(srcdir)/docs; for file in $(INFO); do \ - $(INSTALL_INFO) --dir-file=$(infodir)/dir $(infodir)/$$file \ -+ cd $(srcdir)/docs; for file in $(INFO); do \ + $(INSTALL_INFO) --dir-file=$(infodir)/dir $(infodir)/$$file; \ done diff -urN /usr/ports/lang/smalltalk/patches/patch-ac lang/smalltalk/patches/patch-ac --- /usr/ports/lang/smalltalk/patches/patch-ac Tue Dec 28 06:43:32 1999 +++ lang/smalltalk/patches/patch-ac Mon Mar 27 04:44:37 2000 @@ -1,24 +1,34 @@ ---- Makefile.body.orig Sun Aug 29 11:38:31 1999 -+++ Makefile.body Sun Dec 26 11:53:07 1999 -@@ -122,10 +122,10 @@ +--- Makefile.body.orig Sat Mar 18 18:23:25 2000 ++++ Makefile.body Sat Mar 25 22:37:58 2000 +@@ -90,7 +90,7 @@ + compiler/StartCompiler.st compiler/STVisitor.st \ + compiler/STParseNodes.st compiler/STParser.st \ + compiler/STSymTable.st compiler/STTok.st \ +- compiler/STToken.st compiler/STCompiler.st compiler/README ++ compiler/STToken.st compiler/STCompiler.st compiler/Readme - EMACS_FILES = emacs/bison.el emacs/st-changelog.el emacs/st.el + GDBM_FILES = examples/gdbm/gdbm.st --TEST_FILES = test/array.base test/array.st \ -+TEST_FILES = test/arrays.base test/arrays.st \ - test/blocks.base test/blocks.st \ - test/chars.base test/chars.st \ -- test/class.base test/class.st \ -+ test/classes.base test/classes.st \ - test/dates.base test/dates.st \ - test/delays.base test/delays.st \ - test/floatmath.base test/floatmath.st \ -@@ -149,7 +149,7 @@ - blox/BloxText.st blox/BloxWidgets.st blox/test.st +@@ -200,7 +200,7 @@ + blox/BloxExtend.st blox/BloxText.st \ + blox/BloxWidgets.st blox/test.st \ - TCP_FILES = tcp/AbstractSocket.st tcp/AbstractSocketImpl.st \ -- cfuncs.st tcp/ContentHandler.st tcp/Datagram.st \ -+ tcp/cfuncs.st tcp/ContentHandler.st tcp/Datagram.st \ - tcp/DatagramSocket.st tcp/DatagramSocketImpl.st tcp/IPAddress.st \ - tcp/MulticastSocket.st tcp/ReadBuffer.st tcp/ServerSocket.st tcp/Socket.st \ - tcp/SocketImpl.st tcp/TCP.st tcp/TCPSocketImpl.st \ +-TCP_FILES = tcp/AbstractSocket.st tcp/init.st \ ++TCP_FILES = tcp/AbstractSocket.st tcp/Init.st \ + tcp/AbstractSocketImpl.st tcp/cfuncs.st \ + tcp/ContentHandler.st tcp/Datagram.st \ + tcp/DatagramSocket.st tcp/DatagramSocketImpl.st \ +@@ -233,10 +233,9 @@ + INSTALLED_FILES = $(GDBM_FILES) $(MAIN_ST_SOURCES) $(TEST_FILES) \ + $(TCP_FILES) $(EXAMPLE_FILES) $(BLOX_FILES) + +-INSTALLED_DIRS = $(stdir) $(stdir)/kernel $(stdir)/blox $(stdir)/gdbm \ +- $(stdir)/examples $(stdir)/examples/blox $(stdir)/examples/mixed \ +- $(stdir)/tcp $(stdir)/cint $(stdir)/compiler $(stdir)/test \ +- $(stdir)/xml ++INSTALLED_DIRS = $(stdir) $(stdir)/kernel $(stdir)/blox $(stdir)/examples \ ++ $(stdir)/examples/blox $(stdir)/examples/mixed $(stdir)/examples/gdbm \ ++ $(stdir)/tcp $(stdir)/cint $(stdir)/compiler $(stdir)/test + + MORE_SOURCES = examples/gdbm/Makefile.body \ + examples/gdbm/cfuncs.h examples/gdbm/gdbm.c \ diff -urN /usr/ports/lang/smalltalk/patches/patch-ad lang/smalltalk/patches/patch-ad --- /usr/ports/lang/smalltalk/patches/patch-ad Tue Dec 28 06:43:32 1999 +++ lang/smalltalk/patches/patch-ad Thu Jan 1 09:00:00 1970 @@ -1,11 +0,0 @@ ---- 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 -urN /usr/ports/lang/smalltalk/patches/patch-ae lang/smalltalk/patches/patch-ae --- /usr/ports/lang/smalltalk/patches/patch-ae Thu Jan 1 09:00:00 1970 +++ lang/smalltalk/patches/patch-ae Mon Mar 27 04:03:39 2000 @@ -0,0 +1,11 @@ +--- Makefile.defs.in.orig Mon Feb 21 19:04:57 2000 ++++ Makefile.defs.in Sat Mar 25 22:50:24 2000 +@@ -73,7 +73,7 @@ + + # Program flags + OPT_LEVEL = 2 +-OPT_CFLAGS = -O$(OPT_LEVEL) -DOPTIMIZE ++OPT_CFLAGS = -DOPTIMIZE + CDEBUG = @CDEBUG@ + INCLUDES= -I$(srcdir) -I$(srcdir)/lib $(USER_INCLUDES) + CPPFLAGS = @CPPFLAGS@ diff -urN /usr/ports/lang/smalltalk/patches/patch-af lang/smalltalk/patches/patch-af --- /usr/ports/lang/smalltalk/patches/patch-af Thu Jan 1 09:00:00 1970 +++ lang/smalltalk/patches/patch-af Mon Mar 27 04:03:48 2000 @@ -0,0 +1,11 @@ +--- lib/Makefile.in.orig Mon Feb 21 19:05:51 2000 ++++ lib/Makefile.in Sat Mar 25 23:15:45 2000 +@@ -76,7 +76,7 @@ + LIBOBJS = @LIBOBJS@ + DLD_MODULE = @DLD_MODULE@ + OPT_LEVEL = 2 +-OPT_CFLAGS = -O$(OPT_LEVEL) -DOPTIMIZE ++OPT_CFLAGS = -DOPTIMIZE + CDEBUG = @CDEBUG@ + INCLUDES= -I$(srcdir) -I$(srcdir)/.. $(USER_INCLUDES) + CPPFLAGS = @CPPFLAGS@ diff -urN /usr/ports/lang/smalltalk/pkg/DESCR lang/smalltalk/pkg/DESCR --- /usr/ports/lang/smalltalk/pkg/DESCR Tue Dec 28 06:43:34 1999 +++ lang/smalltalk/pkg/DESCR Sat Mar 25 04:15:04 2000 @@ -3,5 +3,7 @@ GNU Smalltalk is an implementation that closely follows the Smalltalk-80 language (tm ParcPlace Systems). +WWW: http://www.smalltalk.org/versions/GNUSmalltalk.html + - Gary Palmer <gpalmer@FreeBSD.org> - Alexander Langer <alex@big.endian.de> diff -urN /usr/ports/lang/smalltalk/pkg/PLIST lang/smalltalk/pkg/PLIST --- /usr/ports/lang/smalltalk/pkg/PLIST Tue Dec 28 06:43:34 1999 +++ lang/smalltalk/pkg/PLIST Mon Mar 27 04:38:30 2000 @@ -9,6 +9,9 @@ info/gst.info-11 info/gst.info-12 info/gst.info-13 +info/gst.info-14 +info/gst.info-15 +info/gst.info-16 info/gst.info-2 info/gst.info-3 info/gst.info-4 @@ -18,275 +21,280 @@ 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 +share/gnu-smalltalk/Load.st +share/gnu-smalltalk/Reload.st +share/gnu-smalltalk/blox/BB-Run.st +share/gnu-smalltalk/blox/BBrowser.st +share/gnu-smalltalk/blox/Blox.st +share/gnu-smalltalk/blox/BloxBasic.st +share/gnu-smalltalk/blox/BloxCanvas.st +share/gnu-smalltalk/blox/BloxExtend.st +share/gnu-smalltalk/blox/BloxText.st +share/gnu-smalltalk/blox/BloxWidgets.st +share/gnu-smalltalk/blox/BrowShell.st +share/gnu-smalltalk/blox/BrowserMain.st +share/gnu-smalltalk/blox/ClassBrow.st +share/gnu-smalltalk/blox/Colors.txt +share/gnu-smalltalk/blox/CtxtInspect.st +share/gnu-smalltalk/blox/DictInspect.st +share/gnu-smalltalk/blox/GuiData.st +share/gnu-smalltalk/blox/Inspector.st +share/gnu-smalltalk/blox/Load.st +share/gnu-smalltalk/blox/Manager.st +share/gnu-smalltalk/blox/Menu.st +share/gnu-smalltalk/blox/MethInspect.st +share/gnu-smalltalk/blox/MethSetBrow.st +share/gnu-smalltalk/blox/ModalDialog.st +share/gnu-smalltalk/blox/Notifier.st +share/gnu-smalltalk/blox/PCode.st +share/gnu-smalltalk/blox/PList.st +share/gnu-smalltalk/blox/PText.st +share/gnu-smalltalk/blox/RadioForm.st +share/gnu-smalltalk/blox/Run.st +share/gnu-smalltalk/blox/StrcInspect.st +share/gnu-smalltalk/blox/View.st +share/gnu-smalltalk/blox/bear.gif +share/gnu-smalltalk/blox/test.st +share/gnu-smalltalk/cint/CDeclNode.st +share/gnu-smalltalk/cint/CExpressionNode.st +share/gnu-smalltalk/cint/CPP.st +share/gnu-smalltalk/cint/CPStrConc.st +share/gnu-smalltalk/cint/CPStrUnq.st +share/gnu-smalltalk/cint/CParseType.st +share/gnu-smalltalk/cint/CSymbol.st +share/gnu-smalltalk/cint/CSymbolTable.st +share/gnu-smalltalk/cint/CTok.st +share/gnu-smalltalk/cint/CToken.st +share/gnu-smalltalk/cint/CTreeBuilder.st +share/gnu-smalltalk/cint/CollapsedStream.st +share/gnu-smalltalk/cint/ExpansionStream.st +share/gnu-smalltalk/cint/ExpansionStreamStack.st +share/gnu-smalltalk/cint/LineStream.st +share/gnu-smalltalk/cint/LineTokenStream.st +share/gnu-smalltalk/cint/README +share/gnu-smalltalk/cint/StreamStack.st +share/gnu-smalltalk/compiler/Load.st +share/gnu-smalltalk/compiler/Readme +share/gnu-smalltalk/compiler/STCompLit.st +share/gnu-smalltalk/compiler/STCompiler.st +share/gnu-smalltalk/compiler/STParseNodes.st +share/gnu-smalltalk/compiler/STParser.st +share/gnu-smalltalk/compiler/STSymTable.st +share/gnu-smalltalk/compiler/STTok.st +share/gnu-smalltalk/compiler/STToken.st +share/gnu-smalltalk/compiler/STVisitor.st +share/gnu-smalltalk/compiler/StartCompiler.st +share/gnu-smalltalk/examples/Application.st +share/gnu-smalltalk/examples/Bench.st +share/gnu-smalltalk/examples/Buffers.st +share/gnu-smalltalk/examples/CStream.st +share/gnu-smalltalk/examples/Case.st +share/gnu-smalltalk/examples/CompFileSeg.st +share/gnu-smalltalk/examples/DBFile.st +share/gnu-smalltalk/examples/Debugger.st +share/gnu-smalltalk/examples/Dinner.st +share/gnu-smalltalk/examples/EditStream.st +share/gnu-smalltalk/examples/GenClasses.st +share/gnu-smalltalk/examples/IndStream.st +share/gnu-smalltalk/examples/Lisp.st +share/gnu-smalltalk/examples/MemUsage.st +share/gnu-smalltalk/examples/Prolog.st +share/gnu-smalltalk/examples/PrtHier.st +share/gnu-smalltalk/examples/Publish.st +share/gnu-smalltalk/examples/PushBack.st +share/gnu-smalltalk/examples/Queens.st +share/gnu-smalltalk/examples/README +share/gnu-smalltalk/examples/RandomInt.st +share/gnu-smalltalk/examples/RecursLit.st +share/gnu-smalltalk/examples/RegExp.st +share/gnu-smalltalk/examples/Richards.st +share/gnu-smalltalk/examples/Timer.st +share/gnu-smalltalk/examples/Tokenizer.st +share/gnu-smalltalk/examples/Watchdog.st +share/gnu-smalltalk/examples/blox/Man.st +share/gnu-smalltalk/examples/blox/Tetris.st +share/gnu-smalltalk/examples/gdbm/gdbm.st +share/gnu-smalltalk/examples/mixed/BigExpr.st +share/gnu-smalltalk/examples/mixed/CInt.st +share/gnu-smalltalk/examples/mixed/CPP-test.st +share/gnu-smalltalk/examples/mixed/CParseT1.st +share/gnu-smalltalk/examples/mixed/CParseT2.st +share/gnu-smalltalk/examples/mixed/CParseT3.st +share/gnu-smalltalk/examples/mixed/CString.st +share/gnu-smalltalk/examples/mixed/Compiler.st +share/gnu-smalltalk/examples/mixed/DLD.st +share/gnu-smalltalk/examples/mixed/Extensn.st +share/gnu-smalltalk/examples/mixed/IfError.st +share/gnu-smalltalk/examples/mixed/Interr.st +share/gnu-smalltalk/examples/mixed/ParseErr.st +share/gnu-smalltalk/examples/mixed/Process1.st +share/gnu-smalltalk/examples/mixed/Process2.st +share/gnu-smalltalk/examples/mixed/Profile.st +share/gnu-smalltalk/examples/mixed/Sorting.st +share/gnu-smalltalk/examples/mixed/a.st +share/gnu-smalltalk/examples/mixed/ba.st +share/gnu-smalltalk/examples/mixed/binary.c +share/gnu-smalltalk/examples/mixed/bug.st +share/gnu-smalltalk/examples/mixed/bug2.st +share/gnu-smalltalk/examples/mixed/bug4.st +share/gnu-smalltalk/examples/mixed/er2.st +share/gnu-smalltalk/examples/mixed/market.st +share/gnu-smalltalk/examples/mixed/resolve.st +share/gnu-smalltalk/examples/mixed/self.st +share/gnu-smalltalk/examples/mixed/t.st +share/gnu-smalltalk/examples/mixed/torture.st +share/gnu-smalltalk/examples/shell +share/gnu-smalltalk/gst.im +share/gnu-smalltalk/kernel/Array.st +share/gnu-smalltalk/kernel/ArrayColl.st +share/gnu-smalltalk/kernel/Association.st +share/gnu-smalltalk/kernel/Autoload.st +share/gnu-smalltalk/kernel/Bag.st +share/gnu-smalltalk/kernel/Behavior.st +share/gnu-smalltalk/kernel/BlkClosure.st +share/gnu-smalltalk/kernel/BlkContext.st +share/gnu-smalltalk/kernel/Boolean.st +share/gnu-smalltalk/kernel/Browser.st +share/gnu-smalltalk/kernel/Builtins.st +share/gnu-smalltalk/kernel/ByteArray.st +share/gnu-smalltalk/kernel/ByteMemory.st +share/gnu-smalltalk/kernel/ByteStream.st +share/gnu-smalltalk/kernel/CFuncs.st +share/gnu-smalltalk/kernel/CObject.st +share/gnu-smalltalk/kernel/CStruct.st +share/gnu-smalltalk/kernel/CType.st +share/gnu-smalltalk/kernel/CharArray.st +share/gnu-smalltalk/kernel/Character.st +share/gnu-smalltalk/kernel/Class.st +share/gnu-smalltalk/kernel/ClassDesc.st +share/gnu-smalltalk/kernel/Collection.st +share/gnu-smalltalk/kernel/CompildCode.st +share/gnu-smalltalk/kernel/CompildMeth.st +share/gnu-smalltalk/kernel/CompiledBlk.st +share/gnu-smalltalk/kernel/ContextPart.st +share/gnu-smalltalk/kernel/DLD.st +share/gnu-smalltalk/kernel/Date.st +share/gnu-smalltalk/kernel/Delay.st +share/gnu-smalltalk/kernel/Dictionary.st +share/gnu-smalltalk/kernel/DirMessage.st +share/gnu-smalltalk/kernel/Directory.st +share/gnu-smalltalk/kernel/ExcHandling.st +share/gnu-smalltalk/kernel/False.st +share/gnu-smalltalk/kernel/File.st +share/gnu-smalltalk/kernel/FileSegment.st +share/gnu-smalltalk/kernel/FileStream.st +share/gnu-smalltalk/kernel/Float.st +share/gnu-smalltalk/kernel/Fraction.st +share/gnu-smalltalk/kernel/IdentDict.st +share/gnu-smalltalk/kernel/IdentitySet.st +share/gnu-smalltalk/kernel/Integer.st +share/gnu-smalltalk/kernel/Interval.st +share/gnu-smalltalk/kernel/LargeInt.st +share/gnu-smalltalk/kernel/Link.st +share/gnu-smalltalk/kernel/LinkedList.st +share/gnu-smalltalk/kernel/LookupKey.st +share/gnu-smalltalk/kernel/LookupTable.st +share/gnu-smalltalk/kernel/Magnitude.st +share/gnu-smalltalk/kernel/MappedColl.st +share/gnu-smalltalk/kernel/Memory.st +share/gnu-smalltalk/kernel/Message.st +share/gnu-smalltalk/kernel/Metaclass.st +share/gnu-smalltalk/kernel/MethodDict.st +share/gnu-smalltalk/kernel/MethodInfo.st +share/gnu-smalltalk/kernel/MthContext.st +share/gnu-smalltalk/kernel/Namespace.st +share/gnu-smalltalk/kernel/Number.st +share/gnu-smalltalk/kernel/ObjDumper.st +share/gnu-smalltalk/kernel/Object.st +share/gnu-smalltalk/kernel/OrderColl.st +share/gnu-smalltalk/kernel/PkgLoader.st +share/gnu-smalltalk/kernel/Point.st +share/gnu-smalltalk/kernel/PosStream.st +share/gnu-smalltalk/kernel/ProcSched.st +share/gnu-smalltalk/kernel/Process.st +share/gnu-smalltalk/kernel/RWStream.st +share/gnu-smalltalk/kernel/Random.st +share/gnu-smalltalk/kernel/ReadStream.st +share/gnu-smalltalk/kernel/Rectangle.st +share/gnu-smalltalk/kernel/RootNamespc.st +share/gnu-smalltalk/kernel/RunArray.st +share/gnu-smalltalk/kernel/Semaphore.st +share/gnu-smalltalk/kernel/SeqCollect.st +share/gnu-smalltalk/kernel/Set.st +share/gnu-smalltalk/kernel/SharedQueue.st +share/gnu-smalltalk/kernel/SmallInt.st +share/gnu-smalltalk/kernel/SortCollect.st +share/gnu-smalltalk/kernel/Stream.st +share/gnu-smalltalk/kernel/String.st +share/gnu-smalltalk/kernel/SymLink.st +share/gnu-smalltalk/kernel/Symbol.st +share/gnu-smalltalk/kernel/SysDict.st +share/gnu-smalltalk/kernel/Time.st +share/gnu-smalltalk/kernel/TokenStream.st +share/gnu-smalltalk/kernel/Transcript.st +share/gnu-smalltalk/kernel/True.st +share/gnu-smalltalk/kernel/UndefObject.st +share/gnu-smalltalk/kernel/ValueAdapt.st +share/gnu-smalltalk/kernel/WeakObjects.st +share/gnu-smalltalk/kernel/WordMemory.st +share/gnu-smalltalk/kernel/WriteStream.st +share/gnu-smalltalk/kernel/initialize.st +share/gnu-smalltalk/tcp/AbstractSocket.st +share/gnu-smalltalk/tcp/AbstractSocketImpl.st +share/gnu-smalltalk/tcp/ContentHandler.st +share/gnu-smalltalk/tcp/Datagram.st +share/gnu-smalltalk/tcp/DatagramSocket.st +share/gnu-smalltalk/tcp/DatagramSocketImpl.st +share/gnu-smalltalk/tcp/IPAddress.st +share/gnu-smalltalk/tcp/Init.st +share/gnu-smalltalk/tcp/MulticastSocket.st +share/gnu-smalltalk/tcp/ServerSocket.st +share/gnu-smalltalk/tcp/Socket.st +share/gnu-smalltalk/tcp/SocketImpl.st +share/gnu-smalltalk/tcp/TCP.st +share/gnu-smalltalk/tcp/TCPSocketImpl.st +share/gnu-smalltalk/tcp/UDPSocketImpl.st +share/gnu-smalltalk/tcp/URL.st +share/gnu-smalltalk/tcp/UnixStream.st +share/gnu-smalltalk/tcp/cfuncs.st +share/gnu-smalltalk/test/arrays.ok +share/gnu-smalltalk/test/arrays.st +share/gnu-smalltalk/test/blocks.ok +share/gnu-smalltalk/test/blocks.st +share/gnu-smalltalk/test/chars.ok +share/gnu-smalltalk/test/chars.st +share/gnu-smalltalk/test/classes.ok +share/gnu-smalltalk/test/classes.st +share/gnu-smalltalk/test/dates.ok +share/gnu-smalltalk/test/dates.st +share/gnu-smalltalk/test/delays.ok +share/gnu-smalltalk/test/delays.st +share/gnu-smalltalk/test/do-check +share/gnu-smalltalk/test/exceptions.ok +share/gnu-smalltalk/test/exceptions.st +share/gnu-smalltalk/test/floatmath.ok +share/gnu-smalltalk/test/floatmath.st +share/gnu-smalltalk/test/geometry.ok +share/gnu-smalltalk/test/geometry.st +share/gnu-smalltalk/test/intmath.ok +share/gnu-smalltalk/test/intmath.st +share/gnu-smalltalk/test/objects.ok +share/gnu-smalltalk/test/objects.st +share/gnu-smalltalk/test/processes.ok +share/gnu-smalltalk/test/processes.st +share/gnu-smalltalk/test/sets.ok +share/gnu-smalltalk/test/sets.st +share/gnu-smalltalk/test/strings.ok +share/gnu-smalltalk/test/strings.st +@dirrm share/gnu-smalltalk/test +@dirrm share/gnu-smalltalk/tcp +@dirrm share/gnu-smalltalk/kernel +@dirrm share/gnu-smalltalk/examples/mixed +@dirrm share/gnu-smalltalk/examples/gdbm +@dirrm share/gnu-smalltalk/examples/blox +@dirrm share/gnu-smalltalk/examples +@dirrm share/gnu-smalltalk/compiler +@dirrm share/gnu-smalltalk/cint +@dirrm share/gnu-smalltalk/blox +@dirrm share/gnu-smalltalk @exec install-info --info-dir=%D/info %D/info/gst.info >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200003301145.NAA24761>