24296343 HPLIP: Remove HPIJS variant.
authorJiri Sasek <Jiri.Sasek@Oracle.COM>
Thu, 14 Jul 2016 06:29:20 -0700
changeset 6449 33c7e6c982cd
parent 6448 9c7d6df84360
child 6450 492d6d7286df
24296343 HPLIP: Remove HPIJS variant.
components/hplip/Makefile
components/hplip/cache.ksh
components/hplip/hplip.p5m
components/hplip/hplip.proto-objects
components/hplip/patches/04_pstotiff.patch
components/hplip/patches/05_hpps.patch
components/hplip/patches/06_hpfax.patch
--- a/components/hplip/Makefile	Thu Jul 21 13:50:05 2016 -0700
+++ b/components/hplip/Makefile	Thu Jul 14 06:29:20 2016 -0700
@@ -33,7 +33,6 @@
 COMPONENT_ARCHIVE_URL=	http://prdownloads.sourceforge.net/hplip/$(COMPONENT_ARCHIVE)
 COMPONENT_PROJECT_URL=	http://hplipopensource.com/hplip-web/index.html
 
-COMMON_TARGETS= no
 include $(WS_MAKE_RULES)/common.mk
 
 PKG_OPTIONS += -I $(COMPONENT_DIR)
@@ -43,101 +42,58 @@
 CXXFLAGS.studio += $(studio_FEATURES_EXTENSIONS) 
 CXXFLAGS.studio += $(studio_CXXLIB_CSTD) 
 
-ROOTPPDCACHE =  $(PROTOUSRLIBDIR)/lp/caches/SUNWhpijs.cache
-
-# common configure options
 CONFIGURE_OPTIONS +=	--localedir=$(CONFIGURE_LOCALEDIR)
+CONFIGURE_OPTIONS +=	--with-hpppddir=$(USRSHAREDIR)/cups/model/hplip
+ifeq ($(OS_VERSION),5.11)
+CONFIGURE_OPTIONS +=	--enable-libusb01_build
+endif
+CONFIGURE_OPTIONS +=	--enable-fax-build
+CONFIGURE_OPTIONS +=	--enable-hpcups-install
+CONFIGURE_OPTIONS +=	--disable-new-hpcups
+CONFIGURE_OPTIONS +=	--enable-cups-drv-install
 CONFIGURE_OPTIONS +=	--disable-pp-build
 CONFIGURE_OPTIONS +=	--disable-gui-build
 CONFIGURE_OPTIONS +=	--disable-qt4
+CONFIGURE_OPTIONS +=	PYTHON=$(PYTHON.$(PYTHON_VERSION))
+CONFIGURE_OPTIONS +=	am_cv_python_pythondir="$(PYTHON_VENDOR_PACKAGES)"
+CONFIGURE_OPTIONS +=	am_cv_python_pyexecdir="$(PYTHON_VENDOR_PACKAGES)"
 # bye, bye SANE backends
 CONFIGURE_OPTIONS +=	--disable-scan-build
-CONFIGURE_OPTIONS +=	am_cv_python_pythondir="$(PYTHON_VENDOR_PACKAGES)"
-CONFIGURE_OPTIONS +=	am_cv_python_pyexecdir="$(PYTHON_VENDOR_PACKAGES)"
 
 ifeq ($(OS_VERSION),5.11)
 LDFLAGS += -lnsl
 endif
 
-HPLIP_VARIANT = $(BUILD_DIR)/$(MACH32)-hplip
-HPIJS_VARIANT = $(BUILD_DIR)/$(MACH32)-hpijs
-
-VARIANTS = $(HPLIP_VARIANT) $(HPIJS_VARIANT)
-
-# We build two variants: for the CUPS support
-# and for the HPIJS only support
+COMPONENT_INSTALL_ARGS += -e
 
-# use these options for the CUPS support
-$(HPLIP_VARIANT)/.configured: CONFIGURE_OPTIONS += --with-hpppddir=$(USRSHAREDIR)/cups/model/SUNWhplip
-$(HPLIP_VARIANT)/.configured: CONFIGURE_OPTIONS += --enable-libusb01_build
-$(HPLIP_VARIANT)/.configured: CONFIGURE_OPTIONS += --enable-fax-build
-$(HPLIP_VARIANT)/.configured: CONFIGURE_OPTIONS += --enable-hpcups-install
-$(HPLIP_VARIANT)/.configured: CONFIGURE_OPTIONS += --disable-new-hpcups
-$(HPLIP_VARIANT)/.configured: CONFIGURE_OPTIONS += --enable-cups-drv-install
-
-# use these options for the HPIJS only support
-$(HPIJS_VARIANT)/.configured: CONFIGURE_OPTIONS += --enable-foomatic-ppd-install
-$(HPIJS_VARIANT)/.configured: CONFIGURE_OPTIONS += --with-hpppddir=$(USRSHAREDIR)/ppd/SUNWhpijs/HP
-$(HPIJS_VARIANT)/.configured: CONFIGURE_OPTIONS += --disable-cups-drv-install
-$(HPIJS_VARIANT)/.configured: CONFIGURE_OPTIONS += --disable-hpcups-install
-$(HPIJS_VARIANT)/.configured: CONFIGURE_OPTIONS += --disable-doc-build
-$(HPIJS_VARIANT)/.configured: CONFIGURE_OPTIONS += --enable-hpijs-only-build
-$(HPIJS_VARIANT)/.configured: CONFIGURE_OPTIONS += --enable-hpijs-install
-
-COMPONENT_INSTALL_ARGS += -e
+# Generate configuration scripts
+COMPONENT_PREP_ACTION = (cd $(@D) ; autoconf )
 
 COMPONENT_PRE_CONFIGURE_ACTION = \
 	($(CLONEY) $(SOURCE_DIR) $(@D))
 
-# Generate configuration scripts
-$(HPLIP_VARIANT)/.built: COMPONENT_PREP_ACTION = \
-		(cd $(@D) ; autoconf )
+PYTHON_SCRIPTS += $(PROTO_DIR)/usr/lib/cups/backend/hpfax
+PYTHON_SCRIPTS += $(PROTO_DIR)/usr/lib/cups/filter/hpps
+PYTHON_SCRIPTS += $(PROTO_DIR)/usr/lib/cups/filter/pstotiff
+PYTHON_SCRIPTS += \
+ $(shell nawk -F \= \
+  ' $$1 ~ /^file.*path/ && $$2 ~ /.*\.py$$/ {print "$(PROTO_DIR)/"$$2;} ' \
+  $(COMPONENT_DIR)/hplip.proto-objects)
 
-$(BUILD_DIR)/.allvariantsinstalled: $(VARIANTS:%=%/.installed)
-	$(RM) $(ROOTPPDCACHE)
-	$(MKDIR) $(PROTO_DIR)/usr/lib/lp/caches
-	($(ENV) VER="$(BUILD_DIR)/$(MACH32)-hpijs" \
-		PPDSRC="$(PROTO_DIR)/usr/share/ppd/SUNWhpijs" \
-		DONOTINSTALL="/dev/null" \
-		CACHE="$(ROOTPPDCACHE)" \
-		IPATH="/usr/share/ppd/$(BUILD_DIR)/" \
-		$(KSH93) cache.ksh)
-	# set version of python interpreter to calm the pkglint
-	find $(PROTO_DIR) -name \*.py -print0 | \
-	   while IFS= read -r -d $$'\0' file; do \
-		/usr/bin/sed -e '1,1s&^#!.*python[:blank:]\{0,\}$$&#!$(PYTHON.$(PYTHON_VERSION))&' \
-		   $$file > $$file.pyverset ; \
-	   done
-	find $(PROTO_DIR) -name \*.py.pyverset -print0 | \
-	   while IFS= read -r -d $$'\0' file; do \
-		$(MV) $$file `echo $$file | sed -e 's/[.]pyverset$$//'` ; \
-	   done
+# build .pyc's
+COMPONENT_POST_INSTALL_ACTION += \
 	$(PYTHON.$(PYTHON_VERSION)) -m compileall $(PROTO_DIR)/usr/share/hplip/
-	$(TOUCH) $@
-
-# Since it looks like you can't build HPLIP with both HPIJS and CUPS support
-# and seperate the HPIJS and CUPS PPD data, we need to replicate the code and
-# build it twice.  Once for the HPIJS support used by LP and once for the rest
-# of the support used for CUPS
-#
-configure: $(VARIANTS:%=%/.configured)
-
-build: $(VARIANTS:%=%/.built)
-
-install: $(BUILD_DIR)/.allvariantsinstalled
 
 # empty test target
 test:	$(NO_TESTS)
 
 system-test:    $(NO_TESTS)
 
-# We need one Net-SNMP library on 12, the other on 11, so list both.
 REQUIRED_PACKAGES += image/library/libjpeg
+REQUIRED_PACKAGES += library/libusb-1
 REQUIRED_PACKAGES += library/print/cups-libs
 REQUIRED_PACKAGES += runtime/python-27
 REQUIRED_PACKAGES += system/library/c++-runtime
 REQUIRED_PACKAGES += system/library/libdbus
 REQUIRED_PACKAGES += system/library/math
-REQUIRED_PACKAGES += system/library/usb/libusb
 REQUIRED_PACKAGES += system/management/snmp/net-snmp
-REQUIRED_PACKAGES += system/management/snmp/net-snmp-57
--- a/components/hplip/cache.ksh	Thu Jul 21 13:50:05 2016 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,75 +0,0 @@
-#!/usr/bin/ksh
-#
-# CDDL HEADER START
-#
-# The contents of this file are subject to the terms of the
-# Common Development and Distribution License (the "License").
-# You may not use this file except in compliance with the License.
-#
-# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
-# or http://www.opensolaris.org/os/licensing.
-# See the License for the specific language governing permissions
-# and limitations under the License.
-#
-# When distributing Covered Code, include this CDDL HEADER in each
-# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
-# If applicable, add the following below this CDDL HEADER, with the
-# fields enclosed by brackets "[]" replaced with your own identifying
-# information: Portions Copyright [yyyy] [name of copyright owner]
-#
-# CDDL HEADER END
-#
-# Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
-#
-
-PPDSRC=${PPDSRC:-"${VER}/share/ppd"}
-
-MODEL="ModelName"
-NICK="NickName"
-SED="/usr/bin/sed"
-
-if [ -f ${CACHE} ];
-then
-	/bin/rm ${CACHE}
-fi
-
-#
-# build a ppdcache for the hpijs PPD files
-#
-cd ${PPDSRC}
-for i in `/bin/ls`
-do
-  cd $i
-  for j in `/bin/ls`
-  do
-	case "$j" in
-	*.gz)
-		SRCFILE=/tmp/ppd.$$
-		gzcat $j >${SRCFILE}
-		PPDFILE="${IPATH}${i}/${j}"
-		;;
-	*)
-		SRCFILE=$j
-		PPDFILE="${IPATH}${i}/${j}.gz"
-		;;
-	esac
-	
-	/usr/bin/grep $SRCFILE ${DONOTINSTALL} > /dev/null
-	if [ $? = 1 ];
-	then
-	  MANU=$i
-	  MODEL=`/usr/bin/grep "*ModelName:" $SRCFILE | /usr/bin/cut -d '"' -f2`
-	  NICKN=`/usr/bin/grep "*NickName:" $SRCFILE | /usr/bin/cut -d '"' -f2`
-	  for k in ${MODEL}
-	  do
-	    # change / to \/ for sed
-	    typeset i_clean=$(echo $k | ${SED} -e 's/\//\\\//g')
-	    NICKN=$(echo $NICKN | ${SED} -e "s/$i_clean//"  | ${SED} -e "s/^ //")
-	  done
-
-	  echo ${MANU}:${MODEL}:${NICKN}:::${PPDFILE} >> ${CACHE}
-	fi
-  done
-  cd ..
-
-done
--- a/components/hplip/hplip.p5m	Thu Jul 21 13:50:05 2016 -0700
+++ b/components/hplip/hplip.p5m	Thu Jul 14 06:29:20 2016 -0700
@@ -21,18 +21,18 @@
 # Copyright (c) 2011, 2016, Oracle and/or its affiliates. All rights reserved.
 #
 
+# HPLIP support for CUPS
+<transform file path=usr/lib/cups/backend/.* -> default mode 0555>
+<transform file path=usr/lib/cups/filter/.* -> default mode 0555>
+<transform dir file path=usr/lib/lp/? -> default group lp>
+<transform dir file path=usr/share/ppd/? -> default group lp>
+
+# hplip install its PYTHON modules into usr/share/hplip so it brings problems:
 <transform file path=usr/share/hplip/.+\.py$ -> default mode 0555>
 <transform file path=usr/share/hplip/.+\.py$ -> default pkg.depend.bypass-generate .*>
 <transform file path=usr/share/hplip/.+\.py$ -> default pkg.linted.userland.action001.3 true>
 <transform file path=usr/share/hplip/.+\.pyc$ -> default mode 0555>
 
-# HPLIP support for CUPS
-<transform file path=usr/lib/cups/backend/.* -> default mode 0555>
-<transform dir file path=usr/lib/lp/? -> default group lp>
-<transform dir file path=usr/share/ppd/? -> default group lp>
-
-# HPIJS support for LP
-<transform file path=usr/lib/cups/filter/.* -> default mode 0555>
 <transform file path=usr/lib/cups/backend/hpfax -> default pkg.depend.bypass-generate .*>
 <transform file path=usr/lib/cups/backend/hpfax -> default pkg.linted.userland.action001.3 true>
 <transform file path=usr/lib/cups/filter/hpps -> default pkg.depend.bypass-generate .*>
@@ -54,8 +54,9 @@
 # package metadata
 set name=pkg.fmri \
     value=pkg:/print/filter/hplip@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
-set name=pkg.summary value="hpijs - HP InkJet Server"
-set name=com.oracle.info.description value="the hpijs HP InkJet Server"
+set name=pkg.summary value="hplip - HP Linux Printing"
+set name=com.oracle.info.description \
+    value="Support of HP InkJet, Laser printers for CUPS."
 set name=com.oracle.info.tpno value=$(TPNO)
 set name=info.classification \
     value="org.opensolaris.category.2008:System/Printing "
@@ -63,7 +64,6 @@
 set name=info.upstream-url value=$(COMPONENT_PROJECT_URL)
 set name=org.opensolaris.arc-caseid value=LSARC/2004/262
 set name=org.opensolaris.consolidation value=$(CONSOLIDATION)
-link path=usr/sfw/bin/hpijs target=../../bin/hpijs
 legacy pkg=SUNWhpijs desc="hpijs - HP InkJet Server" \
     name="hpijs - HP InkJet Server"
 license hplip.license license=GPLv2
--- a/components/hplip/hplip.proto-objects	Thu Jul 21 13:50:05 2016 -0700
+++ b/components/hplip/hplip.proto-objects	Thu Jul 14 06:29:20 2016 -0700
@@ -39,7 +39,6 @@
 link path=usr/bin/hp-unload target=../share/hplip/unload.py
 link path=usr/bin/hp-upgrade target=../share/hplip/upgrade.py
 link path=usr/bin/hp-wificonfig target=../share/hplip/wificonfig.py
-file path=usr/bin/hpijs
 dir  path=usr/lib/cups
 dir  path=usr/lib/cups/backend
 file path=usr/lib/cups/backend/hp
@@ -58,9 +57,6 @@
 link path=usr/lib/libhpmud.so target=libhpmud.so.0.0.6
 link path=usr/lib/libhpmud.so.0 target=libhpmud.so.0.0.6
 file path=usr/lib/libhpmud.so.0.0.6
-dir  path=usr/lib/lp
-dir  path=usr/lib/lp/caches
-file path=usr/lib/lp/caches/SUNWhpijs.cache
 dir  path=usr/lib/python2.7
 dir  path=usr/lib/python2.7/vendor-packages
 file path=usr/lib/python2.7/vendor-packages/cupsext.so
@@ -77,261 +73,261 @@
 file path=usr/share/cups/mime/pstotiff.convs
 file path=usr/share/cups/mime/pstotiff.types
 dir  path=usr/share/cups/model
-dir  path=usr/share/cups/model/SUNWhplip
-file path=usr/share/cups/model/SUNWhplip/HP-Fax-hpcups.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/HP-Fax2-hpcups.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/HP-Fax3-hpcups.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/HP-Fax4-hpcups.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-business_inkjet_2250-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-business_inkjet_2280-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-business_inkjet_2300-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-business_inkjet_2600-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-business_inkjet_2800-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-business_inkjet_3000-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-cm8050_mfp_with_edgeline-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-cm8060_mfp_with_edgeline-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_2500-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_2500_series-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_2550_series-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_2605-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_2605dn-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_2605dtn-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_2700-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_2700n-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_2800-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_2820-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_2830-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_2840-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_3000-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_3700-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_3700n-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_3800-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_4500-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_4550-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_4600-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_4600_series-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_4610-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_4650-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_4700-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_4730mfp-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_5500-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_5550-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_5m-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_8500-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_8550-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_9500-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_9500_mfp-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_cm1015-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_cm1017-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_cm1312_mfp-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_cm1312nfi_mfp-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_cm2320_mfp-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_cm2320fxi_mfp-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_cm2320n_mfp-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_cm2320nf_mfp-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_cm3530_mfp-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_cm4540_mfp-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_cm4730_mfp-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_cm6030_mfp-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_cm6040_mfp-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_cm6049_mfp-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_cp1514n-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_cp1515n-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_cp1518ni-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_cp2025-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_cp2025dn-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_cp2025n-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_cp2025x-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_cp3505-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_cp3525-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_cp4005-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_cp4020_series-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_cp4520_series-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_cp5225-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_cp5225dn-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_cp5225n-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_cp5520_series-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_cp6015-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_flow_mfp_m680-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_flow_mfp_m880-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_m552-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_m553-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_m651-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_m750-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_m855-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_mfp_m680-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_pro_m252-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_pro_mfp_m277-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-color_laserjet_pro_mfp_m476-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-designjet_4000ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-designjet_4020ps-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-designjet_4500mfp.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-designjet_4500ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-designjet_4520mfp-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-designjet_4520ps-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-designjet_d5800-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-designjet_t1100ps_24in-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-designjet_t1100ps_44in-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-designjet_t1120ps_24in-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-designjet_t1120ps_44in-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-designjet_t1200_postscript-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-designjet_t1300_postscript-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-designjet_t1500-postscript.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-designjet_t2300_postscript-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-designjet_t2500-postscript.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-designjet_t3500-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-designjet_t7100ps-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-designjet_t7100ps_monochrome-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-designjet_t7200-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-designjet_t770_postscript-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-designjet_t770ps_24in-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-designjet_t790ps_24in-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-designjet_t790ps_44in-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-designjet_t795ps_44in-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-designjet_t920-postscript.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-designjet_z5200_postscript-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-designjet_z5400-postscript.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-designjet_z6100ps_42in_photo-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-designjet_z6100ps_60in_photo-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-designjet_z6200_42in_photo-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-designjet_z6200_60in_photo-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-designjet_z6600-postscript.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-designjet_z6800_photo-postscript.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_100_color_mfp_m175-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_1200-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_1200n-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_1220-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_1220se-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_1300-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_1300n-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_1300xi-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_1320-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_1320_series-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_1320n-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_1320nw-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_1320tn-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_200_color_m251-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_200_colormfp_m275-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_200_colormfp_m276-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_2100-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_2100_series-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_2200-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_2200_series-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_2300-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_2300_series-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_2410-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_2420-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_2430-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_3015-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_3020-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_3030-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_3050-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_3052-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_3200m-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_3300_3310_3320-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_3380-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_3390-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_4-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_4000_series-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_400_m401-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_400_m401dne-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_400_mfp_m425-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_4050_series-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_4100_mfp-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_4100_series-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_4200-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_4240-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_4250-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_4300-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_4345_mfp-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_4350-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_4_plus-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_4ml-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_4mp-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_4si-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_4v-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_5000-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_5000_series-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_500_color_m551-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_500_color_mfp_m570-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_500_color_mfp_m575-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_500_mfp_m525-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_5100_series-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_5200-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_5200l-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_5200lx-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_5mp-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_5p-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_5si-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_5si_mopier-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_600_m601_m602_m603-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_6mp-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_6p-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_700_color_mfp_m775-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_700_m712-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_8000-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_8000_series-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_8100_mfp-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_8100_series-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_8150_mfp-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_9000_mfp-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_9000_series-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_9040-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_9040_mfp-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_9050-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_9050_mfp-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_9055mfp-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_9065mfp-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_cm1410_series-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_color_flow_mfp_m575-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_cp1520_series-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_flow_mfp_m525-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_flow_mfp_m630-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_flow_mfp_m830-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_m1522_mfp-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_m1522n_mfp-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_m1522nf_mfp-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_m1530_mfp_series-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_m2727_mfp_series-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_m3027_mfp-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_m3035_mfp-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_m4345_mfp-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_m4349_mfp-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_m4555_mfp-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_m5025_mfp-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_m5035_mfp-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_m604_m605_m606-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_m806-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_m9040_mfp-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_m9050_mfp-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_m9059_mfp-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_mfp_m521-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_mfp_m630-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_mfp_m725-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_p2015_series-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_p2055_series-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_p3004-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_p3005-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_p3010_series-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_p4010_series-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_pro_m201_m202-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_pro_m701-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_pro_m706-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_pro_mfp_m225_m226-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-laserjet_pro_mfp_m435-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-lj_300_400_color_m351_m451-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-lj_300_400_color_mfp_m375_m475-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-mopier_240-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-mopier_320-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-officejet_color_mfp_x585.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-officejet_color_x555-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-officejet_pro_251dw_printer-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-officejet_pro_276dw_mfp-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-officejet_pro_451_series-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-officejet_pro_476_576_series-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-officejet_pro_551_series-ps.ppd.gz
-file path=usr/share/cups/model/SUNWhplip/hp-officejet_pro_8000_enterprise_a811a-ps.ppd.gz
+dir  path=usr/share/cups/model/hplip
+file path=usr/share/cups/model/hplip/HP-Fax-hpcups.ppd.gz
+file path=usr/share/cups/model/hplip/HP-Fax2-hpcups.ppd.gz
+file path=usr/share/cups/model/hplip/HP-Fax3-hpcups.ppd.gz
+file path=usr/share/cups/model/hplip/HP-Fax4-hpcups.ppd.gz
+file path=usr/share/cups/model/hplip/hp-business_inkjet_2250-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-business_inkjet_2280-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-business_inkjet_2300-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-business_inkjet_2600-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-business_inkjet_2800-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-business_inkjet_3000-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-cm8050_mfp_with_edgeline-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-cm8060_mfp_with_edgeline-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_2500-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_2500_series-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_2550_series-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_2605-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_2605dn-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_2605dtn-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_2700-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_2700n-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_2800-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_2820-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_2830-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_2840-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_3000-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_3700-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_3700n-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_3800-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_4500-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_4550-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_4600-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_4600_series-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_4610-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_4650-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_4700-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_4730mfp-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_5500-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_5550-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_5m-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_8500-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_8550-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_9500-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_9500_mfp-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_cm1015-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_cm1017-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_cm1312_mfp-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_cm1312nfi_mfp-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_cm2320_mfp-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_cm2320fxi_mfp-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_cm2320n_mfp-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_cm2320nf_mfp-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_cm3530_mfp-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_cm4540_mfp-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_cm4730_mfp-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_cm6030_mfp-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_cm6040_mfp-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_cm6049_mfp-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_cp1514n-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_cp1515n-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_cp1518ni-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_cp2025-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_cp2025dn-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_cp2025n-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_cp2025x-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_cp3505-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_cp3525-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_cp4005-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_cp4020_series-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_cp4520_series-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_cp5225-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_cp5225dn-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_cp5225n-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_cp5520_series-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_cp6015-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_flow_mfp_m680-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_flow_mfp_m880-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_m552-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_m553-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_m651-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_m750-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_m855-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_mfp_m680-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_pro_m252-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_pro_mfp_m277-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-color_laserjet_pro_mfp_m476-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-designjet_4000ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-designjet_4020ps-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-designjet_4500mfp.ppd.gz
+file path=usr/share/cups/model/hplip/hp-designjet_4500ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-designjet_4520mfp-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-designjet_4520ps-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-designjet_d5800-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-designjet_t1100ps_24in-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-designjet_t1100ps_44in-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-designjet_t1120ps_24in-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-designjet_t1120ps_44in-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-designjet_t1200_postscript-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-designjet_t1300_postscript-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-designjet_t1500-postscript.ppd.gz
+file path=usr/share/cups/model/hplip/hp-designjet_t2300_postscript-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-designjet_t2500-postscript.ppd.gz
+file path=usr/share/cups/model/hplip/hp-designjet_t3500-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-designjet_t7100ps-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-designjet_t7100ps_monochrome-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-designjet_t7200-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-designjet_t770_postscript-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-designjet_t770ps_24in-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-designjet_t790ps_24in-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-designjet_t790ps_44in-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-designjet_t795ps_44in-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-designjet_t920-postscript.ppd.gz
+file path=usr/share/cups/model/hplip/hp-designjet_z5200_postscript-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-designjet_z5400-postscript.ppd.gz
+file path=usr/share/cups/model/hplip/hp-designjet_z6100ps_42in_photo-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-designjet_z6100ps_60in_photo-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-designjet_z6200_42in_photo-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-designjet_z6200_60in_photo-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-designjet_z6600-postscript.ppd.gz
+file path=usr/share/cups/model/hplip/hp-designjet_z6800_photo-postscript.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_100_color_mfp_m175-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_1200-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_1200n-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_1220-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_1220se-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_1300-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_1300n-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_1300xi-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_1320-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_1320_series-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_1320n-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_1320nw-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_1320tn-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_200_color_m251-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_200_colormfp_m275-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_200_colormfp_m276-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_2100-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_2100_series-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_2200-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_2200_series-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_2300-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_2300_series-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_2410-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_2420-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_2430-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_3015-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_3020-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_3030-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_3050-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_3052-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_3200m-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_3300_3310_3320-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_3380-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_3390-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_4-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_4000_series-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_400_m401-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_400_m401dne-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_400_mfp_m425-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_4050_series-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_4100_mfp-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_4100_series-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_4200-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_4240-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_4250-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_4300-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_4345_mfp-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_4350-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_4_plus-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_4ml-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_4mp-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_4si-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_4v-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_5000-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_5000_series-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_500_color_m551-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_500_color_mfp_m570-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_500_color_mfp_m575-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_500_mfp_m525-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_5100_series-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_5200-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_5200l-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_5200lx-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_5mp-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_5p-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_5si-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_5si_mopier-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_600_m601_m602_m603-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_6mp-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_6p-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_700_color_mfp_m775-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_700_m712-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_8000-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_8000_series-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_8100_mfp-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_8100_series-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_8150_mfp-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_9000_mfp-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_9000_series-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_9040-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_9040_mfp-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_9050-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_9050_mfp-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_9055mfp-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_9065mfp-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_cm1410_series-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_color_flow_mfp_m575-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_cp1520_series-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_flow_mfp_m525-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_flow_mfp_m630-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_flow_mfp_m830-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_m1522_mfp-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_m1522n_mfp-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_m1522nf_mfp-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_m1530_mfp_series-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_m2727_mfp_series-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_m3027_mfp-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_m3035_mfp-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_m4345_mfp-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_m4349_mfp-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_m4555_mfp-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_m5025_mfp-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_m5035_mfp-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_m604_m605_m606-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_m806-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_m9040_mfp-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_m9050_mfp-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_m9059_mfp-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_mfp_m521-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_mfp_m630-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_mfp_m725-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_p2015_series-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_p2055_series-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_p3004-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_p3005-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_p3010_series-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_p4010_series-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_pro_m201_m202-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_pro_m701-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_pro_m706-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_pro_mfp_m225_m226-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-laserjet_pro_mfp_m435-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-lj_300_400_color_m351_m451-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-lj_300_400_color_mfp_m375_m475-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-mopier_240-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-mopier_320-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-officejet_color_mfp_x585.ppd.gz
+file path=usr/share/cups/model/hplip/hp-officejet_color_x555-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-officejet_pro_251dw_printer-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-officejet_pro_276dw_mfp-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-officejet_pro_451_series-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-officejet_pro_476_576_series-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-officejet_pro_551_series-ps.ppd.gz
+file path=usr/share/cups/model/hplip/hp-officejet_pro_8000_enterprise_a811a-ps.ppd.gz
 dir  path=usr/share/doc
 dir  path=usr/share/doc/hplip-$(COMPONENT_VERSION)
 file path=usr/share/doc/hplip-$(COMPONENT_VERSION)/COPYING
@@ -632,1019 +628,6 @@
 file path=usr/share/hplip/upgrade.pyc
 file path=usr/share/hplip/wificonfig.py
 file path=usr/share/hplip/wificonfig.pyc
-dir  path=usr/share/ppd
-dir  path=usr/share/ppd/SUNWhpijs
-dir  path=usr/share/ppd/SUNWhpijs/HP
-file path=usr/share/ppd/SUNWhpijs/HP/hp-2000c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-2500c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-910-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-915-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-business_inkjet_1000-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-business_inkjet_1100-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-business_inkjet_1200-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-business_inkjet_2200-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-business_inkjet_2230-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-business_inkjet_2250-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-business_inkjet_2250-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-business_inkjet_2280-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-business_inkjet_2280-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-business_inkjet_2300-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-business_inkjet_2300-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-business_inkjet_2600-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-business_inkjet_2600-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-business_inkjet_2800-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-business_inkjet_2800-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-business_inkjet_3000-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-business_inkjet_3000-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-cm8050_mfp_with_edgeline-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-cm8060_mfp_with_edgeline-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_inkjet_cp1700-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_inkjet_printer_cp1700-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_1600-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_2500-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_2500-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_2500_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_2500_series-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_2550_series-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_2600n-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_2605-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_2605dn-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_2605dtn-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_2700-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_2700n-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_2800-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_2820-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_2830-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_2840-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_3000-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_3000-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_3500-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_3500n-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_3550-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_3550n-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_3600-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_3700-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_3700-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_3700n-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_3700n-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_3800-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_3800-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_4500-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_4500-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_4550-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_4550-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_4600-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_4600-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_4600_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_4600_series-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_4610-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_4610-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_4650-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_4650-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_4700-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_4700-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_4730mfp-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_4730mfp-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_5-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_5500-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_5500-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_5550-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_5550-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_5m-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_5m-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_8500-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_8500-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_8550-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_8550-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_9500-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_9500-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_9500_mfp-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_9500_mfp-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cm1015-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cm1017-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cm1312_mfp-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cm1312_mfp-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cm1312nfi_mfp-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cm1312nfi_mfp-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cm2320_mfp-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cm2320_mfp-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cm2320fxi_mfp-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cm2320fxi_mfp-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cm2320n_mfp-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cm2320n_mfp-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cm2320nf_mfp-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cm2320nf_mfp-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cm3530_mfp-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cm3530_mfp-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cm4540_mfp-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cm4540_mfp-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cm4730_mfp-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cm4730_mfp-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cm6030_mfp-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cm6030_mfp-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cm6040_mfp-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cm6040_mfp-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cm6049_mfp-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cm6049_mfp-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cp1215-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cp1217-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cp1514n-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cp1514n-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cp1515n-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cp1515n-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cp1518ni-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cp1518ni-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cp2025-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cp2025-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cp2025dn-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cp2025dn-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cp2025n-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cp2025n-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cp2025x-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cp2025x-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cp3505-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cp3505-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cp3525-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cp3525-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cp4005-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cp4005-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cp4020_series-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cp4020_series-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cp4520_series-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cp4520_series-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cp5225-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cp5225-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cp5225dn-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cp5225dn-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cp5225n-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cp5225n-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cp5520_series-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cp5520_series-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cp6015-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_cp6015-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_flow_mfp_m680-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_flow_mfp_m880-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_m552-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_m553-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_m651-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_m750-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_m855-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_mfp_m680-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_pro_m252-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_pro_mfp_m176n-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_pro_mfp_m177fw-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_pro_mfp_m277-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-color_laserjet_pro_mfp_m476-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-cp1160-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-designjet_4000ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-designjet_4020ps-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-designjet_4500mfp.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-designjet_4500ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-designjet_4520mfp-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-designjet_4520ps-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-designjet_d5800-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-designjet_t1100ps_24in-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-designjet_t1100ps_44in-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-designjet_t1120ps_24in-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-designjet_t1120ps_44in-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-designjet_t1200_postscript-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-designjet_t1300_postscript-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-designjet_t1500-postscript.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-designjet_t2300_postscript-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-designjet_t2500-postscript.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-designjet_t3500-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-designjet_t7100ps-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-designjet_t7100ps_monochrome-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-designjet_t7200-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-designjet_t770_postscript-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-designjet_t770ps_24in-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-designjet_t790ps_24in-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-designjet_t790ps_44in-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-designjet_t795ps_44in-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-designjet_t920-postscript.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-designjet_z5200_postscript-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-designjet_z5400-postscript.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-designjet_z6100ps_42in_photo-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-designjet_z6100ps_60in_photo-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-designjet_z6200_42in_photo-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-designjet_z6200_60in_photo-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-designjet_z6600-postscript.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-designjet_z6800_photo-postscript.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_1000_j110_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_1010_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_1050_j410_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_1100-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_1110_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_1120-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_1125-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_1200c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_1220c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_1280-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_1510_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_1600c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_1600cm-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_1600cn-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_2000_j210_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_2020_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_2050_j510_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_2130_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_2510_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_2520_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_2540_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_2640_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_3000_j310_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_3050_j610_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_3050a_j611_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_3070_b611_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_3320-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_3325-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_3420-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_3425-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_3450-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_3500-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_3510_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_3520_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_3540_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_3550-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_3600-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_3630_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_3650-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_3740-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_3810-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_3816-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_3819-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_3820-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_3822-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_3830_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_3840-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_3870-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_3900-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_3910-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_3920-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_3940-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_400-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_400l-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_4510_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_460-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_4610_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_4620_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_4640_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_500-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_500c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_505j-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_510-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_5100-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_520-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_540-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_5400_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_550c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_5520_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_5550-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_5551-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_5552-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_5600-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_5650-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_5652-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_5700-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_5800-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_5850-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_5900_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_600-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_610c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_610cl-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_6120-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_6122-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_6127-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_612c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_630c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_632c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_640c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_648c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_6500-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_6520_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_656c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_660-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_6600-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_670-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_670c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_670tv-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_672c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_680-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_6800-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_682-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_690-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_690c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_692-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_693-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_694-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_6940_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_695-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_697-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_6980_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_810c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_812c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_815c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_816c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_825c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_830c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_832c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_840c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_841c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_842c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_843c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_845c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_850c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_855c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_870c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_880c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_882c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_890c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_895c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_916c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_920c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_9300-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_930c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_932c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_933c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_934c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_935c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_940c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_948c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_950c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_952c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_955c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_957c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_959c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_9600-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_960c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_970c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_975c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_9800-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_980c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_990c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_995c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_d1300_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_d1400_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_d1500_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_d1600_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_d2300_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_d2400_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_d2500_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_d2600_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_d4100_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_d4200_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_d4300_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_d5500_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_d730-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_f2100_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_f2200_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_f2400_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_f300_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_f4100_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_f4200_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_f4210_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_f4213_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_f4400_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_f4500_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_f735-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_ink_adv_2010_k010-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_ink_adv_2060_k110-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_ink_advant_k109a-z-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-deskjet_ink_advant_k209a-z-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-dj350-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-dj450-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-envy_100_d410_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-envy_110_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-envy_120_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-envy_4500_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-envy_5530_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-envy_5640_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-envy_5660_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-envy_7640_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_1000-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_1005_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_100_color_mfp_m175-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_1010-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_1012-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_1015-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_1018-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_1020-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_1022-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_1022-hpijs-zjs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_1022n-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_1022n-hpijs-zjs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_1022nw-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_1022nw-hpijs-zjs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_1100-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_1100a-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_1100xi-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_1150-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_1160-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_1160_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_1200-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_1200-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_1200n-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_1200n-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_1220-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_1220-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_1220se-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_1220se-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_1300-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_1300-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_1300n-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_1300n-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_1300xi-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_1300xi-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_1320-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_1320-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_1320_series-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_1320_series-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_1320n-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_1320n-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_1320nw-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_1320nw-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_1320tn-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_1320tn-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_200_color_m251-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_200_colormfp_m275-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_200_colormfp_m276-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_2100-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_2100-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_2100_series-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_2100_series-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_2200-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_2200-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_2200_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_2200_series-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_2300-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_2300-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_2300_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_2300_series-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_2410-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_2410-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_2420-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_2420-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_2430-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_2430-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_3015-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_3015-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_3020-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_3020-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_3030-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_3030-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_3050-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_3050-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_3052-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_3052-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_3055-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_3100-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_3150-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_3200-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_3200m-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_3200m-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_3200se-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_3300_3310_3320-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_3300_3310_3320-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_3330-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_3380-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_3380-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_3390-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_3390-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_3392-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_4-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_4000_series-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_4000_series-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_400_m401-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_400_m401dne-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_400_mfp_m425-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_4050_series-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_4050_series-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_4100_mfp-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_4100_mfp-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_4100_series-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_4100_series-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_4150_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_4200-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_4200-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_4240-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_4240-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_4250-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_4250-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_4300-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_4300-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_4345_mfp-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_4345_mfp-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_4350-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_4350-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_4_plus-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_4_plus-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_4l-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_4ml-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_4ml-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_4mp-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_4mp-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_4si-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_4si-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_4v-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_4v-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_5000-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_5000-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_5000_series-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_5000_series-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_500_color_m551-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_500_color_mfp_m570-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_500_color_mfp_m575-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_500_mfp_m525-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_5100_series-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_5100_series-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_5200-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_5200-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_5200l-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_5200l-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_5200lx-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_5200lx-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_5l-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_5mp-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_5mp-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_5p-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_5p-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_5si-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_5si-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_5si_mopier-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_5si_mopier-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_600_m601_m602_m603-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_6l-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_6mp-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_6mp-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_6p-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_6p-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_700_color_mfp_m775-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_700_m712-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_8000-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_8000-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_8000_series-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_8000_series-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_8100_mfp-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_8100_mfp-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_8100_series-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_8100_series-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_8150_mfp-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_8150_mfp-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_8150_series-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_9000_mfp-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_9000_mfp-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_9000_series-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_9000_series-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_9040-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_9040-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_9040_mfp-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_9040_mfp-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_9050-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_9050-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_9050_mfp-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_9050_mfp-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_9055mfp-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_9055mfp-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_9065mfp-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_9065mfp-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_cm1410_series-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_cm1411fn-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_cm1412fn-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_cm1413fn-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_cm1415fn-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_cm1415fnw-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_cm1416fnw-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_cm1417fnw-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_cm1418fnw-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_color_flow_mfp_m575-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_cp1025-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_cp1025nw-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_cp1520_series-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_cp_1025-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_cp_1025nw-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_flow_mfp_m525-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_flow_mfp_m630-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_flow_mfp_m830-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_m1005-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_m1120_mfp-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_m1120n_mfp-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_m1319f_mfp-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_m1522_mfp-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_m1522n_mfp-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_m1522nf_mfp-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_m1522nf_mfp-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_m1530_mfp_series-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_m1537dnf_mfp-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_m1538dnf_mfp-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_m1539dnf_mfp-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_m2727_mfp-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_m2727_mfp_series-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_m3027_mfp-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_m3027_mfp-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_m3035_mfp-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_m3035_mfp-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_m4345_mfp-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_m4345_mfp-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_m4349_mfp-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_m4349_mfp-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_m4555_mfp-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_m5025_mfp-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_m5025_mfp-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_m5035_mfp-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_m5035_mfp-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_m5039_mfp-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_m604_m605_m606-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_m806-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_m9040_mfp-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_m9040_mfp-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_m9050_mfp-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_m9050_mfp-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_m9059_mfp-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_m9059_mfp-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_mfp_m521-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_mfp_m630-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_mfp_m725-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p1005-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p1006-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p1007-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p1008-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p1009-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p1505-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p1505n-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p1505n-hpijs-zxs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p2014-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p2014-hpijs-zxs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p2014n-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p2014n-hpijs-zxs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p2015_series-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p2015_series-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p2015d_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p2015dn_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p2015n_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p2015x_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p2035-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p2035-hpijs-zjs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p2035n-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p2035n-hpijs-zjs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p2055-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p2055_series-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p2055d-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p2055dn-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p2055x-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p3004-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p3004-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p3005-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p3005-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p3010_series-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p3010_series-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p4010_series-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p4014-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p4014dn-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p4014n-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p4015-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p4015dn-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p4015n-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p4015tn-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p4015x-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p4515-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p4515n-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p4515tn-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p4515x-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_p4515xm-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_pro_m201_m202-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_pro_m701-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_pro_m706-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_pro_mfp_m125a-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_pro_mfp_m125nw-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_pro_mfp_m125r-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_pro_mfp_m125ra-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_pro_mfp_m125rnw-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_pro_mfp_m126a-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_pro_mfp_m126nw-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_pro_mfp_m127fn-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_pro_mfp_m127fp-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_pro_mfp_m127fw-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_pro_mfp_m128fn-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_pro_mfp_m128fp-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_pro_mfp_m128fw-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_pro_mfp_m225_m226-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_pro_mfp_m435-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_professional_m1132_mfp-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_professional_m1136_mfp-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_professional_m1137_mfp-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_professional_m1138_mfp-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_professional_m1139_mfp-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_professional_m1212nf_mfp-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_professional_m1213nf_mfp-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_professional_m1214nfh_mfp-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_professional_m1216nfh_mfp-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_professional_m1217nfw_mfp-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_professional_m1218nfg_mfp-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_professional_m1218nfs_mfp-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_professional_m1219nf_mfp-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_professional_m1219nfg_mfp-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_professional_m1219nfs_mfp-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_professional_p1102-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_professional_p1102w-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_professional_p1106-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_professional_p1106w-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_professional_p1107-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_professional_p1107w-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_professional_p1108-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_professional_p1108w-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_professional_p1109-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_professional_p1109w-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_professional_p1566-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_professional_p1567-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_professional_p1568-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_professional_p1569-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_professional_p1606dn-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_professional_p1607dn-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_professional_p1608dn-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_professional_p1609dn-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-laserjet_professional_p_1102w-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-lj_300_400_color_m351_m451-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-lj_300_400_color_mfp_m375_m475-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-mopier_240-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-mopier_240-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-mopier_320-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-mopier_320-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_100_mobile_l411-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_150_mobile_l511-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_2620_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_3830_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_4000_k210-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_4100_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_4105-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_4115_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_4200_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_4255-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_4300_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_4400_k410-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_4500_g510a-f-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_4500_g510g-m-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_4500_g510n-z-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_4500_k710-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_4610_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_4620_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_4630_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_5100_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_5105-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_5110-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_5110v-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_5500_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_5600_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_5740_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_6000_e609a-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_6000_e609n-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_6100-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_6100_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_6150_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_6200_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_6300_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_6500_e709a-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_6500_e709n-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_6500_e710a-f-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_6500_e710n-z-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_6600-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_6700-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_6800-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_7000_e809a-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_7000_e809a_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_7100_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_7110_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_7200_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_7300_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_7400_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_7500_e910-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_7510_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_7610_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_8040_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_9100_series-hpijs-pcl3.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_color_mfp_x585.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_color_x555-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_d_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_g55-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_g55xi-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_g85-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_g85xi-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_g95-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_h470-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_j3500_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_j3600_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_j4500_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_j4660_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_j4680_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_j5500_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_j5700_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_j6400_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_k60-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_k60xi-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_k7100-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_k80-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_k80xi-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_lx-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_pro_1150c-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_pro_1170c_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_pro_251dw_printer-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_pro_276dw_mfp-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_pro_3610-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_pro_3620-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_pro_451_series-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_pro_476_576_series-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_pro_551_series-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_pro_6230-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_pro_6830-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_pro_8000_a809-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_pro_8000_enterprise_a811a-ps.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_pro_8100-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_pro_8500_a909a-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_pro_8500_a909g-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_pro_8500_a909n-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_pro_8500_a910-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_pro_8600-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_pro_8610-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_pro_8620-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_pro_8630-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_pro_8640-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_pro_8660-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_pro_k5300-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_pro_k5400-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_pro_k550-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_pro_k850-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_pro_k8600-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_pro_l7300-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_pro_l7400-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_pro_l7500-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_pro_l7600-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_pro_l7700-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_r40-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_r40xi-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_r45-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_r60-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_r65-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_r80-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_r80xi-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_series_300-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_series_310-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_series_320-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_series_330-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_series_350-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_series_520-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_series_570-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_series_580-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_series_590-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_series_600-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_series_610-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_series_630-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_series_700-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_series_710-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_series_720-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_series_725-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_t_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_v30-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_v40-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_v40xi-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-officejet_v45-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_100-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_1115-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_1215-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_1218-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_130-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_1315-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_140_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_230-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_240_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_2570_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_2600_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_2700_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_3100_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_3200_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_320_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_3300_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_330_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_370_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_380_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_420_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_470_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_5510_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_5510d_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_5520_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_6510_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_6520_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_7150-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_7200_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_7345-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_7350-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_7400_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_7510_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_7520_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_7550-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_7600_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_7700_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_7800_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_7900_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_8000_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_8100_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_8200_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_8400_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_8700_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_a310_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_a320_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_a430_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_a440_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_a510_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_a520_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_a530_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_a610_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_a620_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_a630_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_a640_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_a710_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_a820_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_b010_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_b109a-m-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_b109a_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_b110_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_b8500_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_c309a_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_c3100_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_c4100_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_c4200_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_c4340_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_c4380_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_c4400_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_c4500_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_c4600_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_c4700_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_c5100_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_c5200_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_c5300_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_c5500_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_c6100_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_c6200_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_c6300_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_c7100_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_c7200_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_c8100_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_d110_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_d5060_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_d5100_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_d5300_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_d5400_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_d6100_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_d7100_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_d7200_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_d7300_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_d7400_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_d7500_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_estn_c510_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_ink_adv_k510-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_p1000-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_p1100-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_plus_b209a-m-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_plus_b210_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_prem-web_c309n-s-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_prem_c310_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_prem_c410_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_premium_c309g-m-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_pro_b8300_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_pro_b8800_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-photosmart_wireless_b109n-z-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-printer_scanner_copier_300-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-psc_1000_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-psc_1100_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-psc_1200_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-psc_1300_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-psc_1310_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-psc_1358_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-psc_1400_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-psc_1500_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-psc_1510_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-psc_1600_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-psc_2100_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-psc_2150_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-psc_2170_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-psc_2200_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-psc_2210_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-psc_2300_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-psc_2350_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-psc_2400_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-psc_2500_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-psc_500-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-psc_720-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-psc_750-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-psc_750xi-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-psc_760-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-psc_780-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-psc_780xi-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-psc_900_series-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-psc_920-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-psc_950-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-psc_950vr-hpijs.ppd.gz
-file path=usr/share/ppd/SUNWhpijs/HP/hp-psc_950xi-hpijs.ppd.gz
 dir  path=var
 dir  path=var/lib
 dir  path=var/lib/hp
--- a/components/hplip/patches/04_pstotiff.patch	Thu Jul 21 13:50:05 2016 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,10 +0,0 @@
-Home brewed patch
-
---- a/fax/filters/pstotiff.orig	Fri Mar 25 03:39:05 2011
-+++ b/fax/filters/pstotiff	Fri Mar 25 03:42:38 2011
-@@ -1,4 +1,4 @@
--#!/usr/bin/env python
-+#!/usr/bin/python2.7
- 
- import os
- import os.path
--- a/components/hplip/patches/05_hpps.patch	Thu Jul 21 13:50:05 2016 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,11 +0,0 @@
-source: in-house
-Freeze python version for pkglint.
-
---- a/prnt/filters/hpps	2014-04-04 03:39:47.000000000 -0700
-+++ b/prnt/filters/hpps	2014-05-22 02:13:25.977568700 -0700
-@@ -1,4 +1,4 @@
--#!/usr/bin/env python
-+#!/usr/bin/python2.7
- # -*- coding: utf-8 -*-
- #
- # (c) Copyright 2003-2012 Hewlett-Packard Development Company, L.P.
--- a/components/hplip/patches/06_hpfax.patch	Thu Jul 21 13:50:05 2016 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,11 +0,0 @@
-source: in-house
-Freeze python version for pkglint.
-
---- a/fax/backend/hpfax.py	2014-04-04 03:42:15.000000000 -0700
-+++ b/fax/backend/hpfax.py	2014-05-22 02:16:18.325960600 -0700
-@@ -1,4 +1,4 @@
--#!/usr/bin/env python
-+#!/usr/bin/python2.7
- # -*- coding: utf-8 -*-
- #
- # (c) Copyright 2003-2009 Hewlett-Packard Development Company, L.P.