cups-filters: update to 1.0.73
This commit is contained in:
parent
73c06f90f4
commit
12dc8f8334
@ -26,6 +26,7 @@ drwxr-xr-x root/root usr/include/fontembed/
|
||||
drwxr-xr-x root/root usr/lib/
|
||||
drwxr-xr-x root/root usr/lib/cups/
|
||||
drwxr-xr-x root/root usr/lib/cups/backend/
|
||||
-rwxr-xr-x root/root usr/lib/cups/backend/implicitclass
|
||||
-rwxr-xr-x root/root usr/lib/cups/backend/parallel
|
||||
-rwxr-xr-x root/root usr/lib/cups/backend/serial
|
||||
drwxr-xr-x root/root usr/lib/cups/filter/
|
||||
|
@ -1,3 +1,2 @@
|
||||
7540a6989be0042429f41770b1cdf215 cups-browsed
|
||||
f1e11dfe5fa52eb65aa0bdd3a7ee0117 cups-filters-1.0.71.tar.xz
|
||||
3b5258c23d3ebeb8ea733e5114a947c6 poppler-034.patch
|
||||
7c8d792eb872be5a5b596409e5f05f40 cups-filters-1.0.73.tar.xz
|
||||
|
@ -4,17 +4,14 @@
|
||||
# Depends on: cups ghostscript poppler qpdf
|
||||
|
||||
name=cups-filters
|
||||
version=1.0.71
|
||||
release=2
|
||||
version=1.0.73
|
||||
release=1
|
||||
source=(http://www.openprinting.org/download/$name/$name-$version.tar.xz
|
||||
cups-browsed
|
||||
poppler-034.patch)
|
||||
cups-browsed)
|
||||
|
||||
build () {
|
||||
cd $name-$version
|
||||
|
||||
patch -p0 -i $SRC/poppler-034.patch
|
||||
|
||||
./configure --prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--mandir=/usr/man \
|
||||
|
@ -1,38 +0,0 @@
|
||||
# http://bzr.linuxfoundation.org/loggerhead/openprinting/cups-filters/revision/7371
|
||||
|
||||
=== modified file 'filter/pdftoopvp/OPVPOutputDev.cxx'
|
||||
--- filter/pdftoopvp/OPVPOutputDev.cxx 2015-02-18 03:17:28 +0000
|
||||
+++ filter/pdftoopvp/OPVPOutputDev.cxx 2015-07-14 19:22:49 +0000
|
||||
@@ -1811,10 +1811,14 @@
|
||||
#if POPPLER_VERSION_MAJOR <= 0 && (POPPLER_VERSION_MINOR <= 20 || (POPPLER_VERSION_MINOR == 21 && POPPLER_VERSION_MICRO <= 2))
|
||||
maskSplash->drawImage(&imageSrc, &imgMaskData,
|
||||
splashModeMono8, gFalse, maskWidth, maskHeight, mat);
|
||||
-#else
|
||||
+#elif POPPLER_VERSION_MAJOR <= 0 && POPPLER_VERSION_MINOR <= 33
|
||||
maskSplash->drawImage(&imageSrc, &imgMaskData,
|
||||
splashModeMono8, gFalse, maskWidth, maskHeight,
|
||||
mat,gFalse);
|
||||
+#else
|
||||
+ maskSplash->drawImage(&imageSrc, 0, &imgMaskData,
|
||||
+ splashModeMono8, gFalse, maskWidth, maskHeight,
|
||||
+ mat,gFalse);
|
||||
#endif
|
||||
delete imgMaskData.imgStr;
|
||||
maskStr->close();
|
||||
|
||||
=== modified file 'filter/pdftoopvp/oprs/OPRS.cxx'
|
||||
--- filter/pdftoopvp/oprs/OPRS.cxx 2013-01-09 10:42:32 +0000
|
||||
+++ filter/pdftoopvp/oprs/OPRS.cxx 2015-07-14 19:22:49 +0000
|
||||
@@ -240,8 +240,10 @@
|
||||
if (rasterMode) {
|
||||
#if POPPLER_VERSION_MAJOR <= 0 && (POPPLER_VERSION_MINOR <= 20 || (POPPLER_VERSION_MINOR == 21 && POPPLER_VERSION_MICRO <= 2))
|
||||
return splash->drawImage(src,srcData,srcMode,srcAlpha,w,h,mat);
|
||||
-#else
|
||||
+#elif POPPLER_VERSION_MAJOR <= 0 && POPPLER_VERSION_MINOR <= 33
|
||||
return splash->drawImage(src,srcData,srcMode,srcAlpha,w,h,mat,gFalse);
|
||||
+#else
|
||||
+ return splash->drawImage(src,0,srcData,srcMode,srcAlpha,w,h,mat,gFalse);
|
||||
#endif
|
||||
} else {
|
||||
return opvpSplash->drawImage(src,srcData,srcMode,srcAlpha,w,h,mat);
|
||||
|
Loading…
x
Reference in New Issue
Block a user