FreeBSD-hardware mailinglist:
From: Jin Guojun (ITG staff) <jin@george.lbl.gov> BJC-240 in color mode is supported as well by the bjc600 and bjc800 driver. BJC-240 b&w is supported by bj200. Added this to configure dialogue. From: Luigi Rizzo <luigi@labinfo.iet.unipi.it>: Support for encrypted PDF files by replacing pdf_sec.ps with the free and legal version from: http://www.ozemail.com.au/~geoffk/pdfencrypt/pdf_sec.ps Deceided to update the pathnames of font files for easier maintenance, because they revamped their ftp archive structure to "5.10/files". Submitted by: various people
This commit is contained in:
parent
34f1d5d468
commit
754dd4220d
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=9434
23 changed files with 133 additions and 85 deletions
|
@ -3,16 +3,16 @@
|
|||
# Date created: Tue Jun 10 21:58:54 CEST 1997
|
||||
# Whom: Andreas Klemm <andreas@klemm.gtn.com>
|
||||
#
|
||||
# $Id: Makefile,v 1.14 1997/10/13 11:22:43 asami Exp $
|
||||
# $Id: Makefile,v 1.15 1998/01/03 08:34:31 andreas Exp $
|
||||
#
|
||||
|
||||
DISTNAME= ghostscript-5.10
|
||||
CATEGORIES= print
|
||||
MASTER_SITES= ftp://ftp.cs.wisc.edu/ghost/aladdin/gs510/ \
|
||||
ftp://bonk.ethz.ch/gs-driver-distrib/
|
||||
ftp://bonk.ethz.ch/gs-driver-distrib/ \
|
||||
http://www.ozemail.com.au/~geoffk/pdfencrypt/
|
||||
DISTFILES= ${GS_SOURCES} ${GS_FONTS_STD} ${GS_FONTS_OTHER} \
|
||||
${HP850_DRV}
|
||||
|
||||
${HP850_DRV} ${DECRYPT_PDF}
|
||||
MAINTAINER= andreas@FreeBSD.ORG
|
||||
|
||||
BUILD_DEPENDS= /nonexistent:${PORTSDIR}/graphics/jpeg:extract \
|
||||
|
@ -32,12 +32,15 @@ GS_SOURCES+= ghostscript-5.10gnu.tar.gz
|
|||
# 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= ghostscript-fonts-std-4.0.tar.gz
|
||||
GS_FONTS_OTHER= ghostscript-fonts-other-5.03.tar.gz
|
||||
GS_FONTS_STD= ghostscript-fonts-std-5.10.tar.gz
|
||||
GS_FONTS_OTHER= ghostscript-fonts-other-5.10.tar.gz
|
||||
|
||||
# Additional driver HP 850, see http://bonk.ethz.ch/hp850/hp850.html
|
||||
HP850_DRV= hp850.zip
|
||||
|
||||
# replacement for pdf_sec.ps, that allows you to read encrypted PDF files
|
||||
DECRYPT_PDF= pdf_sec.ps
|
||||
|
||||
.if defined(A4)
|
||||
CFLAGS+= -DA4
|
||||
.endif
|
||||
|
@ -78,5 +81,7 @@ pre-install:
|
|||
|
||||
post-install:
|
||||
strip ${PREFIX}/bin/gs
|
||||
${INSTALL_DATA} ${DISTDIR}/${DECRYPT_PDF} \
|
||||
${PREFIX}/share/ghostscript/5.10
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
MD5 (ghostscript-5.10.tar.gz) = 47fbc4f6402c98374c61bf3e64e59e9a
|
||||
MD5 (ghostscript-5.10gnu.tar.gz) = 6706117129a5f63dff3a5a2bf4258630
|
||||
MD5 (ghostscript-fonts-std-4.0.tar.gz) = 1e0fe2149affd80deaaae144227049b9
|
||||
MD5 (ghostscript-fonts-other-5.03.tar.gz) = 703bcc5592f4b4644cda454bcc45c7d6
|
||||
MD5 (ghostscript-fonts-std-5.10.tar.gz) = 1e0fe2149affd80deaaae144227049b9
|
||||
MD5 (ghostscript-fonts-other-5.10.tar.gz) = 703bcc5592f4b4644cda454bcc45c7d6
|
||||
MD5 (hp850.zip) = 9d8d59eb8da9ec394d7aeb1560ca8d40
|
||||
MD5 (pdf_sec.ps) = 33b855032c90a0e0e6d5a460be82c749
|
||||
|
|
6
print/ghostscript-afpl/scripts/configure
vendored
6
print/ghostscript-afpl/scripts/configure
vendored
|
@ -21,9 +21,9 @@ Have fun with this new configuration style ! -andreas \n\n\
|
|||
"ap3250" "Epson AP3250" ON \
|
||||
"appledmp" "Apple Dot Matrix Printer / Imagewriter" ON \
|
||||
"bj10e" "Canon BubbleJet BJ10e" ON \
|
||||
"bj200" "Canon BubbleJet BJ200" ON \
|
||||
"bjc600" "Canon Color BubbleJet BJC-600/4000/70+Apple StyleWriter 2x00" ON \
|
||||
"bjc800" "Canon Color BubbleJet BJC-800" ON \
|
||||
"bj200" "Canon BubbleJet BJ200 and BJC-240(b&w)" ON \
|
||||
"bjc600" "Canon Color BubbleJet BJC-240/600/4000/70+Apple StyleWriter 2x00" ON \
|
||||
"bjc800" "Canon Color BubbleJet BJC-240/800" ON \
|
||||
"ccr" "CalComp Raster format" ON \
|
||||
"cdeskjet" "HP DeskJet 500C, 1 bit/pixel color" ON \
|
||||
"cdjcolor" "HP DeskJet 500C/540C, 24 bit/pixel color + FS dithering" ON \
|
||||
|
|
|
@ -3,16 +3,16 @@
|
|||
# Date created: Tue Jun 10 21:58:54 CEST 1997
|
||||
# Whom: Andreas Klemm <andreas@klemm.gtn.com>
|
||||
#
|
||||
# $Id: Makefile,v 1.14 1997/10/13 11:22:43 asami Exp $
|
||||
# $Id: Makefile,v 1.15 1998/01/03 08:34:31 andreas Exp $
|
||||
#
|
||||
|
||||
DISTNAME= ghostscript-5.10
|
||||
CATEGORIES= print
|
||||
MASTER_SITES= ftp://ftp.cs.wisc.edu/ghost/aladdin/gs510/ \
|
||||
ftp://bonk.ethz.ch/gs-driver-distrib/
|
||||
ftp://bonk.ethz.ch/gs-driver-distrib/ \
|
||||
http://www.ozemail.com.au/~geoffk/pdfencrypt/
|
||||
DISTFILES= ${GS_SOURCES} ${GS_FONTS_STD} ${GS_FONTS_OTHER} \
|
||||
${HP850_DRV}
|
||||
|
||||
${HP850_DRV} ${DECRYPT_PDF}
|
||||
MAINTAINER= andreas@FreeBSD.ORG
|
||||
|
||||
BUILD_DEPENDS= /nonexistent:${PORTSDIR}/graphics/jpeg:extract \
|
||||
|
@ -32,12 +32,15 @@ GS_SOURCES+= ghostscript-5.10gnu.tar.gz
|
|||
# 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= ghostscript-fonts-std-4.0.tar.gz
|
||||
GS_FONTS_OTHER= ghostscript-fonts-other-5.03.tar.gz
|
||||
GS_FONTS_STD= ghostscript-fonts-std-5.10.tar.gz
|
||||
GS_FONTS_OTHER= ghostscript-fonts-other-5.10.tar.gz
|
||||
|
||||
# Additional driver HP 850, see http://bonk.ethz.ch/hp850/hp850.html
|
||||
HP850_DRV= hp850.zip
|
||||
|
||||
# replacement for pdf_sec.ps, that allows you to read encrypted PDF files
|
||||
DECRYPT_PDF= pdf_sec.ps
|
||||
|
||||
.if defined(A4)
|
||||
CFLAGS+= -DA4
|
||||
.endif
|
||||
|
@ -78,5 +81,7 @@ pre-install:
|
|||
|
||||
post-install:
|
||||
strip ${PREFIX}/bin/gs
|
||||
${INSTALL_DATA} ${DISTDIR}/${DECRYPT_PDF} \
|
||||
${PREFIX}/share/ghostscript/5.10
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
MD5 (ghostscript-5.10.tar.gz) = 47fbc4f6402c98374c61bf3e64e59e9a
|
||||
MD5 (ghostscript-5.10gnu.tar.gz) = 6706117129a5f63dff3a5a2bf4258630
|
||||
MD5 (ghostscript-fonts-std-4.0.tar.gz) = 1e0fe2149affd80deaaae144227049b9
|
||||
MD5 (ghostscript-fonts-other-5.03.tar.gz) = 703bcc5592f4b4644cda454bcc45c7d6
|
||||
MD5 (ghostscript-fonts-std-5.10.tar.gz) = 1e0fe2149affd80deaaae144227049b9
|
||||
MD5 (ghostscript-fonts-other-5.10.tar.gz) = 703bcc5592f4b4644cda454bcc45c7d6
|
||||
MD5 (hp850.zip) = 9d8d59eb8da9ec394d7aeb1560ca8d40
|
||||
MD5 (pdf_sec.ps) = 33b855032c90a0e0e6d5a460be82c749
|
||||
|
|
6
print/ghostscript-gnu/scripts/configure
vendored
6
print/ghostscript-gnu/scripts/configure
vendored
|
@ -21,9 +21,9 @@ Have fun with this new configuration style ! -andreas \n\n\
|
|||
"ap3250" "Epson AP3250" ON \
|
||||
"appledmp" "Apple Dot Matrix Printer / Imagewriter" ON \
|
||||
"bj10e" "Canon BubbleJet BJ10e" ON \
|
||||
"bj200" "Canon BubbleJet BJ200" ON \
|
||||
"bjc600" "Canon Color BubbleJet BJC-600/4000/70+Apple StyleWriter 2x00" ON \
|
||||
"bjc800" "Canon Color BubbleJet BJC-800" ON \
|
||||
"bj200" "Canon BubbleJet BJ200 and BJC-240(b&w)" ON \
|
||||
"bjc600" "Canon Color BubbleJet BJC-240/600/4000/70+Apple StyleWriter 2x00" ON \
|
||||
"bjc800" "Canon Color BubbleJet BJC-240/800" ON \
|
||||
"ccr" "CalComp Raster format" ON \
|
||||
"cdeskjet" "HP DeskJet 500C, 1 bit/pixel color" ON \
|
||||
"cdjcolor" "HP DeskJet 500C/540C, 24 bit/pixel color + FS dithering" ON \
|
||||
|
|
|
@ -3,16 +3,16 @@
|
|||
# Date created: Tue Jun 10 21:58:54 CEST 1997
|
||||
# Whom: Andreas Klemm <andreas@klemm.gtn.com>
|
||||
#
|
||||
# $Id: Makefile,v 1.14 1997/10/13 11:22:43 asami Exp $
|
||||
# $Id: Makefile,v 1.15 1998/01/03 08:34:31 andreas Exp $
|
||||
#
|
||||
|
||||
DISTNAME= ghostscript-5.10
|
||||
CATEGORIES= print
|
||||
MASTER_SITES= ftp://ftp.cs.wisc.edu/ghost/aladdin/gs510/ \
|
||||
ftp://bonk.ethz.ch/gs-driver-distrib/
|
||||
ftp://bonk.ethz.ch/gs-driver-distrib/ \
|
||||
http://www.ozemail.com.au/~geoffk/pdfencrypt/
|
||||
DISTFILES= ${GS_SOURCES} ${GS_FONTS_STD} ${GS_FONTS_OTHER} \
|
||||
${HP850_DRV}
|
||||
|
||||
${HP850_DRV} ${DECRYPT_PDF}
|
||||
MAINTAINER= andreas@FreeBSD.ORG
|
||||
|
||||
BUILD_DEPENDS= /nonexistent:${PORTSDIR}/graphics/jpeg:extract \
|
||||
|
@ -32,12 +32,15 @@ GS_SOURCES+= ghostscript-5.10gnu.tar.gz
|
|||
# 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= ghostscript-fonts-std-4.0.tar.gz
|
||||
GS_FONTS_OTHER= ghostscript-fonts-other-5.03.tar.gz
|
||||
GS_FONTS_STD= ghostscript-fonts-std-5.10.tar.gz
|
||||
GS_FONTS_OTHER= ghostscript-fonts-other-5.10.tar.gz
|
||||
|
||||
# Additional driver HP 850, see http://bonk.ethz.ch/hp850/hp850.html
|
||||
HP850_DRV= hp850.zip
|
||||
|
||||
# replacement for pdf_sec.ps, that allows you to read encrypted PDF files
|
||||
DECRYPT_PDF= pdf_sec.ps
|
||||
|
||||
.if defined(A4)
|
||||
CFLAGS+= -DA4
|
||||
.endif
|
||||
|
@ -78,5 +81,7 @@ pre-install:
|
|||
|
||||
post-install:
|
||||
strip ${PREFIX}/bin/gs
|
||||
${INSTALL_DATA} ${DISTDIR}/${DECRYPT_PDF} \
|
||||
${PREFIX}/share/ghostscript/5.10
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
MD5 (ghostscript-5.10.tar.gz) = 47fbc4f6402c98374c61bf3e64e59e9a
|
||||
MD5 (ghostscript-5.10gnu.tar.gz) = 6706117129a5f63dff3a5a2bf4258630
|
||||
MD5 (ghostscript-fonts-std-4.0.tar.gz) = 1e0fe2149affd80deaaae144227049b9
|
||||
MD5 (ghostscript-fonts-other-5.03.tar.gz) = 703bcc5592f4b4644cda454bcc45c7d6
|
||||
MD5 (ghostscript-fonts-std-5.10.tar.gz) = 1e0fe2149affd80deaaae144227049b9
|
||||
MD5 (ghostscript-fonts-other-5.10.tar.gz) = 703bcc5592f4b4644cda454bcc45c7d6
|
||||
MD5 (hp850.zip) = 9d8d59eb8da9ec394d7aeb1560ca8d40
|
||||
MD5 (pdf_sec.ps) = 33b855032c90a0e0e6d5a460be82c749
|
||||
|
|
6
print/ghostscript-gpl/scripts/configure
vendored
6
print/ghostscript-gpl/scripts/configure
vendored
|
@ -21,9 +21,9 @@ Have fun with this new configuration style ! -andreas \n\n\
|
|||
"ap3250" "Epson AP3250" ON \
|
||||
"appledmp" "Apple Dot Matrix Printer / Imagewriter" ON \
|
||||
"bj10e" "Canon BubbleJet BJ10e" ON \
|
||||
"bj200" "Canon BubbleJet BJ200" ON \
|
||||
"bjc600" "Canon Color BubbleJet BJC-600/4000/70+Apple StyleWriter 2x00" ON \
|
||||
"bjc800" "Canon Color BubbleJet BJC-800" ON \
|
||||
"bj200" "Canon BubbleJet BJ200 and BJC-240(b&w)" ON \
|
||||
"bjc600" "Canon Color BubbleJet BJC-240/600/4000/70+Apple StyleWriter 2x00" ON \
|
||||
"bjc800" "Canon Color BubbleJet BJC-240/800" ON \
|
||||
"ccr" "CalComp Raster format" ON \
|
||||
"cdeskjet" "HP DeskJet 500C, 1 bit/pixel color" ON \
|
||||
"cdjcolor" "HP DeskJet 500C/540C, 24 bit/pixel color + FS dithering" ON \
|
||||
|
|
|
@ -3,16 +3,16 @@
|
|||
# Date created: Tue Jun 10 21:58:54 CEST 1997
|
||||
# Whom: Andreas Klemm <andreas@klemm.gtn.com>
|
||||
#
|
||||
# $Id: Makefile,v 1.14 1997/10/13 11:22:43 asami Exp $
|
||||
# $Id: Makefile,v 1.15 1998/01/03 08:34:31 andreas Exp $
|
||||
#
|
||||
|
||||
DISTNAME= ghostscript-5.10
|
||||
CATEGORIES= print
|
||||
MASTER_SITES= ftp://ftp.cs.wisc.edu/ghost/aladdin/gs510/ \
|
||||
ftp://bonk.ethz.ch/gs-driver-distrib/
|
||||
ftp://bonk.ethz.ch/gs-driver-distrib/ \
|
||||
http://www.ozemail.com.au/~geoffk/pdfencrypt/
|
||||
DISTFILES= ${GS_SOURCES} ${GS_FONTS_STD} ${GS_FONTS_OTHER} \
|
||||
${HP850_DRV}
|
||||
|
||||
${HP850_DRV} ${DECRYPT_PDF}
|
||||
MAINTAINER= andreas@FreeBSD.ORG
|
||||
|
||||
BUILD_DEPENDS= /nonexistent:${PORTSDIR}/graphics/jpeg:extract \
|
||||
|
@ -32,12 +32,15 @@ GS_SOURCES+= ghostscript-5.10gnu.tar.gz
|
|||
# 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= ghostscript-fonts-std-4.0.tar.gz
|
||||
GS_FONTS_OTHER= ghostscript-fonts-other-5.03.tar.gz
|
||||
GS_FONTS_STD= ghostscript-fonts-std-5.10.tar.gz
|
||||
GS_FONTS_OTHER= ghostscript-fonts-other-5.10.tar.gz
|
||||
|
||||
# Additional driver HP 850, see http://bonk.ethz.ch/hp850/hp850.html
|
||||
HP850_DRV= hp850.zip
|
||||
|
||||
# replacement for pdf_sec.ps, that allows you to read encrypted PDF files
|
||||
DECRYPT_PDF= pdf_sec.ps
|
||||
|
||||
.if defined(A4)
|
||||
CFLAGS+= -DA4
|
||||
.endif
|
||||
|
@ -78,5 +81,7 @@ pre-install:
|
|||
|
||||
post-install:
|
||||
strip ${PREFIX}/bin/gs
|
||||
${INSTALL_DATA} ${DISTDIR}/${DECRYPT_PDF} \
|
||||
${PREFIX}/share/ghostscript/5.10
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
MD5 (ghostscript-5.10.tar.gz) = 47fbc4f6402c98374c61bf3e64e59e9a
|
||||
MD5 (ghostscript-5.10gnu.tar.gz) = 6706117129a5f63dff3a5a2bf4258630
|
||||
MD5 (ghostscript-fonts-std-4.0.tar.gz) = 1e0fe2149affd80deaaae144227049b9
|
||||
MD5 (ghostscript-fonts-other-5.03.tar.gz) = 703bcc5592f4b4644cda454bcc45c7d6
|
||||
MD5 (ghostscript-fonts-std-5.10.tar.gz) = 1e0fe2149affd80deaaae144227049b9
|
||||
MD5 (ghostscript-fonts-other-5.10.tar.gz) = 703bcc5592f4b4644cda454bcc45c7d6
|
||||
MD5 (hp850.zip) = 9d8d59eb8da9ec394d7aeb1560ca8d40
|
||||
MD5 (pdf_sec.ps) = 33b855032c90a0e0e6d5a460be82c749
|
||||
|
|
|
@ -3,16 +3,16 @@
|
|||
# Date created: Tue Jun 10 21:58:54 CEST 1997
|
||||
# Whom: Andreas Klemm <andreas@klemm.gtn.com>
|
||||
#
|
||||
# $Id: Makefile,v 1.14 1997/10/13 11:22:43 asami Exp $
|
||||
# $Id: Makefile,v 1.15 1998/01/03 08:34:31 andreas Exp $
|
||||
#
|
||||
|
||||
DISTNAME= ghostscript-5.10
|
||||
CATEGORIES= print
|
||||
MASTER_SITES= ftp://ftp.cs.wisc.edu/ghost/aladdin/gs510/ \
|
||||
ftp://bonk.ethz.ch/gs-driver-distrib/
|
||||
ftp://bonk.ethz.ch/gs-driver-distrib/ \
|
||||
http://www.ozemail.com.au/~geoffk/pdfencrypt/
|
||||
DISTFILES= ${GS_SOURCES} ${GS_FONTS_STD} ${GS_FONTS_OTHER} \
|
||||
${HP850_DRV}
|
||||
|
||||
${HP850_DRV} ${DECRYPT_PDF}
|
||||
MAINTAINER= andreas@FreeBSD.ORG
|
||||
|
||||
BUILD_DEPENDS= /nonexistent:${PORTSDIR}/graphics/jpeg:extract \
|
||||
|
@ -32,12 +32,15 @@ GS_SOURCES+= ghostscript-5.10gnu.tar.gz
|
|||
# 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= ghostscript-fonts-std-4.0.tar.gz
|
||||
GS_FONTS_OTHER= ghostscript-fonts-other-5.03.tar.gz
|
||||
GS_FONTS_STD= ghostscript-fonts-std-5.10.tar.gz
|
||||
GS_FONTS_OTHER= ghostscript-fonts-other-5.10.tar.gz
|
||||
|
||||
# Additional driver HP 850, see http://bonk.ethz.ch/hp850/hp850.html
|
||||
HP850_DRV= hp850.zip
|
||||
|
||||
# replacement for pdf_sec.ps, that allows you to read encrypted PDF files
|
||||
DECRYPT_PDF= pdf_sec.ps
|
||||
|
||||
.if defined(A4)
|
||||
CFLAGS+= -DA4
|
||||
.endif
|
||||
|
@ -78,5 +81,7 @@ pre-install:
|
|||
|
||||
post-install:
|
||||
strip ${PREFIX}/bin/gs
|
||||
${INSTALL_DATA} ${DISTDIR}/${DECRYPT_PDF} \
|
||||
${PREFIX}/share/ghostscript/5.10
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
MD5 (ghostscript-5.10.tar.gz) = 47fbc4f6402c98374c61bf3e64e59e9a
|
||||
MD5 (ghostscript-5.10gnu.tar.gz) = 6706117129a5f63dff3a5a2bf4258630
|
||||
MD5 (ghostscript-fonts-std-4.0.tar.gz) = 1e0fe2149affd80deaaae144227049b9
|
||||
MD5 (ghostscript-fonts-other-5.03.tar.gz) = 703bcc5592f4b4644cda454bcc45c7d6
|
||||
MD5 (ghostscript-fonts-std-5.10.tar.gz) = 1e0fe2149affd80deaaae144227049b9
|
||||
MD5 (ghostscript-fonts-other-5.10.tar.gz) = 703bcc5592f4b4644cda454bcc45c7d6
|
||||
MD5 (hp850.zip) = 9d8d59eb8da9ec394d7aeb1560ca8d40
|
||||
MD5 (pdf_sec.ps) = 33b855032c90a0e0e6d5a460be82c749
|
||||
|
|
6
print/ghostscript55/scripts/configure
vendored
6
print/ghostscript55/scripts/configure
vendored
|
@ -21,9 +21,9 @@ Have fun with this new configuration style ! -andreas \n\n\
|
|||
"ap3250" "Epson AP3250" ON \
|
||||
"appledmp" "Apple Dot Matrix Printer / Imagewriter" ON \
|
||||
"bj10e" "Canon BubbleJet BJ10e" ON \
|
||||
"bj200" "Canon BubbleJet BJ200" ON \
|
||||
"bjc600" "Canon Color BubbleJet BJC-600/4000/70+Apple StyleWriter 2x00" ON \
|
||||
"bjc800" "Canon Color BubbleJet BJC-800" ON \
|
||||
"bj200" "Canon BubbleJet BJ200 and BJC-240(b&w)" ON \
|
||||
"bjc600" "Canon Color BubbleJet BJC-240/600/4000/70+Apple StyleWriter 2x00" ON \
|
||||
"bjc800" "Canon Color BubbleJet BJC-240/800" ON \
|
||||
"ccr" "CalComp Raster format" ON \
|
||||
"cdeskjet" "HP DeskJet 500C, 1 bit/pixel color" ON \
|
||||
"cdjcolor" "HP DeskJet 500C/540C, 24 bit/pixel color + FS dithering" ON \
|
||||
|
|
|
@ -3,16 +3,16 @@
|
|||
# Date created: Tue Jun 10 21:58:54 CEST 1997
|
||||
# Whom: Andreas Klemm <andreas@klemm.gtn.com>
|
||||
#
|
||||
# $Id: Makefile,v 1.14 1997/10/13 11:22:43 asami Exp $
|
||||
# $Id: Makefile,v 1.15 1998/01/03 08:34:31 andreas Exp $
|
||||
#
|
||||
|
||||
DISTNAME= ghostscript-5.10
|
||||
CATEGORIES= print
|
||||
MASTER_SITES= ftp://ftp.cs.wisc.edu/ghost/aladdin/gs510/ \
|
||||
ftp://bonk.ethz.ch/gs-driver-distrib/
|
||||
ftp://bonk.ethz.ch/gs-driver-distrib/ \
|
||||
http://www.ozemail.com.au/~geoffk/pdfencrypt/
|
||||
DISTFILES= ${GS_SOURCES} ${GS_FONTS_STD} ${GS_FONTS_OTHER} \
|
||||
${HP850_DRV}
|
||||
|
||||
${HP850_DRV} ${DECRYPT_PDF}
|
||||
MAINTAINER= andreas@FreeBSD.ORG
|
||||
|
||||
BUILD_DEPENDS= /nonexistent:${PORTSDIR}/graphics/jpeg:extract \
|
||||
|
@ -32,12 +32,15 @@ GS_SOURCES+= ghostscript-5.10gnu.tar.gz
|
|||
# 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= ghostscript-fonts-std-4.0.tar.gz
|
||||
GS_FONTS_OTHER= ghostscript-fonts-other-5.03.tar.gz
|
||||
GS_FONTS_STD= ghostscript-fonts-std-5.10.tar.gz
|
||||
GS_FONTS_OTHER= ghostscript-fonts-other-5.10.tar.gz
|
||||
|
||||
# Additional driver HP 850, see http://bonk.ethz.ch/hp850/hp850.html
|
||||
HP850_DRV= hp850.zip
|
||||
|
||||
# replacement for pdf_sec.ps, that allows you to read encrypted PDF files
|
||||
DECRYPT_PDF= pdf_sec.ps
|
||||
|
||||
.if defined(A4)
|
||||
CFLAGS+= -DA4
|
||||
.endif
|
||||
|
@ -78,5 +81,7 @@ pre-install:
|
|||
|
||||
post-install:
|
||||
strip ${PREFIX}/bin/gs
|
||||
${INSTALL_DATA} ${DISTDIR}/${DECRYPT_PDF} \
|
||||
${PREFIX}/share/ghostscript/5.10
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
MD5 (ghostscript-5.10.tar.gz) = 47fbc4f6402c98374c61bf3e64e59e9a
|
||||
MD5 (ghostscript-5.10gnu.tar.gz) = 6706117129a5f63dff3a5a2bf4258630
|
||||
MD5 (ghostscript-fonts-std-4.0.tar.gz) = 1e0fe2149affd80deaaae144227049b9
|
||||
MD5 (ghostscript-fonts-other-5.03.tar.gz) = 703bcc5592f4b4644cda454bcc45c7d6
|
||||
MD5 (ghostscript-fonts-std-5.10.tar.gz) = 1e0fe2149affd80deaaae144227049b9
|
||||
MD5 (ghostscript-fonts-other-5.10.tar.gz) = 703bcc5592f4b4644cda454bcc45c7d6
|
||||
MD5 (hp850.zip) = 9d8d59eb8da9ec394d7aeb1560ca8d40
|
||||
MD5 (pdf_sec.ps) = 33b855032c90a0e0e6d5a460be82c749
|
||||
|
|
6
print/ghostscript6/scripts/configure
vendored
6
print/ghostscript6/scripts/configure
vendored
|
@ -21,9 +21,9 @@ Have fun with this new configuration style ! -andreas \n\n\
|
|||
"ap3250" "Epson AP3250" ON \
|
||||
"appledmp" "Apple Dot Matrix Printer / Imagewriter" ON \
|
||||
"bj10e" "Canon BubbleJet BJ10e" ON \
|
||||
"bj200" "Canon BubbleJet BJ200" ON \
|
||||
"bjc600" "Canon Color BubbleJet BJC-600/4000/70+Apple StyleWriter 2x00" ON \
|
||||
"bjc800" "Canon Color BubbleJet BJC-800" ON \
|
||||
"bj200" "Canon BubbleJet BJ200 and BJC-240(b&w)" ON \
|
||||
"bjc600" "Canon Color BubbleJet BJC-240/600/4000/70+Apple StyleWriter 2x00" ON \
|
||||
"bjc800" "Canon Color BubbleJet BJC-240/800" ON \
|
||||
"ccr" "CalComp Raster format" ON \
|
||||
"cdeskjet" "HP DeskJet 500C, 1 bit/pixel color" ON \
|
||||
"cdjcolor" "HP DeskJet 500C/540C, 24 bit/pixel color + FS dithering" ON \
|
||||
|
|
|
@ -3,16 +3,16 @@
|
|||
# Date created: Tue Jun 10 21:58:54 CEST 1997
|
||||
# Whom: Andreas Klemm <andreas@klemm.gtn.com>
|
||||
#
|
||||
# $Id: Makefile,v 1.14 1997/10/13 11:22:43 asami Exp $
|
||||
# $Id: Makefile,v 1.15 1998/01/03 08:34:31 andreas Exp $
|
||||
#
|
||||
|
||||
DISTNAME= ghostscript-5.10
|
||||
CATEGORIES= print
|
||||
MASTER_SITES= ftp://ftp.cs.wisc.edu/ghost/aladdin/gs510/ \
|
||||
ftp://bonk.ethz.ch/gs-driver-distrib/
|
||||
ftp://bonk.ethz.ch/gs-driver-distrib/ \
|
||||
http://www.ozemail.com.au/~geoffk/pdfencrypt/
|
||||
DISTFILES= ${GS_SOURCES} ${GS_FONTS_STD} ${GS_FONTS_OTHER} \
|
||||
${HP850_DRV}
|
||||
|
||||
${HP850_DRV} ${DECRYPT_PDF}
|
||||
MAINTAINER= andreas@FreeBSD.ORG
|
||||
|
||||
BUILD_DEPENDS= /nonexistent:${PORTSDIR}/graphics/jpeg:extract \
|
||||
|
@ -32,12 +32,15 @@ GS_SOURCES+= ghostscript-5.10gnu.tar.gz
|
|||
# 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= ghostscript-fonts-std-4.0.tar.gz
|
||||
GS_FONTS_OTHER= ghostscript-fonts-other-5.03.tar.gz
|
||||
GS_FONTS_STD= ghostscript-fonts-std-5.10.tar.gz
|
||||
GS_FONTS_OTHER= ghostscript-fonts-other-5.10.tar.gz
|
||||
|
||||
# Additional driver HP 850, see http://bonk.ethz.ch/hp850/hp850.html
|
||||
HP850_DRV= hp850.zip
|
||||
|
||||
# replacement for pdf_sec.ps, that allows you to read encrypted PDF files
|
||||
DECRYPT_PDF= pdf_sec.ps
|
||||
|
||||
.if defined(A4)
|
||||
CFLAGS+= -DA4
|
||||
.endif
|
||||
|
@ -78,5 +81,7 @@ pre-install:
|
|||
|
||||
post-install:
|
||||
strip ${PREFIX}/bin/gs
|
||||
${INSTALL_DATA} ${DISTDIR}/${DECRYPT_PDF} \
|
||||
${PREFIX}/share/ghostscript/5.10
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
MD5 (ghostscript-5.10.tar.gz) = 47fbc4f6402c98374c61bf3e64e59e9a
|
||||
MD5 (ghostscript-5.10gnu.tar.gz) = 6706117129a5f63dff3a5a2bf4258630
|
||||
MD5 (ghostscript-fonts-std-4.0.tar.gz) = 1e0fe2149affd80deaaae144227049b9
|
||||
MD5 (ghostscript-fonts-other-5.03.tar.gz) = 703bcc5592f4b4644cda454bcc45c7d6
|
||||
MD5 (ghostscript-fonts-std-5.10.tar.gz) = 1e0fe2149affd80deaaae144227049b9
|
||||
MD5 (ghostscript-fonts-other-5.10.tar.gz) = 703bcc5592f4b4644cda454bcc45c7d6
|
||||
MD5 (hp850.zip) = 9d8d59eb8da9ec394d7aeb1560ca8d40
|
||||
MD5 (pdf_sec.ps) = 33b855032c90a0e0e6d5a460be82c749
|
||||
|
|
6
print/ghostscript7/scripts/configure
vendored
6
print/ghostscript7/scripts/configure
vendored
|
@ -21,9 +21,9 @@ Have fun with this new configuration style ! -andreas \n\n\
|
|||
"ap3250" "Epson AP3250" ON \
|
||||
"appledmp" "Apple Dot Matrix Printer / Imagewriter" ON \
|
||||
"bj10e" "Canon BubbleJet BJ10e" ON \
|
||||
"bj200" "Canon BubbleJet BJ200" ON \
|
||||
"bjc600" "Canon Color BubbleJet BJC-600/4000/70+Apple StyleWriter 2x00" ON \
|
||||
"bjc800" "Canon Color BubbleJet BJC-800" ON \
|
||||
"bj200" "Canon BubbleJet BJ200 and BJC-240(b&w)" ON \
|
||||
"bjc600" "Canon Color BubbleJet BJC-240/600/4000/70+Apple StyleWriter 2x00" ON \
|
||||
"bjc800" "Canon Color BubbleJet BJC-240/800" ON \
|
||||
"ccr" "CalComp Raster format" ON \
|
||||
"cdeskjet" "HP DeskJet 500C, 1 bit/pixel color" ON \
|
||||
"cdjcolor" "HP DeskJet 500C/540C, 24 bit/pixel color + FS dithering" ON \
|
||||
|
|
|
@ -3,16 +3,16 @@
|
|||
# Date created: Tue Jun 10 21:58:54 CEST 1997
|
||||
# Whom: Andreas Klemm <andreas@klemm.gtn.com>
|
||||
#
|
||||
# $Id: Makefile,v 1.14 1997/10/13 11:22:43 asami Exp $
|
||||
# $Id: Makefile,v 1.15 1998/01/03 08:34:31 andreas Exp $
|
||||
#
|
||||
|
||||
DISTNAME= ghostscript-5.10
|
||||
CATEGORIES= print
|
||||
MASTER_SITES= ftp://ftp.cs.wisc.edu/ghost/aladdin/gs510/ \
|
||||
ftp://bonk.ethz.ch/gs-driver-distrib/
|
||||
ftp://bonk.ethz.ch/gs-driver-distrib/ \
|
||||
http://www.ozemail.com.au/~geoffk/pdfencrypt/
|
||||
DISTFILES= ${GS_SOURCES} ${GS_FONTS_STD} ${GS_FONTS_OTHER} \
|
||||
${HP850_DRV}
|
||||
|
||||
${HP850_DRV} ${DECRYPT_PDF}
|
||||
MAINTAINER= andreas@FreeBSD.ORG
|
||||
|
||||
BUILD_DEPENDS= /nonexistent:${PORTSDIR}/graphics/jpeg:extract \
|
||||
|
@ -32,12 +32,15 @@ GS_SOURCES+= ghostscript-5.10gnu.tar.gz
|
|||
# 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= ghostscript-fonts-std-4.0.tar.gz
|
||||
GS_FONTS_OTHER= ghostscript-fonts-other-5.03.tar.gz
|
||||
GS_FONTS_STD= ghostscript-fonts-std-5.10.tar.gz
|
||||
GS_FONTS_OTHER= ghostscript-fonts-other-5.10.tar.gz
|
||||
|
||||
# Additional driver HP 850, see http://bonk.ethz.ch/hp850/hp850.html
|
||||
HP850_DRV= hp850.zip
|
||||
|
||||
# replacement for pdf_sec.ps, that allows you to read encrypted PDF files
|
||||
DECRYPT_PDF= pdf_sec.ps
|
||||
|
||||
.if defined(A4)
|
||||
CFLAGS+= -DA4
|
||||
.endif
|
||||
|
@ -78,5 +81,7 @@ pre-install:
|
|||
|
||||
post-install:
|
||||
strip ${PREFIX}/bin/gs
|
||||
${INSTALL_DATA} ${DISTDIR}/${DECRYPT_PDF} \
|
||||
${PREFIX}/share/ghostscript/5.10
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
MD5 (ghostscript-5.10.tar.gz) = 47fbc4f6402c98374c61bf3e64e59e9a
|
||||
MD5 (ghostscript-5.10gnu.tar.gz) = 6706117129a5f63dff3a5a2bf4258630
|
||||
MD5 (ghostscript-fonts-std-4.0.tar.gz) = 1e0fe2149affd80deaaae144227049b9
|
||||
MD5 (ghostscript-fonts-other-5.03.tar.gz) = 703bcc5592f4b4644cda454bcc45c7d6
|
||||
MD5 (ghostscript-fonts-std-5.10.tar.gz) = 1e0fe2149affd80deaaae144227049b9
|
||||
MD5 (ghostscript-fonts-other-5.10.tar.gz) = 703bcc5592f4b4644cda454bcc45c7d6
|
||||
MD5 (hp850.zip) = 9d8d59eb8da9ec394d7aeb1560ca8d40
|
||||
MD5 (pdf_sec.ps) = 33b855032c90a0e0e6d5a460be82c749
|
||||
|
|
6
print/ghostscript8/scripts/configure
vendored
6
print/ghostscript8/scripts/configure
vendored
|
@ -21,9 +21,9 @@ Have fun with this new configuration style ! -andreas \n\n\
|
|||
"ap3250" "Epson AP3250" ON \
|
||||
"appledmp" "Apple Dot Matrix Printer / Imagewriter" ON \
|
||||
"bj10e" "Canon BubbleJet BJ10e" ON \
|
||||
"bj200" "Canon BubbleJet BJ200" ON \
|
||||
"bjc600" "Canon Color BubbleJet BJC-600/4000/70+Apple StyleWriter 2x00" ON \
|
||||
"bjc800" "Canon Color BubbleJet BJC-800" ON \
|
||||
"bj200" "Canon BubbleJet BJ200 and BJC-240(b&w)" ON \
|
||||
"bjc600" "Canon Color BubbleJet BJC-240/600/4000/70+Apple StyleWriter 2x00" ON \
|
||||
"bjc800" "Canon Color BubbleJet BJC-240/800" ON \
|
||||
"ccr" "CalComp Raster format" ON \
|
||||
"cdeskjet" "HP DeskJet 500C, 1 bit/pixel color" ON \
|
||||
"cdjcolor" "HP DeskJet 500C/540C, 24 bit/pixel color + FS dithering" ON \
|
||||
|
|
Loading…
Reference in a new issue