diff -Nru ghostscript-9.04~dfsg/debian/changelog ghostscript-9.04~dfsg/debian/changelog --- ghostscript-9.04~dfsg/debian/changelog 2011-12-09 14:27:11.000000000 +0100 +++ ghostscript-9.04~dfsg/debian/changelog 2012-01-26 09:25:46.000000000 +0100 @@ -1,3 +1,11 @@ +ghostscript (9.04~dfsg-0ubuntu11.5) oneiric-proposed; urgency=low + + * debian/patches/020120125-83ce7cf-pattern-clist-improperly-cleared.patch: + Some PDFs where rendered incompletely when using high resolutions. + (LP: #902599). + + -- Till Kamppeter Thu, 26 Jan 2011 09:25:59 +0100 + ghostscript (9.04~dfsg-0ubuntu11.4) oneiric-proposed; urgency=low * debian/patches/020111209-5359a2d-do-not-use-hexadecimal-names-for-type42-charstrings-and-encoding.patch: diff -Nru ghostscript-9.04~dfsg/debian/patches/020120125-83ce7cf-pattern-clist-improperly-cleared.patch ghostscript-9.04~dfsg/debian/patches/020120125-83ce7cf-pattern-clist-improperly-cleared.patch --- ghostscript-9.04~dfsg/debian/patches/020120125-83ce7cf-pattern-clist-improperly-cleared.patch 1970-01-01 01:00:00.000000000 +0100 +++ ghostscript-9.04~dfsg/debian/patches/020120125-83ce7cf-pattern-clist-improperly-cleared.patch 2012-01-26 09:16:53.000000000 +0100 @@ -0,0 +1,22 @@ +--- a/base/gxpcmap.c ++++ b/base/gxpcmap.c +@@ -1248,7 +1248,7 @@ + make a similar change in zpcolor.c where much of this + pattern code is duplicated to support high level stream + patterns. */ +- if (pinst->template.PaintType == 1) ++ if (pinst->template.PaintType == 1 && !(pinst->is_clist)) + if ((code = gx_erase_colored_pattern(saved)) < 0) + return code; + } +--- a/psi/zpcolor.c ++++ b/psi/zpcolor.c +@@ -244,7 +244,7 @@ + if ((code = gs_push_pdf14trans_device(pgs, true)) < 0) + return code; + } else { /* not transparent */ +- if (pinst->template.PaintType == 1) ++ if (pinst->template.PaintType == 1 && !(pinst->is_clist)) + if ((code = gx_erase_colored_pattern(pgs)) < 0) + return code; + } diff -Nru ghostscript-9.04~dfsg/debian/patches/series ghostscript-9.04~dfsg/debian/patches/series --- ghostscript-9.04~dfsg/debian/patches/series 2011-12-09 14:26:17.000000000 +0100 +++ ghostscript-9.04~dfsg/debian/patches/series 2012-01-26 09:14:47.000000000 +0100 @@ -16,3 +16,4 @@ 020111122-cd8f397-ps2write-fix-handling-of-format-4-cmap-subtables-in-truetype-fonts.patch 020111209-5359a2d-do-not-use-hexadecimal-names-for-type42-charstrings-and-encoding.patch 020111125-979f218-ps2write-fix-conversion-of-escaped-string-to-hex-string.patch +020120125-83ce7cf-pattern-clist-improperly-cleared.patch