Date: Tue, 27 Aug 2019 22:16:30 +0000 (UTC) From: Christoph Moench-Tegeder <cmt@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r510030 - in head/print: gimp-gutenprint gutenprint gutenprint/files Message-ID: <201908272216.x7RMGUCq074878@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: cmt Date: Tue Aug 27 22:16:30 2019 New Revision: 510030 URL: https://svnweb.freebsd.org/changeset/ports/510030 Log: update gutenprint to 5.3.3 This is a new major release with new and updated printer drivers and a all-new native PCL backend (for some Laser Printers), and support for a lot of laser printers. While here, do some polishing and update my email address. Added: head/print/gutenprint/files/patch-configure (contents, props changed) head/print/gutenprint/files/patch-src_xml_papers_Makefile.am (contents, props changed) head/print/gutenprint/files/patch-src_xml_papers_Makefile.in (contents, props changed) head/print/gutenprint/files/patch-src_xml_papers_freebsd-addons.xml (contents, props changed) Deleted: head/print/gutenprint/files/patch-src_xml_papers.xml Modified: head/print/gimp-gutenprint/Makefile head/print/gimp-gutenprint/pkg-plist head/print/gutenprint/Makefile head/print/gutenprint/distinfo head/print/gutenprint/pkg-plist Modified: head/print/gimp-gutenprint/Makefile ============================================================================== --- head/print/gimp-gutenprint/Makefile Tue Aug 27 22:11:58 2019 (r510029) +++ head/print/gimp-gutenprint/Makefile Tue Aug 27 22:16:30 2019 (r510030) @@ -1,11 +1,10 @@ # Created by: Michael Johnson <ahze@FreeBSD.org> # $FreeBSD$ -# $MCom: ports/print/gimp-gutenprint/Makefile,v 1.5 2007/10/24 21:05:40 ahze Exp $ PORTREVISION= 0 PKGNAMEPREFIX= gimp- -MAINTAINER= cmt@burggraben.net +MAINTAINER= cmt@FreeBSD.org COMMENT= Gimp print plug-in MASTERDIR= ${.CURDIR}/../../print/gutenprint Modified: head/print/gimp-gutenprint/pkg-plist ============================================================================== --- head/print/gimp-gutenprint/pkg-plist Tue Aug 27 22:11:58 2019 (r510029) +++ head/print/gimp-gutenprint/pkg-plist Tue Aug 27 22:16:30 2019 (r510030) @@ -1,5 +1,5 @@ lib/libgutenprintui2.so -lib/libgutenprintui2.so.1 -lib/libgutenprintui2.so.1.0.0 +lib/libgutenprintui2.so.2 +lib/libgutenprintui2.so.2.4.0 libdata/pkgconfig/gutenprintui2.pc libexec/gimp/2.2/plug-ins/gutenprint Modified: head/print/gutenprint/Makefile ============================================================================== --- head/print/gutenprint/Makefile Tue Aug 27 22:11:58 2019 (r510029) +++ head/print/gutenprint/Makefile Tue Aug 27 22:16:30 2019 (r510030) @@ -2,39 +2,53 @@ # $FreeBSD$ PORTNAME= gutenprint -PORTVERSION= 5.2.15 -PORTREVISION?= 1 +PORTVERSION= 5.3.3 +PORTREVISION?= 0 CATEGORIES= print -MASTER_SITES= SF/gimp-print/gutenprint-5.2/${PORTVERSION} +MASTER_SITES= SF/gimp-print/gutenprint-5.3/${PORTVERSION} -MAINTAINER= cmt@burggraben.net +MAINTAINER= cmt@FreeBSD.org COMMENT= Gutenprint Printer Drivers LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -CONFLICTS= gimp-print-[0-9]* - GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-static --enable-simplified-cups-ppds DLOPEN_LIBS=" " +CONFIGURE_ARGS= --disable-static --enable-cups-ppds \ + --enable-cups-1_2-enhancements \ + --enable-simplified-cups-ppds \ + --disable-globalized-cups-ppds \ + --enable-cups-level3-ppds \ + --disable-translated-cups-ppds INSTALL_TARGET= install-strip USES= compiler:c11 gettext gmake libtool pathfix perl5 pkgconfig \ - tar:bzip2 + tar:xz +OPTIONS_DEFINE= DOCS NLS +OPTIONS_SUB= yes +DOCS_CONFIGURE_WITH= doc +NLS_CONFIGURE_ENABLE= nls + .if !defined(GUT_SLAVE) LIB_DEPENDS+= libcupsimage.so:print/cups RUN_DEPENDS+= ${LOCALBASE}/libexec/cups/filter/gstoraster:print/cups-filters -CONFIGURE_ARGS+=--disable-libgutenprintui2 --without-gimp2 +CONFIGURE_ARGS+=--disable-libgutenprintui2 --without-gimp2 \ + --with-cups=${PREFIX} \ + --with-cups-config=${PREFIX}/bin/cups-config USES+= iconv USE_LDCONFIG= yes .else LIB_DEPENDS+= libgutenprint.so:print/gutenprint MAKE_ARGS+= GUTENPRINT_LIBS='`$$(PKG_CONFIG) --libs gutenprint`' .if ${GUT_SLAVE} == "gimp" +USES+= gnome USE_GNOME+= cairo gdkpixbuf2 -LIB_DEPENDS+= libfontconfig.so:x11-fonts/fontconfig \ +LIB_DEPENDS+= libbabl-0.1.so:x11/babl \ + libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ - libgimp-2.0.so:graphics/gimp-app + libgegl-0.4.so:graphics/gegl \ + libgimp-2.0.so:graphics/gimp-app \ + libjson-glib-1.0.so:devel/json-glib CONFIGURE_ARGS+=--enable-libgutenprintui2 --with-gimp2 BUILD_WRKSRC= ${WRKSRC}/src/gimp2 INSTALL_WRKSRC= ${WRKSRC}/src/gimp2 @@ -52,6 +66,8 @@ post-install: .if defined(GUT_SLAVE) && ${GUT_SLAVE} == "gimp" @(cd ${WRKSRC}/src/gutenprintui2 && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} \ ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET}) +.else + @${RMDIR} ${STAGEDIR}/${DATADIR}/doc/reference-html .endif .include <bsd.port.mk> Modified: head/print/gutenprint/distinfo ============================================================================== --- head/print/gutenprint/distinfo Tue Aug 27 22:11:58 2019 (r510029) +++ head/print/gutenprint/distinfo Tue Aug 27 22:16:30 2019 (r510030) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560846997 -SHA256 (gutenprint-5.2.15.tar.bz2) = 2b32932d6ae05a1e42b83ae754628a77ca86001f3387b084de40eb99d336cead -SIZE (gutenprint-5.2.15.tar.bz2) = 7151306 +TIMESTAMP = 1566911317 +SHA256 (gutenprint-5.3.3.tar.xz) = 7279ecbc8e67d1858c53cb24e423ea1be98e214872006b79e6e03650dd54a072 +SIZE (gutenprint-5.3.3.tar.xz) = 5050624 Added: head/print/gutenprint/files/patch-configure ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/gutenprint/files/patch-configure Tue Aug 27 22:16:30 2019 (r510030) @@ -0,0 +1,14 @@ +# this is a workaround for a broken gimptool-2.0 (uses wrong plugin dir +# when installing plugins) +--- configure.orig 2019-08-27 19:37:57 UTC ++++ configure +@@ -15324,8 +15324,7 @@ else + if test x${BUILD_GIMP2} = xyes ; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GIMP 2.0 plug-in directory" >&5 + $as_echo_n "checking for GIMP 2.0 plug-in directory... " >&6; } +- GIMPTOOL2_OUTPUT=`$GIMPTOOL2_CHECK --dry-run --install-${PLUG_IN_PATH} print | tail -n 1` +- GIMP2_PLUGIN_DIR=`echo "$GIMPTOOL2_OUTPUT" | cut -d ' ' -f 3 | tr -d "\'"` ++ GIMP2_PLUGIN_DIR=`$GIMPTOOL2_CHECK --gimpplugindir`/plug-ins + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GIMP2_PLUGIN_DIR" >&5 + $as_echo "$GIMP2_PLUGIN_DIR" >&6; } + if test "x$NO_PKGCONFIG_PATHS" = x; then Added: head/print/gutenprint/files/patch-src_xml_papers_Makefile.am ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/gutenprint/files/patch-src_xml_papers_Makefile.am Tue Aug 27 22:16:30 2019 (r510030) @@ -0,0 +1,12 @@ +--- src/xml/papers/Makefile.am.orig 2019-05-25 15:08:51 UTC ++++ src/xml/papers/Makefile.am +@@ -25,7 +25,8 @@ pkgxmldatadir = $(pkgdatadir)/@GUTENPRINT_MAJOR_VERSIO + + pkgxmldata_DATA = \ + standard.xml \ +- labels.xml ++ labels.xml \ ++ freebsd-addons.xml + + + xml-stamp: $(pkgxmldata_DATA) Makefile.am Added: head/print/gutenprint/files/patch-src_xml_papers_Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/gutenprint/files/patch-src_xml_papers_Makefile.in Tue Aug 27 22:16:30 2019 (r510030) @@ -0,0 +1,12 @@ +--- src/xml/papers/Makefile.in.orig 2019-08-27 14:36:22 UTC ++++ src/xml/papers/Makefile.in +@@ -394,7 +394,8 @@ AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir + pkgxmldatadir = $(pkgdatadir)/@GUTENPRINT_MAJOR_VERSION@.@GUTENPRINT_MINOR_VERSION@/xml/papers + pkgxmldata_DATA = \ + standard.xml \ +- labels.xml ++ labels.xml \ ++ freebsd-addons.xml + + CLEANFILES = xmli18n-tmp.h xml-stamp xml-stamp.tmp + EXTRA_DIST = $(pkgxmldata_DATA) Added: head/print/gutenprint/files/patch-src_xml_papers_freebsd-addons.xml ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/gutenprint/files/patch-src_xml_papers_freebsd-addons.xml Tue Aug 27 22:16:30 2019 (r510030) @@ -0,0 +1,74 @@ +--- src/xml/papers/freebsd-addons.xml.orig 2019-08-27 14:36:36 UTC ++++ src/xml/papers/freebsd-addons.xml +@@ -0,0 +1,71 @@ ++<?xml version="1.0"?> ++ ++<!-- ++ ++ XML description of papers known to libgutenprint. ++ Here: additional paper sizes for greeting cards etc. ++--> ++ ++<gutenprint xmlns="http://gimp-print.sourceforge.net/xsd/gp.xsd-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ++ xsi:schemaLocation="http://gimp-print.sourceforge.net/xsd/gp.xsd-1.0 gutenprint.xsd"> ++ <paperdef name="freebsd-addons"> ++ <!-- Group: Greeting Card Sizes --> ++ <paper name="7x10TopFoldCard"> ++ <description translate="value" value="5x7 Top Fold Card (7x10)"/> ++ <comment value="5in x 7in Top Fold Card (7x10 paper)"/> ++ <width value="504"/> ++ <height value="720"/> ++ <unit value="english-extended"/> ++ </paper> ++ <paper name="6x8TopFoldCard"> ++ <description translate="value" value="4x6 Top Fold Card (6x8)"/> ++ <comment value="5in x 7in Top Fold Card (6x8 paper)"/> ++ <width value="432"/> ++ <height value="576"/> ++ <unit value="english-extended"/> ++ </paper> ++ <paper name="6_25x9TopFoldCard"> ++ <description translate="value" value="4.5x6.25 Top Fold Card (6.25x9)"/> ++ <comment value="4.5in x 6.25in Top Fold Card (6.25x9 paper)"/> ++ <width value="450"/> ++ <height value="648"/> ++ <unit value="english-extended"/> ++ </paper> ++ <paper name="5_5x8_5TopFoldCard"> ++ <description translate="value" value="4.25x5.5 Top Fold Card (5.5x8.5)"/> ++ <comment value="4.25in x 5.5in Top Fold Card (5.5x8.5 paper)"/> ++ <width value="396"/> ++ <height value="612"/> ++ <unit value="english-extended"/> ++ </paper> ++ <paper name="9x8TopFoldCard"> ++ <description translate="value" value="4x9 Top Fold Card (9x8)"/> ++ <comment value="4in x 9in Top Fold Card (9x8 paper)"/> ++ <width value="648"/> ++ <height value="576"/> ++ <unit value="english-extended"/> ++ </paper> ++ <paper name="8_5x11TopFoldCard"> ++ <description translate="value" value="5.5x8.5 Top Fold Card (8.5x11)"/> ++ <comment value="5.5in x 8.5in Top Fold Card (8.5x11 paper)"/> ++ <width value="612"/> ++ <height value="792"/> ++ <unit value="english-extended"/> ++ </paper> ++ <paper name="5_25x10_5TopFoldCard"> ++ <description translate="value" value="5.25x5.25 Top Fold Card (5.25x10.5)"/> ++ <comment value="5.25in x 5.25in Top Fold Card (5.25x10.5 paper)"/> ++ <width value="378"/> ++ <height value="756"/> ++ <unit value="english-extended"/> ++ </paper> ++ <paper name="14x5SideFoldCard"> ++ <description translate="value" value="5x7 Side Fold Card (14x5)"/> ++ <comment value="5in x 7in Side Fold Card (14x5 paper)"/> ++ <width value="1008"/> ++ <height value="360"/> ++ <unit value="english-extended"/> ++ </paper> ++ <!-- End of Greeting Card Sizes --> ++ </paperdef> ++</gutenprint> Modified: head/print/gutenprint/pkg-plist ============================================================================== --- head/print/gutenprint/pkg-plist Tue Aug 27 22:11:58 2019 (r510029) +++ head/print/gutenprint/pkg-plist Tue Aug 27 22:16:30 2019 (r510030) @@ -19,380 +19,7543 @@ include/gutenprint/mxml.h include/gutenprint/paper.h include/gutenprint/path.h include/gutenprint/printers.h +include/gutenprint/refcache.h include/gutenprint/sequence.h include/gutenprint/string-list.h +include/gutenprint/types.h include/gutenprint/util.h include/gutenprint/vars.h include/gutenprint/weave.h include/gutenprint/xml.h -lib/gutenprint/5.2/modules/color-traditional.so -lib/gutenprint/5.2/modules/print-canon.so -lib/gutenprint/5.2/modules/print-dpl.so -lib/gutenprint/5.2/modules/print-dyesub.so -lib/gutenprint/5.2/modules/print-escp2.so -lib/gutenprint/5.2/modules/print-lexmark.so -lib/gutenprint/5.2/modules/print-pcl.so -lib/gutenprint/5.2/modules/print-ps.so -lib/gutenprint/5.2/modules/print-raw.so +lib/gutenprint/5.3/config.summary +lib/gutenprint/5.3/modules/color-traditional.so +lib/gutenprint/5.3/modules/print-canon.so +lib/gutenprint/5.3/modules/print-dpl.so +lib/gutenprint/5.3/modules/print-dyesub.so +lib/gutenprint/5.3/modules/print-escp2.so +lib/gutenprint/5.3/modules/print-lexmark.so +lib/gutenprint/5.3/modules/print-pcl.so +lib/gutenprint/5.3/modules/print-ps.so +lib/gutenprint/5.3/modules/print-raw.so lib/libgutenprint.so -lib/libgutenprint.so.2 -lib/libgutenprint.so.2.8.0 +lib/libgutenprint.so.9 +lib/libgutenprint.so.9.4.0 libdata/pkgconfig/gutenprint.pc -libexec/cups/backend/gutenprint52+usb -libexec/cups/driver/gutenprint.5.2 +libexec/cups/backend/gutenprint53+usb +libexec/cups/driver/gutenprint.5.3 libexec/cups/filter/commandtocanon libexec/cups/filter/commandtoepson -libexec/cups/filter/rastertogutenprint.5.2 +libexec/cups/filter/rastertogutenprint.5.3 man/man1/escputil.1.gz man/man8/cups-calibrate.8.gz man/man8/cups-genppd.8.gz man/man8/cups-genppdupdate.8.gz -sbin/cups-genppd.5.2 +sbin/cups-genppd.5.3 sbin/cups-genppdupdate share/cups/calibrate.ppm +share/cups/model/gutenprint/5.3/C/stp-bjc-1000.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-1000.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-2000.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-2000.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-2010.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-2010.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-210.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-210.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-2100.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-2100.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-2110.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-2110.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-240.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-240.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-250.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-250.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-30.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-30.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-3000.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-3000.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-4000.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-4000.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-4300.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-4300.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-4400.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-4400.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-450i.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-450i.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-4550.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-4550.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-455i.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-455i.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-470PD.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-470PD.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-475PD.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-475PD.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-50.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-50.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-50i.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-50i.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-5100.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-5100.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-55.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-55.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-5500.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-5500.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-5500j.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-5500j.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-550i.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-550i.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-560i.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-560i.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-6000.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-6000.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-6100.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-6100.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-6100i.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-6100i.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-6200.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-6200.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-6500.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-6500.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-6500i.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-6500i.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-7000.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-7000.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-7100.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-7100.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-80.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-80.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-80i.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-80i.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-8200.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-8200.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-85.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-85.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-8500.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-8500.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-850i.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-850i.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-860i.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-860i.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-865R.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-865R.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-900PD.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-900PD.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-9100i.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-9100i.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-950i.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-950i.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-960i.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-960i.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-9900i.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-9900i.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-990i.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-990i.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-E3100-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-E3100-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-E400-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-E400-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-E410-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-E410-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-E460-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-E460-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-E470-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-E470-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-E480-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-E480-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-E500-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-E500-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-E510-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-E510-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-E560-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-E560-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-E600-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-E600-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-E610-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-E610-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-G1000-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-G1000-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-G2000-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-G2000-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-G3000-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-G3000-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-G4000-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-G4000-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2010.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2010.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2020.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2020.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2030.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2030.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2040.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2040.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2050.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2050.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2060.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2060.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2110.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2110.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2120.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2120.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2130.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2130.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2140.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2140.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2150.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2150.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2160.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2160.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2320.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2320.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2330.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2330.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2340.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2340.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2350.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2350.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2360.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2360.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2390.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2390.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2710.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2710.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2720.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2720.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2730.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2730.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2740.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2740.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2750.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2750.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2760.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2760.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2790.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB2790.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5020.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5020.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5030.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5030.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5040.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5040.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5050.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5050.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5060.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5060.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5070.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5070.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5080.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5080.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5090.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5090.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5110.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5110.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5120.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5120.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5130.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5130.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5140.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5140.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5150.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5150.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5160.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5160.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5170.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5170.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5180.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5180.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5190.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5190.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5310.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5310.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5320.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5320.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5330.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5330.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5340.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5340.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5350.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5350.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5360.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5360.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5370.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5370.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5390.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5390.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5410.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5410.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5420.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5420.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5430.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5430.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5440.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5440.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5450.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5450.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5460.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5460.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5470.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5470.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5480.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5480.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5490.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-MB5490.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-iB4010.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-iB4010.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-iB4020.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-iB4020.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-iB4030.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-iB4030.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-iB4040.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-iB4040.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-iB4050.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-iB4050.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-iB4060.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-iB4060.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-iB4070.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-iB4070.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-iB4080.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-iB4080.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-iB4090.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-iB4090.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-iB4110.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-iB4110.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-iB4120.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-iB4120.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-iB4130.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-iB4130.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-iB4140.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-iB4140.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-iB4150.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-iB4150.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-iB4170.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-iB4170.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-iB4180.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-iB4180.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-iB4190.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MAXIFY-iB4190.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MB2000-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MB2000-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MB2100-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MB2100-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MB2300-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MB2300-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MB2700-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MB2700-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MB5000-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MB5000-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MB5100-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MB5100-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MB5300-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MB5300-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MB5400-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MB5400-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG2100-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG2100-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG2200-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG2200-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG2400-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG2400-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG2500-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG2500-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG2900-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG2900-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG3000-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG3000-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG3100-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG3100-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG3200-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG3200-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG3500-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG3500-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG3600-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG3600-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG4100-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG4100-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG4200-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG4200-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG5100-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG5100-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG5200-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG5200-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG5300-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG5300-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG5400-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG5400-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG5500-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG5500-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG5600-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG5600-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG5700-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG5700-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG6100-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG6100-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG6200-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG6200-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG6300-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG6300-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG6400-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG6400-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG6500-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG6500-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG6600-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG6600-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG6700-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG6700-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG6800-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG6800-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG6900-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG6900-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG7100-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG7100-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG7500-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG7500-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG7700-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG7700-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG8100-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG8100-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG8200-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MG8200-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP140-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP140-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP150-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP150-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP160-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP160-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP170-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP170-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP180-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP180-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP190-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP190-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP210-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP210-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP220-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP220-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP230-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP230-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP240-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP240-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP250-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP250-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP260-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP260-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP270-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP270-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP280-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP280-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP360-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP360-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP370-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP370-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP390-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP390-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP450-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP450-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP460-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP460-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP470-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP470-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP480-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP480-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP490-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP490-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP500-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP500-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP510-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP510-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP520-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP520-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP530-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP530-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP540-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP540-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP550-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP550-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP560-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP560-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP600-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP600-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP610-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP610-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP620-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP620-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP630-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP630-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP640-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP640-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP700-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP700-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP710-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP710-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP730-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP730-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP740-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP740-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP750-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP750-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP780-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP780-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP790-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP790-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP800-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP800-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP810-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP810-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP830-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP830-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP900-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP900-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP950-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP950-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP960-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP960-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP970-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP970-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP980-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP980-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP990-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MP990-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-E500.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-E500.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-E600.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-E600.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP140.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP140.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP150.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP150.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP160.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP160.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP170.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP170.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP180.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP180.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP190.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP190.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP210.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP210.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP220.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP220.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP230.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP230.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP240.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP240.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP250.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP250.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP260.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP260.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP270.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP270.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP280.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP280.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP360.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP360.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP370.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP370.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP375R.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP375R.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP390.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP390.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP450.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP450.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP460.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP460.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP470.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP470.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP480.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP480.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP490.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP490.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP493.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP493.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP495.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP495.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP500.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP500.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP510.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP510.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP520.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP520.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP530.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP530.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP540.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP540.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP550.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP550.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP560.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP560.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP600.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP600.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP600R.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP600R.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP610.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP610.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP620.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP620.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP630.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP630.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP640.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP640.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP700.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP700.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP710.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP710.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP730.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP730.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP740.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP740.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP750.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP750.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP760-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP760-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP760.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP760.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP770-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP770-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP770.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP770.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP780.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP780.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP790.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP790.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP800.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP800.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP800R.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP800R.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP810.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP810.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP830.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP830.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP900.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP900.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP950.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP950.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP960.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP960.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP970.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP970.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP980.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP980.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP990.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MP990.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MX300.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MX300.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MX310.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MX310.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MX320.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MX320.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MX330.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MX330.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MX340.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MX340.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MX350.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MX350.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MX360.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MX360.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MX370.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MX370.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MX410.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MX410.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MX420.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MX420.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MX430.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MX430.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MX510.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MX510.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MX700.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MX700.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MX710.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MX710.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MX7600.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MX7600.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MX850.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MX850.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MX860.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MX860.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MX870.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MX870.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MX880.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MX880.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MX890.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MULTIPASS-MX890.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX300-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX300-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX310-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX310-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX320-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX320-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX330-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX330-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX340-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX340-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX350-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX350-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX360-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX360-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX370-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX370-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX390-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX390-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX410-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX410-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX420-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX420-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX430-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX430-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX450-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX450-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX470-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX470-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX490-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX490-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX510-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX510-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX520-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX520-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX530-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX530-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX700-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX700-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX710-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX710-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX720-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX720-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX7600-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX7600-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX850-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX850-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX860-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX860-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX870-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX870-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX880-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX880-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX890-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX890-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX920-series.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-MX920-series.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-Mommy-Photo-MG5670.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-Mommy-Photo-MG5670.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-Mommy-Photo-MG5790.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-Mommy-Photo-MG5790.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-Mommy-Photo-MG6670.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-Mommy-Photo-MG6670.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-Mommy-Photo-MG7570.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-Mommy-Photo-MG7570.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-PIXMA-E3170.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-PIXMA-E3170.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-PIXMA-E400.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-PIXMA-E400.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-PIXMA-E401.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-PIXMA-E401.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-PIXMA-E404.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-PIXMA-E404.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-PIXMA-E408.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-PIXMA-E408.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-PIXMA-E409.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-PIXMA-E409.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-PIXMA-E410.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-PIXMA-E410.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-PIXMA-E414.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-PIXMA-E414.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-PIXMA-E417.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-PIXMA-E417.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-PIXMA-E418.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-PIXMA-E418.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-PIXMA-E460.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-PIXMA-E460.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-PIXMA-E461.5.3.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-PIXMA-E461.5.3.sim.ppd.gz +share/cups/model/gutenprint/5.3/C/stp-bjc-PIXMA-E464.5.3.ppd.gz *** DIFF OUTPUT TRUNCATED AT 1000 LINES ***
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201908272216.x7RMGUCq074878>