pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/print/ghostscript-agpl Changes 9.16:
details: https://anonhg.NetBSD.org/pkgsrc/rev/0c3e6a9e9183
branches: trunk
changeset: 649629:0c3e6a9e9183
user: adam <adam%pkgsrc.org@localhost>
date: Mon Apr 06 11:24:55 2015 +0000
description:
Changes 9.16:
* "LockColorants" command line option for tiffsep and psdcmyk devices. Specifying -dLockColorants will restrict those devices to only the colorants list on the command line (thus: -c "<<
/SeparationColorNames [ /Cyan /Magenta /Yellow /Black /Violet /Orange] /SeparationOrder [ /Cyan /Magenta /Yellow /Black /Violet /Orange]>> setpagedevice"), rather than allowing the devices to add new
colorants as encountered in the input. This is, obviously, preferable for real printers, where only a certain of inks will be available.
* Improved high level devices handling of Forms. Whilst High level devices (eg pdfwrite) already checked Forms to see if they are duplicates, and if so use the initial definition. However, this does
not improve performance, since the Form PaintProc still needs to be executed for each instance of the Form, and the matching algorithm could, in very odd circumstances, be defeated. The new
implementation benefits both causes, meaning the second and subsequent invocation of the form need not re-run the PaintProc, and removes the heurisic aspect of the reuse detection.
* New URW+ fonts in which the families NimbusMono, NimbusRoman and NimbusSans have been augmented with production quality Greek and Cyrillic glyphs. These correspond to our substitutes for the PDF
base 14 fonts.
* Plus the usual round of bug fixes, compatibility changes, and incremental improvements.
diffstat:
print/ghostscript-agpl/Makefile | 4 ++--
print/ghostscript-agpl/Makefile.common | 5 ++---
print/ghostscript-agpl/distinfo | 9 +++++----
print/ghostscript-agpl/patches/patch-devices_devs.mak | 15 +++++++++++++++
4 files changed, 24 insertions(+), 9 deletions(-)
diffs (69 lines):
diff -r 5f49df71e566 -r 0c3e6a9e9183 print/ghostscript-agpl/Makefile
--- a/print/ghostscript-agpl/Makefile Mon Apr 06 10:51:20 2015 +0000
+++ b/print/ghostscript-agpl/Makefile Mon Apr 06 11:24:55 2015 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.12 2014/10/01 09:04:32 adam Exp $
+# $NetBSD: Makefile,v 1.13 2015/04/06 11:24:55 adam Exp $
DISTNAME= ghostscript-${GS_VERSION}
PKGNAME= ${DISTNAME:S/ghostscript/ghostscript-agpl/}
@@ -99,7 +99,7 @@
# To allow outside customization, rename cidfmap
# (if you look at inside of the file, it is logically empty)
.if !empty(PKG_OPTIONS:Mdisable-compile-inits)
- (cd ${WRKSRC}/Resource/Init/; ${MV} cidfmap cidfmap.dist)
+ (cd ${WRKSRC}/Resource/Init/; ${MV} cidfmap cidfmap.dist)
.endif
post-install:
diff -r 5f49df71e566 -r 0c3e6a9e9183 print/ghostscript-agpl/Makefile.common
--- a/print/ghostscript-agpl/Makefile.common Mon Apr 06 10:51:20 2015 +0000
+++ b/print/ghostscript-agpl/Makefile.common Mon Apr 06 11:24:55 2015 +0000
@@ -1,6 +1,5 @@
-# $NetBSD: Makefile.common,v 1.5 2014/10/01 09:04:32 adam Exp $
+# $NetBSD: Makefile.common,v 1.6 2015/04/06 11:24:55 adam Exp $
# used by print/ghostscript-agpl/Makefile
-# used by fonts/ghostscript-cidfonts/Makefile
# used by fonts/ghostscript-cidfonts-ryumin/Makefile
-GS_VERSION= 9.15
+GS_VERSION= 9.16
diff -r 5f49df71e566 -r 0c3e6a9e9183 print/ghostscript-agpl/distinfo
--- a/print/ghostscript-agpl/distinfo Mon Apr 06 10:51:20 2015 +0000
+++ b/print/ghostscript-agpl/distinfo Mon Apr 06 11:24:55 2015 +0000
@@ -1,11 +1,12 @@
-$NetBSD: distinfo,v 1.5 2014/10/01 09:04:32 adam Exp $
+$NetBSD: distinfo,v 1.6 2015/04/06 11:24:55 adam Exp $
-SHA1 (ghostscript-9.15.tar.bz2) = 19f01538d33b9623bc6653d96ea4ec891f14a9d3
-RMD160 (ghostscript-9.15.tar.bz2) = 7450cccb0d31430e7aadcddacd63d807c71fefb1
-Size (ghostscript-9.15.tar.bz2) = 28826065 bytes
+SHA1 (ghostscript-9.16.tar.bz2) = 529e2b0be754cb353880a4ac97e3efa47ef82f5c
+RMD160 (ghostscript-9.16.tar.bz2) = b90c62480377b71b791da9c8cedf7673fca00c98
+Size (ghostscript-9.16.tar.bz2) = 29163348 bytes
SHA1 (patch-af) = 3dd65dbd9611c00d45997c86d16eada37511dca5
SHA1 (patch-ah) = db74a482e22771414f223a97dd71df5215553d85
SHA1 (patch-ai) = e83a732559094ea8b683a171219388d5087c816f
SHA1 (patch-al) = b4d06da288a608d65cdb014b0f2384406089afe3
SHA1 (patch-base_gserrors_h) = ce75cfb7528871842a3bd35e18a6d91c89823909
+SHA1 (patch-devices_devs.mak) = 526348d59ccb4d373ace11e46c37899b43a35c29
SHA1 (patch-openjpeg_libopenjpeg_opj_malloc_h) = bf7e47c77e6960df473d3bf97dfa78f207a14a01
diff -r 5f49df71e566 -r 0c3e6a9e9183 print/ghostscript-agpl/patches/patch-devices_devs.mak
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/print/ghostscript-agpl/patches/patch-devices_devs.mak Mon Apr 06 11:24:55 2015 +0000
@@ -0,0 +1,15 @@
+$NetBSD: patch-devices_devs.mak,v 1.3 2015/04/06 11:24:55 adam Exp $
+
+Don't depend on src/zlib.h.
+
+--- devices/devs.mak.orig 2015-04-06 11:15:42.000000000 +0000
++++ devices/devs.mak
+@@ -1231,7 +1231,7 @@ $(libtiff_dev) $(MAKEDIRS)
+
+ $(DEVOBJ)gdevxps.$(OBJ) : $(DEVVECSRC)gdevxps.c $(gdevvec_h) \
+ $(string__h) $(stdio__h) $(libtiff_dev) $(gx_h) $(gserrors_h) \
+-$(gxpath_h) $(gzcpath_h) $(stream_h) $(zlib_h) \
++$(gxpath_h) $(gzcpath_h) $(stream_h) \
+ $(stdint__h) $(gdevtifs_h) $(gsicc_create_h) $(gsicc_cache_h) \
+ $(gximdecode_h) $(MAKEDIRS)
+ $(XPSDEVCC) $(I_)$(TI_)$(_I) $(GLO_)gdevxps.$(OBJ) $(C_) $(DEVVECSRC)gdevxps.c
Home |
Main Index |
Thread Index |
Old Index