Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 27 Dec 1999 12:10:29 +0100 (CET)
From:      alex@big.endian.de
To:        FreeBSD-gnats-submit@freebsd.org
Subject:   ports/15712: update lang/smalltalk to 1.6.2
Message-ID:  <199912271110.MAA11486@cichlids.cichlids.com>

next in thread | raw e-mail | index | archive | help

>Number:         15712
>Category:       ports
>Synopsis:       update lang/smalltalk to 1.6.2
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Mon Dec 27 04:00:01 PST 1999
>Closed-Date:
>Last-Modified:
>Originator:     Alexander Langer
>Release:        FreeBSD 4.0-CURRENT i386
>Organization:
foobar
>Environment:

tested on -current with a recent ports-tree

>Description:

I am the new maintainer.

* Update Port to version 1.6.2
* Port is no longer interactive
* removed unneeded patches, added new ones.
* modified pkg/DESCR
* PLIST created with Christian Weisgerber's "plist" target (nice)

>How-To-Repeat:

n/a

>Fix:


diff -rNu smalltalk.old/Makefile smalltalk/Makefile
--- smalltalk.old/Makefile	Wed Dec 22 11:31:12 1999
+++ smalltalk/Makefile	Mon Dec 27 12:01:31 1999
@@ -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: ports/lang/smalltalk/Makefile,v 1.20 1999/12/22 10:31:12 sheldonh Exp $
 #
 
-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 @@
 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 -rNu smalltalk.old/files/md5 smalltalk/files/md5
--- smalltalk.old/files/md5	Sat Nov 29 15:15:23 1997
+++ smalltalk/files/md5	Wed Dec 22 15:28:54 1999
@@ -1 +1 @@
-MD5 (smalltalk-1.1.5.tar.gz) = 6151d3aa1c0eddcef876c419542aef5d
+MD5 (smalltalk-1.6.2.tar.gz) = 604ba50197d004e685e6d8b5209e3242
diff -rNu smalltalk.old/patches/patch-aa smalltalk/patches/patch-aa
--- smalltalk.old/patches/patch-aa	Sat Nov 29 15:15:33 1997
+++ smalltalk/patches/patch-aa	Sun Dec 26 11:05:06 1999
@@ -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 -rNu smalltalk.old/patches/patch-ab smalltalk/patches/patch-ab
--- smalltalk.old/patches/patch-ab	Sat Nov 29 15:15:34 1997
+++ smalltalk/patches/patch-ab	Sun Dec 26 11:29:36 1999
@@ -1,12 +1,31 @@
---- lib/cint.c.orig	Fri Nov 28 21:30:27 1997
-+++ lib/cint.c	Fri Nov 28 22:05:41 1997
-@@ -434,7 +434,9 @@
-   defineCFunc("ioctl", ioctl);
- #endif
-   defineCFunc("lseek", lseek);
-+#ifndef __FreeBSD__
-   defineCFunc("tell", tell);
-+#endif
+--- docs/Makefile.old	Sun Dec 26 11:24:54 1999
++++ docs/Makefile	Sun Dec 26 11:28:37 1999
+@@ -36,11 +36,11 @@
  
-   /* just to round out the set */
-   defineCFunc("readChar", readChar);
+ # 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				\
+ 	  $(INSTALL_DATA) $$file $(infodir);				\
+ 	done
+-	cd $(srcdir); 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
+ 
+ uninstall:
diff -rNu smalltalk.old/patches/patch-ac smalltalk/patches/patch-ac
--- smalltalk.old/patches/patch-ac	Sat Nov 29 15:15:34 1997
+++ smalltalk/patches/patch-ac	Sun Dec 26 11:53:47 1999
@@ -1,38 +1,24 @@
---- UnixStream.st.orig	Fri Nov 28 22:07:30 1997
-+++ UnixStream.st	Fri Nov 28 22:08:43 1997
-@@ -114,12 +114,14 @@
- 	 args: #(int int int)
- !
+--- Makefile.body.orig	Sun Aug 29 11:38:31 1999
++++ Makefile.body	Sun Dec 26 11:53:07 1999
+@@ -122,10 +122,10 @@
  
--Behavior defineCFunc: 'tell'
--	 withSelectorArgs: 'tell: fileDescriptor'
--	 forClass: UnixStream
--	 returning: #int
--	 args: #(int)
--!
-+"
-+|Behavior defineCFunc: 'tell'
-+|	 withSelectorArgs: 'tell: fileDescriptor'
-+|	 forClass: UnixStream
-+|	 returning: #int
-+|	 args: #(int)
-+|!
-+"
+ EMACS_FILES = emacs/bison.el emacs/st-changelog.el emacs/st.el
  
- "======================================================================
- |
-@@ -286,9 +288,11 @@
-     ^self write: fd from: byteArray bytes: anInteger
- !
+-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
  
--tell
--    ^self tell: fd
--!
-+"
-+|tell
-+|    ^self tell: fd
-+|!
-+"
- 
- position: anInteger
-     ^self lseek: fd offset: anInteger whence: 0 "Set"
+ 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 \
diff -rNu smalltalk.old/patches/patch-ad smalltalk/patches/patch-ad
--- smalltalk.old/patches/patch-ad	Sat Nov 29 15:15:35 1997
+++ smalltalk/patches/patch-ad	Sun Dec 26 11:51:59 1999
@@ -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 -rNu smalltalk.old/patches/patch-ae smalltalk/patches/patch-ae
--- smalltalk.old/patches/patch-ae	Sat Nov 29 15:15:36 1997
+++ smalltalk/patches/patch-ae	Thu Jan  1 01:00:00 1970
@@ -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 -rNu smalltalk.old/patches/patch-af smalltalk/patches/patch-af
--- smalltalk.old/patches/patch-af	Sat Nov 29 15:15:38 1997
+++ smalltalk/patches/patch-af	Thu Jan  1 01:00:00 1970
@@ -1,26 +0,0 @@
---- Makefile.rules.orig	Sat Sep 16 19:43:08 1995
-+++ Makefile.rules	Sat Nov 29 00:40:09 1997
-@@ -28,13 +28,19 @@
- 	$(RM) gst gst.im
- 
- installdirs:
--	$(SHELL) $(srcdir)/mkinstalldirs $(bindir) $(smlibdir) $(infodir) \
--		 $(stdir)
-+	if [ ! -d $(smlibdir) ]; then \
-+	    $(SHELL) $(srcdir)/mkinstalldirs $(bindir) $(smlibdir) $(infodir) \
-+		 $(stdir); \
-+	fi
- 
- #Note: this definition of install is most likely incorrect
- install:: installdirs all 
--	$(INSTALL_PROGRAM) gst $(bindir)/$(binprefix)gst
--	@INSTALL_ST_FILES@
-+	if [ -f gst ]; then \
-+	  $(INSTALL_PROGRAM) gst $(bindir)/$(binprefix)gst ; \
-+	fi
-+	for file in $(SMALLTALK_KERNEL); do \
-+	  $(INSTALL_DATA) $$file $(stdir)/$$file ; \
-+	done
- 
- #install uninstall TAGS clean mostlyclean distclean realclean::
- install uninstall clean mostlyclean distclean realclean::
diff -rNu smalltalk.old/patches/patch-ag smalltalk/patches/patch-ag
--- smalltalk.old/patches/patch-ag	Sat Nov 29 16:40:33 1997
+++ smalltalk/patches/patch-ag	Thu Jan  1 01:00:00 1970
@@ -1,30 +0,0 @@
---- Makefile.defs.in.orig	Sun Sep 17 10:14:42 1995
-+++ Makefile.defs.in	Sat Nov 29 01:24:36 1997
-@@ -78,15 +78,17 @@
- 
- 
- # optimization flag -- may become host dependent
--OPT_FLAG = -O
-+#OPT_FLAG = -O
- CDEBUG = @CDEBUG@
- USER_OBJECTS = @USER_OBJECTS@
- 
- #INCLUDES = @includeopt@
-+USER_INCLUDES = -I${PREFIX}/include
- INCLUDES= -I.. -I$(srcdir) -I$(srcdir)/../lib $(USER_INCLUDES)
- CPPFLAGS = @CPPFLAGS@
- CFLAGS = @CFLAGS@ # $(INCLUDES)
- LDPATH = @LDPATH@ 
-+USER_LDFLAGS = -L${PREFIX}/lib
- LDFLAGS = @LDFLAGS@ $(USER_LDFLAGS)
- GCC_EXTRA_FLAGS = @GCC_EXTRA_FLAGS@ 
- # ICC_EXTRA_FLAGS = /c /Fo$@ /D__EXTENDED__  # flags for ICC
-@@ -114,7 +116,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
diff -rNu smalltalk.old/patches/patch-ah smalltalk/patches/patch-ah
--- smalltalk.old/patches/patch-ah	Sat Nov 29 16:40:34 1997
+++ smalltalk/patches/patch-ah	Thu Jan  1 01:00:00 1970
@@ -1,20 +0,0 @@
---- configure.orig	Sat Nov 29 01:28:52 1997
-+++ configure	Sat Nov 29 01:29:01 1997
-@@ -3388,7 +3388,7 @@
- if test "${enable_install_st+set}" = set; then
-   enableval="$enable_install_st"
-   INSTALL_ST_FILES='for file in $(SMALLTALK_KERNEL); do \\\
--	  $(INSTALL_PROGRAM) $$file $(stdir)/$$file ; \\\
-+	  $(INSTALL_DATA) $$file $(stdir)/$$file ; \\\
- 	done'
- KERNEL_PATH=${prefix}/smalltalk
- IMAGE_PATH=${KERNEL_PATH}
-@@ -3750,7 +3750,7 @@
- echo timestamp > stamp-h
- ./createMake blox
- ./createMake contrib
--./createMake cxtnsn
-+#./createMake cxtnsn
- ./createMake examples
- ./createMake info
- ./createMake stix
diff -rNu smalltalk.old/patches/patch-ai smalltalk/patches/patch-ai
--- smalltalk.old/patches/patch-ai	Sat Nov 29 16:40:34 1997
+++ smalltalk/patches/patch-ai	Thu Jan  1 01:00:00 1970
@@ -1,11 +0,0 @@
---- cxtnsn/gdbm.c.orig	Sat Nov 29 01:00:32 1997
-+++ cxtnsn/gdbm.c	Sat Nov 29 01:00:39 1997
-@@ -43,7 +43,7 @@
- #include "gstpub.h"
- #include <gdbm.h>
- 
--#include <malloc.h>
-+#include <stdlib.h>
- 
- /* It might be a good idea to have the make file in this directory
-  * automatically run configure if it hasn't already been run, to ensure
diff -rNu smalltalk.old/patches/patch-aj smalltalk/patches/patch-aj
--- smalltalk.old/patches/patch-aj	Sat Nov 29 16:40:34 1997
+++ smalltalk/patches/patch-aj	Thu Jan  1 01:00:00 1970
@@ -1,10 +0,0 @@
---- lib/lex.c.orig	Sat Nov 29 13:47:57 1997
-+++ lib/lex.c	Sat Nov 29 13:48:17 1997
-@@ -125,6 +125,7 @@
- #include <math.h>
- #ifdef USE_READLINE
- #include <readline/readline.h>
-+#include <readline/history.h>
- #endif /* USE_READLINE */
- #if STDC_HEADERS
- #include <stdlib.h>		/* for malloc */
diff -rNu smalltalk.old/pkg/DESCR smalltalk/pkg/DESCR
--- smalltalk.old/pkg/DESCR	Fri Dec  5 20:56:39 1997
+++ smalltalk/pkg/DESCR	Mon Dec 27 11:50:23 1999
@@ -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 -rNu smalltalk.old/pkg/PLIST smalltalk/pkg/PLIST
--- smalltalk.old/pkg/PLIST	Sat Nov 29 15:15:44 1997
+++ smalltalk/pkg/PLIST	Mon Dec 27 11:58:46 1999
@@ -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

>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?199912271110.MAA11486>