home *** CD-ROM | disk | FTP | other *** search
- assign Useful: FreshFish-Dec93:Useful
-
- ; Tools should search LOCAL: for files that the user may have added, since
- ; he obviously can't add them to directories on the CD-ROM. Supply a
- ; default assignment for LOCAL: to a known empty directory, and one that we
- ; know exists. This assignment can be later overridden in the user's
- ; startup.
-
- assign LOCAL: Useful:empty
-
- ; Add the Useful/libs dir to LIBS:
-
- assign LIBS: Useful:libs add
-
- ; Add the Useful/L dir to L:
-
- assign L: Useful:L add
-
- ; Add the Useful/Devs dir to DEVS:
-
- assign DEVS: Useful:Devs add
-
- ; Add the Useful/Fonts dir to FONTS:
-
- assign FONTS: Useful:Fonts add
-
- ; Make various assigns so things like /tmp/foobar, /bin/ls, /gcc/lib,
- ; /usr/bin/cp, /etc/passwd, etc work ok.
- ; Add the Useful/bin dir to path to search for executables:
-
- assign bin: Useful:bin
- assign gcc: Useful:
- assign usr: Useful:
-
- assign lib: exists >NIL:
- if NOT WARN
- if EXISTS lib:cres.o
- echo ""
- echo "Warning - it appears that you have Lattice/SAS C installed."
- echo "It's assign of lib: conflicts with the assign for FFMCD02."
- echo "You must customize the FFMCD02 FFCD-Startup script or your"
- echo "startup script that makes the Lattice/SAS C assign."
- echo "Continuing in 10 seconds..."
- echo ""
- wait 10
- endif
- else
- assign lib: Useful:lib
- endif
-
- assign etc: Useful:etc
- assign dev: Useful:dev
- assign tmp: t:
-
- path Useful:bin add
-
- ; Mount the ixpipe: device
-
- mount IXPIPE: from DEVS:MountList.IXPIPE
-
- ; Install PasTeX
- ; Set the TeX: PKVol: and MF: assignments to the CDROM version.
-
- assign TeX: Useful:dist/text/tex/PasTeX
- assign PKVol: TeX:pk TeX:pk/180x180 TeX:pk/300x300 TeX:pk/360x360
- assign MF: TeX:mf
- assign REXX: TeX:rexx add
- path TeX:bin MF:bin add
-
- ; Install GNU Emacs version 18.59
- ; Assign GNUEmacs: so emacs can find it's files.
- ; Add the Useful/s dir to s: so various .emacs files can be found.
- ; Cancel any system supplied alias for emacs.
- ; Use the emacs specific shell since bin:sh (PD ksh) causes a crash
- ; when you try to use it under emacs.
-
- assign GNUemacs: Useful:lib/emacs/18.59
- assign s: Useful:s add
- unalias emacs
- setenv ESHELL gnuemacs:etc/sh
-
- ; Install Matt Dillon's fifo library, for emacs and others.
-
- run <nil: >nil: Useful:L/fifo-handler
-
- ; Install Amiga E.
-
- assign EMODULES: Useful:dist/dev/e/Amiga_E/Modules
- path Useful:dist/dev/e/Amiga_E/bin add
-
- ; Install ACE; an Amiga BASIC compiler.
-
- assign ACE: Useful:dist/dev/lang/ACE
- path ACE:bin add
-
- assign ACElib: ACE:lib
- assign ACEbmaps: ACE:bmaps
- assign ACEinclude: ACE:include
-