home *** CD-ROM | disk | FTP | other *** search
/ Garbo / Garbo.cdr / mac / source / a2ps30.zoo / a2ps30 / README < prev   
Text File  |  1990-02-23  |  2KB  |  69 lines

  1. This is version 3.0 of a2ps, a program to format an ascii file for
  2. printing in a postcript printer. As the copyright indicates, this
  3. distribution can be freely redistributed.
  4.  
  5. Initial version was a shell program written by evan@csli (Evan
  6. Kirshenbaum). It was very slow and contained many bugs. A new
  7. version was written in C for improve speed execution and portability.
  8. Many new features and improvements have been added.
  9.  
  10.  
  11. Some notes on the distribution:
  12.  
  13.     Installation is done by modifying and executing Makefile included
  14.     in this distribution. You must give a value to two variables:
  15.     - HEADER_PS    a2ps will search there the file header.ps at execution
  16.         time.
  17.     - compiler    compiler name, actually one of BSD, SYSV, ANSIC. Turbo
  18.         C and Microsoft C are considered ANSIC compilers.
  19.     You could also give your own values to following variables:
  20.     a) Physical page dimension. Dimensions must be real constants,
  21.        specifying inch values.
  22.        - HEIGHT     sheet height
  23.        - WIDTH     sheet width
  24.        Default values correspond to A4 format (11.64 x 8.27). In USA, you use
  25.        use in general 11.0 x 8.5.
  26.     b) Total lateral (left+right) or vertical (top+bottom) margins. It must
  27.        be also a real constant, specifying inchs (by default 1.2).
  28.        - MARGIN
  29.     c) Directory separator (by default '/')
  30.        - DIR_SEP char
  31.  
  32.     a2ps has been successfully ported to Unix 4.3BSD, Unix SystemV and
  33.     MSDOS.
  34.  
  35.  
  36. The a2ps distribution consists of the following files:
  37.  
  38.     README        This message
  39.     Makefile
  40.     a2ps.c        a2ps source
  41.     a2ps.1        a troff manual (man file)
  42.     header.ps    postcript header used by a2ps
  43.  
  44. Decide where you want to keep these files and move it there.
  45. Edit "Makefile" and change the definition of HEADER_PS (to
  46. reflect the full pathname of header.ps) and of compiler name.
  47. To make a2ps do:
  48.  
  49.     make a2ps
  50.  
  51. To install it, do:
  52.  
  53.     make install
  54.  
  55. Format the manual entry using
  56.  
  57.     nroff -man a2ps.1
  58.  
  59.  
  60. Please send problems and feedback to:
  61.  
  62.     miguel@imag.fr or miguel@imag.UUCP (uunet.uu.net!imag!miguel)
  63.  
  64.     Miguel SANTANA
  65.     LGI
  66.     IMAG-Campus
  67.     BP 53X
  68.     38041 Grenoble Cedex
  69.