- eliminate some dead macros
intro.tex:
	- change formatting a bit; I forgot that one section is taken
	  almost verbatim to create the README.install file, and the
	  previous checkin made things a bit messy.
mknotes:
	- strip out hturl{} TeX stuff when creating the README.install
	  file
This commit is contained in:
gdr-ftp 1999-01-28 05:22:16 +00:00
parent f2f24b8623
commit 8533bbfd16
3 changed files with 14 additions and 28 deletions

View File

@ -7,7 +7,7 @@
# #
# Devin Reade, 1997. # Devin Reade, 1997.
# #
# $Id: Makefile,v 1.12 1999/01/18 16:48:11 gdr-ftp Exp $ # $Id: Makefile,v 1.13 1999/01/28 05:22:16 gdr-ftp Exp $
# #
# Set this to 'true' (without the quotes) for local links (used # Set this to 'true' (without the quotes) for local links (used
@ -46,7 +46,6 @@ FTP_ROOT = ftp://ftp.gno.org/pub/apple2/gs.specific/gno
# Where can the FAQ be located? # Where can the FAQ be located?
#FAQ = http://web.cs.ualberta.ca/~glyn/FAQ.csa2g
FAQ = http://www.gno.org/~gno/FAQ.html FAQ = http://www.gno.org/~gno/FAQ.html
FAQLOG = http://www.gno.org/~gno/FAQ-log.html FAQLOG = http://www.gno.org/~gno/FAQ-log.html
FAQ_TEXT = $(FTP_ROOT)/doc/faq/CURRENT FAQ_TEXT = $(FTP_ROOT)/doc/faq/CURRENT
@ -58,7 +57,6 @@ FTP_GSH = $(FTP_ROOT)/doc/refs/gsh
# Where can the old v2.0.4 docs be found? # Where can the old v2.0.4 docs be found?
#OLD_HTML = http://web.cs.ualberta.ca/~glyn/GNOv2.0.4Docs
OLD_HTML = http://www.gno.org/~gno/docs.Aug96 OLD_HTML = http://www.gno.org/~gno/docs.Aug96
######################################################### #########################################################

View File

@ -1,7 +1,7 @@
% %
% GNO Overview % GNO Overview
% %
% $Id: intro.tex,v 1.11 1999/01/27 06:35:42 gdr-ftp Exp $ % $Id: intro.tex,v 1.12 1999/01/28 05:22:16 gdr-ftp Exp $
% %
\documentclass{report} \documentclass{report}
@ -1124,8 +1124,8 @@ the other set.
\item \item
Set your DOWNLOAD\_DIR environment variable to the directory Set your DOWNLOAD\_DIR environment variable to the directory
into which you placed the base distribution NuFX archive files into which you placed the base distribution NuFX archive files
(gnoboot.shk, gnohfs.shk, gno.01.shk, and so forth). (gnoboot.shk, gnohfs.shk, gno.01.shk, and so forth). For
For example, if the NuFX files were in /download, you would type: example, if the NuFX files were in /download, you would type:
\begin{verbatim} \begin{verbatim}
setenv DOWNLOAD_DIR /download setenv DOWNLOAD_DIR /download
@ -1136,12 +1136,9 @@ pathname delimiter. Do not use a trailing slash.
\item \item
Install the majority of the GNO base distribution files by Install the majority of the GNO base distribution files by
changing directory into your destination directory and running the changing directory into your destination directory and running
installboot1 the installboot1 script. Assuming that you will be installing
script. Assuming that you will be installing to the partition /gno, the commands would be:
to the partition
/gno,
the commands would be:
\begin{verbatim} \begin{verbatim}
cd /gno cd /gno
@ -1155,11 +1152,8 @@ Have patience.
There are a small number of recommended files that do not follow There are a small number of recommended files that do not follow
ProDOS naming conventions. If you wish to install these files, ProDOS naming conventions. If you wish to install these files,
make sure that you have an HFS or Appleshare disk online. Change make sure that you have an HFS or Appleshare disk online. Change
directories to that disk (or subdirectory) and run directories to that disk (or subdirectory) and run installboot2.
installboot2. Assuming that the HFS disk is /gno-hfs, the commands are:
Assuming that the HFS disk is
/gno-hfs,
the commands are:
\begin{verbatim} \begin{verbatim}
cd /gno-hfs cd /gno-hfs
@ -1176,17 +1170,10 @@ files were extracted onto a volume other than /gno, you will
have to replace all the ``:gno:'' strings with the appropriate have to replace all the ``:gno:'' strings with the appropriate
path. Similarily, you will have to replace ``:gno-hfs:'' if path. Similarily, you will have to replace ``:gno-hfs:'' if
that is not the name of your HFS (or Appleshare) partition that is not the name of your HFS (or Appleshare) partition
where you ran the where you ran the installboot2 script. Note that you cannot
installboot2 currently use pathnames in the namespace file that contain spaces.
script. Note that you cannot currently use pathnames in the
namespace
file that contain spaces.
The The gno.boot disk includes the vi utility to do these edits.
gno.boot
disk includes the
vi
utility to do these edits.
You can also edit the namespace file with any other text editor You can also edit the namespace file with any other text editor
of your choosing, as long as it is done before you try to run of your choosing, as long as it is done before you try to run
your new GNO distribution. your new GNO distribution.

View File

@ -6,7 +6,7 @@
# in the file ../../verbatim/boot/README.install, and writes its results # in the file ../../verbatim/boot/README.install, and writes its results
# out to the same file. # out to the same file.
# #
# $Id: mknotes,v 1.1 1999/01/18 01:46:07 gdr-ftp Exp $ # $Id: mknotes,v 1.2 1999/01/28 05:22:16 gdr-ftp Exp $
# #
$texfile = "./intro.tex"; $texfile = "./intro.tex";
@ -78,6 +78,7 @@ while (<fp>) {
$output .= "\t "; $output .= "\t ";
} }
s,\\htlink\{([^\}]+)\},$1,g; # show URLs as plain text s,\\htlink\{([^\}]+)\},$1,g; # show URLs as plain text
s,\\hturl\{([^\}]+)\},$1,g;
s,\s*\\bf\s*, ,g; # strip formatting commands s,\s*\\bf\s*, ,g; # strip formatting commands
s,\\rm,,g; s,\\rm,,g;
s,\\,,g; # strip '\' from "\_" s,\\,,g; # strip '\' from "\_"