diff --git a/print/cups-base/Makefile b/print/cups-base/Makefile index 7be17a2cec90..df3a67c70d38 100644 --- a/print/cups-base/Makefile +++ b/print/cups-base/Makefile @@ -1,341 +1,346 @@ # New ports collection makefile for: cups # Date created: 2003-01-22 # Whom: Alan Eldridge # # $FreeBSD$ # PORTNAME= cups PORTVERSION= 1.4.2 DISTVERSIONSUFFIX= -source PORTREVISION= 1 CATEGORIES= print MASTER_SITES= EASYSW/${PORTNAME}/${DISTVERSION} PKGNAMESUFFIX= ${CUPS_SUFFIX}${PKGNAMESUFFIX2} MAINTAINER= dinoex@FreeBSD.org COMMENT= Common UNIX Printing System: ${COMMENT2} CONFLICTS= LPRng-[0-9]* USE_BZIP2= yes USE_GMAKE= yes GNU_CONFIGURE= yes CFLAGS+= ${PTHREAD_CFLAGS} CPPFLAGS= -I${LOCALBASE}/include LDFLAGS= -L${LOCALBASE}/lib DSOFLAGS= -Wl,-rpath,${PREFIX}/lib -L${PREFIX}/lib ${LDFLAGS} CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" DSOFLAGS="${DSOFLAGS}" CONFIGURE_ARGS+= --localstatedir=/var \ --disable-slp \ --disable-gssapi \ --with-cups-user=${CUPSOWN} \ --with-cups-group=${CUPSGRP} \ --with-system-groups=${CUPSSYSGRP} \ --with-docdir=${DOCSDIR} \ --with-icondir=${PREFIX}/share/icons \ --with-menudir=${DESKTOPDIR} \ --with-domainsocket=${CUPS_SOCKET} \ --enable-ssl OPTIONS?= GNUTLS "Build with GNUTLS library" on \ PHP "Build PHP support" off \ PYTHON "Build PYTHON support" off \ LIBPAPER "Build with libpaper support" off \ DNSSD "Build with DNS_SD (avahi) support" off \ PAM "Build with PAM support" off \ LDAP "Build with LDAP support" off \ DBUS "Build with DBUS support" off \ LIBUSB "Build with USB support" off \ GHOSTSCRIPT "Build pdftps with GHOSTSCRIPT" on \ XDG_OPEN "Build with XDG_OPEN as browser" off CUPS_ETCDIR= ${PREFIX}/etc/cups CUPS_SPOOLDIR= /var/spool/cups CUPS_SOCKET?= /var/run/cups.sock WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION} # file, dir ownership CUPSGRP= cups CUPSOWN= cups CUPSSYSGRP= wheel .include .if defined(CUPS_CLIENT) CUPS_SUFFIX= -client COMMENT2= Library cups INSTALL_WRKSRC= ${WRKSRC}/cups PLIST= ${MASTERDIR}/pkg-plist.client USE_LDCONFIG= yes PKGMESSAGE= ${NONEXISTENT} DESCR= ${MASTERDIR}/pkg-descr.client .elif defined(CUPS_IMAGE) CUPS_SUFFIX= -image LIB_DEPENDS+= cups.2:${PORTSDIR}/${PKGCATEGORY}/cups-client \ jpeg.10:${PORTSDIR}/graphics/jpeg \ png.5:${PORTSDIR}/graphics/png \ tiff.4:${PORTSDIR}/graphics/tiff COMMENT2= Library cupsimage CONFIGURE_ARGS+= --disable-pdftops INSTALL_WRKSRC= ${WRKSRC}/filter PLIST= ${MASTERDIR}/pkg-plist.image USE_LDCONFIG= yes PKGMESSAGE= ${NONEXISTENT} DESCR= ${MASTERDIR}/pkg-descr.image .else CUPS_SUFFIX= -base LIB_DEPENDS+= cups.2:${PORTSDIR}/${PKGCATEGORY}/cups-client \ cupsimage.2:${PORTSDIR}/${PKGCATEGORY}/cups-image # force build if old cups is installed. BUILD_DEPENDS+= ${LOCALBASE}/lib/libcups.a:${PORTSDIR}/${PKGCATEGORY}/cups-client COMMENT2= Server USE_RC_SUBR= cupsd .endif .if defined(CUPS_OVERWRITE_BASE) PLIST_SUB+= OVERWRITE="" .else PLIST_SUB+= OVERWRITE="@comment " .endif .if !defined(WITHOUT_GNUTLS) CONFIGURE_ARGS+= --disable-openssl --enable-gnutls CONFIGURE_ENV+= PKGCONFIG="${LOCALBASE}/bin/pkg-config" LIB_DEPENDS+= gnutls-openssl.40:${PORTSDIR}/security/gnutls BUILD_DEPENDS+= pkg-config:${PORTSDIR}/devel/pkg-config .else CONFIGURE_ARGS+= --disable-gnutls --enable-openssl .include "${PORTSDIR}/Mk/bsd.openssl.mk" .endif .if !defined(CUPS_CLIENT) && !defined(CUPS_IMAGE) && defined(WITH_PHP) CONFIGURE_ARGS+= --with-php USE_PHP= yes USE_PHP_BUILD= yes PLIST_SUB+= PHP="" .else CONFIGURE_ARGS+= --without-php PLIST_SUB+= PHP="@comment " .endif .if !defined(CUPS_CLIENT) && !defined(CUPS_IMAGE) && defined(WITH_GHOSTSCRIPT) USE_GHOSTSCRIPT= yes CONFIGURE_ARGS+= --enable-pdftops --with-pdftops=gs PLIST_SUB+= WITH_GHOSTSCRIPT="" .else PLIST_SUB+= WITH_GHOSTSCRIPT="@comment " .endif .if !defined(CUPS_CLIENT) && !defined(CUPS_IMAGE) && defined(WITH_PYTHON) CONFIGURE_ARGS+= --with-python USE_PYTHON= yes .include "${PORTSDIR}/Mk/bsd.python.mk" .endif .if !defined(CUPS_CLIENT) && !defined(CUPS_IMAGE) && defined(WITH_LIBPAPER) CONFIGURE_ARGS+= --enable-libpaper LIB_DEPENDS+= paper.2:${PORTSDIR}/print/libpaper .endif .if !defined(CUPS_CLIENT) && !defined(CUPS_IMAGE) && defined(WITH_DNSSD) CONFIGURE_ARGS+= --enable-dnssd \ --with-dnssd-libs=${LOCALBASE}/lib/ \ --with-dnssd-includes=${LOCALBASE}/include/avahi-compat-libdns_sd/ LIB_DEPENDS+= dns_sd:${PORTSDIR}/net/avahi-libdns .else CONFIGURE_ARGS+= --disable-dnssd .endif .if !defined(CUPS_CLIENT) && !defined(CUPS_IMAGE) && defined(WITH_PAM) CONFIGURE_ARGS+= --enable-pam PLIST_SUB+= WITH_PAMD="" .else CONFIGURE_ARGS+= --disable-pam PLIST_SUB+= WITH_PAMD="@comment " .endif .if !defined(CUPS_CLIENT) && !defined(CUPS_IMAGE) && defined(WITH_LDAP) USE_OPENLDAP= yes CONFIGURE_ARGS+= --enable-ldap .else CONFIGURE_ARGS+= --disable-ldap .endif .if !defined(CUPS_CLIENT) && !defined(CUPS_IMAGE) && defined(WITH_DBUS) LIB_DEPENDS+= dbus-1.3:${PORTSDIR}/devel/dbus CONFIGURE_ARGS+= --enable-dbus .else CONFIGURE_ARGS+= --disable-dbus .endif .if !defined(CUPS_CLIENT) && !defined(CUPS_IMAGE) && defined(WITH_XDG_OPEN) RUN_DEPENDS+= xdg-open:${PORTSDIR}/devel/xdg-utils .endif -.if !defined(CUPS_CLIENT) && !defined(CUPS_IMAGE) && defined(WITH_LIBUSB) +.if !defined(CUPS_CLIENT) && !defined(CUPS_IMAGE) && defined(WITH_LIBUSB) && ${OSVERSION}>800062 +CPPFLAGS+= -I/usr/include +LDFLAGS+= -L/usr/lib +.elif !defined(CUPS_CLIENT) && !defined(CUPS_IMAGE) && defined(WITH_LIBUSB) && ${OSVERSION}<800063 LIB_DEPENDS+= usb:${PORTSDIR}/devel/libusb +.else +CONFIGURE_ARGS+= --disable-libusb .endif .if defined(CUPS_CLIENT) MAN1= cups-config.1 .elif defined(CUPS_IMAGE) .else MAN1= cancel.1 \ cupstestdsc.1 \ cupstestppd.1 \ lp.1 \ lpoptions.1 \ lppasswd.1 \ lpq.1 \ lprm.1 \ lpr.1 \ lpstat.1 \ ppdc.1 \ ppdhtml.1 \ ppdi.1 \ ppdmerge.1 \ ppdpo.1 MAN5= classes.conf.5 \ client.conf.5 \ cups-snmp.conf.5 \ cupsd.conf.5 \ mailto.conf.5 \ mime.convs.5 \ mime.types.5 \ ppdcfile.5 \ printers.conf.5 \ subscriptions.conf.5 MAN7= backend.7 \ drv.7 \ filter.7 \ notifier.7 MAN8= accept.8 \ cupsaccept.8 \ cupsaddsmb.8 \ cupsctl.8 \ cupsd.8 \ cupsenable.8 \ cupsfilter.8 \ cups-deviced.8 \ cups-driverd.8 \ cups-lpd.8 \ cups-polld.8 \ lpadmin.8 \ lpinfo.8 \ lpmove.8 \ lpc.8 MLINKS= accept.8 reject.8 \ cupsaccept.8 cupsreject.8 \ cupsenable.8 cupsdisable.8 .endif pre-configure:: @${ECHO_MSG} Configuring CUPS with options: @${ECHO_MSG} ${CONFIGURE_ARGS} | fmt post-patch: .if (${OSVERSION} >= 700000) || defined(WITH_PIEAMD64) .if ${ARCH} == "amd64" || defined(WITH_PIEAMD64) @${REINPLACE_CMD} -e 's|@PIEFLAGS@||' ${WRKSRC}/Makedefs.in .endif .endif .if defined(WITH_XDG_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|-lpthreads.*;|${PTHREAD_LIBS};|g' \ -e 's|/private/etc/pam.d|${LOCALBASE}/etc/pam.d|' \ ${WRKSRC}/${CONFIGURE_SCRIPT} .if defined(CUPS_CLIENT) @${REINPLACE_CMD} \ -e 's|cups filter |cups |' \ -e 's|backend berkeley cgi-bin driver locale man monitor||' \ -e 's|notifier ppdc scheduler systemv test ||' \ -e 's|$$.PHPDIR. ||' \ -e 's|conf data doc $$.FONTS.ppd templates||' \ -e 's|/usr/share|${PREFIX}/share|g' \ ${WRKSRC}/Makefile .elif defined(CUPS_IMAGE) @${REINPLACE_CMD} \ -e 's|cups filter |filter |' \ -e 's|backend berkeley cgi-bin driver locale man monitor||' \ -e 's|notifier ppdc scheduler systemv test ||' \ -e 's|$$.PHPDIR. ||' \ -e 's|conf data doc $$.FONTS.ppd templates||' \ -e 's|/usr/share|${PREFIX}/share|g' \ ${WRKSRC}/Makefile .else @${REINPLACE_CMD} \ -e 's|cups filter backend|backend|' \ -e 's|$$.INSTALL_SCRIPT. cups-config|echo skip: cups-config|' \ -e 's|/usr/share|${PREFIX}/share|g' \ -e 's|installhdrs$$||' \ ${WRKSRC}/Makefile @${REINPLACE_CMD} \ -e 's|cups-config.$$.MAN1EXT. ||' \ ${WRKSRC}/man/Makefile .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 .if defined(CUPS_IMAGE) post-install: ${INSTALL_DATA} ${WRKSRC}/cups/raster.h ${PREFIX}/include/cups/ .endif .if !defined(CUPS_CLIENT) && !defined(CUPS_IMAGE) post-build: cd ${WRKSRC}/filter && ${MAKE} pdftops pre-su-install: @${INSTALL} -d ${DESKTOPDIR}/ if ! pw groupshow ${CUPSGRP}; then pw groupadd ${CUPSGRP} -g 193; fi if ! pw usershow ${CUPSOWN}; then pw useradd ${CUPSOWN} -g ${CUPSGRP} -u 193 \ -h - -d ${NONEXISTENT} -s /usr/sbin/nologin -c "CUPS Owner"; fi .if defined(CUPS_OVERWRITE_BASE) if test -e /usr/bin/lp; then ${CHMOD} -h 0 /usr/bin/lp; fi if test -e /usr/bin/lpq; then ${CHMOD} -h 0 /usr/bin/lpq; fi if test -e /usr/bin/lpr; then ${CHMOD} -h 0 /usr/bin/lpr; fi if test -e /usr/bin/lprm; then ${CHMOD} -h 0 /usr/bin/lprm; fi if test -e /usr/sbin/lpc; then ${CHMOD} -h 0 /usr/sbin/lpc; fi .endif post-install: .if defined(WITH_GHOSTSCRIPT) ${INSTALL_PROGRAM} ${WRKSRC}/filter/pdftops ${PREFIX}/libexec/cups/filter/ .endif ${INSTALL} -d ${CUPS_ETCDIR}/ ${CP} -p ${WRKSRC}/conf/snmp.conf ${WRKSRC}/conf/snmp.conf.N .for f in cupsd.conf mime.convs mime.types snmp.conf ${INSTALL_DATA} ${WRKSRC}/conf/${f} ${CUPS_ETCDIR}/${f}.N cd ${CUPS_ETCDIR}/; if test ! -f ${f}; then ${CP} -p ${f}.N ${f}; fi .endfor ${MKDIR} ${EXAMPLESDIR} ${INSTALL_DATA} ${FILESDIR}/lpt-cupsd.conf ${EXAMPLESDIR}/ ${INSTALL} -d ${CUPS_SPOOLDIR}/tmp/ ${CHOWN} -R ${CUPSOWN}:${CUPSGRP} ${CUPS_SPOOLDIR}/ ${CHMOD} -R g+w ${CUPS_SPOOLDIR}/ ${INSTALL} -d /var/cache/cups/ ${CHOWN} root:${CUPSGRP} /var/cache/cups/ .endif .if defined(CUPS_CLIENT) post-install: ${INSTALL_SCRIPT} ${WRKSRC}/cups-config ${PREFIX}/bin/ ${INSTALL_DATA} ${WRKSRC}/cups/libcups.a ${PREFIX}/lib/ ${INSTALL_MAN} ${WRKSRC}/man/cups-config.man ${PREFIX}/man/man1/cups-config.1 .endif .include diff --git a/print/cups-base/pkg-message b/print/cups-base/pkg-message index f38b15740d09..92281a53bbec 100644 --- a/print/cups-base/pkg-message +++ b/print/cups-base/pkg-message @@ -1,27 +1,31 @@ ====================================================================== To enable printing with local printer you need to give group 'cups' r/w access to printer device: 1) Add following to /etc/devfs.rules (create if it doesn't exist): [system=10] add path 'unlpt*' mode 0660 group cups add path 'ulpt*' mode 0660 group cups add path 'lpt*' mode 0660 group cups 2) And following to /etc/rc.conf: devfs_system_ruleset="system" 3) Restart devfs: /etc/rc.d/devfs restart If your system supports 'devd' you can copy $PREFIX/share/examples/cups/lpt-cupsd.conf to $PREFIX/etc/devd/ To enable printing under Gimp and MS-Windows clients do the following: 1) Uncomment application/octet-stream line in mime.types 2) Uncomment application/octet-stream line in mime.convs 3) Restart cupsd + +If you are using libusb, it is important that no device driver, e.g. +ulpt(4) is attached to the device you wish to use. In this case please +ensure the cups user and group has read/write access to /dev/ugen* ====================================================================== diff --git a/print/cups-base/pkg-plist b/print/cups-base/pkg-plist index f57ed35bd193..c0d618851008 100644 --- a/print/cups-base/pkg-plist +++ b/print/cups-base/pkg-plist @@ -1,856 +1,861 @@ @exec if ! pw groupshow cups 2>/dev/null; then pw groupadd cups -g 193; fi @exec if ! pw usershow cups 2>/dev/null; then pw useradd cups -g cups -u 193 -h - -d /nonexistent -s /usr/sbin/nologin -c "CUPS Owner"; fi @unexec if pw usershow cups; then pw userdel cups; fi @exec mkdir -p /var/spool/cups/tmp || true @exec chown -R root:daemon /var/spool/cups @exec mkdir -p /var/cache/cups || true @exec chown root:cups /var/cache/cups @exec mkdir -p /var/log/cups || true @exec chown cups:daemon /var/log/cups @exec mkdir -p %D/etc/cups/ppd || true @exec mkdir -p %D/etc/cups/interfaces || true @unexec rm -rf /var/spool/cups 2>/dev/null || true @unexec rm -rf /var/cache/cups 2>/dev/null || true @unexec rmdir /var/cache 2>/dev/null || true @unexec rmdir /var/log/cups 2>/dev/null || true @unexec rmdir /var/run/cups/certs 2>/dev/null || true @unexec rmdir /var/run/cups 2>/dev/null || true %%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 @unexec if cmp -s %D/etc/cups/cupsd.conf.N %D/etc/cups/cupsd.conf; then rm -f %D/etc/cups/cupsd.conf; fi etc/cups/cupsd.conf.N @exec if test ! -f %D/etc/cups/cupsd.conf; then cp -p %D/etc/cups/cupsd.conf.N %D/etc/cups/cupsd.conf; fi @unexec if cmp -s %D/etc/cups/mime.convs.N %D/etc/cups/mime.convs; then rm -f %D/etc/cups/mime.convs; fi etc/cups/mime.convs.N @exec if test ! -f %D/etc/cups/mime.convs; then cp -p %D/etc/cups/mime.convs.N %D/etc/cups/mime.convs; fi @unexec if cmp -s %D/etc/cups/mime.types.N %D/etc/cups/mime.types; then rm -f %D/etc/cups/mime.types; fi etc/cups/mime.types.N @exec if test ! -f %D/etc/cups/mime.types; then cp -p %D/etc/cups/mime.types.N %D/etc/cups/mime.types; fi @unexec if cmp -s %D/etc/cups/snmp.conf.N %D/etc/cups/snmp.conf; then rm -f %D/etc/cups/snmp.conf; fi etc/cups/snmp.conf.N @exec if test ! -f %D/etc/cups/snmp.conf; then cp -p %D/etc/cups/snmp.conf.N %D/etc/cups/snmp.conf; fi @exec chgrp cups %D/etc/cups %%WITH_PAMD%%etc/pam.d/cups bin/cancel bin/cupstestdsc bin/cupstestppd bin/lp bin/lpoptions bin/lppasswd bin/lpq bin/lpr bin/lprm bin/lpstat bin/ppdc bin/ppdhtml bin/ppdi bin/ppdmerge bin/ppdpo etc/cups/cupsd.conf.default include/cups/cgi.h include/cups/driver.h include/cups/help-index.h include/cups/mime.h include/cups/ppdc.h lib/libcupscgi.so lib/libcupscgi.so.1 lib/libcupsdriver.so lib/libcupsdriver.so.1 lib/libcupsmime.so lib/libcupsmime.so.1 lib/libcupsppdc.so lib/libcupsppdc.so.1 %%PHP%%lib/php/%%PHP_EXT_DIR%%/phpcups.so libexec/cups/backend/http libexec/cups/backend/ipp libexec/cups/backend/lpd libexec/cups/backend/parallel libexec/cups/backend/scsi libexec/cups/backend/serial libexec/cups/backend/snmp libexec/cups/backend/socket libexec/cups/backend/usb 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-lpd libexec/cups/daemon/cups-polld libexec/cups/filter/commandtoescpx libexec/cups/filter/commandtopclx %%WITH_GHOSTSCRIPT%%libexec/cups/filter/pdftops libexec/cups/filter/rastertoescpx libexec/cups/filter/rastertopclx libexec/cups/monitor/bcp libexec/cups/monitor/tbcp libexec/cups/notifier/mailto libexec/cups/notifier/rss 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 %%DATADIR%%/banners/classified %%DATADIR%%/banners/confidential %%DATADIR%%/banners/secret %%DATADIR%%/banners/standard %%DATADIR%%/banners/topsecret %%DATADIR%%/banners/unclassified %%DATADIR%%/charmaps/euc-cn.txt %%DATADIR%%/charmaps/euc-jp.txt %%DATADIR%%/charmaps/euc-kr.txt %%DATADIR%%/charmaps/euc-tw.txt %%DATADIR%%/charmaps/iso-8859-1.txt %%DATADIR%%/charmaps/iso-8859-10.txt %%DATADIR%%/charmaps/iso-8859-11.txt %%DATADIR%%/charmaps/iso-8859-13.txt %%DATADIR%%/charmaps/iso-8859-14.txt %%DATADIR%%/charmaps/iso-8859-15.txt %%DATADIR%%/charmaps/iso-8859-16.txt %%DATADIR%%/charmaps/iso-8859-2.txt %%DATADIR%%/charmaps/iso-8859-3.txt %%DATADIR%%/charmaps/iso-8859-4.txt %%DATADIR%%/charmaps/iso-8859-5.txt %%DATADIR%%/charmaps/iso-8859-6.txt %%DATADIR%%/charmaps/iso-8859-7.txt %%DATADIR%%/charmaps/iso-8859-8.txt %%DATADIR%%/charmaps/iso-8859-9.txt %%DATADIR%%/charmaps/jis-x0213.txt %%DATADIR%%/charmaps/koi8-r.txt %%DATADIR%%/charmaps/koi8-u.txt %%DATADIR%%/charmaps/mac-roman.txt %%DATADIR%%/charmaps/windows-1250.txt %%DATADIR%%/charmaps/windows-1251.txt %%DATADIR%%/charmaps/windows-1252.txt %%DATADIR%%/charmaps/windows-1253.txt %%DATADIR%%/charmaps/windows-1254.txt %%DATADIR%%/charmaps/windows-1255.txt %%DATADIR%%/charmaps/windows-1256.txt %%DATADIR%%/charmaps/windows-1257.txt %%DATADIR%%/charmaps/windows-1258.txt %%DATADIR%%/charmaps/windows-1361.txt %%DATADIR%%/charmaps/windows-874.txt %%DATADIR%%/charmaps/windows-932.txt %%DATADIR%%/charmaps/windows-936.txt %%DATADIR%%/charmaps/windows-949.txt %%DATADIR%%/charmaps/windows-950.txt %%DATADIR%%/charsets/utf-8 %%DATADIR%%/data/HPGLprolog %%DATADIR%%/data/psglyphs %%DATADIR%%/data/testprint %%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%%/fonts/Monospace %%DATADIR%%/fonts/Monospace-Bold %%DATADIR%%/fonts/Monospace-BoldOblique %%DATADIR%%/fonts/Monospace-Oblique %%DATADIR%%/mime/mime.convs %%DATADIR%%/mime/mime.types %%DATADIR%%/ppdc/epson.h %%DATADIR%%/ppdc/escp.h %%DATADIR%%/ppdc/font.defs %%DATADIR%%/ppdc/hp.h %%DATADIR%%/ppdc/label.h %%DATADIR%%/ppdc/media.defs %%DATADIR%%/ppdc/pcl.h %%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-trailer.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-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-purge.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-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-purge.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/eu/add-class.tmpl %%DATADIR%%/templates/eu/add-printer.tmpl %%DATADIR%%/templates/eu/add-rss-subscription.tmpl %%DATADIR%%/templates/eu/admin.tmpl %%DATADIR%%/templates/eu/choose-device.tmpl %%DATADIR%%/templates/eu/choose-make.tmpl %%DATADIR%%/templates/eu/choose-model.tmpl %%DATADIR%%/templates/eu/choose-serial.tmpl %%DATADIR%%/templates/eu/choose-uri.tmpl %%DATADIR%%/templates/eu/class-added.tmpl %%DATADIR%%/templates/eu/class-confirm.tmpl %%DATADIR%%/templates/eu/class-deleted.tmpl %%DATADIR%%/templates/eu/class-jobs-header.tmpl %%DATADIR%%/templates/eu/class-modified.tmpl %%DATADIR%%/templates/eu/class.tmpl %%DATADIR%%/templates/eu/classes-header.tmpl %%DATADIR%%/templates/eu/classes.tmpl %%DATADIR%%/templates/eu/command.tmpl %%DATADIR%%/templates/eu/edit-config.tmpl %%DATADIR%%/templates/eu/error-op.tmpl %%DATADIR%%/templates/eu/error.tmpl %%DATADIR%%/templates/eu/header.tmpl %%DATADIR%%/templates/eu/help-header.tmpl %%DATADIR%%/templates/eu/help-printable.tmpl %%DATADIR%%/templates/eu/help-trailer.tmpl %%DATADIR%%/templates/eu/job-cancel.tmpl %%DATADIR%%/templates/eu/job-hold.tmpl %%DATADIR%%/templates/eu/job-move.tmpl %%DATADIR%%/templates/eu/job-moved.tmpl %%DATADIR%%/templates/eu/job-release.tmpl %%DATADIR%%/templates/eu/job-restart.tmpl %%DATADIR%%/templates/eu/jobs-header.tmpl %%DATADIR%%/templates/eu/jobs.tmpl %%DATADIR%%/templates/eu/list-available-printers.tmpl %%DATADIR%%/templates/eu/modify-class.tmpl %%DATADIR%%/templates/eu/modify-printer.tmpl %%DATADIR%%/templates/eu/norestart.tmpl %%DATADIR%%/templates/eu/option-boolean.tmpl %%DATADIR%%/templates/eu/option-conflict.tmpl %%DATADIR%%/templates/eu/option-header.tmpl %%DATADIR%%/templates/eu/option-pickmany.tmpl %%DATADIR%%/templates/eu/option-pickone.tmpl %%DATADIR%%/templates/eu/option-trailer.tmpl %%DATADIR%%/templates/eu/pager.tmpl %%DATADIR%%/templates/eu/printer-accept.tmpl %%DATADIR%%/templates/eu/printer-added.tmpl %%DATADIR%%/templates/eu/printer-configured.tmpl %%DATADIR%%/templates/eu/printer-confirm.tmpl %%DATADIR%%/templates/eu/printer-default.tmpl %%DATADIR%%/templates/eu/printer-deleted.tmpl %%DATADIR%%/templates/eu/printer-jobs-header.tmpl %%DATADIR%%/templates/eu/printer-modified.tmpl %%DATADIR%%/templates/eu/printer-purge.tmpl %%DATADIR%%/templates/eu/printer-reject.tmpl %%DATADIR%%/templates/eu/printer-start.tmpl %%DATADIR%%/templates/eu/printer-stop.tmpl %%DATADIR%%/templates/eu/printer.tmpl %%DATADIR%%/templates/eu/printers-header.tmpl %%DATADIR%%/templates/eu/printers.tmpl %%DATADIR%%/templates/eu/restart.tmpl %%DATADIR%%/templates/eu/samba-export.tmpl %%DATADIR%%/templates/eu/samba-exported.tmpl %%DATADIR%%/templates/eu/search.tmpl %%DATADIR%%/templates/eu/set-printer-options-header.tmpl %%DATADIR%%/templates/eu/set-printer-options-trailer.tmpl %%DATADIR%%/templates/eu/subscription-added.tmpl %%DATADIR%%/templates/eu/subscription-canceled.tmpl %%DATADIR%%/templates/eu/test-page.tmpl %%DATADIR%%/templates/eu/trailer.tmpl %%DATADIR%%/templates/eu/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-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-purge.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/pl/add-class.tmpl %%DATADIR%%/templates/pl/add-printer.tmpl %%DATADIR%%/templates/pl/add-rss-subscription.tmpl %%DATADIR%%/templates/pl/admin.tmpl %%DATADIR%%/templates/pl/choose-device.tmpl %%DATADIR%%/templates/pl/choose-make.tmpl %%DATADIR%%/templates/pl/choose-model.tmpl %%DATADIR%%/templates/pl/choose-serial.tmpl %%DATADIR%%/templates/pl/choose-uri.tmpl %%DATADIR%%/templates/pl/class-added.tmpl %%DATADIR%%/templates/pl/class-confirm.tmpl %%DATADIR%%/templates/pl/class-deleted.tmpl %%DATADIR%%/templates/pl/class-jobs-header.tmpl %%DATADIR%%/templates/pl/class-modified.tmpl %%DATADIR%%/templates/pl/class.tmpl %%DATADIR%%/templates/pl/classes-header.tmpl %%DATADIR%%/templates/pl/classes.tmpl %%DATADIR%%/templates/pl/command.tmpl %%DATADIR%%/templates/pl/edit-config.tmpl %%DATADIR%%/templates/pl/error-op.tmpl %%DATADIR%%/templates/pl/error.tmpl %%DATADIR%%/templates/pl/header.tmpl %%DATADIR%%/templates/pl/help-header.tmpl %%DATADIR%%/templates/pl/help-printable.tmpl %%DATADIR%%/templates/pl/help-trailer.tmpl %%DATADIR%%/templates/pl/job-cancel.tmpl %%DATADIR%%/templates/pl/job-hold.tmpl %%DATADIR%%/templates/pl/job-move.tmpl %%DATADIR%%/templates/pl/job-moved.tmpl %%DATADIR%%/templates/pl/job-release.tmpl %%DATADIR%%/templates/pl/job-restart.tmpl %%DATADIR%%/templates/pl/jobs-header.tmpl %%DATADIR%%/templates/pl/jobs.tmpl %%DATADIR%%/templates/pl/list-available-printers.tmpl %%DATADIR%%/templates/pl/modify-class.tmpl %%DATADIR%%/templates/pl/modify-printer.tmpl %%DATADIR%%/templates/pl/option-boolean.tmpl %%DATADIR%%/templates/pl/option-conflict.tmpl %%DATADIR%%/templates/pl/option-header.tmpl %%DATADIR%%/templates/pl/option-pickmany.tmpl %%DATADIR%%/templates/pl/option-pickone.tmpl %%DATADIR%%/templates/pl/option-trailer.tmpl %%DATADIR%%/templates/pl/pager.tmpl %%DATADIR%%/templates/pl/printer-accept.tmpl %%DATADIR%%/templates/pl/printer-added.tmpl %%DATADIR%%/templates/pl/printer-configured.tmpl %%DATADIR%%/templates/pl/printer-confirm.tmpl %%DATADIR%%/templates/pl/printer-default.tmpl %%DATADIR%%/templates/pl/printer-deleted.tmpl %%DATADIR%%/templates/pl/printer-jobs-header.tmpl %%DATADIR%%/templates/pl/printer-modified.tmpl %%DATADIR%%/templates/pl/printer-purge.tmpl %%DATADIR%%/templates/pl/printer-reject.tmpl %%DATADIR%%/templates/pl/printer-start.tmpl %%DATADIR%%/templates/pl/printer-stop.tmpl %%DATADIR%%/templates/pl/printers-header.tmpl %%DATADIR%%/templates/pl/printers.tmpl %%DATADIR%%/templates/pl/restart.tmpl %%DATADIR%%/templates/pl/samba-export.tmpl %%DATADIR%%/templates/pl/samba-exported.tmpl %%DATADIR%%/templates/pl/search.tmpl %%DATADIR%%/templates/pl/set-printer-options-header.tmpl %%DATADIR%%/templates/pl/set-printer-options-trailer.tmpl %%DATADIR%%/templates/pl/subscription-added.tmpl %%DATADIR%%/templates/pl/subscription-canceled.tmpl %%DATADIR%%/templates/pl/test-page.tmpl %%DATADIR%%/templates/pl/trailer.tmpl %%DATADIR%%/templates/pl/users.tmpl %%DATADIR%%/templates/printer-accept.tmpl %%DATADIR%%/templates/printer-added.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-purge.tmpl %%DATADIR%%/templates/printer-reject.tmpl %%DATADIR%%/templates/printer-start.tmpl %%DATADIR%%/templates/printer-stop.tmpl %%DATADIR%%/templates/pl/norestart.tmpl %%DATADIR%%/templates/pl/printer.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/help-trailer.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-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-purge.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 %%DOCSDIR%%/cups-printable.css %%DOCSDIR%%/cups.css %%DOCSDIR%%/de/index.html %%DOCSDIR%%/es/index.html %%DOCSDIR%%/eu/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-cups-lpd.html %%DOCSDIR%%/help/man-cups-polld.html %%DOCSDIR%%/help/man-cupsaccept.html %%DOCSDIR%%/help/man-cupsaddsmb.html %%DOCSDIR%%/help/man-cupsd.html %%DOCSDIR%%/help/man-cupsenable.html %%DOCSDIR%%/help/man-cupstestdsc.html %%DOCSDIR%%/help/man-cupstestppd.html %%DOCSDIR%%/help/man-drv.html %%DOCSDIR%%/help/man-filter.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-lppasswd.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/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-access_log.html %%DOCSDIR%%/help/ref-classes-conf.html %%DOCSDIR%%/help/ref-client-conf.html %%DOCSDIR%%/help/ref-cupsd-conf.html %%DOCSDIR%%/help/ref-error_log.html %%DOCSDIR%%/help/ref-mailto-conf.html %%DOCSDIR%%/help/ref-page_log.html %%DOCSDIR%%/help/ref-ppdcfile.html %%DOCSDIR%%/help/ref-printers-conf.html %%DOCSDIR%%/help/ref-snmp-conf.html %%DOCSDIR%%/help/ref-subscriptions-conf.html %%DOCSDIR%%/help/security.html %%DOCSDIR%%/help/sharing.html %%DOCSDIR%%/help/spec-banner.html %%DOCSDIR%%/help/spec-browsing.html %%DOCSDIR%%/help/spec-cmp.html %%DOCSDIR%%/help/spec-command.html %%DOCSDIR%%/help/spec-design.html %%DOCSDIR%%/help/spec-ipp.html %%DOCSDIR%%/help/spec-postscript.html %%DOCSDIR%%/help/spec-pdf.html %%DOCSDIR%%/help/spec-ppd.html %%DOCSDIR%%/help/spec-raster.html %%DOCSDIR%%/help/spec-stp.html %%DOCSDIR%%/help/standard.html %%DOCSDIR%%/help/translation.html %%DOCSDIR%%/help/whatsnew.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/left.gif %%DOCSDIR%%/images/raster.png %%DOCSDIR%%/images/right.gif %%DOCSDIR%%/images/sel.gif %%DOCSDIR%%/images/smiley.jpg %%DOCSDIR%%/images/unsel.gif %%DOCSDIR%%/images/wait.gif %%DOCSDIR%%/index.html %%DOCSDIR%%/ja/index.html %%DOCSDIR%%/pl/index.html %%DOCSDIR%%/robots.txt %%DOCSDIR%%/ru/index.html %%EXAMPLESDIR%%/lpt-cupsd.conf share/applications/cups.desktop share/icons/hicolor/16x16/apps/cups.png share/icons/hicolor/32x32/apps/cups.png share/icons/hicolor/64x64/apps/cups.png share/icons/hicolor/128x128/apps/cups.png share/locale/da/cups_da.po share/locale/de/cups_de.po share/locale/es/cups_es.po share/locale/eu/cups_eu.po share/locale/fi/cups_fi.po share/locale/fr/cups_fr.po share/locale/it/cups_it.po share/locale/ja/cups_ja.po share/locale/ko/cups_ko.po share/locale/nl/cups_nl.po share/locale/no/cups_no.po share/locale/pl/cups_pl.po share/locale/pt/cups_pt.po share/locale/pt_BR/cups_pt_BR.po share/locale/ru/cups_ru.po share/locale/sv/cups_sv.po share/locale/zh/cups_zh.po share/locale/zh_TW/cups_zh_TW.po @dirrmtry share/icons/hicolor/16x16/apps @dirrmtry share/icons/hicolor/16x16 @dirrmtry share/icons/hicolor/32x32/apps @dirrmtry share/icons/hicolor/32x32 @dirrmtry share/icons/hicolor/64x64/apps @dirrmtry share/icons/hicolor/64x64 @dirrmtry share/icons/hicolor/128x128/apps @dirrmtry share/icons/hicolor/128x128 @dirrmtry share/icons/hicolor @dirrmtry share/icons @dirrmtry share/applications @dirrm %%DOCSDIR%%/ru @dirrm %%DOCSDIR%%/pl @dirrm %%DOCSDIR%%/ja @dirrm %%DOCSDIR%%/images @dirrm %%DOCSDIR%%/help @dirrm %%DOCSDIR%%/eu @dirrm %%DOCSDIR%%/es @dirrm %%DOCSDIR%%/de @dirrm %%DOCSDIR%% @dirrm %%EXAMPLESDIR%% @dirrm %%DATADIR%%/templates/ru @dirrm %%DATADIR%%/templates/pl @dirrm %%DATADIR%%/templates/ja @dirrm %%DATADIR%%/templates/eu @dirrm %%DATADIR%%/templates/es @dirrm %%DATADIR%%/templates/de @dirrm %%DATADIR%%/templates @exec mkdir -p %D/%%DATADIR%%/profiles @dirrm %%DATADIR%%/profiles @dirrm %%DATADIR%%/ppdc @dirrmtry %%DATADIR%%/model @dirrm %%DATADIR%%/mime @dirrm %%DATADIR%%/fonts @dirrm %%DATADIR%%/examples @dirrm %%DATADIR%%/data @dirrm %%DATADIR%%/drv @dirrm %%DATADIR%%/charsets @dirrm %%DATADIR%%/charmaps @dirrm %%DATADIR%%/banners @dirrmtry %%DATADIR%% @dirrm libexec/cups/notifier @dirrm libexec/cups/monitor @dirrmtry libexec/cups/filter @exec mkdir -p %D/libexec/cups/driver @dirrmtry libexec/cups/driver @dirrm libexec/cups/daemon @dirrm libexec/cups/cgi-bin @dirrmtry libexec/cups/backend @dirrmtry libexec/cups %%PHP%%@dirrmtry lib/php/%%PHP_EXT_DIR%% @dirrmtry etc/cups/interfaces @dirrmtry etc/cups/ppd @dirrmtry etc/cups/ssl @dirrmtry etc/cups