diff options
author | hubertf <hubertf> | 1997-10-27 04:51:39 +0000 |
---|---|---|
committer | hubertf <hubertf> | 1997-10-27 04:51:39 +0000 |
commit | 0694f0ed299cfac52a31cff813e0c090ea9f73e6 (patch) | |
tree | 753888b60a1844e26eff7474aa304d77054fc467 /shells | |
parent | 15ab18420a003e4c4604071bea5ed6c2a7b504ba (diff) | |
download | pkgsrc-0694f0ed299cfac52a31cff813e0c090ea9f73e6.tar.gz |
get everything in
Diffstat (limited to 'shells')
-rw-r--r-- | shells/bash2/Makefile | 52 | ||||
-rw-r--r-- | shells/bash2/files/md5 | 2 | ||||
-rw-r--r-- | shells/bash2/patches/patch-aa | 21 | ||||
-rw-r--r-- | shells/bash2/patches/patch-ab | 19 | ||||
-rw-r--r-- | shells/bash2/patches/patch-ac | 19 | ||||
-rw-r--r-- | shells/bash2/patches/patch-ae | 16 | ||||
-rw-r--r-- | shells/bash2/pkg/COMMENT | 1 | ||||
-rw-r--r-- | shells/bash2/pkg/DESCR | 8 | ||||
-rw-r--r-- | shells/bash2/pkg/PLIST | 13 | ||||
-rw-r--r-- | shells/scsh/Makefile | 29 | ||||
-rw-r--r-- | shells/scsh/files/md5 | 1 | ||||
-rw-r--r-- | shells/scsh/patches/patch-aa | 39 | ||||
-rw-r--r-- | shells/scsh/patches/patch-ab | 19 | ||||
-rw-r--r-- | shells/scsh/patches/patch-ac | 19 | ||||
-rw-r--r-- | shells/scsh/patches/patch-ad | 19 | ||||
-rw-r--r-- | shells/scsh/patches/patch-ae | 19 | ||||
-rw-r--r-- | shells/scsh/pkg/COMMENT | 1 | ||||
-rw-r--r-- | shells/scsh/pkg/DESCR | 48 | ||||
-rw-r--r-- | shells/scsh/pkg/PLIST | 240 |
19 files changed, 585 insertions, 0 deletions
diff --git a/shells/bash2/Makefile b/shells/bash2/Makefile new file mode 100644 index 00000000000..577cf35e36f --- /dev/null +++ b/shells/bash2/Makefile @@ -0,0 +1,52 @@ +# New ports collection makefile for: bash +# Version required: 2.01 +# Date created: 21 August 1994 +# Whom: jkh +# +# $NetBSD: Makefile,v 1.1.1.1 1997/10/27 04:51:39 hubertf Exp $ +# FreeBSD Id: Makefile,v 1.26 1997/06/27 23:03:27 ache Exp +# + +DISTNAME= bash-2.01 +CATEGORIES= shells +MASTER_SITES= ftp://slc2.ins.cwru.edu/pub/dist/ \ + ${MASTER_SITE_GNU} +.if !defined(NOPORTDOCS) +DISTFILES= bash-2.01.tar.gz bash-doc-2.01.tar.gz +.endif + +MAINTAINER= ache@FreeBSD.ORG + +GNU_CONFIGURE= Yes +MAN1= bash.1 bashbug.1 + +post-patch: + cp /usr/include/fnmatch.h ${WRKSRC}/lib/glob/fnmatch.h + +pre-install: + if [ ! -s ${PREFIX}/info/dir ]; then \ + ${SED} -ne '1,/Menu:/p' /usr/share/info/dir > ${PREFIX}/info/dir; \ + fi + +post-install: + ${CP} /etc/shells /etc/shells.bak + (${GREP} -v ${PREFIX}/bin/bash /etc/shells.bak; echo ${PREFIX}/bin/bash) >/etc/shells + ${RM} /etc/shells.bak +.if !defined(NOPORTDOCS) + ${MKDIR} ${PREFIX}/share/doc/bash + ${INSTALL_MAN} \ + ${WRKDIR}/bash-doc-2.01/doc/article.ps \ + ${WRKDIR}/bash-doc-2.01/doc/bashref.ps \ + ${PREFIX}/share/doc/bash + ${INSTALL_MAN} \ + ${WRKDIR}/bash-doc-2.01/doc/bash.html \ + ${WRKDIR}/bash-doc-2.01/doc/bashref.html \ + ${WRKDIR}/bash-doc-2.01/doc/bashref_toc.html \ + ${PREFIX}/share/doc/bash + ${INSTALL_MAN} \ + ${WRKDIR}/bash-doc-2.01/doc/article.txt \ + ${PREFIX}/share/doc/bash + ${GZIP_CMD} ${PREFIX}/share/doc/bash/*.ps +.endif + +.include <bsd.port.mk> diff --git a/shells/bash2/files/md5 b/shells/bash2/files/md5 new file mode 100644 index 00000000000..79d2c265685 --- /dev/null +++ b/shells/bash2/files/md5 @@ -0,0 +1,2 @@ +MD5 (bash-2.01.tar.gz) = 51837bb4662144b64bd874585c057752 +MD5 (bash-doc-2.01.tar.gz) = 5f2f59032f9dd63dde0e464af5b5346c diff --git a/shells/bash2/patches/patch-aa b/shells/bash2/patches/patch-aa new file mode 100644 index 00000000000..16d0302deba --- /dev/null +++ b/shells/bash2/patches/patch-aa @@ -0,0 +1,21 @@ +*** doc/Makefile.in.bak Fri Jan 31 00:12:33 1997 +--- doc/Makefile.in Sat Jun 28 02:23:01 1997 +*************** +*** 155,161 **** + -$(INSTALL_DATA) $(srcdir)/bashref.info $(infodir)/bash.info + # run install-info if it is present to update the info directory + if $(SHELL) -c 'install-info --version' >/dev/null 2>&1; then \ +! install-info --dir-file=$(infodir)/dir $(infodir)/bash.info; \ + else true; fi + + uninstall: +--- 155,163 ---- + -$(INSTALL_DATA) $(srcdir)/bashref.info $(infodir)/bash.info + # run install-info if it is present to update the info directory + if $(SHELL) -c 'install-info --version' >/dev/null 2>&1; then \ +! install-info \ +! --defentry="* BASH: (bash). Bash Reference Manual." \ +! --dir-file=$(infodir)/dir $(infodir)/bash.info; \ + else true; fi + + uninstall: diff --git a/shells/bash2/patches/patch-ab b/shells/bash2/patches/patch-ab new file mode 100644 index 00000000000..46c5e4f858c --- /dev/null +++ b/shells/bash2/patches/patch-ab @@ -0,0 +1,19 @@ +*** Makefile.in.bak Wed Dec 18 22:57:21 1996 +--- Makefile.in Fri Dec 27 14:20:11 1996 +*************** +*** 499,505 **** + + install: .made installdirs + $(INSTALL_PROGRAM) $(Program) $(bindir)/$(Program) +! $(INSTALL_PROGRAM) bashbug $(bindir)/bashbug + -( cd $(DOCDIR) ; $(MAKE) $(MFLAGS) \ + man1dir=$(man1dir) man1ext=$(man1ext) \ + man3dir=$(man3dir) man3ext=$(man3ext) \ +--- 499,505 ---- + + install: .made installdirs + $(INSTALL_PROGRAM) $(Program) $(bindir)/$(Program) +! $(INSTALL) -m 555 bashbug $(bindir)/bashbug + -( cd $(DOCDIR) ; $(MAKE) $(MFLAGS) \ + man1dir=$(man1dir) man1ext=$(man1ext) \ + man3dir=$(man3dir) man3ext=$(man3ext) \ diff --git a/shells/bash2/patches/patch-ac b/shells/bash2/patches/patch-ac new file mode 100644 index 00000000000..69790098164 --- /dev/null +++ b/shells/bash2/patches/patch-ac @@ -0,0 +1,19 @@ +*** lib/glob/Makefile.in.orig Fri Oct 4 19:02:34 1996 +--- lib/glob/Makefile.in Tue May 27 01:48:43 1997 +*************** +*** 45,51 **** + # The header files for this library. + HSOURCES = $(srcdir)/fnmatch.h + +! OBJECTS = glob.o fnmatch.o + + # The texinfo files which document this library. + DOCSOURCE = doc/glob.texi +--- 45,51 ---- + # The header files for this library. + HSOURCES = $(srcdir)/fnmatch.h + +! OBJECTS = glob.o #fnmatch.o + + # The texinfo files which document this library. + DOCSOURCE = doc/glob.texi diff --git a/shells/bash2/patches/patch-ae b/shells/bash2/patches/patch-ae new file mode 100644 index 00000000000..d29f6b5493c --- /dev/null +++ b/shells/bash2/patches/patch-ae @@ -0,0 +1,16 @@ +--- builtins/enable.def~ Wed Oct 2 13:47:05 1996 ++++ builtins/enable.def Tue May 6 14:18:09 1997 +@@ -284,9 +284,10 @@ + name = list->word->word; + + size = strlen (name); +- struct_name = xmalloc (size + 8); +- strcpy (struct_name, name); +- strcpy (struct_name + size, "_struct"); ++ struct_name = xmalloc (size + 9); ++ *struct_name = '_'; ++ strcpy (struct_name + 1, name); ++ strcpy (struct_name + size + 1, "_struct"); + + b = (struct builtin *)dlsym (handle, struct_name); + if (b == 0) diff --git a/shells/bash2/pkg/COMMENT b/shells/bash2/pkg/COMMENT new file mode 100644 index 00000000000..00c70ad756d --- /dev/null +++ b/shells/bash2/pkg/COMMENT @@ -0,0 +1 @@ +The GNU Borne Again Shell. diff --git a/shells/bash2/pkg/DESCR b/shells/bash2/pkg/DESCR new file mode 100644 index 00000000000..497fcff47de --- /dev/null +++ b/shells/bash2/pkg/DESCR @@ -0,0 +1,8 @@ +Bash is the GNU Project's Bourne +Again SHell, an interactive shell with Bourne shell syntax (/bin/sh); +but also with interactive command line editing, job control on +architectures that support it, Csh-like history features and brace +expansion, and a slew of other stuff. For more information on the +features of Bash that are new to this type of shell, see the file +`documentation/features.texi'. There is also a processed DVI file +there, as well as a large man page. diff --git a/shells/bash2/pkg/PLIST b/shells/bash2/pkg/PLIST new file mode 100644 index 00000000000..34e6a439bb6 --- /dev/null +++ b/shells/bash2/pkg/PLIST @@ -0,0 +1,13 @@ +bin/bash +@exec echo "updating /etc/shells"; cp /etc/shells /etc/shells.bak; (grep -v %D/%F /etc/shells.bak; echo %D/%F) >/etc/shells +@unexec echo "updating /etc/shells"; cp /etc/shells /etc/shells.bak; (grep -v %D/%F /etc/shells.bak) >/etc/shells +bin/bashbug +man/man1/bash.1.gz +man/man1/bashbug.1.gz +info/bash.info +share/doc/bash/article.ps.gz +share/doc/bash/bashref.ps.gz +share/doc/bash/bash.html +share/doc/bash/bashref.html +share/doc/bash/bashref_toc.html +share/doc/bash/article.txt diff --git a/shells/scsh/Makefile b/shells/scsh/Makefile new file mode 100644 index 00000000000..6d2c6e2daab --- /dev/null +++ b/shells/scsh/Makefile @@ -0,0 +1,29 @@ +# New ports collection makefile for: scsh +# Version required: 0.5.1 +# Date created: Jul, 15, 1997 +# Whom: cracauer@cons.org "Martin Cracauer" +# +# $NetBSD: Makefile,v 1.1.1.1 1997/10/27 04:53:28 hubertf Exp $ +# FreeBSD Id: Makefile,v 1.4 1997/07/15 15:00:30 cracauer Exp +# + +DISTNAME= scsh-0.5.1 +CATEGORIES= shells lang +MASTER_SITES= ftp://ftp-swiss.ai.mit.edu/pub/su/scsh/ + +MAINTAINER= cracauer@cons.org + +GNU_CONFIGURE= yes + +ALL_TARGET= enough +MAN1= scsh.1 +STRIP= + +post-install: + @strip ${PREFIX}/bin/scsh + (cd ${WRKSRC} ; \ + ${INSTALL_DATA} README RELEASE NEWS COPYING ${PREFIX}/lib/scsh/doc) + ${RM} -f ${PREFIX}/share/doc/scsh + ln -fs ${PREFIX}/lib/scsh/doc ${PREFIX}/share/doc/scsh + +.include <bsd.port.mk> diff --git a/shells/scsh/files/md5 b/shells/scsh/files/md5 new file mode 100644 index 00000000000..4c2cef40d02 --- /dev/null +++ b/shells/scsh/files/md5 @@ -0,0 +1 @@ +MD5 (scsh-0.5.1.tar.gz) = 907dfc1202bff6b4aa416d2026dbdd19 diff --git a/shells/scsh/patches/patch-aa b/shells/scsh/patches/patch-aa new file mode 100644 index 00000000000..22f97bee64e --- /dev/null +++ b/shells/scsh/patches/patch-aa @@ -0,0 +1,39 @@ +*** Makefile.in.original Tue Nov 26 14:44:19 1996 +--- Makefile.in Thu Nov 28 15:29:24 1996 +*************** +*** 137,143 **** + + # The following is the first rule and therefore the "make" command's + # default target. +! enough: $(VM) $(IMAGE) script $(LIBCIG) scsh $(LIBSCSH) $(MANPAGE) .notify + + # The developers are curious to know. Don't be concerned if this fails. + # You may comment these lines out if you wish to be discourteous. +--- 137,143 ---- + + # The following is the first rule and therefore the "make" command's + # default target. +! enough: $(VM) $(IMAGE) script $(LIBCIG) scsh $(LIBSCSH) $(MANPAGE) + + # The developers are curious to know. Don't be concerned if this fails. + # You may comment these lines out if you wish to be discourteous. +*************** +*** 250,255 **** +--- 250,256 ---- + $(RM) -r $(LIB).old + if [ -d $(LIB) ] ; then mv $(LIB) $(LIB).old ; fi + mkdir $(LIB) ++ mkdir $(LIB)/emacs + mkdir $(LIB)/big + mkdir $(LIB)/cig + mkdir $(LIB)/doc +*************** +*** 286,291 **** +--- 287,293 ---- + $(LIB)/misc $(LIB)/link $(LIB)/vm $(LIB)/doc + for f in $(srcdir)/rts/*num.scm; \ + do $(INSTALL_DATA) $$f $(LIB)/rts/; done ++ for f in $(srcdir)/emacs/*; do $(INSTALL_DATA) $$f $(LIB)/emacs/; done + for f in $(srcdir)/env/*.scm; do $(INSTALL_DATA) $$f $(LIB)/env/; done + for f in $(srcdir)/big/*.scm; do $(INSTALL_DATA) $$f $(LIB)/big/; done + for f in $(srcdir)/opt/*.scm; do $(INSTALL_DATA) $$f $(LIB)/opt/; done diff --git a/shells/scsh/patches/patch-ab b/shells/scsh/patches/patch-ab new file mode 100644 index 00000000000..a75d1e93ac4 --- /dev/null +++ b/shells/scsh/patches/patch-ab @@ -0,0 +1,19 @@ +*** env/command.scm.original Tue Nov 26 15:59:38 1996 +--- env/command.scm Tue Nov 26 15:59:46 1996 +*************** +*** 546,552 **** + ((char=? (string-ref line 0) #\n) #f) + (else (loop count))))))) + +! (define *y-or-n-eof-count* 100) + + (define (read-line port) + (let loop ((l '())) +--- 546,552 ---- + ((char=? (string-ref line 0) #\n) #f) + (else (loop count))))))) + +! (define *y-or-n-eof-count* 0) + + (define (read-line port) + (let loop ((l '())) diff --git a/shells/scsh/patches/patch-ac b/shells/scsh/patches/patch-ac new file mode 100644 index 00000000000..42c68f84ede --- /dev/null +++ b/shells/scsh/patches/patch-ac @@ -0,0 +1,19 @@ +*** configure.in.original Tue Nov 26 17:10:41 1996 +--- configure.in Tue Nov 26 17:11:07 1996 +*************** +*** 220,226 **** + fi + + AR=${AR-"ar cq"} +! TMPDIR=${TMPDIR-"/usr/tmp"} + + case "$host" in + +--- 220,226 ---- + fi + + AR=${AR-"ar cq"} +! TMPDIR=${TMPDIR-"/var/tmp"} + + case "$host" in + diff --git a/shells/scsh/patches/patch-ad b/shells/scsh/patches/patch-ad new file mode 100644 index 00000000000..57efb8d7d37 --- /dev/null +++ b/shells/scsh/patches/patch-ad @@ -0,0 +1,19 @@ +*** configure.original Tue Nov 26 17:55:51 1996 +--- configure Tue Nov 26 17:55:58 1996 +*************** +*** 1017,1023 **** + fi + + AR=${AR-"ar cq"} +! TMPDIR=${TMPDIR-"/usr/tmp"} + + case "$host" in + +--- 1017,1023 ---- + fi + + AR=${AR-"ar cq"} +! TMPDIR=${TMPDIR-"/var/tmp"} + + case "$host" in + diff --git a/shells/scsh/patches/patch-ae b/shells/scsh/patches/patch-ae new file mode 100644 index 00000000000..f7eec1bab76 --- /dev/null +++ b/shells/scsh/patches/patch-ae @@ -0,0 +1,19 @@ +*** scsh/scsh.scm.original Tue Nov 26 17:15:00 1996 +--- scsh/scsh.scm Tue Nov 26 17:15:06 1996 +*************** +*** 298,304 **** + (list (string-append (car maybe-prefix) ".~a")))))) + + (define *temp-file-template* +! (make-fluid (string-append "/usr/tmp/" (number->string (pid)) ".~a"))) + + + (define (temp-file-iterate maker . maybe-template) +--- 298,304 ---- + (list (string-append (car maybe-prefix) ".~a")))))) + + (define *temp-file-template* +! (make-fluid (string-append "/var/tmp/" (number->string (pid)) ".~a"))) + + + (define (temp-file-iterate maker . maybe-template) diff --git a/shells/scsh/pkg/COMMENT b/shells/scsh/pkg/COMMENT new file mode 100644 index 00000000000..30452371478 --- /dev/null +++ b/shells/scsh/pkg/COMMENT @@ -0,0 +1 @@ +A Unix shell embedded into Scheme, with access to all Posix calls diff --git a/shells/scsh/pkg/DESCR b/shells/scsh/pkg/DESCR new file mode 100644 index 00000000000..7df558d870d --- /dev/null +++ b/shells/scsh/pkg/DESCR @@ -0,0 +1,48 @@ +Scsh is a Unix shell in that is has significant syntax extensions to +make writing Unix shell scripts easy (constructing pipelines, setting +I/O redirection, conditional execution etc.). It also offers access to +lower-level functionality like all Posix system calls, TCP/IP sockets +and a full-featured regular expression library. This is embedded into +a general-purpose programming language with real data types, +extensive, syntactically clean control constructs and "real" quoting +rules. + +Scsh is also a full implementation of R4RS Scheme with some +non-standard behavior (required for scripting). As a result, a wide +varity of exiting Scheme code can be used. + +The underlying Scheme implementation is a virtual machine for compact +byte code. + +The name of the installed program is "scsh", the manpage is scsh(1), +other documentation is in (/usr/local/)lib/scsh/doc + +To load slib, install slib into /usr/local/lib/slib and run +(load "slib-init.scm") +in scsh. It requires no additional setup (paths or such). + +The emacs interface is in the original distribution in emacs/. For +documentation see doc/user-guide.txt. + +Differences between FreeBSD port and generic scsh release: +---------------------------------------------------------- + +1) When hitting C-d (end-of-file), scsh asks 100 times for +confirmation. I changed the default to do this just once. See constant +*y-or-n-eof-count* in scsh/rw.scm to change it. + +2) The original scsh sends a mail to the scsh authors every time you +make the package. The FreeBSD port doesn't. The authors of scsh would +appreciate it if you do a `(cd work/scsh-0.4.4 && make .notify)` after +you build this package. + +3) A symbolic link ${PREFIX}/share/doc/scsh to the documentation is +created. + +4) Some basic description text files from the distribution base dir +are copied to lib/doc. The emacs directory is copied into +lib/scsh/emacs. scsh's default is not to install these files. + +5) Some /usr/tmp -> /var/tmp + +Martin Cracauer <cracauer@cons.org> diff --git a/shells/scsh/pkg/PLIST b/shells/scsh/pkg/PLIST new file mode 100644 index 00000000000..f7769fa7c06 --- /dev/null +++ b/shells/scsh/pkg/PLIST @@ -0,0 +1,240 @@ +bin/scsh +man/man1/scsh.1.gz +lib/scsh/big/array.scm +lib/scsh/big/big-util.scm +lib/scsh/big/bigbit.scm +lib/scsh/big/compose-cont.scm +lib/scsh/big/defrecord.scm +lib/scsh/big/destructure.scm +lib/scsh/big/dump.scm +lib/scsh/big/external.scm +lib/scsh/big/filename.scm +lib/scsh/big/format.scm +lib/scsh/big/general-table.scm +lib/scsh/big/lu-decomp.scm +lib/scsh/big/new-ports.scm +lib/scsh/big/pp.scm +lib/scsh/big/queue.scm +lib/scsh/big/random.scm +lib/scsh/big/receive.scm +lib/scsh/big/search-tree.scm +lib/scsh/big/sleep.scm +lib/scsh/big/sort.scm +lib/scsh/big/thread.scm +lib/scsh/big/xport.scm +lib/scsh/cig/cig +lib/scsh/cig/cig.image +lib/scsh/cig/libscshvm.a +lib/scsh/cig/libcig.h +lib/scsh/doc/COPYING +lib/scsh/doc/NEWS +lib/scsh/doc/RELEASE +lib/scsh/doc/README +lib/scsh/doc/scsh-manual/awk.tex +lib/scsh/doc/scsh-manual/changes.tex +lib/scsh/doc/scsh-manual/decls.tex +lib/scsh/doc/scsh-manual/front.tex +lib/scsh/doc/scsh-manual/intro.tex +lib/scsh/doc/scsh-manual/man.tex +lib/scsh/doc/scsh-manual/miscprocs.tex +lib/scsh/doc/scsh-manual/network.tex +lib/scsh/doc/scsh-manual/procnotation.tex +lib/scsh/doc/scsh-manual/rdelim.tex +lib/scsh/doc/scsh-manual/running.tex +lib/scsh/doc/scsh-manual/strings.tex +lib/scsh/doc/scsh-manual/syscalls.tex +lib/scsh/doc/scsh-manual/test.tex +lib/scsh/doc/scsh-manual/todo.tex +lib/scsh/doc/scsh-manual/tty.tex +lib/scsh/doc/scsh-manual/xman.tex +lib/scsh/doc/big-scheme.txt +lib/scsh/doc/call-back.txt +lib/scsh/doc/cheat.txt +lib/scsh/doc/external.txt +lib/scsh/doc/hacking.txt +lib/scsh/doc/install.s48-0.36.txt +lib/scsh/doc/install.txt +lib/scsh/doc/no-leaf-env.txt +lib/scsh/doc/olins-changes.txt +lib/scsh/doc/package.txt +lib/scsh/doc/scsh-src-roadmap.txt +lib/scsh/doc/threads.txt +lib/scsh/doc/type.txt +lib/scsh/doc/user-guide.txt +lib/scsh/doc/code.tex +lib/scsh/doc/latex-stuff.tex +lib/scsh/doc/meeting.tex +lib/scsh/doc/module.tex +lib/scsh/doc/scsh-paper.tex +lib/scsh/doc/summary.tex +lib/scsh/doc/meeting.ps +lib/scsh/doc/module.ps +lib/scsh/doc/scsh-manual.ps +lib/scsh/doc/scsh-paper.ps +lib/scsh/env/assem.scm +lib/scsh/env/basic-command.scm +lib/scsh/env/build.scm +lib/scsh/env/command.scm +lib/scsh/env/debug.scm +lib/scsh/env/debuginfo.scm +lib/scsh/env/disasm.scm +lib/scsh/env/disclosers.scm +lib/scsh/env/dispcond.scm +lib/scsh/env/flatload.scm +lib/scsh/env/init-defpackage.scm +lib/scsh/env/inspect.scm +lib/scsh/env/jar-assem.scm +lib/scsh/env/list-interface.scm +lib/scsh/env/load-package.scm +lib/scsh/env/more-thread.scm +lib/scsh/env/pacman.scm +lib/scsh/env/pedit.scm +lib/scsh/env/read-command.scm +lib/scsh/env/shadow.scm +lib/scsh/env/space.scm +lib/scsh/env/start.scm +lib/scsh/env/traverse.scm +lib/scsh/env/version-info.scm +lib/scsh/link/data.scm +lib/scsh/link/generate-c-header.scm +lib/scsh/link/link.scm +lib/scsh/link/loadc.scm +lib/scsh/link/reify.scm +lib/scsh/link/transport.scm +lib/scsh/link/write-image.scm +lib/scsh/misc/annotate.scm +lib/scsh/misc/argument.scm +lib/scsh/misc/doodl.scm +lib/scsh/misc/either.scm +lib/scsh/misc/getenv.scm +lib/scsh/misc/hilbert.scm +lib/scsh/misc/ilength.scm +lib/scsh/misc/integertostring.scm +lib/scsh/misc/load-static.scm +lib/scsh/misc/mail.scm +lib/scsh/misc/packages.scm +lib/scsh/misc/psd-s48.scm +lib/scsh/misc/remote.scm +lib/scsh/misc/require.scm +lib/scsh/misc/separate.scm +lib/scsh/misc/shift-reset.scm +lib/scsh/misc/sicp.scm +lib/scsh/misc/slib-init.scm +lib/scsh/misc/socket.scm +lib/scsh/misc/static.scm +lib/scsh/misc/test-doodl.scm +lib/scsh/opt/analyze.scm +lib/scsh/opt/expand.scm +lib/scsh/opt/inline.scm +lib/scsh/opt/tst.scm +lib/scsh/scsh/awk.scm +lib/scsh/scsh/char-set.scm +lib/scsh/scsh/db.scm +lib/scsh/scsh/dbm.scm +lib/scsh/scsh/defrec.scm +lib/scsh/scsh/ekko.scm +lib/scsh/scsh/endian.scm +lib/scsh/scsh/enumconst.scm +lib/scsh/scsh/fdports.scm +lib/scsh/scsh/fileinfo.scm +lib/scsh/scsh/filemtch.scm +lib/scsh/scsh/filesys.scm +lib/scsh/scsh/flock.scm +lib/scsh/scsh/fname.scm +lib/scsh/scsh/fr.scm +lib/scsh/scsh/glob.scm +lib/scsh/scsh/here.scm +lib/scsh/scsh/jcontrol.scm +lib/scsh/scsh/jcontrol2.scm +lib/scsh/scsh/let-opt.scm +lib/scsh/scsh/meta-arg.scm +lib/scsh/scsh/ndbm.scm +lib/scsh/scsh/network.scm +lib/scsh/scsh/pty.scm +lib/scsh/scsh/newports.scm +lib/scsh/scsh/oldtop.scm +lib/scsh/scsh/procobj.scm +lib/scsh/scsh/rdelim.scm +lib/scsh/scsh/re.scm +lib/scsh/scsh/rw.scm +lib/scsh/scsh/scsh-condition.scm +lib/scsh/scsh/scsh-interfaces.scm +lib/scsh/scsh/scsh-package.scm +lib/scsh/scsh/scsh-read.scm +lib/scsh/scsh/scsh-version.scm +lib/scsh/scsh/scsh.scm +lib/scsh/scsh/select.scm +lib/scsh/scsh/sighandlers.scm +lib/scsh/scsh/startup.scm +lib/scsh/scsh/static.scm +lib/scsh/scsh/stringcoll.scm +lib/scsh/scsh/syntax-helpers.scm +lib/scsh/scsh/syntax.scm +lib/scsh/scsh/syscalls.scm +lib/scsh/scsh/time.scm +lib/scsh/scsh/top.scm +lib/scsh/scsh/tty.scm +lib/scsh/scsh/utilities.scm +lib/scsh/rts/bignum.scm +lib/scsh/rts/defenum.scm +lib/scsh/rts/enum.scm +lib/scsh/rts/floatnum.scm +lib/scsh/rts/innum.scm +lib/scsh/rts/ratnum.scm +lib/scsh/rts/recnum.scm +lib/scsh/rts/xnum.scm +lib/scsh/rts/jar-defrecord.scm +lib/scsh/vm/arch.scm +lib/scsh/vm/arith.scm +lib/scsh/vm/data.scm +lib/scsh/vm/defenum.scm +lib/scsh/vm/define-primitive.scm +lib/scsh/vm/disasm.scm +lib/scsh/vm/env.scm +lib/scsh/vm/external.scm +lib/scsh/vm/gc.scm +lib/scsh/vm/heap.scm +lib/scsh/vm/interfaces.scm +lib/scsh/vm/interp.scm +lib/scsh/vm/macro-package-defs.scm +lib/scsh/vm/memory.scm +lib/scsh/vm/package-defs.scm +lib/scsh/vm/prescheme.scm +lib/scsh/vm/prim.scm +lib/scsh/vm/ps-interface.scm +lib/scsh/vm/ps-memory.scm +lib/scsh/vm/ps-package-defs.scm +lib/scsh/vm/ps-package.scm +lib/scsh/vm/resume.scm +lib/scsh/vm/s48-package-defs.scm +lib/scsh/vm/stack.scm +lib/scsh/vm/stob.scm +lib/scsh/vm/struct.scm +lib/scsh/vm/vm-utilities.scm +lib/scsh/vm/vmio.scm +lib/scsh/scshvm +lib/scsh/scsh.image +lib/scsh/libscshvm.a +lib/scsh/emacs/README +lib/scsh/emacs/cmulisp.el +lib/scsh/emacs/cmuscheme.el +lib/scsh/emacs/cmuscheme48.el +lib/scsh/emacs/cmushell.el +lib/scsh/emacs/comint.el +lib/scsh/emacs/jar-hacks.el +@exec ln -fs %D/lib/scsh/doc %D/share/doc/scsh +@unexec rm -f %D/share/doc/scsh +@dirrm lib/scsh/emacs +@dirrm lib/scsh/big +@dirrm lib/scsh/cig +@dirrm lib/scsh/doc/scsh-manual +@dirrm lib/scsh/doc +@dirrm lib/scsh/env +@dirrm lib/scsh/link +@dirrm lib/scsh/misc +@dirrm lib/scsh/opt +@dirrm lib/scsh/scsh +@dirrm lib/scsh/rts +@dirrm lib/scsh/vm +@dirrm lib/scsh +@unexec echo 'You might check whether to remove %D/lib/scsh.old' |