New ghostscript port, living in a subdir.

Important changes:
- prodded by Nikolay Sturm to do the upgrade,
- Gnu-ghostscript is now 5.50, packaging changed slightly,
- most patches have been integrated,
- use MAKE_FLAGS to remove Makefile patches and gnu-make dependency,
- pull pdf_encrypt out from the main package so that gs can be distributed
on CD-Rom,
- simplify DEVICE_DEVS (get list from NetBSD), removed interactive script
for now, as it wasn't reliably upgraded,
- infrastructure allows for Aladdin ghostscript along-side.
This commit is contained in:
espie 2000-02-19 17:40:42 +00:00
parent d5bb6b6149
commit 088b215766
15 changed files with 650 additions and 0 deletions

View File

@ -0,0 +1,6 @@
# $OpenBSD: Makefile,v 1.1.1.1 2000/02/19 17:40:42 espie Exp $
SUBDIR += gnu
SUBDIR += encrypt
.include <bsd.port.subdir.mk>

View File

@ -0,0 +1,36 @@
# $OpenBSD: Makefile,v 1.1.1.1 2000/02/19 17:40:45 espie Exp $
CATEGORIES= print
MASTER_SITES= http://www.ozemail.com.au/%7Egeoffk/pdfencrypt/
HOMEPAGE= http://www.ozemail.com.au/%7Egeoffk/pdfencrypt/
DISTFILES= pdf_sec.ps
DIST_SUBDIR= gs
EXTRACT_ONLY=
LICENSE_TYPE= CRYPTO
PERMIT_PACKAGE_FTP= Yes
PERMIT_PACKAGE_CDROM= No
PERMIT_DISTFILES_FTP= Yes
PERMIT_DISTFILES_CDROM= No
NO_BUILD=Yes
.if defined(ALADDIN)
# Todo
DISTNAME= aladdin-ghostscript-encrypt
GSDIR=${PREFIX}/share/ghostscript/6.0
RUN_DEPENDS=${GSDIR}:${PORTSDIR}/print/ghostscript/aladdin
DISTNAME= ghostscript-encrypt
.else
# Gnu ghostscript, default
GSDIR=${PREFIX}/share/ghostscript/5.50
RUN_DEPENDS=${GSDIR}:${PORTSDIR}/print/ghostscript/gnu
.endif
do-install:
# needed, since pkg_create is fucked up
touch ${GSDIR}/.gs-encrypt
mv ${GSDIR}/pdf_sec.ps ${GSDIR}/pdf_sec.stub
${INSTALL_DATA} ${FULLDISTDIR}/${DISTFILES} ${GSDIR}
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
MD5 (pdf_sec.ps) = 92cd6af5b4d7219e91e61b8351f0f7c4
RMD160 (pdf_sec.ps) = efb8e01a8fb6a99d8635d35360578c45a7c1c2e9
SHA1 (pdf_sec.ps) = e185f12cb8764ce2d7d32931c6dbd5e05df8722f

View File

@ -0,0 +1 @@
encrypted pdf add-on for ghostscript

View File

@ -0,0 +1,3 @@
This allows ghostscript to read encrypted pdf files.
Separate package from ghostscript to allow CD-Rom
redistribution.

View File

@ -0,0 +1,5 @@
@comment Stub to avoid tripping @exec
share/ghostscript/5.50/.gs-encrypt
@exec mv %D/share/ghostscript/5.50/pdf_sec.ps %D/share/ghostscript/5.50/pdf_sec.stub
share/ghostscript/5.50/pdf_sec.ps
@unexec mv %D/share/ghostscript/5.50/pdf_sec.stub %D/share/ghostscript/5.50/pdf_sec.ps

View File

@ -0,0 +1,116 @@
# $OpenBSD: Makefile,v 1.1.1.1 2000/02/19 17:40:42 espie Exp $
# Original from: Andreas Klemm <andreas@klemm.gtn.com>
DISTNAME= ghostscript-5.50
CATEGORIES= print
# Eventually, this will show up on gnu's master sites... whenever the
# FSF wakes up.
MASTER_SITES= ftp://ftp.cs.wisc.edu/ghost/gnu/gs550/ \
$(MASTER_SITE_GNU)
HOMEPAGE= http://www.cs.wisc.edu/%7Eghost/
MASTER_SITES0= http://www.erdw.ethz.ch/%7Ebonk/ftp/gs-driver-distrib/
MASTER_SITE_SUBDIR= ghostscript
DISTFILES= ${GS_SOURCES} ${GS_FONTS_STD} ${GS_FONTS_OTHER} \
${HP850_DRV}:0
DIST_SUBDIR= gs
# png and jpeg sources are under a BSD license
LICENSE_TYPE= GPL BSD
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
NEED_VERSION= 1.202
MAINTAINER= ports@openbsd.org
JPEGDIR=${PORTSDIR}/graphics/jpeg
PNGDIR=${PORTSDIR}/graphics/png
BUILD_DEPENDS= /nonexistent:${JPEGDIR}:extract \
/nonexistent:${PNGDIR}:extract \
unzip:${PORTSDIR}/archivers/unzip \
LIB_DEPENDS= png.1.3:${PNGDIR}
EXTRACT_ONLY= ${GS_SOURCES}
WRKDIST= ${WRKDIR}/gs5.50
MAKE_FLAGS= INSTALL_PROGRAM='${INSTALL_SCRIPT}' \
INSTALL_DATA='${INSTALL_DATA}' \
prefix=${PREFIX} \
SHARE_LIBPNG=1 \
SHARE_ZLIB=1 \
XLDFLAGS=-L${PREFIX}/lib \
XINCLUDE=-I${X11BASE}/include \
XCFLAGS='${CFLAGS}' \
XLIBS='Xt SM ICE Xext X11' \
XLIBDIRS=-L${X11BASE}/lib \
GLOBJDIR=./objects \
GLGENDIR=./objects \
PSOBJDIR=./objects \
PSGENDIR=./objects \
DEVICE_DEVS=`cat ${FILESDIR}/devices`
MAKEFILE= unixansi.mak
MAN1= gs.1 pdf2dsc.1 pdf2ps.1 ps2ascii.1 ps2epsi.1 ps2pdf.1 ps2ps.1
GS_SOURCES= gnu-gs-5.50.tar.gz
# Note: the following two are real files that have symlinks with
# later version numbers pointing to them. To avoid unnecessarily
# downloading distfiles, do not change these when upgrading the port
# unless the files really change.
GS_FONTS_STD= gnu-gs-fonts-std-5.50.tar.gz
GS_FONTS_OTHER= gnu-gs-fonts-other-5.50.tar.gz
# Additional driver HP 850, see http://www.erdw.ethz.ch/~bonk/hp850/hp850.html
HP850_DRV= hp8xxs13.zip
# The pdf_sec.ps non-stub version has been moved to a separate package
.if defined(A4)
CFLAGS+= -DA4
PKGNAME=${DISTNAME}-A4
.endif
pre-fetch:
.if !defined(A4)
@${ECHO_MSG} "Type \"make A4=yes\" if you want -DA4 for compilation."
.else
@${ECHO_MSG} "Using -DA4 for compilation."
.endif
post-extract:
ln -s `cd ${JPEGDIR} && make show VARNAME=WRKDIST` ${WRKSRC}/jpeg
ln -s `cd ${PNGDIR} && make show VARNAME=WRKDIST` ${WRKSRC}/libpng
cd ${WRKSRC} && unzip -Lao ${FULLDISTDIR}/${HP850_DRV} -x devs.mak
pre-build:
mkdir -p ${WRKSRC}/objects
pre-install:
@${INSTALL_DATA_DIR} ${PREFIX}/share/ghostscript
@${INSTALL_PROGRAM_DIR} ${PREFIX}/bin
@${INSTALL_MAN_DIR} ${PREFIX}/man/man1
cd ${PREFIX}/share/ghostscript && \
tar xzf ${FULLDISTDIR}/${GS_FONTS_STD}
cd ${PREFIX}/share/ghostscript/fonts && \
tar xzf ${FULLDISTDIR}/${GS_FONTS_OTHER}
# install the readme and license file of the hp8xxx driver as well
post-install:
strip ${PREFIX}/bin/gs
${INSTALL_SCRIPT} ${WRKSRC}/unix-lpr.sh ${PREFIX}/bin
${INSTALL_SCRIPT} ${WRKSRC}/lprsetup.sh ${PREFIX}/bin
${INSTALL_DATA} ${WRKSRC}/license.hp8 \
${PREFIX}/share/ghostscript/5.50/doc
${INSTALL_DATA} ${WRKSRC}/readme.hp8 \
${PREFIX}/share/ghostscript/5.50/doc
.include <bsd.port.mk>

View File

@ -0,0 +1 @@
x11.dev x11alpha.dev x11cmyk.dev x11cmyk2.dev x11cmyk4.dev x11cmyk8.dev x11gray2.dev x11gray4.dev x11mono.dev cljet5.dev deskjet.dev djet500.dev laserjet.dev ljet2p.dev ljet3.dev ljet3d.dev ljet4.dev ljetplus.dev lj5mono.dev lj5gray.dev lp2563.dev oce9050.dev faxg3.dev faxg32d.dev faxg4.dev tiffcrle.dev tiffg3.dev tiffg32d.dev tiffg4.dev epswrite.dev pdfwrite.dev pswrite.dev pxlmono.dev pxlcolor.dev bit.dev bitrgb.dev bitcmyk.dev bmpmono.dev bmp16.dev bmp256.dev bmp16m.dev cgmmono.dev cgm8.dev cgm24.dev jpeg.dev jpeggray.dev miff24.dev pcxmono.dev pcxgray.dev pcx16.dev pcx256.dev pcx24b.dev pcxcmyk.dev pbm.dev pbmraw.dev pgm.dev pgmraw.dev pgnm.dev pgnmraw.dev pnm.dev pnmraw.dev ppm.dev ppmraw.dev pkm.dev pkmraw.dev plan9bm.dev pngmono.dev pnggray.dev png16.dev png256.dev png16m.dev psmono.dev psgray.dev psrgb.dev tiff12nc.dev tiff24nc.dev tifflzw.dev tiffpack.dev sxlcrt.dev ap3250.dev appledmp.dev bj10e.dev bj200.dev bjc600.dev bjc800.dev ccr.dev cdeskjet.dev cdjcolor.dev cdjmono.dev cdj500.dev cdj550.dev cdj850.dev cdj670.dev cdj890.dev cdj1600.dev cp50.dev declj250.dev djet500c.dev dnj650c.dev epson.dev eps9mid.dev eps9high.dev epsonc.dev hl7x0.dev ibmpro.dev imagen.dev iwhi.dev iwlo.dev iwlq.dev jetp3852.dev la50.dev la70.dev la75.dev la75plus.dev lbp8.dev lips3.dev ln03.dev lj250.dev lj4dith.dev lp8000.dev lq850.dev m8510.dev necp6.dev oki182.dev okiibm.dev paintjet.dev pj.dev pjetxl.dev pjxl.dev pjxl300.dev r4081.dev sj48.dev st800.dev stcolor.dev t4693d2.dev t4693d4.dev t4693d8.dev tek4696.dev uniprint.dev xes.dev dfaxhigh.dev dfaxlow.dev cif.dev inferno.dev mgrmono.dev mgrgray2.dev mgrgray4.dev mgrgray8.dev mgr4.dev mgr8.dev sgirgb.dev

View File

@ -0,0 +1,12 @@
MD5 (gs/gnu-gs-5.50.tar.gz) = 14d4e72ee395c60a18a918c2d7d733d2
MD5 (gs/gnu-gs-fonts-other-5.50.tar.gz) = 33457d3f37de7ef03d2eea05a9e6aa4f
MD5 (gs/gnu-gs-fonts-std-5.50.tar.gz) = 1521fab85ca3e8ce3ce781d4970e6c79
MD5 (gs/hp8xxs13.zip) = e46bcac0aed0c511c8cc88a1093cc586
RMD160 (gs/gnu-gs-5.50.tar.gz) = 2e99ed23e8bb729a72deb012431a2d3a1810be5e
RMD160 (gs/gnu-gs-fonts-other-5.50.tar.gz) = 1431080d5d803d29e1743cea12ad90581018fa90
RMD160 (gs/gnu-gs-fonts-std-5.50.tar.gz) = 5d5fe14cd8700e24ef4c11ab4728114a03e23ee8
RMD160 (gs/hp8xxs13.zip) = 149f308b35d81481eeee0804623a585e19da43ea
SHA1 (gs/gnu-gs-5.50.tar.gz) = bf52e6f04001b78322dbb19b63811ccf201f9e29
SHA1 (gs/gnu-gs-fonts-other-5.50.tar.gz) = 7263e2bf12202b39517db600819956a832e42a75
SHA1 (gs/gnu-gs-fonts-std-5.50.tar.gz) = cdad2f3752c513fe1cfb0eeaf6661753e2cc182c
SHA1 (gs/hp8xxs13.zip) = 2e76cb8073c1ad91c5fd0cc39ae75da53ed4db7d

View File

@ -0,0 +1,10 @@
--- gs_init.ps.orig Tue Feb 1 20:39:09 2000
+++ gs_init.ps Tue Feb 1 20:40:23 2000
@@ -1618,3 +1618,7 @@
(END GC) VMDEBUG
% The interpreter will run the initial procedure (start).
+
+% unofficial patch:
+% make it possible to print from within acroread pdf viewer
+/Default currenthalftone /Halftone defineresource pop

View File

@ -0,0 +1,21 @@
--- contrib.mak.orig Tue Sep 15 04:03:52 1998
+++ contrib.mak Tue Dec 1 15:37:58 1998
@@ -435,6 +435,18 @@
cdj850.dev: $(cdeskjet8_) page.dev
$(SETPDEV) cdj850 $(cdeskjet8_)
+cdj670.dev: $(cdeskjet8_) page.dev
+ $(SETPDEV) cdj670 $(cdeskjet8_)
+
+cdj890.dev: $(cdeskjet8_) page.dev
+ $(SETPDEV) cdj890 $(cdeskjet8_)
+
+cdj1600.dev: $(cdeskjet8_) page.dev
+ $(SETPDEV) cdj1600 $(cdeskjet8_)
+
+$(GLOBJ)gdevcd8.$(OBJ): $(GLSRC)gdevcd8.c $(GLSRC)gdevcd8.h $(PDEVH)
+ $(GLCC) $(GLO_)gdevcd8.$(OBJ) $(C_) $(GLSRC)gdevcd8.c
+
### ------------ The H-P PaintJet color printer device ----------------- ###
### Note: this driver also supports the DEC LJ250 color printer, which ###
### has a PaintJet-compatible mode, and the PaintJet XL. ###

View File

@ -0,0 +1,34 @@
--- gp_unifs.c.orig Wed Jul 15 23:54:13 1998
+++ gp_unifs.c Sun Feb 6 16:41:52 2000
@@ -27,6 +27,7 @@
#include "stat_.h"
#include "dirent_.h"
#include <sys/param.h> /* for MAXPATHLEN */
+#include <unistd.h>
/* Some systems (Interactive for example) don't define MAXPATHLEN,
* so we define it here. (This probably should be done via a Config-Script.)
@@ -57,6 +58,8 @@ gp_open_scratch_file(const char *prefix,
const char *mode)
{ /* The -8 is for XXXXXX plus a possible final / and -. */
int len = gp_file_name_sizeof - strlen(prefix) - 8;
+ int fd;
+ FILE *f;
if (gp_getenv("TEMP", fname, &len) != 0)
strcpy(fname, "/tmp/");
@@ -69,8 +72,12 @@ gp_open_scratch_file(const char *prefix,
if (*fname != 0 && fname[strlen(fname) - 1] == 'X')
strcat(fname, "-");
strcat(fname, "XXXXXX");
- mktemp(fname);
- return fopen(fname, mode);
+ fd = mkstemp(fname);
+ if (fd == -1)
+ return NULL;
+ if ((f = fdopen(fd, mode)) == NULL)
+ close(fd);
+ return f;
}
/* Open a file with the given name, as a stream of uninterpreted bytes. */

View File

@ -0,0 +1 @@
GNU Postscript interpreter

View File

@ -0,0 +1,24 @@
This is GNU Ghostscript, the GPL version.
Ghostscript is the well-known PostScript interpreter which is available for
all common and most esoteric platforms and supports many different printers
and some displays.
Official ghostscript homepage, see:
http://www.cs.wisc.edu/~ghost/index.html
This port includes useful add-ons:
o Support for HP DeskJet 670, 690, 850, 855, 870, 890, 1100 and 1600,
see announcement on
http://www.erdw.ethz.ch/~bonk/hp850/hp850.html
o A Separate package with support for pdf encryption,
see description on
http://www.ozemail.com.au/~geoffk/pdfencrypt/
Thomas Merz has written a Ghostscript manual in PDF format:
http://www.cs.wisc.edu/~ghost/merz.html
The manual is also available in German language, see:
http://www.muc.de/~tm/free/free.html
WWW: http://www.cs.wisc.edu/~ghost/index.html

View File

@ -0,0 +1,377 @@
bin/bdftops
bin/dvipdf
bin/font2c
bin/gs
bin/gsbj
bin/gsdj
bin/gsdj500
bin/gslj
bin/gslp
bin/gsnd
bin/lprsetup.sh
bin/pdf2dsc
bin/pdf2ps
bin/printafm
bin/ps2ascii
bin/ps2epsi
bin/ps2pdf
bin/ps2ps
bin/unix-lpr.sh
bin/wftopfa
man/man1/gs.1
man/man1/pdf2dsc.1
man/man1/pdf2ps.1
man/man1/ps2ascii.1
man/man1/ps2epsi.1
man/man1/ps2pdf.1
man/man1/ps2ps.1
share/ghostscript/5.50/Fontmap
share/ghostscript/5.50/acctest.ps
share/ghostscript/5.50/align.ps
share/ghostscript/5.50/bdftops.ps
share/ghostscript/5.50/bjc610a0.upp
share/ghostscript/5.50/bjc610a1.upp
share/ghostscript/5.50/bjc610a2.upp
share/ghostscript/5.50/bjc610a3.upp
share/ghostscript/5.50/bjc610a4.upp
share/ghostscript/5.50/bjc610a5.upp
share/ghostscript/5.50/bjc610a6.upp
share/ghostscript/5.50/bjc610a7.upp
share/ghostscript/5.50/bjc610a8.upp
share/ghostscript/5.50/bjc610b1.upp
share/ghostscript/5.50/bjc610b2.upp
share/ghostscript/5.50/bjc610b3.upp
share/ghostscript/5.50/bjc610b4.upp
share/ghostscript/5.50/bjc610b6.upp
share/ghostscript/5.50/bjc610b7.upp
share/ghostscript/5.50/bjc610b8.upp
share/ghostscript/5.50/caption.ps
share/ghostscript/5.50/cbjc600.ppd
share/ghostscript/5.50/cbjc800.ppd
share/ghostscript/5.50/cdj550.upp
share/ghostscript/5.50/cid2code.ps
share/ghostscript/5.50/decrypt.ps
share/ghostscript/5.50/doc/Bug-form.htm
share/ghostscript/5.50/doc/C-style.htm
share/ghostscript/5.50/doc/Commprod.htm
share/ghostscript/5.50/doc/Current.htm
share/ghostscript/5.50/doc/DLL.htm
share/ghostscript/5.50/doc/Devices.htm
share/ghostscript/5.50/doc/Drivers.htm
share/ghostscript/5.50/doc/Fonts.htm
share/ghostscript/5.50/doc/Helpers.htm
share/ghostscript/5.50/doc/Hershey.htm
share/ghostscript/5.50/doc/History1.htm
share/ghostscript/5.50/doc/History2.htm
share/ghostscript/5.50/doc/History3.htm
share/ghostscript/5.50/doc/History4.htm
share/ghostscript/5.50/doc/Htmstyle.htm
share/ghostscript/5.50/doc/Humor.htm
share/ghostscript/5.50/doc/Install.htm
share/ghostscript/5.50/doc/Language.htm
share/ghostscript/5.50/doc/Lib.htm
share/ghostscript/5.50/doc/Make.htm
share/ghostscript/5.50/doc/New-user.htm
share/ghostscript/5.50/doc/News.htm
share/ghostscript/5.50/doc/Ps2pdf.htm
share/ghostscript/5.50/doc/Psfiles.htm
share/ghostscript/5.50/doc/Readme.htm
share/ghostscript/5.50/doc/Source.htm
share/ghostscript/5.50/doc/Unix-lpr.htm
share/ghostscript/5.50/doc/Use.htm
share/ghostscript/5.50/doc/Xfonts.htm
share/ghostscript/5.50/doc/license.hp8
share/ghostscript/5.50/doc/ps2epsi.txt
share/ghostscript/5.50/doc/readme.hp8
share/ghostscript/5.50/docie.ps
share/ghostscript/5.50/examples/alphabet.ps
share/ghostscript/5.50/examples/cheq.ps
share/ghostscript/5.50/examples/chess.ps
share/ghostscript/5.50/examples/colorcir.ps
share/ghostscript/5.50/examples/escher.ps
share/ghostscript/5.50/examples/golfer.ps
share/ghostscript/5.50/examples/grayalph.ps
share/ghostscript/5.50/examples/ridt91.eps
share/ghostscript/5.50/examples/snowflak.ps
share/ghostscript/5.50/examples/tiger.ps
share/ghostscript/5.50/examples/vasarely.ps
share/ghostscript/5.50/examples/waterfal.ps
share/ghostscript/5.50/font2c.ps
share/ghostscript/5.50/font2pcl.ps
share/ghostscript/5.50/gs_btokn.ps
share/ghostscript/5.50/gs_ccfnt.ps
share/ghostscript/5.50/gs_cff.ps
share/ghostscript/5.50/gs_cidfn.ps
share/ghostscript/5.50/gs_cmap.ps
share/ghostscript/5.50/gs_dbt_e.ps
share/ghostscript/5.50/gs_diskf.ps
share/ghostscript/5.50/gs_dpnxt.ps
share/ghostscript/5.50/gs_dps.ps
share/ghostscript/5.50/gs_dps1.ps
share/ghostscript/5.50/gs_dps2.ps
share/ghostscript/5.50/gs_epsf.ps
share/ghostscript/5.50/gs_fonts.ps
share/ghostscript/5.50/gs_init.ps
share/ghostscript/5.50/gs_iso_e.ps
share/ghostscript/5.50/gs_kanji.ps
share/ghostscript/5.50/gs_ksb_e.ps
share/ghostscript/5.50/gs_l2img.ps
share/ghostscript/5.50/gs_lev2.ps
share/ghostscript/5.50/gs_ll3.ps
share/ghostscript/5.50/gs_mex_e.ps
share/ghostscript/5.50/gs_mro_e.ps
share/ghostscript/5.50/gs_pdf_e.ps
share/ghostscript/5.50/gs_pdfwr.ps
share/ghostscript/5.50/gs_pfile.ps
share/ghostscript/5.50/gs_res.ps
share/ghostscript/5.50/gs_setpd.ps
share/ghostscript/5.50/gs_statd.ps
share/ghostscript/5.50/gs_std_e.ps
share/ghostscript/5.50/gs_sym_e.ps
share/ghostscript/5.50/gs_ttf.ps
share/ghostscript/5.50/gs_typ32.ps
share/ghostscript/5.50/gs_typ42.ps
share/ghostscript/5.50/gs_type1.ps
share/ghostscript/5.50/gs_wan_e.ps
share/ghostscript/5.50/gslp.ps
share/ghostscript/5.50/impath.ps
share/ghostscript/5.50/landscap.ps
share/ghostscript/5.50/level1.ps
share/ghostscript/5.50/lines.ps
share/ghostscript/5.50/markhint.ps
share/ghostscript/5.50/markpath.ps
share/ghostscript/5.50/necp2x.upp
share/ghostscript/5.50/necp2x6.upp
share/ghostscript/5.50/packfile.ps
share/ghostscript/5.50/pcharstr.ps
share/ghostscript/5.50/pdf2dsc.ps
share/ghostscript/5.50/pdf_base.ps
share/ghostscript/5.50/pdf_draw.ps
share/ghostscript/5.50/pdf_font.ps
share/ghostscript/5.50/pdf_main.ps
share/ghostscript/5.50/pdf_ops.ps
share/ghostscript/5.50/pdf_sec.ps
share/ghostscript/5.50/pf2afm.ps
share/ghostscript/5.50/ppath.ps
share/ghostscript/5.50/prfont.ps
share/ghostscript/5.50/printafm.ps
share/ghostscript/5.50/ps2ai.ps
share/ghostscript/5.50/ps2ascii.ps
share/ghostscript/5.50/ps2epsi.ps
share/ghostscript/5.50/quit.ps
share/ghostscript/5.50/ras1.upp
share/ghostscript/5.50/ras24.upp
share/ghostscript/5.50/ras3.upp
share/ghostscript/5.50/ras32.upp
share/ghostscript/5.50/ras4.upp
share/ghostscript/5.50/ras8m.upp
share/ghostscript/5.50/showchar.ps
share/ghostscript/5.50/showpage.ps
share/ghostscript/5.50/stc.upp
share/ghostscript/5.50/stc1520h.upp
share/ghostscript/5.50/stc2.upp
share/ghostscript/5.50/stc2_h.upp
share/ghostscript/5.50/stc2s_h.upp
share/ghostscript/5.50/stc500p.upp
share/ghostscript/5.50/stc500ph.upp
share/ghostscript/5.50/stc600ih.upp
share/ghostscript/5.50/stc600p.upp
share/ghostscript/5.50/stc600pl.upp
share/ghostscript/5.50/stc800ih.upp
share/ghostscript/5.50/stc800p.upp
share/ghostscript/5.50/stc800pl.upp
share/ghostscript/5.50/stc_h.upp
share/ghostscript/5.50/stc_l.upp
share/ghostscript/5.50/stcany.upp
share/ghostscript/5.50/stcinfo.ps
share/ghostscript/5.50/stcolor.ps
share/ghostscript/5.50/traceimg.ps
share/ghostscript/5.50/traceop.ps
share/ghostscript/5.50/type1enc.ps
share/ghostscript/5.50/type1ops.ps
share/ghostscript/5.50/uninfo.ps
share/ghostscript/5.50/unprot.ps
share/ghostscript/5.50/viewcmyk.ps
share/ghostscript/5.50/viewgif.ps
share/ghostscript/5.50/viewjpeg.ps
share/ghostscript/5.50/viewpbm.ps
share/ghostscript/5.50/viewpcx.ps
share/ghostscript/5.50/viewps2a.ps
share/ghostscript/5.50/wftopfa.ps
share/ghostscript/5.50/winmaps.ps
share/ghostscript/5.50/wrfont.ps
share/ghostscript/5.50/zeroline.ps
share/ghostscript/fonts/a010013l.afm
share/ghostscript/fonts/a010013l.pfb
share/ghostscript/fonts/a010013l.pfm
share/ghostscript/fonts/a010015l.afm
share/ghostscript/fonts/a010015l.pfb
share/ghostscript/fonts/a010015l.pfm
share/ghostscript/fonts/a010033l.afm
share/ghostscript/fonts/a010033l.pfb
share/ghostscript/fonts/a010033l.pfm
share/ghostscript/fonts/a010035l.afm
share/ghostscript/fonts/a010035l.pfb
share/ghostscript/fonts/a010035l.pfm
share/ghostscript/fonts/b018012l.afm
share/ghostscript/fonts/b018012l.pfb
share/ghostscript/fonts/b018012l.pfm
share/ghostscript/fonts/b018015l.afm
share/ghostscript/fonts/b018015l.pfb
share/ghostscript/fonts/b018015l.pfm
share/ghostscript/fonts/b018032l.afm
share/ghostscript/fonts/b018032l.pfb
share/ghostscript/fonts/b018032l.pfm
share/ghostscript/fonts/b018035l.afm
share/ghostscript/fonts/b018035l.pfb
share/ghostscript/fonts/b018035l.pfm
share/ghostscript/fonts/c059013l.afm
share/ghostscript/fonts/c059013l.pfb
share/ghostscript/fonts/c059013l.pfm
share/ghostscript/fonts/c059016l.afm
share/ghostscript/fonts/c059016l.pfb
share/ghostscript/fonts/c059016l.pfm
share/ghostscript/fonts/c059033l.afm
share/ghostscript/fonts/c059033l.pfb
share/ghostscript/fonts/c059033l.pfm
share/ghostscript/fonts/c059036l.afm
share/ghostscript/fonts/c059036l.pfb
share/ghostscript/fonts/c059036l.pfm
share/ghostscript/fonts/d050000l.afm
share/ghostscript/fonts/d050000l.pfb
share/ghostscript/fonts/d050000l.pfm
share/ghostscript/fonts/fonts.dir
share/ghostscript/fonts/fonts.scale
share/ghostscript/fonts/fonts/bchb.afm
share/ghostscript/fonts/fonts/bchb.pfa
share/ghostscript/fonts/fonts/bchbi.afm
share/ghostscript/fonts/fonts/bchbi.pfa
share/ghostscript/fonts/fonts/bchr.afm
share/ghostscript/fonts/fonts/bchr.pfa
share/ghostscript/fonts/fonts/bchri.afm
share/ghostscript/fonts/fonts/bchri.pfa
share/ghostscript/fonts/fonts/fcyr.afm
share/ghostscript/fonts/fonts/fcyr.gsf
share/ghostscript/fonts/fonts/fcyri.afm
share/ghostscript/fonts/fonts/fcyri.gsf
share/ghostscript/fonts/fonts/fhirw.gsf
share/ghostscript/fonts/fonts/fhirw.pfm
share/ghostscript/fonts/fonts/fkarw.gsf
share/ghostscript/fonts/fonts/fkarw.pfm
share/ghostscript/fonts/fonts/hrger.pfa
share/ghostscript/fonts/fonts/hrgerb.gsf
share/ghostscript/fonts/fonts/hrgerd.gsf
share/ghostscript/fonts/fonts/hrgero.gsf
share/ghostscript/fonts/fonts/hrgkc.gsf
share/ghostscript/fonts/fonts/hrgks.gsf
share/ghostscript/fonts/fonts/hrgrr.pfa
share/ghostscript/fonts/fonts/hrgrrb.gsf
share/ghostscript/fonts/fonts/hrgrro.gsf
share/ghostscript/fonts/fonts/hritr.pfa
share/ghostscript/fonts/fonts/hritrb.gsf
share/ghostscript/fonts/fonts/hritro.gsf
share/ghostscript/fonts/fonts/hrpld.pfa
share/ghostscript/fonts/fonts/hrpldb.gsf
share/ghostscript/fonts/fonts/hrpldbi.gsf
share/ghostscript/fonts/fonts/hrpldi.pfa
share/ghostscript/fonts/fonts/hrplr.gsf
share/ghostscript/fonts/fonts/hrplrb.gsf
share/ghostscript/fonts/fonts/hrplrbo.gsf
share/ghostscript/fonts/fonts/hrplro.gsf
share/ghostscript/fonts/fonts/hrpls.gsf
share/ghostscript/fonts/fonts/hrplsb.gsf
share/ghostscript/fonts/fonts/hrplsbo.gsf
share/ghostscript/fonts/fonts/hrplso.gsf
share/ghostscript/fonts/fonts/hrplt.pfa
share/ghostscript/fonts/fonts/hrpltb.gsf
share/ghostscript/fonts/fonts/hrpltbi.gsf
share/ghostscript/fonts/fonts/hrplti.pfa
share/ghostscript/fonts/fonts/hrscc.pfa
share/ghostscript/fonts/fonts/hrsccb.gsf
share/ghostscript/fonts/fonts/hrscco.gsf
share/ghostscript/fonts/fonts/hrscs.pfa
share/ghostscript/fonts/fonts/hrscsb.gsf
share/ghostscript/fonts/fonts/hrscso.gsf
share/ghostscript/fonts/fonts/hrsyr.gsf
share/ghostscript/fonts/fonts/putb.pfa
share/ghostscript/fonts/fonts/putbi.pfa
share/ghostscript/fonts/fonts/putr.pfa
share/ghostscript/fonts/fonts/putri.pfa
share/ghostscript/fonts/fonts/u003043t.afm
share/ghostscript/fonts/fonts/u003043t.gsf
share/ghostscript/fonts/fonts/u003043t.pfm
share/ghostscript/fonts/fonts/u004006t.afm
share/ghostscript/fonts/fonts/u004006t.gsf
share/ghostscript/fonts/fonts/u004006t.pfm
share/ghostscript/fonts/n019003l.afm
share/ghostscript/fonts/n019003l.pfb
share/ghostscript/fonts/n019003l.pfm
share/ghostscript/fonts/n019004l.afm
share/ghostscript/fonts/n019004l.pfb
share/ghostscript/fonts/n019004l.pfm
share/ghostscript/fonts/n019023l.afm
share/ghostscript/fonts/n019023l.pfb
share/ghostscript/fonts/n019023l.pfm
share/ghostscript/fonts/n019024l.afm
share/ghostscript/fonts/n019024l.pfb
share/ghostscript/fonts/n019024l.pfm
share/ghostscript/fonts/n019043l.afm
share/ghostscript/fonts/n019043l.pfb
share/ghostscript/fonts/n019043l.pfm
share/ghostscript/fonts/n019044l.afm
share/ghostscript/fonts/n019044l.pfb
share/ghostscript/fonts/n019044l.pfm
share/ghostscript/fonts/n019063l.afm
share/ghostscript/fonts/n019063l.pfb
share/ghostscript/fonts/n019063l.pfm
share/ghostscript/fonts/n019064l.afm
share/ghostscript/fonts/n019064l.pfb
share/ghostscript/fonts/n019064l.pfm
share/ghostscript/fonts/n021003l.afm
share/ghostscript/fonts/n021003l.pfb
share/ghostscript/fonts/n021003l.pfm
share/ghostscript/fonts/n021004l.afm
share/ghostscript/fonts/n021004l.pfb
share/ghostscript/fonts/n021004l.pfm
share/ghostscript/fonts/n021023l.afm
share/ghostscript/fonts/n021023l.pfb
share/ghostscript/fonts/n021023l.pfm
share/ghostscript/fonts/n021024l.afm
share/ghostscript/fonts/n021024l.pfb
share/ghostscript/fonts/n021024l.pfm
share/ghostscript/fonts/n022003l.afm
share/ghostscript/fonts/n022003l.pfb
share/ghostscript/fonts/n022003l.pfm
share/ghostscript/fonts/n022004l.afm
share/ghostscript/fonts/n022004l.pfb
share/ghostscript/fonts/n022004l.pfm
share/ghostscript/fonts/n022023l.afm
share/ghostscript/fonts/n022023l.pfb
share/ghostscript/fonts/n022023l.pfm
share/ghostscript/fonts/n022024l.afm
share/ghostscript/fonts/n022024l.pfb
share/ghostscript/fonts/n022024l.pfm
share/ghostscript/fonts/p052003l.afm
share/ghostscript/fonts/p052003l.pfb
share/ghostscript/fonts/p052003l.pfm
share/ghostscript/fonts/p052004l.afm
share/ghostscript/fonts/p052004l.pfb
share/ghostscript/fonts/p052004l.pfm
share/ghostscript/fonts/p052023l.afm
share/ghostscript/fonts/p052023l.pfb
share/ghostscript/fonts/p052023l.pfm
share/ghostscript/fonts/p052024l.afm
share/ghostscript/fonts/p052024l.pfb
share/ghostscript/fonts/p052024l.pfm
share/ghostscript/fonts/s050000l.afm
share/ghostscript/fonts/s050000l.pfb
share/ghostscript/fonts/s050000l.pfm
share/ghostscript/fonts/z003034l.afm
share/ghostscript/fonts/z003034l.pfb
share/ghostscript/fonts/z003034l.pfm
@dirrm share/ghostscript/fonts/fonts
@dirrm share/ghostscript/fonts
@dirrm share/ghostscript/5.50/examples
@dirrm share/ghostscript/5.50/doc
@dirrm share/ghostscript/5.50
@dirrm share/ghostscript