Index: head/print/cups-base/Makefile =================================================================== --- head/print/cups-base/Makefile (revision 389019) +++ head/print/cups-base/Makefile (revision 389020) @@ -1,315 +1,315 @@ # Created by: Alan Eldridge # $FreeBSD$ PORTNAME= cups PORTVERSION= 2.0.3 DISTVERSIONSUFFIX= -source #PORTREVISION= defined further CATEGORIES= print MASTER_SITES= http://www.cups.org/software/${DISTVERSION}/ \ EASYSW/${PORTNAME}/${DISTVERSION} PKGNAMESUFFIX= ${CUPS_SUFFIX}${PKGNAMESUFFIX2} MAINTAINER= ports@FreeBSD.org COMMENT= Common UNIX Printing System: ${COMMENT2} LICENSE= GPLv2 LIB_DEPENDS= libgnutls.so:${PORTSDIR}/security/gnutls \ libgcrypt.so:${PORTSDIR}/security/libgcrypt CONFLICTS= LPRng-[0-9]* UNIQUENAME= ${PORTNAME}${PKGNAMESUFFIX} USES+= cpe gmake pkgconfig tar:bzip2 CPE_VENDOR= apple DESTDIRNAME= DSTROOT GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib DSOFLAGS= -Wl,-rpath,${PREFIX}/lib ${LDFLAGS} ${LIBS} CONFIGURE_ENV= DSOFLAGS="${DSOFLAGS}" CONFIGURE_ARGS+= --localstatedir=/var \ --disable-gssapi \ --with-cups-user=${USERS} \ --with-cups-group=${GROUPS} \ --with-system-groups=${CUPSSYSGRP} \ --with-docdir=${DOCSDIR} \ --with-menudir=${DESKTOPDIR} \ --with-domainsocket=${CUPS_SOCKET} \ --with-cachedir=${CUPS_CACHEDIR} \ --with-pam-module="unix" \ --enable-gnutls CUPS_CACHEDIR?= /var/db/cups CUPS_SPOOLDIR= /var/spool/cups CUPS_SOCKET?= /var/run/cups.sock CUPS_PDFTOPS?= ${LOCALBASE}/libexec/xpdf/pdftops WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION} CUPSSYSGRP= wheel # GROUPS/USERS does not work here GROUPS= cups USERS= cups # UNIQUENAME must be set before bsd.port.pre.mk so OPTIONSFILE can be included OPTIONS_SUB= yes .if defined(CUPS_CLIENT) PORTREVISION= 1 LICENSE= LGPL21 CUPS_SUFFIX= -client OPTIONS_RADIO= ZEROCONF OPTIONS_RADIO_ZEROCONF= AVAHI MDNSRESPONDER OPTIONS_DEFAULT+= MDNSRESPONDER .elif defined(CUPS_IMAGE) PORTREVISION= 1 CUPS_SUFFIX= -image LICENSE= LGPL21 .else -PORTREVISION= 1 +PORTREVISION= 2 CUPS_SUFFIX= -base # No DOCS option. Files are needed by web interface. OPTIONS_DEFINE= DBUS ICONS LIBPAPER LIBUSB PAM XDG_OPEN OPTIONS_GROUP= WEB OPTIONS_GROUP_WEB= JAVA PERL PHP PYTHON OPTIONS_RADIO= ZEROCONF OPTIONS_RADIO_ZEROCONF= AVAHI MDNSRESPONDER OPTIONS_DEFAULT+= LIBPAPER MDNSRESPONDER ICONS .endif ICONS_DESC= Desktop icons LIBUSB_DESC= USB support WEB_DESC= Interpreters for web interfaces XDG_OPEN_DESC= Build with XDG_OPEN as browser ZEROCONF_DESC= Zeroconf support .include .if defined(CUPS_CLIENT) COMMENT2= Library cups INSTALL_WRKSRC= ${WRKSRC}/cups PLIST= ${MASTERDIR}/pkg-plist.client USES+= iconv LIBS+= ${ICONV_LIB} USE_LDCONFIG= yes PKGMESSAGE= ${NONEXISTENT} DESCR= ${MASTERDIR}/pkg-descr.client .elif defined(CUPS_IMAGE) LIB_DEPENDS+= libcups.so:${PORTSDIR}/${PKGCATEGORY}/cups-client \ libjpeg.so:${PORTSDIR}/graphics/jpeg \ libpng.so:${PORTSDIR}/graphics/png \ libtiff.so:${PORTSDIR}/graphics/tiff # force build if old cups is installed. BUILD_DEPENDS+= cups-client${PKGNAMESUFFIX2}>=${PORTVERSION}:${PORTSDIR}/${PKGCATEGORY}/cups-client COMMENT2= Library cupsimage INSTALL_WRKSRC= ${WRKSRC}/filter PLIST= ${MASTERDIR}/pkg-plist.image USE_LDCONFIG= yes PKGMESSAGE= ${NONEXISTENT} DESCR= ${MASTERDIR}/pkg-descr.image .else LIB_DEPENDS+= libcups.so:${PORTSDIR}/${PKGCATEGORY}/cups-client \ libcupsimage.so:${PORTSDIR}/${PKGCATEGORY}/cups-image # force build if old cups is installed. BUILD_DEPENDS+= cups-client${PKGNAMESUFFIX2}>=${PORTVERSION}:${PORTSDIR}/${PKGCATEGORY}/cups-client BUILD_DEPENDS+= cups-image${PKGNAMESUFFIX2}>=${PORTVERSION}:${PORTSDIR}/${PKGCATEGORY}/cups-image COMMENT2= Server USE_RC_SUBR= cupsd PLIST_SUB+= CACHEDIR="${CUPS_CACHEDIR}" BROKEN_ia64= stack-protector not supported on ia64 .endif .if defined(CUPS_OVERWRITE_BASE) PLIST_SUB+= OVERWRITE="" CONFIGURE_ARGS+= --with-printcap=/etc/printcap .else PLIST_SUB+= OVERWRITE="@comment " CONFIGURE_ARGS+= --with-printcap=${PREFIX}/etc/printcap .endif # Don't use CONFIGURE_ARGS+=--without-* to disable web interpreters because it # will set the path of the interpreter to "no" and set it's existence to TRUE. .if !defined(CUPS_CLIENT) && !defined(CUPS_IMAGE) . if ${PORT_OPTIONS:MJAVA} CONFIGURE_ARGS+= --with-java=${JAVA} USE_JAVA= yes . endif . if ${PORT_OPTIONS:MPERL} CONFIGURE_ARGS+= --with-perl=${PERL} USES+= perl5 . endif . if ${PORT_OPTIONS:MPHP} CONFIGURE_ARGS+= --with-php=${LOCALBASE}/bin/php-cgi USE_PHP= yes USE_PHP_BUILD= yes WANT_PHP_CGI= yes . endif . if ${PORT_OPTIONS:MPYTHON} CONFIGURE_ARGS+= --with-python=${PYTHON_CMD} USES+= python . endif . if ${PORT_OPTIONS:MLIBPAPER} CONFIGURE_ARGS+= --enable-libpaper LIB_DEPENDS+= libpaper.so:${PORTSDIR}/print/libpaper . endif . if ${PORT_OPTIONS:MPAM} CONFIGURE_ARGS+= --enable-pam . else CONFIGURE_ARGS+= --disable-pam . endif . if ${PORT_OPTIONS:MDBUS} LIB_DEPENDS+= libdbus-1.so:${PORTSDIR}/devel/dbus CONFIGURE_ARGS+= --enable-dbus . else CONFIGURE_ARGS+= --disable-dbus . endif . if ${PORT_OPTIONS:MXDG_OPEN} RUN_DEPENDS+= xdg-open:${PORTSDIR}/devel/xdg-utils . endif . if ${PORT_OPTIONS:MLIBUSB} CONFIGURE_ARGS+= --enable-libusb PLIST_SUB+= LIBUSB="" . else CONFIGURE_ARGS+= --disable-libusb PLIST_SUB+= LIBUSB="@comment " . endif . if ${PORT_OPTIONS:MICONS} INSTALLS_ICONS= yes CONFIGURE_ARGS+= --with-icondir=${PREFIX}/share/icons . endif SUB_FILES+= ulpt-cupsd.conf ulpt-cupsd.sh .endif .if !defined(CUPS_IMAGE) . if ${PORT_OPTIONS:MMDNSRESPONDER} LIB_DEPENDS+= libdns_sd.so:${PORTSDIR}/net/mDNSResponder CONFIGURE_ARGS+= --enable-dnssd CONFIGURE_ARGS+= --with-dnssd-includes=${LOCALBASE}/include CONFIGURE_ARGS+= --disable-avahi SUB_LIST+= ZEROCONF="mdnsd" . elif ${PORT_OPTIONS:MAVAHI} CONFIGURE_ARGS+= --enable-avahi CONFIGURE_ARGS+= --disable-dnssd LIB_DEPENDS+= libavahi-client.so:${PORTSDIR}/net/avahi-app SUB_LIST+= ZEROCONF="avahi_daemon" . else CONFIGURE_ARGS+= --disable-dnssd CONFIGURE_ARGS+= --disable-avahi SUB_LIST+= ZEROCONF="" . endif .endif .if ${OSVERSION} < 1000036 && ${ARCH} == i386 LIBS+= -lssp_nonshared .endif post-patch: .if ${ARCH} == "amd64" @${REINPLACE_CMD} -e 's|@PIEFLAGS@||' ${WRKSRC}/Makedefs.in .endif .if ${PORT_OPTIONS:MMDNSRESPONDER} @${REINPLACE_CMD} -e 's|Darwin|FreeBSD|' \ ${WRKSRC}/backend/Makefile .endif .if ${PORT_OPTIONS:MXDG_OPEN} @${REINPLACE_CMD} -e 's|htmlview|xdg-open|' ${WRKSRC}/desktop/cups.desktop.in .endif @${REINPLACE_CMD} -e '/SILENT/d' ${WRKSRC}/Makedefs.in @${REINPLACE_CMD} -e 's|/etc/cups|${LOCALBASE}/etc/cups|g' ${WRKSRC}/man/*.man* @${REINPLACE_CMD} -e 's|/private/etc/pam.d|${LOCALBASE}/etc/pam.d|' \ -e 's|-D_LARGEFILE64_SOURCE||g' \ ${WRKSRC}/${CONFIGURE_SCRIPT} @${REINPLACE_CMD} -e 's|\.default|.sample|'\ ${WRKSRC}/cgi-bin/admin.c\ ${WRKSRC}/CHANGES-1.3.txt\ ${WRKSRC}/conf/Makefile\ ${WRKSRC}/packaging/cups.list.in\ ${WRKSRC}/packaging/cups.spec\ ${WRKSRC}/packaging/cups.spec.in .if defined(CUPS_CLIENT) @${REINPLACE_CMD} \ -e 's|cups test|cups|' \ -e 's|cups filter |cups |' \ -e 's|driver ppdc scheduler||' \ -e 's|$$.PHPDIR. $$.FONTS.||' \ ${WRKSRC}/Makefile .elif defined(CUPS_IMAGE) @${REINPLACE_CMD} \ -e 's|cups test||' \ -e 's|cups filter |filter |' \ -e 's|driver ppdc scheduler||' \ -e 's|$$.PHPDIR. $$.FONTS.||' \ ${WRKSRC}/Makefile .else @${REINPLACE_CMD} \ -e 's|cups test|test|' \ -e 's|cups filter driver|driver|' \ -e '/cd cups/d' \ -e 's|$$.INSTALL_SCRIPT. cups-config|echo skip: cups-config|' \ ${WRKSRC}/Makefile @${REINPLACE_CMD} \ -e 's|cups-config.$$.MAN1EXT. ||' \ ${WRKSRC}/man/Makefile .endif post-configure: .if defined(CUPS_CLIENT) @${REINPLACE_CMD} \ -e 's|filter .* templates||' \ ${WRKSRC}/Makedefs .elif defined(CUPS_IMAGE) @${REINPLACE_CMD} \ -e 's|filter .* templates|filter|' \ ${WRKSRC}/Makedefs .else @${REINPLACE_CMD} \ -e 's|filter backend|backend|' \ -e 's|/etc/pam.d|${LOCALBASE}/etc/pam.d|'\ ${WRKSRC}/Makedefs .endif .if !defined(CUPS_CLIENT) pre-build: ${CP} -p ${LOCALBASE}/lib/libcups.a ${WRKSRC}/cups/ ${CP} -p ${LOCALBASE}/lib/libcups.so ${WRKSRC}/cups/ ${CP} -p ${LOCALBASE}/lib/libcups.so.2 ${WRKSRC}/cups/ .if !defined(CUPS_IMAGE) ${CP} -p ${LOCALBASE}/lib/libcupsimage.so ${WRKSRC}/filter/ ${CP} -p ${LOCALBASE}/lib/libcupsimage.so.2 ${WRKSRC}/filter/ .endif .endif post-install: ${CHMOD} u+w ${STAGEDIR}${PREFIX}/lib/*.so.* ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/*.so.* ${CHMOD} u-w ${STAGEDIR}${PREFIX}/lib/*.so.* .if defined(CUPS_CLIENT) ${INSTALL_SCRIPT} ${WRKSRC}/cups-config ${STAGEDIR}${PREFIX}/bin ${INSTALL_DATA} ${WRKSRC}/cups/libcups.a ${STAGEDIR}${PREFIX}/lib ${INSTALL_MAN} ${WRKSRC}/man/cups-config.man ${STAGEDIR}${PREFIX}/man/man1/cups-config.1 .elif defined(CUPS_IMAGE) .else ${LN} -sf lpr ${STAGEDIR}${PREFIX}/bin/lpr-cups ${MKDIR} ${STAGEDIR}${ETCDIR}/ .for f in cupsd.conf mime.convs mime.types snmp.conf test -f ${STAGEDIR}${ETCDIR}/${f} && ${RM} -f ${STAGEDIR}${ETCDIR}/${f} || ${TRUE} ${INSTALL_DATA} ${WRKSRC}/conf/${f} ${STAGEDIR}${ETCDIR}/${f}.sample .endfor @${MV} ${STAGEDIR}${ETCDIR}/cups-files.conf ${STAGEDIR}${ETCDIR}/cups-files.conf.sample @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_DATA} ${WRKDIR}/ulpt-cupsd.conf ${STAGEDIR}${EXAMPLESDIR}/ ${INSTALL_SCRIPT} ${WRKDIR}/ulpt-cupsd.sh ${STAGEDIR}${PREFIX}/sbin/ .endif .include Index: head/print/cups-base/pkg-plist =================================================================== --- head/print/cups-base/pkg-plist (revision 389019) +++ head/print/cups-base/pkg-plist (revision 389020) @@ -1,668 +1,669 @@ %%OVERWRITE%%@exec if test -e /usr/bin/lp; then chmod -h 0 /usr/bin/lp; fi %%OVERWRITE%%@exec if test -e /usr/bin/lpq; then chmod -h 0 /usr/bin/lpq; fi %%OVERWRITE%%@exec if test -e /usr/bin/lpr; then chmod -h 0 /usr/bin/lpr; fi %%OVERWRITE%%@exec if test -e /usr/bin/lprm; then chmod -h 0 /usr/bin/lprm; fi %%OVERWRITE%%@exec if test -e /usr/sbin/lpc; then chmod -h 0 /usr/sbin/lpc; fi %%OVERWRITE%%@unexec if test -e /usr/bin/lp; then chmod -h 0555 /usr/bin/lp; fi %%OVERWRITE%%@unexec if test -e /usr/bin/lpq; then chmod -h 06555 /usr/bin/lpq; fi %%OVERWRITE%%@unexec if test -e /usr/bin/lpr; then chmod -h 06555 /usr/bin/lpr; fi %%OVERWRITE%%@unexec if test -e /usr/bin/lprm; then chmod -h 06555 /usr/bin/lprm; fi %%OVERWRITE%%@unexec if test -e /usr/sbin/lpc; then chmod -h 02555 /usr/sbin/lpc; fi @sample %%ETCDIR%%/cups-files.conf.sample @sample %%ETCDIR%%/cupsd.conf.sample @sample %%ETCDIR%%/mime.convs.sample @sample %%ETCDIR%%/mime.types.sample @sample %%ETCDIR%%/snmp.conf.sample %%PAM%%@sample etc/pam.d/cups.sample bin/cancel bin/cupstestdsc bin/cupstestppd @comment bin/ippfind bin/ipptool bin/lp bin/lpoptions bin/lpq bin/lpr bin/lpr-cups bin/lprm bin/lpstat bin/ppdc bin/ppdhtml bin/ppdi bin/ppdmerge bin/ppdpo include/cups/cgi.h include/cups/help-index.h include/cups/mime.h include/cups/ppdc.h lib/libcupscgi.so lib/libcupscgi.so.1 lib/libcupsmime.so lib/libcupsmime.so.1 lib/libcupsppdc.so lib/libcupsppdc.so.1 libexec/cups/backend/http libexec/cups/backend/https libexec/cups/backend/ipp libexec/cups/backend/ipps libexec/cups/backend/lpd libexec/cups/backend/snmp libexec/cups/backend/socket libexec/cups/backend/usb %%AVAHI%%libexec/cups/backend/dnssd %%MDNSRESPONDER%%libexec/cups/backend/dnssd %%MDNSRESPONDER%%libexec/cups/backend/mdns libexec/cups/cgi-bin/admin.cgi libexec/cups/cgi-bin/classes.cgi libexec/cups/cgi-bin/help.cgi libexec/cups/cgi-bin/jobs.cgi libexec/cups/cgi-bin/printers.cgi libexec/cups/daemon/cups-deviced libexec/cups/daemon/cups-driverd libexec/cups/daemon/cups-exec libexec/cups/daemon/cups-lpd libexec/cups/monitor/bcp libexec/cups/monitor/tbcp %%DBUS%%libexec/cups/notifier/dbus libexec/cups/notifier/mailto libexec/cups/notifier/rss man/man1/cancel.1.gz man/man1/cupstestdsc.1.gz man/man1/cupstestppd.1.gz man/man1/cups.1.gz +%%AVAHI%%man/man1/ippfind.1.gz man/man1/ipptool.1.gz man/man1/lp.1.gz man/man1/lpoptions.1.gz man/man1/lpq.1.gz man/man1/lpr.1.gz man/man1/lprm.1.gz man/man1/lpstat.1.gz man/man1/ppdc.1.gz man/man1/ppdhtml.1.gz man/man1/ppdi.1.gz man/man1/ppdmerge.1.gz man/man1/ppdpo.1.gz man/man5/classes.conf.5.gz man/man5/client.conf.5.gz man/man5/cups-files.conf.5.gz man/man5/cups-snmp.conf.5.gz man/man5/cupsd.conf.5.gz man/man5/ipptoolfile.5.gz man/man5/mailto.conf.5.gz man/man5/mime.convs.5.gz man/man5/mime.types.5.gz man/man5/ppdcfile.5.gz man/man5/printers.conf.5.gz man/man5/subscriptions.conf.5.gz man/man7/backend.7.gz man/man7/filter.7.gz man/man7/notifier.7.gz man/man8/accept.8.gz man/man8/cupsd-logs.8.gz man/man8/cupsd-helper.8.gz man/man8/cups-deviced.8.gz man/man8/cups-exec.8.gz man/man8/cups-driverd.8.gz man/man8/cups-lpd.8.gz man/man8/cups-snmp.8.gz man/man8/cupsaccept.8.gz man/man8/cupsaddsmb.8.gz man/man8/cupsctl.8.gz man/man8/cupsd.8.gz man/man8/cupsdisable.8.gz man/man8/cupsenable.8.gz man/man8/cupsfilter.8.gz man/man8/cupsreject.8.gz man/man8/lpadmin.8.gz man/man8/lpc.8.gz man/man8/lpinfo.8.gz man/man8/lpmove.8.gz man/man8/reject.8.gz sbin/accept sbin/cupsaccept sbin/cupsaddsmb sbin/cupsctl sbin/cupsd sbin/cupsdisable sbin/cupsenable sbin/cupsfilter sbin/cupsreject sbin/lpadmin sbin/lpc sbin/lpinfo sbin/lpmove sbin/reject sbin/ulpt-cupsd.sh %%DATADIR%%/drv/sample.drv %%DATADIR%%/examples/color.drv %%DATADIR%%/examples/constraint.drv %%DATADIR%%/examples/custom.drv %%DATADIR%%/examples/grouping.drv %%DATADIR%%/examples/laserjet-basic.drv %%DATADIR%%/examples/laserjet-pjl.drv %%DATADIR%%/examples/minimum.drv %%DATADIR%%/examples/postscript.drv %%DATADIR%%/examples/r300-basic.drv %%DATADIR%%/examples/r300-colorman.drv %%DATADIR%%/examples/r300-remote.drv %%DATADIR%%/ipptool/color.jpg %%DATADIR%%/ipptool/create-printer-subscription.test %%DATADIR%%/ipptool/document-a4.pdf %%DATADIR%%/ipptool/document-a4.ps %%DATADIR%%/ipptool/document-letter.pdf %%DATADIR%%/ipptool/document-letter.ps %%DATADIR%%/ipptool/get-completed-jobs.test %%DATADIR%%/ipptool/get-jobs.test %%DATADIR%%/ipptool/get-notifications.test %%DATADIR%%/ipptool/get-printer-attributes.test %%DATADIR%%/ipptool/get-subscriptions.test %%DATADIR%%/ipptool/gray.jpg %%DATADIR%%/ipptool/ipp-1.1.test %%DATADIR%%/ipptool/ipp-2.0.test %%DATADIR%%/ipptool/ipp-2.1.test %%DATADIR%%/ipptool/ipp-2.2.test %%DATADIR%%/ipptool/ipp-everywhere.test %%DATADIR%%/ipptool/onepage-a4.pdf %%DATADIR%%/ipptool/onepage-a4.ps %%DATADIR%%/ipptool/onepage-letter.pdf %%DATADIR%%/ipptool/onepage-letter.ps %%DATADIR%%/ipptool/print-job-deflate.test %%DATADIR%%/ipptool/print-job-gzip.test %%DATADIR%%/ipptool/print-job.test %%DATADIR%%/ipptool/testfile.jpg %%DATADIR%%/ipptool/testfile.pcl %%DATADIR%%/ipptool/testfile.pdf %%DATADIR%%/ipptool/testfile.ps %%DATADIR%%/ipptool/testfile.txt %%DATADIR%%/ipptool/validate-job.test %%DATADIR%%/mime/mime.convs %%DATADIR%%/mime/mime.types %%DATADIR%%/ppdc/epson.h %%DATADIR%%/ppdc/font.defs %%DATADIR%%/ppdc/hp.h %%DATADIR%%/ppdc/label.h %%DATADIR%%/ppdc/media.defs %%DATADIR%%/ppdc/raster.defs %%DATADIR%%/templates/add-class.tmpl %%DATADIR%%/templates/add-printer.tmpl %%DATADIR%%/templates/add-rss-subscription.tmpl %%DATADIR%%/templates/admin.tmpl %%DATADIR%%/templates/choose-device.tmpl %%DATADIR%%/templates/choose-make.tmpl %%DATADIR%%/templates/choose-model.tmpl %%DATADIR%%/templates/choose-serial.tmpl %%DATADIR%%/templates/choose-uri.tmpl %%DATADIR%%/templates/class-added.tmpl %%DATADIR%%/templates/class-confirm.tmpl %%DATADIR%%/templates/class-deleted.tmpl %%DATADIR%%/templates/class-jobs-header.tmpl %%DATADIR%%/templates/class-modified.tmpl %%DATADIR%%/templates/class.tmpl %%DATADIR%%/templates/classes-header.tmpl %%DATADIR%%/templates/classes.tmpl %%DATADIR%%/templates/command.tmpl %%DATADIR%%/templates/de/add-class.tmpl %%DATADIR%%/templates/de/add-printer.tmpl %%DATADIR%%/templates/de/add-rss-subscription.tmpl %%DATADIR%%/templates/de/admin.tmpl %%DATADIR%%/templates/de/choose-device.tmpl %%DATADIR%%/templates/de/choose-make.tmpl %%DATADIR%%/templates/de/choose-model.tmpl %%DATADIR%%/templates/de/choose-serial.tmpl %%DATADIR%%/templates/de/choose-uri.tmpl %%DATADIR%%/templates/de/class-added.tmpl %%DATADIR%%/templates/de/class-confirm.tmpl %%DATADIR%%/templates/de/class-deleted.tmpl %%DATADIR%%/templates/de/class-jobs-header.tmpl %%DATADIR%%/templates/de/class-modified.tmpl %%DATADIR%%/templates/de/class.tmpl %%DATADIR%%/templates/de/classes-header.tmpl %%DATADIR%%/templates/de/classes.tmpl %%DATADIR%%/templates/de/command.tmpl %%DATADIR%%/templates/de/edit-config.tmpl %%DATADIR%%/templates/de/error-op.tmpl %%DATADIR%%/templates/de/error.tmpl %%DATADIR%%/templates/de/header.tmpl %%DATADIR%%/templates/de/help-header.tmpl %%DATADIR%%/templates/de/help-printable.tmpl %%DATADIR%%/templates/de/job-cancel.tmpl %%DATADIR%%/templates/de/job-hold.tmpl %%DATADIR%%/templates/de/job-move.tmpl %%DATADIR%%/templates/de/job-moved.tmpl %%DATADIR%%/templates/de/job-release.tmpl %%DATADIR%%/templates/de/job-restart.tmpl %%DATADIR%%/templates/de/jobs-header.tmpl %%DATADIR%%/templates/de/jobs.tmpl %%DATADIR%%/templates/de/list-available-printers.tmpl %%DATADIR%%/templates/de/modify-class.tmpl %%DATADIR%%/templates/de/modify-printer.tmpl %%DATADIR%%/templates/de/norestart.tmpl %%DATADIR%%/templates/de/option-boolean.tmpl %%DATADIR%%/templates/de/option-conflict.tmpl %%DATADIR%%/templates/de/option-header.tmpl %%DATADIR%%/templates/de/option-pickmany.tmpl %%DATADIR%%/templates/de/option-pickone.tmpl %%DATADIR%%/templates/de/option-trailer.tmpl %%DATADIR%%/templates/de/pager.tmpl %%DATADIR%%/templates/de/printer-accept.tmpl %%DATADIR%%/templates/de/printer-added.tmpl %%DATADIR%%/templates/de/printer-cancel-jobs.tmpl %%DATADIR%%/templates/de/printer-configured.tmpl %%DATADIR%%/templates/de/printer-confirm.tmpl %%DATADIR%%/templates/de/printer-default.tmpl %%DATADIR%%/templates/de/printer-deleted.tmpl %%DATADIR%%/templates/de/printer-jobs-header.tmpl %%DATADIR%%/templates/de/printer-modified.tmpl %%DATADIR%%/templates/de/printer-reject.tmpl %%DATADIR%%/templates/de/printer-start.tmpl %%DATADIR%%/templates/de/printer-stop.tmpl %%DATADIR%%/templates/de/printer.tmpl %%DATADIR%%/templates/de/printers-header.tmpl %%DATADIR%%/templates/de/printers.tmpl %%DATADIR%%/templates/de/restart.tmpl %%DATADIR%%/templates/de/samba-export.tmpl %%DATADIR%%/templates/de/samba-exported.tmpl %%DATADIR%%/templates/de/search.tmpl %%DATADIR%%/templates/de/set-printer-options-header.tmpl %%DATADIR%%/templates/de/set-printer-options-trailer.tmpl %%DATADIR%%/templates/de/subscription-added.tmpl %%DATADIR%%/templates/de/subscription-canceled.tmpl %%DATADIR%%/templates/de/test-page.tmpl %%DATADIR%%/templates/de/trailer.tmpl %%DATADIR%%/templates/de/users.tmpl %%DATADIR%%/templates/edit-config.tmpl %%DATADIR%%/templates/error-op.tmpl %%DATADIR%%/templates/error.tmpl %%DATADIR%%/templates/es/add-class.tmpl %%DATADIR%%/templates/es/add-printer.tmpl %%DATADIR%%/templates/es/add-rss-subscription.tmpl %%DATADIR%%/templates/es/admin.tmpl %%DATADIR%%/templates/es/choose-device.tmpl %%DATADIR%%/templates/es/choose-make.tmpl %%DATADIR%%/templates/es/choose-model.tmpl %%DATADIR%%/templates/es/choose-serial.tmpl %%DATADIR%%/templates/es/choose-uri.tmpl %%DATADIR%%/templates/es/class-added.tmpl %%DATADIR%%/templates/es/class-confirm.tmpl %%DATADIR%%/templates/es/class-deleted.tmpl %%DATADIR%%/templates/es/class-jobs-header.tmpl %%DATADIR%%/templates/es/class-modified.tmpl %%DATADIR%%/templates/es/class.tmpl %%DATADIR%%/templates/es/classes-header.tmpl %%DATADIR%%/templates/es/classes.tmpl %%DATADIR%%/templates/es/command.tmpl %%DATADIR%%/templates/es/edit-config.tmpl %%DATADIR%%/templates/es/error-op.tmpl %%DATADIR%%/templates/es/error.tmpl %%DATADIR%%/templates/es/header.tmpl %%DATADIR%%/templates/es/help-header.tmpl %%DATADIR%%/templates/es/help-printable.tmpl %%DATADIR%%/templates/es/help-trailer.tmpl %%DATADIR%%/templates/es/job-cancel.tmpl %%DATADIR%%/templates/es/job-hold.tmpl %%DATADIR%%/templates/es/job-move.tmpl %%DATADIR%%/templates/es/job-moved.tmpl %%DATADIR%%/templates/es/job-release.tmpl %%DATADIR%%/templates/es/job-restart.tmpl %%DATADIR%%/templates/es/jobs-header.tmpl %%DATADIR%%/templates/es/jobs.tmpl %%DATADIR%%/templates/es/list-available-printers.tmpl %%DATADIR%%/templates/es/modify-class.tmpl %%DATADIR%%/templates/es/modify-printer.tmpl %%DATADIR%%/templates/es/norestart.tmpl %%DATADIR%%/templates/es/option-boolean.tmpl %%DATADIR%%/templates/es/option-conflict.tmpl %%DATADIR%%/templates/es/option-header.tmpl %%DATADIR%%/templates/es/option-pickmany.tmpl %%DATADIR%%/templates/es/option-pickone.tmpl %%DATADIR%%/templates/es/option-trailer.tmpl %%DATADIR%%/templates/es/pager.tmpl %%DATADIR%%/templates/es/printer-accept.tmpl %%DATADIR%%/templates/es/printer-added.tmpl %%DATADIR%%/templates/es/printer-cancel-jobs.tmpl %%DATADIR%%/templates/es/printer-configured.tmpl %%DATADIR%%/templates/es/printer-confirm.tmpl %%DATADIR%%/templates/es/printer-default.tmpl %%DATADIR%%/templates/es/printer-deleted.tmpl %%DATADIR%%/templates/es/printer-jobs-header.tmpl %%DATADIR%%/templates/es/printer-modified.tmpl %%DATADIR%%/templates/es/printer-reject.tmpl %%DATADIR%%/templates/es/printer-start.tmpl %%DATADIR%%/templates/es/printer-stop.tmpl %%DATADIR%%/templates/es/printer.tmpl %%DATADIR%%/templates/es/printers-header.tmpl %%DATADIR%%/templates/es/printers.tmpl %%DATADIR%%/templates/es/restart.tmpl %%DATADIR%%/templates/es/samba-export.tmpl %%DATADIR%%/templates/es/samba-exported.tmpl %%DATADIR%%/templates/es/search.tmpl %%DATADIR%%/templates/es/set-printer-options-header.tmpl %%DATADIR%%/templates/es/set-printer-options-trailer.tmpl %%DATADIR%%/templates/es/subscription-added.tmpl %%DATADIR%%/templates/es/subscription-canceled.tmpl %%DATADIR%%/templates/es/test-page.tmpl %%DATADIR%%/templates/es/trailer.tmpl %%DATADIR%%/templates/es/users.tmpl %%DATADIR%%/templates/header.tmpl %%DATADIR%%/templates/help-header.tmpl %%DATADIR%%/templates/help-printable.tmpl %%DATADIR%%/templates/help-trailer.tmpl %%DATADIR%%/templates/ja/add-class.tmpl %%DATADIR%%/templates/ja/add-printer.tmpl %%DATADIR%%/templates/ja/add-rss-subscription.tmpl %%DATADIR%%/templates/ja/admin.tmpl %%DATADIR%%/templates/ja/choose-device.tmpl %%DATADIR%%/templates/ja/choose-make.tmpl %%DATADIR%%/templates/ja/choose-model.tmpl %%DATADIR%%/templates/ja/choose-serial.tmpl %%DATADIR%%/templates/ja/choose-uri.tmpl %%DATADIR%%/templates/ja/class-added.tmpl %%DATADIR%%/templates/ja/class-confirm.tmpl %%DATADIR%%/templates/ja/class-deleted.tmpl %%DATADIR%%/templates/ja/class-jobs-header.tmpl %%DATADIR%%/templates/ja/class-modified.tmpl %%DATADIR%%/templates/ja/class.tmpl %%DATADIR%%/templates/ja/classes-header.tmpl %%DATADIR%%/templates/ja/classes.tmpl %%DATADIR%%/templates/ja/command.tmpl %%DATADIR%%/templates/ja/edit-config.tmpl %%DATADIR%%/templates/ja/error-op.tmpl %%DATADIR%%/templates/ja/error.tmpl %%DATADIR%%/templates/ja/header.tmpl %%DATADIR%%/templates/ja/help-header.tmpl %%DATADIR%%/templates/ja/help-printable.tmpl %%DATADIR%%/templates/ja/help-trailer.tmpl %%DATADIR%%/templates/ja/job-cancel.tmpl %%DATADIR%%/templates/ja/job-hold.tmpl %%DATADIR%%/templates/ja/job-move.tmpl %%DATADIR%%/templates/ja/job-moved.tmpl %%DATADIR%%/templates/ja/job-release.tmpl %%DATADIR%%/templates/ja/job-restart.tmpl %%DATADIR%%/templates/ja/jobs-header.tmpl %%DATADIR%%/templates/ja/jobs.tmpl %%DATADIR%%/templates/ja/list-available-printers.tmpl %%DATADIR%%/templates/ja/modify-class.tmpl %%DATADIR%%/templates/ja/modify-printer.tmpl %%DATADIR%%/templates/ja/norestart.tmpl %%DATADIR%%/templates/ja/option-boolean.tmpl %%DATADIR%%/templates/ja/option-conflict.tmpl %%DATADIR%%/templates/ja/option-header.tmpl %%DATADIR%%/templates/ja/option-pickmany.tmpl %%DATADIR%%/templates/ja/option-pickone.tmpl %%DATADIR%%/templates/ja/option-trailer.tmpl %%DATADIR%%/templates/ja/pager.tmpl %%DATADIR%%/templates/ja/printer-accept.tmpl %%DATADIR%%/templates/ja/printer-added.tmpl %%DATADIR%%/templates/ja/printer-cancel-jobs.tmpl %%DATADIR%%/templates/ja/printer-configured.tmpl %%DATADIR%%/templates/ja/printer-confirm.tmpl %%DATADIR%%/templates/ja/printer-default.tmpl %%DATADIR%%/templates/ja/printer-deleted.tmpl %%DATADIR%%/templates/ja/printer-jobs-header.tmpl %%DATADIR%%/templates/ja/printer-modified.tmpl %%DATADIR%%/templates/ja/printer-reject.tmpl %%DATADIR%%/templates/ja/printer-start.tmpl %%DATADIR%%/templates/ja/printer-stop.tmpl %%DATADIR%%/templates/ja/printer.tmpl %%DATADIR%%/templates/ja/printers-header.tmpl %%DATADIR%%/templates/ja/printers.tmpl %%DATADIR%%/templates/ja/restart.tmpl %%DATADIR%%/templates/ja/samba-export.tmpl %%DATADIR%%/templates/ja/samba-exported.tmpl %%DATADIR%%/templates/ja/search.tmpl %%DATADIR%%/templates/ja/set-printer-options-header.tmpl %%DATADIR%%/templates/ja/set-printer-options-trailer.tmpl %%DATADIR%%/templates/ja/subscription-added.tmpl %%DATADIR%%/templates/ja/subscription-canceled.tmpl %%DATADIR%%/templates/ja/test-page.tmpl %%DATADIR%%/templates/ja/trailer.tmpl %%DATADIR%%/templates/ja/users.tmpl %%DATADIR%%/templates/job-cancel.tmpl %%DATADIR%%/templates/job-hold.tmpl %%DATADIR%%/templates/job-move.tmpl %%DATADIR%%/templates/job-moved.tmpl %%DATADIR%%/templates/job-release.tmpl %%DATADIR%%/templates/job-restart.tmpl %%DATADIR%%/templates/jobs-header.tmpl %%DATADIR%%/templates/jobs.tmpl %%DATADIR%%/templates/list-available-printers.tmpl %%DATADIR%%/templates/modify-class.tmpl %%DATADIR%%/templates/modify-printer.tmpl %%DATADIR%%/templates/norestart.tmpl %%DATADIR%%/templates/option-boolean.tmpl %%DATADIR%%/templates/option-conflict.tmpl %%DATADIR%%/templates/option-header.tmpl %%DATADIR%%/templates/option-pickmany.tmpl %%DATADIR%%/templates/option-pickone.tmpl %%DATADIR%%/templates/option-trailer.tmpl %%DATADIR%%/templates/pager.tmpl %%DATADIR%%/templates/printer-accept.tmpl %%DATADIR%%/templates/printer-added.tmpl %%DATADIR%%/templates/printer-cancel-jobs.tmpl %%DATADIR%%/templates/printer-configured.tmpl %%DATADIR%%/templates/printer-confirm.tmpl %%DATADIR%%/templates/printer-default.tmpl %%DATADIR%%/templates/printer-deleted.tmpl %%DATADIR%%/templates/printer-jobs-header.tmpl %%DATADIR%%/templates/printer-modified.tmpl %%DATADIR%%/templates/printer-reject.tmpl %%DATADIR%%/templates/printer-start.tmpl %%DATADIR%%/templates/printer-stop.tmpl %%DATADIR%%/templates/printer.tmpl %%DATADIR%%/templates/printers-header.tmpl %%DATADIR%%/templates/printers.tmpl %%DATADIR%%/templates/restart.tmpl %%DATADIR%%/templates/ru/add-class.tmpl %%DATADIR%%/templates/ru/add-printer.tmpl %%DATADIR%%/templates/ru/add-rss-subscription.tmpl %%DATADIR%%/templates/ru/admin.tmpl %%DATADIR%%/templates/ru/choose-device.tmpl %%DATADIR%%/templates/ru/choose-make.tmpl %%DATADIR%%/templates/ru/choose-model.tmpl %%DATADIR%%/templates/ru/choose-serial.tmpl %%DATADIR%%/templates/ru/choose-uri.tmpl %%DATADIR%%/templates/ru/class-added.tmpl %%DATADIR%%/templates/ru/class-confirm.tmpl %%DATADIR%%/templates/ru/class-deleted.tmpl %%DATADIR%%/templates/ru/class-jobs-header.tmpl %%DATADIR%%/templates/ru/class-modified.tmpl %%DATADIR%%/templates/ru/class.tmpl %%DATADIR%%/templates/ru/classes-header.tmpl %%DATADIR%%/templates/ru/classes.tmpl %%DATADIR%%/templates/ru/command.tmpl %%DATADIR%%/templates/ru/edit-config.tmpl %%DATADIR%%/templates/ru/error-op.tmpl %%DATADIR%%/templates/ru/error.tmpl %%DATADIR%%/templates/ru/header.tmpl %%DATADIR%%/templates/ru/help-header.tmpl %%DATADIR%%/templates/ru/help-printable.tmpl %%DATADIR%%/templates/ru/job-cancel.tmpl %%DATADIR%%/templates/ru/job-hold.tmpl %%DATADIR%%/templates/ru/job-move.tmpl %%DATADIR%%/templates/ru/job-moved.tmpl %%DATADIR%%/templates/ru/job-release.tmpl %%DATADIR%%/templates/ru/job-restart.tmpl %%DATADIR%%/templates/ru/jobs-header.tmpl %%DATADIR%%/templates/ru/jobs.tmpl %%DATADIR%%/templates/ru/list-available-printers.tmpl %%DATADIR%%/templates/ru/modify-class.tmpl %%DATADIR%%/templates/ru/modify-printer.tmpl %%DATADIR%%/templates/ru/norestart.tmpl %%DATADIR%%/templates/ru/option-boolean.tmpl %%DATADIR%%/templates/ru/option-conflict.tmpl %%DATADIR%%/templates/ru/option-header.tmpl %%DATADIR%%/templates/ru/option-pickmany.tmpl %%DATADIR%%/templates/ru/option-pickone.tmpl %%DATADIR%%/templates/ru/option-trailer.tmpl %%DATADIR%%/templates/ru/pager.tmpl %%DATADIR%%/templates/ru/printer-accept.tmpl %%DATADIR%%/templates/ru/printer-added.tmpl %%DATADIR%%/templates/ru/printer-cancel-jobs.tmpl %%DATADIR%%/templates/ru/printer-configured.tmpl %%DATADIR%%/templates/ru/printer-confirm.tmpl %%DATADIR%%/templates/ru/printer-default.tmpl %%DATADIR%%/templates/ru/printer-deleted.tmpl %%DATADIR%%/templates/ru/printer-jobs-header.tmpl %%DATADIR%%/templates/ru/printer-modified.tmpl %%DATADIR%%/templates/ru/printer-reject.tmpl %%DATADIR%%/templates/ru/printer-start.tmpl %%DATADIR%%/templates/ru/printer-stop.tmpl %%DATADIR%%/templates/ru/printer.tmpl %%DATADIR%%/templates/ru/printers-header.tmpl %%DATADIR%%/templates/ru/printers.tmpl %%DATADIR%%/templates/ru/restart.tmpl %%DATADIR%%/templates/ru/samba-export.tmpl %%DATADIR%%/templates/ru/samba-exported.tmpl %%DATADIR%%/templates/ru/search.tmpl %%DATADIR%%/templates/ru/set-printer-options-header.tmpl %%DATADIR%%/templates/ru/set-printer-options-trailer.tmpl %%DATADIR%%/templates/ru/subscription-added.tmpl %%DATADIR%%/templates/ru/subscription-canceled.tmpl %%DATADIR%%/templates/ru/test-page.tmpl %%DATADIR%%/templates/ru/trailer.tmpl %%DATADIR%%/templates/ru/users.tmpl %%DATADIR%%/templates/samba-export.tmpl %%DATADIR%%/templates/samba-exported.tmpl %%DATADIR%%/templates/search.tmpl %%DATADIR%%/templates/set-printer-options-header.tmpl %%DATADIR%%/templates/set-printer-options-trailer.tmpl %%DATADIR%%/templates/subscription-added.tmpl %%DATADIR%%/templates/subscription-canceled.tmpl %%DATADIR%%/templates/test-page.tmpl %%DATADIR%%/templates/trailer.tmpl %%DATADIR%%/templates/users.tmpl %%LIBUSB%%%%DATADIR%%/usb/org.cups.usb-quirks %%DOCSDIR%%/apple-touch-icon.png %%DOCSDIR%%/cups-printable.css %%DOCSDIR%%/cups.css %%DOCSDIR%%/de/index.html %%DOCSDIR%%/es/index.html %%DOCSDIR%%/help/accounting.html %%DOCSDIR%%/help/api-array.html %%DOCSDIR%%/help/api-cgi.html %%DOCSDIR%%/help/api-cups.html %%DOCSDIR%%/help/api-driver.html %%DOCSDIR%%/help/api-filedir.html %%DOCSDIR%%/help/api-filter.html %%DOCSDIR%%/help/api-httpipp.html %%DOCSDIR%%/help/api-mime.html %%DOCSDIR%%/help/api-overview.html %%DOCSDIR%%/help/api-ppd.html %%DOCSDIR%%/help/api-ppdc.html %%DOCSDIR%%/help/api-raster.html %%DOCSDIR%%/help/cgi.html %%DOCSDIR%%/help/glossary.html %%DOCSDIR%%/help/kerberos.html %%DOCSDIR%%/help/license.html %%DOCSDIR%%/help/man-backend.html %%DOCSDIR%%/help/man-cancel.html %%DOCSDIR%%/help/man-classes.conf.html %%DOCSDIR%%/help/man-client.conf.html %%DOCSDIR%%/help/man-cups-config.html %%DOCSDIR%%/help/man-cups-files.conf.html %%DOCSDIR%%/help/man-cups-lpd.html %%DOCSDIR%%/help/man-cups-snmp.html %%DOCSDIR%%/help/man-cups.html %%DOCSDIR%%/help/man-cupsaccept.html %%DOCSDIR%%/help/man-cupsaddsmb.html %%DOCSDIR%%/help/man-cupsd-helper.html %%DOCSDIR%%/help/man-cupsd-logs.html %%DOCSDIR%%/help/man-cupsd.conf.html %%DOCSDIR%%/help/man-cupsd.html %%DOCSDIR%%/help/man-cupsenable.html %%DOCSDIR%%/help/man-cupstestdsc.html %%DOCSDIR%%/help/man-cupstestppd.html %%DOCSDIR%%/help/man-filter.html %%DOCSDIR%%/help/man-ipptool.html %%DOCSDIR%%/help/man-ipptoolfile.html %%DOCSDIR%%/help/man-lp.html %%DOCSDIR%%/help/man-lpadmin.html %%DOCSDIR%%/help/man-lpc.html %%DOCSDIR%%/help/man-lpinfo.html %%DOCSDIR%%/help/man-lpmove.html %%DOCSDIR%%/help/man-lpoptions.html %%DOCSDIR%%/help/man-lpq.html %%DOCSDIR%%/help/man-lpr.html %%DOCSDIR%%/help/man-lprm.html %%DOCSDIR%%/help/man-lpstat.html %%DOCSDIR%%/help/man-mime.convs.html %%DOCSDIR%%/help/man-mime.types.html %%DOCSDIR%%/help/man-notifier.html %%DOCSDIR%%/help/man-ppdc.html %%DOCSDIR%%/help/man-ppdhtml.html %%DOCSDIR%%/help/man-ppdi.html %%DOCSDIR%%/help/man-ppdmerge.html %%DOCSDIR%%/help/man-ppdpo.html %%DOCSDIR%%/help/man-printers.conf.html %%DOCSDIR%%/help/man-subscriptions.conf.html %%DOCSDIR%%/help/network.html %%DOCSDIR%%/help/options.html %%DOCSDIR%%/help/overview.html %%DOCSDIR%%/help/policies.html %%DOCSDIR%%/help/postscript-driver.html %%DOCSDIR%%/help/ppd-compiler.html %%DOCSDIR%%/help/raster-driver.html %%DOCSDIR%%/help/ref-ppdcfile.html %%DOCSDIR%%/help/security.html %%DOCSDIR%%/help/sharing.html %%DOCSDIR%%/help/spec-banner.html %%DOCSDIR%%/help/spec-cmp.html %%DOCSDIR%%/help/spec-command.html %%DOCSDIR%%/help/spec-design.html %%DOCSDIR%%/help/spec-ipp.html %%DOCSDIR%%/help/spec-pdf.html %%DOCSDIR%%/help/spec-postscript.html %%DOCSDIR%%/help/spec-ppd.html %%DOCSDIR%%/help/spec-raster.html %%DOCSDIR%%/help/spec-stp.html %%DOCSDIR%%/help/translation.html %%DOCSDIR%%/images/color-wheel.png %%DOCSDIR%%/images/cups-block-diagram.png %%DOCSDIR%%/images/cups-command-chain.png %%DOCSDIR%%/images/cups-icon.png %%DOCSDIR%%/images/cups-postscript-chain.png %%DOCSDIR%%/images/cups-raster-chain.png %%DOCSDIR%%/images/cups.png %%DOCSDIR%%/images/generic.png %%DOCSDIR%%/images/left.gif %%DOCSDIR%%/images/raster-organization.png %%DOCSDIR%%/images/raster.png %%DOCSDIR%%/images/right.gif %%DOCSDIR%%/images/sample-image.png %%DOCSDIR%%/images/sel.gif %%DOCSDIR%%/images/smiley.jpg %%DOCSDIR%%/images/unsel.gif %%DOCSDIR%%/images/wait.gif %%DOCSDIR%%/index.html %%DOCSDIR%%/ja/index.html %%DOCSDIR%%/robots.txt %%DOCSDIR%%/ru/index.html %%PORTEXAMPLES%%%%EXAMPLESDIR%%/ulpt-cupsd.conf share/applications/cups.desktop %%ICONS%%share/icons/hicolor/128x128/apps/cups.png %%ICONS%%share/icons/hicolor/16x16/apps/cups.png %%ICONS%%share/icons/hicolor/32x32/apps/cups.png %%ICONS%%share/icons/hicolor/64x64/apps/cups.png share/locale/ca/cups_ca.po share/locale/cs/cups_cs.po share/locale/de/cups_de.po share/locale/es/cups_es.po share/locale/fr/cups_fr.po share/locale/it/cups_it.po share/locale/ja/cups_ja.po share/locale/ru/cups_ru.po @dir etc/cups/interfaces @dir etc/cups/ppd @dir etc/cups/ssl @dir etc/pam.d @dir(,cups,) etc/cups @dir libexec/cups/driver @dir %%DATADIR%%/model @dir %%DATADIR%%/profiles @dir(root,cups,775) %%CACHEDIR%%/rss @dir(root,cups,775) %%CACHEDIR%% @dir(cups,daemon,) /var/log/cups @dir(cups,wheel,) /var/run/cups/certs @dir(root,cups,) /var/run/cups @dir(root,cups,1710) /var/spool/cups/tmp @dir(root,cups,) /var/spool/cups