AminetAminet
Search:
84782 packages online
About
Recent
Browse
Search
Upload
Setup
Services

text/dtp/gs503_data.lha

Mirror:Random
Showing: generic icon
No screenshot available
Short:Ghostscript5.03 data archive, get a bin archive
Author:GS(Aladdin)/Amiga(Olaf Barthel)/Steffen Opel)/Port(me)
Uploader:JoopvandeWege mail mococo nl
Type:text/dtp
Architecture:m68k-amigaos
Date:1997-08-18
Download:text/dtp/gs503_data.lha - View contents
Readme:text/dtp/gs503_data.readme
Downloads:525

This is the Amiga port of Ghostscript5.03. Ghostscript is a Postscript
interpreter with support for Level 2 PS and PDF. This release includes
most popular printers and fileformats including an updated Amiga display
driver.

Features:
Ghostscript supports three Amiga specific devices (but see below for ILBM):
	amiga           Amiga Workbench window
	amiga_custom    Amiga custom screenmodes
	amiga_printer   Amiga printer.device
(amiga_printer seems to have problems, please use one of the internal ones)
(redesign done by Steffen Opel opel@sto.isdn.uni-mannheim.de)

The device 'amiga' opens an Intuition window on the Workbench screen to
display the image. Its usage should be pretty obvious.

The device 'amiga_custom' opens a Customscreen to display the image. This 
allows any Display Mode available in the screenmode preferences to be used
with Ghostscript too.

The device 'amiga_printer' is a convenient alternative for the printer devices
provided by Ghostscript itself. It facilitates standard Amiga printing via the
Workbench printer drivers and respects most settings in the graphics 
preferences as described in the Workbench documentation.

All three devices are supporting -g and -r as described in 'use.txt'.

Ghostscript currently has only limited support for IFF ILBM files:
	amiga_ilbm    IFF ILBM file format

The device 'amiga_ilbm' works like any other Ghostscript raster file or 
printer device (i.e. pbm), see 'Choosing the output device' above on how 
to specify an output file.
It supports dithered grayscale only and is not portable to other platforms 
because it uses iffparse.library. A portable implementation with color 
support is currently under development.

This port requires:
- An  Amiga  equipped Kickstart 2.04 or higher.
- Approx. 4.7 MBytes of hard disk space available.
- A  minimum  of 1 MByte of chip memory, depending on what you want to do
  with  the  interpreter.  Printer output requires at least 2 MBytes of
  contiguous memory (any memory, not necessarily chip memory).
- A bunch of Postscript/Ghostscript fonts.

Comments/Suggestions/Bugs to:
JoopvandeWege@mail.mococo.nl
Please use a Subject field with the name 'GS503' in it.
Please direct all mail to me except when you're 100% sure it is a GS
problem then you can use the Aladdin email address.

Joop van de Wege


Getting Ghostscript.
Download one of the binary archives which match your CPU. It contains
one binary.You might need a patch which is only needed if:
- you have an 040
- and Kickstart 3.1
- and are *NOT* running one of the 040 binaries.
- and you are *NOT* using the latest 'setpatch'.
(it fixes a couple of bugs in 3.1. The symptoms are GURU 8..0B. If you get
them then you need SetMathPatch, probably. Read the docs of SetMathPatch)

How to use Ghostscript.
- Unpack the archive gs503data.lha to a suitable HD with enough room (~3.5M).
  for example 'Work:'.
  A directory 'Ghostscript' will be created and all files needed are found
  within this directory (Work:Ghostscript).
- Unpack one of the special binary archives to the same HD and the executable
  will automatically be placed in the same directory (Work:Ghostscript/gs_000).
  Further do:
  - Assign Ghostscript: Work:Ghostscript
  - path Ghostscript: add
    (Optionally, rename the binary gs_xxx to 'gs')
    Now you can call 'gs' from anywhere with or without arguments. If you add
    the above fragment (Assign ... add) to your s:user-startup then it will be
    available everytime you start your computer
- Unpack gs501fonts-std.lha, if you don't have a set of good quality
  postscript fonts. The advantage of using this archive is that you don't
  need to mess with the file 'Fontmap'. The fonts will be placed in 
  'Work:Ghostscript/fonts'.
Or if you already have postscript fonts, do the following:
  - Assign PSFonts: to your postscript font directory (anywhere)
  - create file PSFonts:FONTMAP with at least the following entries:

% fontmap aka Fontmap
% ----------------------------------------------------------------
/Times-Roman                    (ptmr.gsf)      ;
/Times-Italic                   (ptmri.gsf)     ;
/Times-Bold                     (ptmb.gsf)      ;
/Times-BoldItalic               (ptmbi.gsf)     ;

    It does not matter, which font files are assigned (see below)

  - entries within the FONTMAP file at PSFonts: must follow the
    scheme described below:

          /Fontname             (Filename)      ;

    for example

          /Helvetica            (Helvet.pfb)    ;

    which means, the corresponding files must actually exist.
    But one also my substitute Fonts symbolically by other fonts,
    like for example:

          /Helvetica_Bold       /Helvetica      ;

  - the variables in ENV: and ENVARC: must look as follows:

      Variable          Content        Remark

      GS_FONTPATH                      do not set: delete this one!!
      GS_LIB            PSFonts:
      GS_OPTIONS                       set it, but keep it empty
      GS_DEVICE         amiga          for example (its the default)


See the 'Ghostscript/docs/use.txt' directory for more information, like
commandline options. Some notes:
- Watch out for case sensitivity when using commandline options, -sOutputFile
  is not equal to -soutputfile !!!!!
- Set your stack high enough, 32000 bytes should do it (stack 32000).

Some very useful commandlines with comments in ():
gs -h (outputs small help on most important arguments, and lists all availble
       output devices)
gs (gs opens window on WB and use its palette, use 256color WB if possible,
    there is a problem with NewIcons, it looks like all palette entries are
    reserved by NewIcons so GS will only display in B/W if you use NewIcons)
gs -sDEVICE=png16m (uses the built-in PNG support instead of window on WB)
gs -sOutputFile=ram:output%02d.png -sDEVICE=png256
   (output to files numbered ram:output01.png/ram:output02.png/etc using
    the PNG format (8bit))
gs -r120 (use 120dpi as resolution instead of built-in 72, uses heaps of
          memory at high values)
Arguments useful for PDF files (and ps documents conforming to DSC ?)
gs -dFirstPage=pagenumber (starts on the given page of the document)
gs -dLastPage=pagenumber (Stops after the given page of the document)
See use.doc/Switches for a complete overview of what is available.

(taken from 'new-user.txt')
PDF encryption
--------------

A user outside the U.S. has created code that allows processing of encrypted
PDF files.  Unfortunately, current U.S. export control laws don't allow
redistribution of this code from a site in the U.S., even though it's freely
available to anyone anywhere in the world from its author's site, so you'll
have to get this code from:

        http://www.ozemail.com.au/~geoffk/pdfencrypt/pdf_sec.ps

If that doesn't work, try:

        http://www.ozemail.com.au/%7Egeoffk/pdfencrypt/pdf_sec.ps

The patch consists entirely of PostScript code, so it can be added to a
running version of Ghostscript -- you don't have to recompile anything.  It
is a single file that replaces the file pdf_sec.ps in the standard
Ghostscript fileset (Ghostscript:data/pdf_sec.ps).


Contents of text/dtp/gs503_data.lha
PERMISSION  UID  GID    PACKED    SIZE  RATIO METHOD CRC     STAMP     NAME
---------- ----------- ------- ------- ------ ---------- ------------ ----------
[generic]                   69      69 100.0% -lh0- d38f Aug 14  1997 Ghostscript/batch/font2c
[generic]                  107     108  99.1% -lh5- ea19 Aug 14  1997 Ghostscript/batch/gsbj
[generic]                   52      52 100.0% -lh0- 2d63 Aug 14  1997 Ghostscript/batch/bdftops
[generic]                  108     110  98.2% -lh5- 612e Aug 14  1997 Ghostscript/batch/gsdj
[generic]                  108     110  98.2% -lh5- c3c7 Aug 14  1997 Ghostscript/batch/gsdj500
[generic]                  108     111  97.3% -lh5- 01c7 Aug 14  1997 Ghostscript/batch/gslj
[generic]                  107     108  99.1% -lh5- 952a Aug 14  1997 Ghostscript/batch/gslp
[generic]                   35      35 100.0% -lh0- 83f8 Aug 14  1997 Ghostscript/batch/gsnd
[generic]                  274     394  69.5% -lh5- fff3 Aug 14  1997 Ghostscript/batch/pdf2dsc
[generic]                  253     339  74.6% -lh5- affb Aug 14  1997 Ghostscript/batch/pdf2ps
[generic]                  130     154  84.4% -lh5- 5c9a Aug 14  1997 Ghostscript/batch/printafm
[generic]                  304     639  47.6% -lh5- 2c98 Aug 14  1997 Ghostscript/batch/ps2ascii
[generic]                  753    1575  47.8% -lh5- 25cd Aug 14  1997 Ghostscript/batch/ps2epsi
[generic]                  318     524  60.7% -lh5- 6f2f Aug 14  1997 Ghostscript/batch/ps2pdf
[generic]                   52      52 100.0% -lh0- 4626 Aug 14  1997 Ghostscript/batch/wftopfa
[generic]                 4787   13582  35.2% -lh5- 7aa9 Aug 14  1997 Ghostscript/data/Fontmap
[generic]                 2793   11046  25.3% -lh5- 5bb3 Aug 14  1997 Ghostscript/data/cbjc600.ppd
[generic]                 2862   11389  25.1% -lh5- 4f0b Aug 14  1997 Ghostscript/data/cbjc800.ppd
[generic]                16313   45904  35.5% -lh5- 62c0 Aug 14  1997 Ghostscript/data/gs_init.ps
[generic]                 3860    9675  39.9% -lh5- 0af3 Aug 14  1997 Ghostscript/data/gs_btokn.ps
[generic]                 1214    2707  44.8% -lh5- 68aa Aug 14  1997 Ghostscript/data/gs_ccfnt.ps
[generic]                 6736   18805  35.8% -lh5- 9268 Aug 14  1997 Ghostscript/data/gs_cff.ps
[generic]                 4137   12668  32.7% -lh5- b661 Aug 14  1997 Ghostscript/data/gs_cidfn.ps
[generic]                 2537    7673  33.1% -lh5- 868b Aug 14  1997 Ghostscript/data/gs_cmap.ps
[generic]                 2994    7729  38.7% -lh5- 6799 Aug 14  1997 Ghostscript/data/gs_diskf.ps
[generic]                  671    1307  51.3% -lh5- 8dea Aug 14  1997 Ghostscript/data/gs_dpnxt.ps
[generic]                  782    1627  48.1% -lh5- 2cf1 Aug 14  1997 Ghostscript/data/gs_dps.ps
[generic]                 1779    4408  40.4% -lh5- 7892 Aug 14  1997 Ghostscript/data/gs_dps1.ps
[generic]                 2410    6704  35.9% -lh5- 053b Aug 14  1997 Ghostscript/data/gs_dps2.ps
[generic]                 1089    2225  48.9% -lh5- 6b8e Aug 14  1997 Ghostscript/data/gs_epsf.ps
[generic]                 9733   28363  34.3% -lh5- 1e52 Aug 14  1997 Ghostscript/data/gs_fonts.ps
[generic]                 1677    4091  41.0% -lh5- 7def Aug 14  1997 Ghostscript/data/gs_kanji.ps
[generic]                 5023   14507  34.6% -lh5- 38b8 Aug 14  1997 Ghostscript/data/gs_lev2.ps
[generic]                 1841    4491  41.0% -lh5- ab28 Aug 14  1997 Ghostscript/data/gs_pfile.ps
[generic]                 6035   19196  31.4% -lh5- f893 Aug 14  1997 Ghostscript/data/gs_res.ps
[generic]                 6834   21612  31.6% -lh5- 2810 Aug 14  1997 Ghostscript/data/gs_setpd.ps
[generic]                 3661   10549  34.7% -lh5- 87f3 Aug 14  1997 Ghostscript/data/gs_statd.ps
[generic]                 5122   14674  34.9% -lh5- 0fea Aug 14  1997 Ghostscript/data/gs_ttf.ps
[generic]                  858    1778  48.3% -lh5- b5d2 Aug 14  1997 Ghostscript/data/gs_typ42.ps
[generic]                 2127    5009  42.5% -lh5- 64d0 Aug 14  1997 Ghostscript/data/gs_type1.ps
[generic]                 1129    2433  46.4% -lh5- 9b7b Aug 14  1997 Ghostscript/data/gs_dbt_e.ps
[generic]                 1326    2939  45.1% -lh5- eb26 Aug 14  1997 Ghostscript/data/gs_iso_e.ps
[generic]                  885    3440  25.7% -lh5- e321 Aug 14  1997 Ghostscript/data/gs_ksb_e.ps
[generic]                 1276    3388  37.7% -lh5- df47 Aug 14  1997 Ghostscript/data/gs_std_e.ps
[generic]                 1494    3238  46.1% -lh5- edc7 Aug 14  1997 Ghostscript/data/gs_sym_e.ps
[generic]                  931    4272  21.8% -lh5- 4cc7 Aug 14  1997 Ghostscript/data/acctest.ps
[generic]                 1180    2376  49.7% -lh5- 1b02 Aug 14  1997 Ghostscript/data/align.ps
[generic]                 8097   23444  34.5% -lh5- c826 Aug 14  1997 Ghostscript/data/bdftops.ps
[generic]                  178     295  60.3% -lh5- 39c6 Aug 14  1997 Ghostscript/data/decrypt.ps
[generic]                  937    1871  50.1% -lh5- a70c Aug 14  1997 Ghostscript/data/caption.ps
[generic]                 2161    7158  30.2% -lh5- a4dc Aug 14  1997 Ghostscript/data/docie.ps
[generic]                 6536   19815  33.0% -lh5- f1c7 Aug 14  1997 Ghostscript/data/font2c.ps
[generic]                 5319   15708  33.9% -lh5- d9dd Aug 14  1997 Ghostscript/data/gslp.ps
[generic]                 2410    5688  42.4% -lh5- afdc Aug 14  1997 Ghostscript/data/impath.ps
[generic]                   50      59  84.7% -lh5- f6e0 Aug 14  1997 Ghostscript/data/level1.ps
[generic]                  589    1455  40.5% -lh5- f849 Aug 14  1997 Ghostscript/data/landscap.ps
[generic]                 1026    3237  31.7% -lh5- 3f60 Aug 14  1997 Ghostscript/data/lines.ps
[generic]                 1444    3622  39.9% -lh5- 5358 Aug 14  1997 Ghostscript/data/markhint.ps
[generic]                  905    2039  44.4% -lh5- 2422 Aug 14  1997 Ghostscript/data/markpath.ps
[generic]                 3940   10506  37.5% -lh5- 056e Aug 14  1997 Ghostscript/data/packfile.ps
[generic]                 1027    2132  48.2% -lh5- 7c51 Aug 14  1997 Ghostscript/data/pcharstr.ps
[generic]                 1449    3387  42.8% -lh5- 0025 Aug 14  1997 Ghostscript/data/pfbtogs.ps
[generic]                  905    2126  42.6% -lh5- 79ca Aug 14  1997 Ghostscript/data/ppath.ps
[generic]                 1581    4239  37.3% -lh5- d057 Aug 14  1997 Ghostscript/data/prfont.ps
[generic]                 1361    3187  42.7% -lh5- d8b4 Aug 14  1997 Ghostscript/data/printafm.ps
[generic]                 7077   22313  31.7% -lh5- 20dc Aug 14  1997 Ghostscript/data/ps2ai.ps
[generic]                12893   39665  32.5% -lh5- 16cc Aug 14  1997 Ghostscript/data/ps2ascii.ps
[generic]                 2578    7209  35.8% -lh5- 6233 Aug 14  1997 Ghostscript/data/ps2epsi.ps
[generic]                   97     119  81.5% -lh5- 48b0 Aug 14  1997 Ghostscript/data/ps2image.ps
[generic]                    5       5 100.0% -lh0- 1c11 Aug 14  1997 Ghostscript/data/quit.ps
[generic]                 1352    3081  43.9% -lh5- 75c3 Aug 14  1997 Ghostscript/data/showchar.ps
[generic]                    9       9 100.0% -lh0- 82a7 Aug 14  1997 Ghostscript/data/showpage.ps
[generic]                 7139   25847  27.6% -lh5- 58db Aug 14  1997 Ghostscript/data/stcinfo.ps
[generic]                 2136    5338  40.0% -lh5- 81e1 Aug 14  1997 Ghostscript/data/stcolor.ps
[generic]                  863    1676  51.5% -lh5- 0998 Aug 14  1997 Ghostscript/data/traceimg.ps
[generic]                 1204    2782  43.3% -lh5- 84fd Aug 14  1997 Ghostscript/data/traceop.ps
[generic]                 1244    2685  46.3% -lh5- 4a4b Aug 14  1997 Ghostscript/data/type1enc.ps
[generic]                 2656    7684  34.6% -lh5- 7452 Aug 14  1997 Ghostscript/data/type1ops.ps
[generic]                 1950    6284  31.0% -lh5- 0470 Aug 14  1997 Ghostscript/data/uninfo.ps
[generic]                  791    1900  41.6% -lh5- f8b4 Aug 14  1997 Ghostscript/data/unprot.ps
[generic]                 1163    2335  49.8% -lh5- fbd2 Aug 14  1997 Ghostscript/data/viewcmyk.ps
[generic]                 1803    4694  38.4% -lh5- 298c Aug 14  1997 Ghostscript/data/viewgif.ps
[generic]                 1878    4230  44.4% -lh5- 6e43 Aug 14  1997 Ghostscript/data/viewjpeg.ps
[generic]                 1857    4121  45.1% -lh5- 4a4e Aug 14  1997 Ghostscript/data/viewpcx.ps
[generic]                 1674    3991  41.9% -lh5- fdcc Aug 14  1997 Ghostscript/data/viewpbm.ps
[generic]                  718    1431  50.2% -lh5- 9d02 Aug 14  1997 Ghostscript/data/viewps2a.ps
[generic]                 1627    3893  41.8% -lh5- f38f Aug 14  1997 Ghostscript/data/winmaps.ps
[generic]                 3436    9071  37.9% -lh5- 7a99 Aug 14  1997 Ghostscript/data/wftopfa.ps
[generic]                 5906   18226  32.4% -lh5- 4dfd Aug 14  1997 Ghostscript/data/wrfont.ps
[generic]                 1014    2612  38.8% -lh5- 014f Aug 14  1997 Ghostscript/data/zeroline.ps
[generic]                 2234    5797  38.5% -lh5- f115 Aug 14  1997 Ghostscript/data/gs_l2img.ps
[generic]                 6338   18383  34.5% -lh5- d723 Aug 14  1997 Ghostscript/data/gs_pdf.ps
[generic]                 1680    4064  41.3% -lh5- cf0c Aug 14  1997 Ghostscript/data/pdf2dsc.ps
[generic]                 5307   14839  35.8% -lh5- a456 Aug 14  1997 Ghostscript/data/pdf_base.ps
[generic]                 3804   10382  36.6% -lh5- 731c Aug 14  1997 Ghostscript/data/pdf_draw.ps
[generic]                 4478   13853  32.3% -lh5- 8d05 Aug 14  1997 Ghostscript/data/pdf_font.ps
[generic]                 5284   14757  35.8% -lh5- 8910 Aug 14  1997 Ghostscript/data/pdf_main.ps
[generic]                 1137    2328  48.8% -lh5- 34d7 Aug 14  1997 Ghostscript/data/pdf_sec.ps
[generic]                 2873    7981  36.0% -lh5- d5fd Aug 14  1997 Ghostscript/data/pdf_2ps.ps
[generic]                 1360    4108  33.1% -lh5- 8ec7 Aug 14  1997 Ghostscript/data/gs_mex_e.ps
[generic]                 1140    2547  44.8% -lh5- fd08 Aug 14  1997 Ghostscript/data/gs_mro_e.ps
[generic]                  878    1851  47.4% -lh5- 9684 Aug 14  1997 Ghostscript/data/gs_pdf_e.ps
[generic]                  816    1710  47.7% -lh5- b3f6 Aug 14  1997 Ghostscript/data/gs_wan_e.ps
[generic]                 3955   11313  35.0% -lh5- 35fc Aug 14  1997 Ghostscript/data/gs_pdfwr.ps
[generic]                  582    1531  38.0% -lh5- b815 Aug 14  1997 Ghostscript/data/bjc610a0.upp
[generic]                  572    1520  37.6% -lh5- 8694 Aug 14  1997 Ghostscript/data/bjc610a1.upp
[generic]                  569    1521  37.4% -lh5- 2ea1 Aug 14  1997 Ghostscript/data/bjc610a2.upp
[generic]                  475    1526  31.1% -lh5- 9080 Aug 14  1997 Ghostscript/data/bjc610a3.upp
[generic]                  577    1533  37.6% -lh5- 6c61 Aug 14  1997 Ghostscript/data/bjc610a4.upp
[generic]                  575    1521  37.8% -lh5- f6b3 Aug 14  1997 Ghostscript/data/bjc610a5.upp
[generic]                  575    1521  37.8% -lh5- b0b1 Aug 14  1997 Ghostscript/data/bjc610a6.upp
[generic]                  476    1524  31.2% -lh5- 0669 Aug 14  1997 Ghostscript/data/bjc610a7.upp
[generic]                  581    1530  38.0% -lh5- 248d Aug 14  1997 Ghostscript/data/bjc610a8.upp
[generic]                  570    1520  37.5% -lh5- b522 Aug 14  1997 Ghostscript/data/bjc610b1.upp
[generic]                  572    1521  37.6% -lh5- 994b Aug 14  1997 Ghostscript/data/bjc610b2.upp
[generic]                  572    1526  37.5% -lh5- cb70 Aug 14  1997 Ghostscript/data/bjc610b3.upp
[generic]                  567    1533  37.0% -lh5- 6c74 Aug 14  1997 Ghostscript/data/bjc610b4.upp
[generic]                  576    1521  37.9% -lh5- 075b Aug 14  1997 Ghostscript/data/bjc610b6.upp
[generic]                  571    1525  37.4% -lh5- 6dc0 Aug 14  1997 Ghostscript/data/bjc610b7.upp
[generic]                  574    1530  37.5% -lh5- d337 Aug 14  1997 Ghostscript/data/bjc610b8.upp
[generic]                  535    1725  31.0% -lh5- 3b0c Aug 14  1997 Ghostscript/data/cdj550.upp
[generic]                  584    1102  53.0% -lh5- a306 Aug 14  1997 Ghostscript/data/necp2x6.upp
[generic]                  583    1078  54.1% -lh5- 375d Aug 14  1997 Ghostscript/data/necp2x.upp
[generic]                  166     211  78.7% -lh5- eb1e Aug 14  1997 Ghostscript/data/ras1.upp
[generic]                  167     215  77.7% -lh5- 593a Aug 14  1997 Ghostscript/data/ras24.upp
[generic]                  171     210  81.4% -lh5- 3719 Aug 14  1997 Ghostscript/data/ras3.upp
[generic]                  159     194  82.0% -lh5- f225 Aug 14  1997 Ghostscript/data/ras32.upp
[generic]                  175     216  81.0% -lh5- 6f5b Aug 14  1997 Ghostscript/data/ras4.upp
[generic]                  161     205  78.5% -lh5- 3a6d Aug 14  1997 Ghostscript/data/ras8m.upp
[generic]                  566    1866  30.3% -lh5- 33bb Aug 14  1997 Ghostscript/data/stc.upp
[generic]                  643    2060  31.2% -lh5- d3f7 Aug 14  1997 Ghostscript/data/stc1520h.upp
[generic]                  558    1847  30.2% -lh5- e4d0 Aug 14  1997 Ghostscript/data/stc2.upp
[generic]                  702    2179  32.2% -lh5- 4bc2 Aug 14  1997 Ghostscript/data/stc2s_h.upp
[generic]                  555    1822  30.5% -lh5- 36df Aug 14  1997 Ghostscript/data/stc2_h.upp
[generic]                  619    1846  33.5% -lh5- be23 Aug 14  1997 Ghostscript/data/stc500p.upp
[generic]                  598    1846  32.4% -lh5- 6df5 Aug 14  1997 Ghostscript/data/stc500ph.upp
[generic]                  657    2187  30.0% -lh5- aaa9 Aug 14  1997 Ghostscript/data/stc600ih.upp
[generic]                  547    1094  50.0% -lh5- 58b0 Aug 14  1997 Ghostscript/data/stc600p.upp
[generic]                  537    1058  50.8% -lh5- 88f8 Aug 14  1997 Ghostscript/data/stc600pl.upp
[generic]                  645    2064  31.2% -lh5- 673b Aug 14  1997 Ghostscript/data/stc800ih.upp
[generic]                  534    1058  50.5% -lh5- c83d Aug 14  1997 Ghostscript/data/stc800p.upp
[generic]                  527    1040  50.7% -lh5- 4176 Aug 14  1997 Ghostscript/data/stc800pl.upp
[generic]                  343     622  55.1% -lh5- 4cae Aug 14  1997 Ghostscript/data/stcany.upp
[generic]                  566    1856  30.5% -lh5- 3f0b Aug 14  1997 Ghostscript/data/stc_h.upp
[generic]                  381     683  55.8% -lh5- 1fc6 Aug 14  1997 Ghostscript/data/stc_l.upp
[generic]                  297     501  59.3% -lh5- 02c4 Aug 14  1997 Ghostscript/doc/COPYING
[generic]                65853  175280  37.6% -lh5- 20dc Aug 14  1997 Ghostscript/doc/NEWS
[generic]                 4534   11409  39.7% -lh5- b302 Aug 14  1997 Ghostscript/doc/PUBLIC
[generic]                 2669    7040  37.9% -lh5- ae51 Aug 14  1997 Ghostscript/doc/README
[generic]                  992    2189  45.3% -lh5- a141 Aug 14  1997 Ghostscript/doc/bug-form.txt
[generic]                 4522   10988  41.2% -lh5- 8954 Aug 14  1997 Ghostscript/doc/c-style.txt
[generic]                 2868    6149  46.6% -lh5- 72a5 Aug 14  1997 Ghostscript/doc/current.txt
[generic]                40287  105854  38.1% -lh5- b6d9 Aug 14  1997 Ghostscript/doc/devices.txt
[generic]                19063   56412  33.8% -lh5- a4ae Aug 14  1997 Ghostscript/doc/drivers.txt
[generic]                 8419   20998  40.1% -lh5- d7b9 Aug 14  1997 Ghostscript/doc/fonts.txt
[generic]                 3652    8041  45.4% -lh5- 99dc Aug 14  1997 Ghostscript/doc/helpers.txt
[generic]                 4528   10528  43.0% -lh5- 50e0 Aug 14  1997 Ghostscript/doc/hershey.txt
[generic]                 5113   12424  41.2% -lh5- 304c Aug 14  1997 Ghostscript/doc/history1.txt
[generic]                74535  191160  39.0% -lh5- 2b59 Aug 14  1997 Ghostscript/doc/history2.txt
[generic]               112924  303513  37.2% -lh5- e660 Aug 14  1997 Ghostscript/doc/history3.txt
[generic]                 1204    2501  48.1% -lh5- 8f5d Aug 14  1997 Ghostscript/doc/humor.txt
[generic]                 3677    9098  40.4% -lh5- e6be Aug 14  1997 Ghostscript/doc/install.txt
[generic]                10499   29725  35.3% -lh5- 88cd Aug 14  1997 Ghostscript/doc/language.txt
[generic]                 5137   13773  37.3% -lh5- aee1 Aug 14  1997 Ghostscript/doc/lib.txt
[generic]                23026   61137  37.7% -lh5- b2c4 Aug 14  1997 Ghostscript/doc/make.txt
[generic]                 9812   24202  40.5% -lh5- aea7 Aug 14  1997 Ghostscript/doc/new-user.txt
[generic]                 1188    2517  47.2% -lh5- 9de9 Aug 14  1997 Ghostscript/doc/ps2epsi.txt
[generic]                 2050    4285  47.8% -lh5- af45 Aug 14  1997 Ghostscript/doc/ps2pdf.txt
[generic]                 3354    8579  39.1% -lh5- c9e4 Aug 14  1997 Ghostscript/doc/psfiles.txt
[generic]                 1451    3160  45.9% -lh5- 4478 Aug 14  1997 Ghostscript/doc/public.txt
[generic]                 2772    6365  43.6% -lh5- d20d Aug 14  1997 Ghostscript/doc/unix-lpr.txt
[generic]                18836   51369  36.7% -lh5- 23f3 Aug 14  1997 Ghostscript/doc/use.txt
[generic]                 2790    6756  41.3% -lh5- 87b1 Aug 14  1997 Ghostscript/doc/xfonts.txt
[generic]                  647    1452  44.6% -lh5- 5981 Aug 14  1997 Ghostscript/examples/alphabet.ps
[generic]                 1318    2932  45.0% -lh5- 2cbf Aug 14  1997 Ghostscript/examples/chess.ps
[generic]                33081   58543  56.5% -lh5- 954b Aug 14  1997 Ghostscript/examples/cheq.ps
[generic]                  426    1815  23.5% -lh5- cc04 Aug 14  1997 Ghostscript/examples/colorcir.ps
[generic]                 4583   10520  43.6% -lh5- 3c43 Aug 14  1997 Ghostscript/examples/escher.ps
[generic]                10690   25499  41.9% -lh5- e969 Aug 14  1997 Ghostscript/examples/golfer.ps
[generic]                  554    1529  36.2% -lh5- 6800 Aug 14  1997 Ghostscript/examples/grayalph.ps
[generic]                  746    2071  36.0% -lh5- 2eba Aug 14  1997 Ghostscript/examples/snowflak.ps
[generic]                31213   78519  39.8% -lh5- 21fe Aug 14  1997 Ghostscript/examples/tiger.ps
[generic]                 1230    2465  49.9% -lh5- ce42 Aug 14  1997 Ghostscript/examples/waterfal.ps
[generic]                 1381    3020  45.7% -lh5- 8291 Aug 14  1997 Ghostscript/examples/ridt91.eps
[generic]                 4871   11700  41.6% -lh5- 6da3 Aug 14  1997 Ghostscript/man/man1/gs.1
[generic]                  710    1373  51.7% -lh5- 8ec8 Aug 14  1997 Ghostscript/man/man1/pdf2dsc.1
[generic]                  381     705  54.0% -lh5- bc4a Aug 14  1997 Ghostscript/man/man1/pdf2ps.1
[generic]                  517    1047  49.4% -lh5- 7ee7 Aug 14  1997 Ghostscript/man/man1/ps2ascii.1
[generic]                 1221    2620  46.6% -lh5- 3f1d Aug 14  1997 Ghostscript/man/man1/ps2epsi.1
[generic]                  666    1282  52.0% -lh5- e973 Aug 14  1997 Ghostscript/man/man1/ps2pdf.1
[generic]                 3384    7533  44.9% -lh5- 9b46 Aug 16  1997 Ghostscript/Ghostscript503.readme
---------- ----------- ------- ------- ------ ---------- ------------ ----------
 Total       191 files  807477 2128532  37.9%            Aug 18  1997
Page generated in 0.02 seconds
Aminet © 1992-2024 Urban Müller and the Aminet team. Aminet contact address: <aminetaminet net>