date and time created 88/03/22 09:47:57 by karels
[unix-history] / usr / src / local / transcript / config
CommitLineData
c4a2023a
MK
1#! /bin/sh
2# Copyright (c) 1985 Adobe Systems Incorporated
3# PostScript and TranScript are trademarks of Adobe Systems Incorporated
4# RCSID: $Header: config.bsd,v 2.1 85/11/24 12:34:56 shore Rel $
5#
6# this is a shell script that get's "sourced" when building and
7# installing TranScript software. It sets up definitions of the
8# places that TranScript wants to do it's work.
9# This script is concerned with the software itself, not with
10# the printers. Another script (???) is used to configure printers.
11#
12# If you change the values in this script, parts of the TranScript
13# system may need to be remade (recompiled), and reinstalled.
14
15# BINDIR
16# This is a directory where TranScript user programs are put.
17# It should be in the PATH of each user that want's to use them.
18# Many UNIX sites will keep these kinds of programs separate
19# from the regular UNIX utilites but in a well-known spot, like
20# "/usr/local/bin", "/usr/local", etc. Whatever you choose,
21# make sure it's in people's search paths. The TranScript
22# installation sequence will write in this directory.
23#BINDIR=/usr/bin
24BINDIR=/usr/local
25
26# PSLIBDIR
27# This is a directory where TranScript keeps lots of things:.
28# spooler interface filters, font metrics files, prologue files,
29# and executables needed by TranScript or administrators, but not
30# by general users.
31#PSLIBDIR=/usr/lib/ps
32PSLIBDIR=/usr/local/lib/ps
33
34# OWNER GROUP
35# User and group names for installed files
36# On BSD systems, this is typically "root" and "staff"
37OWNER=root
38GROUP=staff
39
40# PSTEMPDIR
41# The temporary directory you want TranScript filters to use
42# when necessary. Sometimes this may need to hold a large print
43# file, so choose a tmp directory on a filesystem with enough
44# space.
45#PSTEMPDIR=/usr/tmp
46PSTEMPDIR=/tmp
47
48# MAN1 MAN7 MAN8
49# The places you want the on-line manual pages installed.
50# If you want them all in the same place,
51# (e.g., /usr/man/manl), set them all to that.
52#MAN1=/usr/man/man1
53#MAN7=/usr/man/man7
54#MAN8=/usr/man/man8
55MAN1=/usr/man/manl
56MAN7=/usr/man/manl
57MAN8=/usr/man/manl
58
59# DITDIR
60# DITDIR/devpsc is where the "ditroff" fonts used by
61# psdit and psroff go.
62#DITDIR=/usr/lib/font
63DITDIR=/usr/local/lib/font
64
65# MAKEDEV
66# is the FULL pathname of the makedev program for ditroff
67# (for Berkeley ditroff, this file is called "devconfig")
68# You may have to go hunting to find it (maybe even recompile it)
69# If you do not have ditroff (i.e., don't have makedev), set
70# MAKEDEV=boguscmd
71#MAKEDEV=/usr/bin/makedev
72MAKEDEV=/usr/src/local/ditroff/bin/devconfig
73
74# TROFFFONTDIR
75# This is the directory where the
76# utility "ptroff" and "pscat" find their fonts.
77# DON'T make it /usr/lib/font if you can help it!
78TROFFFONTDIR=$PSLIBDIR/troff.font
79
80# BANNERFIRST BANNERLAST
81# These determine the default actions to take with job banner pages.
82# These pages (printed by the spooler to identify a job) may
83# be printed either before the job itself (so that you know
84# by looking in the output tray whose print job is active) or
85# after the job (so that they stack nicely), or both, or neither.
86# These flags may be set on a per-printer basis, so you don't need
87# to worry about them much here.
88BANNERFIRST=1
89BANNERLAST=0
90
91# VERBOSELOG
92# Indicates that verbose job logging should take place in the
93# printer log files. It can be reset on a per-printer basis,
94# so don't worry about it here.
95VERBOSELOG=1
96
97
98export BINDIR PSLIBDIR PSTEMPDIR TROFFFONTDIR DITDIR MAKEDEV \
99 MAN1 MAN7 MAN8 VERBOSELOG BANNERFIRST BANNERLAST OWNER GROUP
100