Mon Jan 3 05:58:49 2011 UTC ()
PLIST fix: some files are not installed on Mac OS X; pkglint clean-up


(adam)
diff -r1.172 -r1.173 pkgsrc/print/cups/Makefile
diff -r1.33 -r1.34 pkgsrc/print/cups/PLIST
diff -r1.11 -r1.12 pkgsrc/print/cups/options.mk

cvs diff -r1.172 -r1.173 pkgsrc/print/cups/Makefile (switch to unified diff)

--- pkgsrc/print/cups/Makefile 2010/12/23 11:44:54 1.172
+++ pkgsrc/print/cups/Makefile 2011/01/03 05:58:49 1.173
@@ -1,164 +1,169 @@ @@ -1,164 +1,169 @@
1# $NetBSD: Makefile,v 1.172 2010/12/23 11:44:54 dsainty Exp $ 1# $NetBSD: Makefile,v 1.173 2011/01/03 05:58:49 adam Exp $
2# 2#
3# The CUPS author is very good about taking back changes into the main 3# The CUPS author is very good about taking back changes into the main
4# CUPS distribution. The correct place to send patches or bug-fixes is: 4# CUPS distribution. The correct place to send patches or bug-fixes is:
5# cups-bugs@cups.org. 5# cups-bugs@cups.org.
6 6
7DISTNAME= cups-${DIST_VERS}-source 7DISTNAME= cups-${DIST_VERS}-source
8PKGNAME= cups-${DIST_VERS:S/-/./g} 8PKGNAME= cups-${DIST_VERS:S/-/./g}
9BASE_VERS= 1.4.4 9BASE_VERS= 1.4.4
10DIST_VERS= ${BASE_VERS} 10DIST_VERS= ${BASE_VERS}
11 11
12CATEGORIES= print 12CATEGORIES= print
13MASTER_SITES= http://ftp.easysw.com/pub/cups/${BASE_VERS}/ \ 13MASTER_SITES= http://ftp.easysw.com/pub/cups/${BASE_VERS}/ \
14 ftp://ftp.easysw.com/pub/cups/${BASE_VERS}/ \ 14 ftp://ftp.easysw.com/pub/cups/${BASE_VERS}/ \
15 ftp://ftp.funet.fi/pub/mirrors/ftp.easysw.com/pub/cups/${BASE_VERS}/ 15 ftp://ftp.funet.fi/pub/mirrors/ftp.easysw.com/pub/cups/${BASE_VERS}/
16EXTRACT_SUFX= .tar.bz2 16EXTRACT_SUFX= .tar.bz2
17 17
18MAINTAINER= sbd@NetBSD.org 18MAINTAINER= sbd@NetBSD.org
19HOMEPAGE= http://www.cups.org/ 19HOMEPAGE= http://www.cups.org/
20COMMENT= Common UNIX Printing System 20COMMENT= Common UNIX Printing System
21LICENSE= gnu-gpl-v2 AND gnu-lgpl-v2 21LICENSE= gnu-gpl-v2 AND gnu-lgpl-v2
22 22
23PKG_DESTDIR_SUPPORT= user-destdir 23PKG_DESTDIR_SUPPORT= user-destdir
24 24
25CONFLICTS+= LPRng-[0-9]* LPRng-core-[0-9]* 25CONFLICTS+= LPRng-[0-9]* LPRng-core-[0-9]*
26 26
27#PKG_INSTALLATION_TYPES= overwrite pkgviews 27#PKG_INSTALLATION_TYPES= overwrite pkgviews
28 28
29WRKSRC= ${WRKDIR}/cups-${BASE_VERS} 29WRKSRC= ${WRKDIR}/cups-${BASE_VERS}
30UNLIMIT_RESOURCES= datasize memorysize 30UNLIMIT_RESOURCES= datasize memorysize
31USE_LANGUAGES= c c++ # pdftops is a C++ application 31USE_LANGUAGES= c c++ # pdftops is a C++ application
32USE_PKGLOCALEDIR= yes 32USE_PKGLOCALEDIR= yes
33USE_TOOLS+= aclocal autoconf automake gmake 33USE_TOOLS+= aclocal autoconf automake gmake
34USE_LIBTOOL= yes 34USE_LIBTOOL= yes
35INSTALL_TARGET= installcups 35INSTALL_TARGET= installcups
36# patch-a[jkl] were added for 2.60 36# patch-a[jkl] were added for 2.60
37AUTOCONF_REQD= 2.60 37AUTOCONF_REQD= 2.60
38 38
39GNU_CONFIGURE= yes 39GNU_CONFIGURE= yes
40CONFIGURE_ARGS+= --localedir=${PREFIX}/${PKGLOCALEDIR}/locale 40CONFIGURE_ARGS+= --localedir=${PREFIX}/${PKGLOCALEDIR}/locale
41CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFBASEDIR:Q} 41CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFBASEDIR}
42CONFIGURE_ARGS+= --localstatedir=${VARBASE:Q} 42CONFIGURE_ARGS+= --localstatedir=${VARBASE}
43CONFIGURE_ARGS+= --with-cachedir=${CUPS_CACHE:Q} 43CONFIGURE_ARGS+= --with-cachedir=${CUPS_CACHE:Q}
44CONFIGURE_ARGS+= --with-docdir=${PREFIX}/share/doc/cups 44CONFIGURE_ARGS+= --with-docdir=${PREFIX}/share/doc/cups
45CONFIGURE_ARGS+= --with-serverbindir=${PREFIX}/libexec/cups 45CONFIGURE_ARGS+= --with-serverbindir=${PREFIX}/libexec/cups
46CONFIGURE_ARGS+= --with-cups-user=${CUPS_USER:Q} 46CONFIGURE_ARGS+= --with-cups-user=${CUPS_USER}
47CONFIGURE_ARGS+= --with-cups-group=${CUPS_GROUP:Q} 47CONFIGURE_ARGS+= --with-cups-group=${CUPS_GROUP}
48CONFIGURE_ARGS+= --with-system-groups=${CUPS_SYSTEM_GROUPS:Q} 48CONFIGURE_ARGS+= --with-system-groups=${CUPS_SYSTEM_GROUPS:Q}
49CONFIGURE_ARGS+= --enable-libpaper 49CONFIGURE_ARGS+= --enable-libpaper
50CONFIGURE_ARGS+= --enable-libtool 50CONFIGURE_ARGS+= --enable-libtool
51CONFIGURE_ARGS+= --enable-jpeg 51CONFIGURE_ARGS+= --enable-jpeg
52CONFIGURE_ARGS+= --enable-png 52CONFIGURE_ARGS+= --enable-png
53CONFIGURE_ARGS+= --enable-tiff 53CONFIGURE_ARGS+= --enable-tiff
54CONFIGURE_ARGS+= --enable-ssl 54CONFIGURE_ARGS+= --enable-ssl
55CONFIGURE_ARGS+= --enable-openssl 55CONFIGURE_ARGS+= --enable-openssl
56CONFIGURE_ARGS+= --enable-bannertops 56CONFIGURE_ARGS+= --enable-bannertops
57CONFIGURE_ARGS+= --enable-texttops 57CONFIGURE_ARGS+= --enable-texttops
58CONFIGURE_ARGS+= --with-manext=bsd 58CONFIGURE_ARGS+= --with-manext=bsd
59CONFIGURE_ARGS+= --without-icondir 59CONFIGURE_ARGS+= --without-icondir
60CONFIGURE_ARGS+= --without-menudir 60CONFIGURE_ARGS+= --without-menudir
61CONFIGURE_ARGS+= --without-perl 61CONFIGURE_ARGS+= --without-perl
62CONFIGURE_ARGS+= --without-php 62CONFIGURE_ARGS+= --without-php
63CONFIGURE_ARGS+= --without-python 63CONFIGURE_ARGS+= --without-python
64CONFIGURE_ARGS+= --without-java 64CONFIGURE_ARGS+= --without-java
65 65
66CONFIGURE_ENV+= DSOFLAGS=${LDFLAGS:M*:Q} 66CONFIGURE_ENV+= DSOFLAGS=${LDFLAGS:M*:Q}
67 67
68.include "../../mk/bsd.prefs.mk" 68.include "../../mk/bsd.prefs.mk"
69.include "options.mk" 69.include "options.mk"
70 70
 71PLIST_VARS+= notmac
 72.if ${OPSYS} != "Darwin"
 73PLIST.notmac= yes
 74.endif
 75
71# CUPS_USER username of the CUPS administrator 76# CUPS_USER username of the CUPS administrator
72# CUPS_GROUP group of the CUPS administrator 77# CUPS_GROUP group of the CUPS administrator
73# 78#
74CUPS_USER?= lp 79CUPS_USER?= lp
75CUPS_GROUP?= lp 80CUPS_GROUP?= lp
76CUPS_SYSTEM_GROUPS?= ${REAL_ROOT_GROUP} 81CUPS_SYSTEM_GROUPS?= ${REAL_ROOT_GROUP}
77FILES_SUBST+= CUPS_USER=${CUPS_USER:Q} 82FILES_SUBST+= CUPS_USER=${CUPS_USER}
78FILES_SUBST+= CUPS_GROUP=${CUPS_GROUP:Q} 83FILES_SUBST+= CUPS_GROUP=${CUPS_GROUP}
79FILES_SUBST+= CUPS_SYSTEM_GROUPS=${CUPS_SYSTEM_GROUPS:Q} 84FILES_SUBST+= CUPS_SYSTEM_GROUPS=${CUPS_SYSTEM_GROUPS:Q}
80 85
81PKG_GROUPS_VARS+= CUPS_GROUP CUPS_SYSTEM_GROUPS 86PKG_GROUPS_VARS+= CUPS_GROUP CUPS_SYSTEM_GROUPS
82PKG_USERS_VARS+= CUPS_USER 87PKG_USERS_VARS+= CUPS_USER
83 88
84BUILD_DEFS+= CUPS_USER CUPS_GROUP CUPS_SYSTEM_GROUPS VARBASE 89BUILD_DEFS+= CUPS_USER CUPS_GROUP CUPS_SYSTEM_GROUPS VARBASE
85 90
86DOCDIR= ${PREFIX}/share/doc/cups 91DOCDIR= ${PREFIX}/share/doc/cups
87EGDIR= ${PREFIX}/share/examples/cups 92EGDIR= ${PREFIX}/share/examples/cups
88MIMEDIR= ${PREFIX}/share/cups/mime 93MIMEDIR= ${PREFIX}/share/cups/mime
89PKG_SYSCONFSUBDIR= cups 94PKG_SYSCONFSUBDIR= cups
90CUPS_CONFDIR= ${PKG_SYSCONFDIR} 95CUPS_CONFDIR= ${PKG_SYSCONFDIR}
91CUPS_LOGDIR= ${VARBASE}/log/cups 96CUPS_LOGDIR= ${VARBASE}/log/cups
92CUPS_REQUESTS= ${VARBASE}/spool/cups 97CUPS_REQUESTS= ${VARBASE}/spool/cups
93CUPS_CACHE= ${VARBASE}/cache/cups 98CUPS_CACHE= ${VARBASE}/cache/cups
94CUPS_STATEDIR= ${VARBASE}/run/cups 99CUPS_STATEDIR= ${VARBASE}/run/cups
95 100
96PKG_GROUPS= ${CUPS_GROUP} 101PKG_GROUPS= ${CUPS_GROUP}
97PKG_USERS= ${CUPS_USER}:${CUPS_GROUP} 102PKG_USERS= ${CUPS_USER}:${CUPS_GROUP}
98PKG_GECOS.${CUPS_USER}= Common UNIX Printing System user 103PKG_GECOS.${CUPS_USER}= Common UNIX Printing System user
99PKG_SHELL.${CUPS_USER}= ${SH} 104PKG_SHELL.${CUPS_USER}= ${SH}
100 105
101CONF_FILES= ${EGDIR}/cupsd.conf ${CUPS_CONFDIR}/cupsd.conf 106CONF_FILES= ${EGDIR}/cupsd.conf ${CUPS_CONFDIR}/cupsd.conf
102CONF_FILES+= ${EGDIR}/snmp.conf ${CUPS_CONFDIR}/snmp.conf 107CONF_FILES+= ${EGDIR}/snmp.conf ${CUPS_CONFDIR}/snmp.conf
103RCD_SCRIPTS= cupsd 108RCD_SCRIPTS= cupsd
104 109
105OWN_DIRS= ${CUPS_CONFDIR} 110OWN_DIRS= ${CUPS_CONFDIR}
106OWN_DIRS+= ${CUPS_CONFDIR}/interfaces 111OWN_DIRS+= ${CUPS_CONFDIR}/interfaces
107OWN_DIRS+= ${CUPS_CONFDIR}/ppd 112OWN_DIRS+= ${CUPS_CONFDIR}/ppd
108OWN_DIRS+= ${PREFIX}/libexec/cups/driver 113OWN_DIRS+= ${PREFIX}/libexec/cups/driver
109OWN_DIRS+= ${CUPS_LOGDIR} 114OWN_DIRS+= ${CUPS_LOGDIR}
110OWN_DIRS+= ${CUPS_STATEDIR} 115OWN_DIRS+= ${CUPS_STATEDIR}
111OWN_DIRS_PERMS= ${CUPS_STATEDIR}/certs ${CUPS_USER} ${CUPS_GROUP} 0711 116OWN_DIRS_PERMS= ${CUPS_STATEDIR}/certs ${CUPS_USER} ${CUPS_GROUP} 0711
112OWN_DIRS_PERMS+= ${CUPS_CONFDIR}/ssl ${REAL_ROOT_USER} ${CUPS_GROUP} 0700 117OWN_DIRS_PERMS+= ${CUPS_CONFDIR}/ssl ${REAL_ROOT_USER} ${CUPS_GROUP} 0700
113OWN_DIRS_PERMS+= ${CUPS_REQUESTS} ${REAL_ROOT_USER} ${CUPS_GROUP} 0710 118OWN_DIRS_PERMS+= ${CUPS_REQUESTS} ${REAL_ROOT_USER} ${CUPS_GROUP} 0710
114OWN_DIRS_PERMS+= ${CUPS_REQUESTS}/tmp ${REAL_ROOT_USER} ${CUPS_GROUP} 1770 119OWN_DIRS_PERMS+= ${CUPS_REQUESTS}/tmp ${REAL_ROOT_USER} ${CUPS_GROUP} 1770
115OWN_DIRS_PERMS+= ${CUPS_CACHE} ${REAL_ROOT_USER} ${CUPS_GROUP} 0775 120OWN_DIRS_PERMS+= ${CUPS_CACHE} ${REAL_ROOT_USER} ${CUPS_GROUP} 0775
116OWN_DIRS_PERMS+= ${CUPS_CACHE}/rss ${REAL_ROOT_USER} ${CUPS_GROUP} 0775 121OWN_DIRS_PERMS+= ${CUPS_CACHE}/rss ${REAL_ROOT_USER} ${CUPS_GROUP} 0775
117 122
118.include "../../devel/zlib/buildlink3.mk" 123.include "../../devel/zlib/buildlink3.mk"
119.include "../../mk/jpeg.buildlink3.mk" 124.include "../../mk/jpeg.buildlink3.mk"
120.include "../../graphics/png/buildlink3.mk" 125.include "../../graphics/png/buildlink3.mk"
121.include "../../graphics/tiff/buildlink3.mk" 126.include "../../graphics/tiff/buildlink3.mk"
122.include "../../security/openssl/buildlink3.mk" 127.include "../../security/openssl/buildlink3.mk"
123 128
124SUBST_CLASSES+= paths 129SUBST_CLASSES+= paths
125SUBST_FILES.paths= ${WRKDIR}/cups.pam 130SUBST_FILES.paths= ${WRKDIR}/cups.pam
126SUBST_SED.paths+= -e 's,@LOCALBASE@,${LOCALBASE},g' 131SUBST_SED.paths+= -e 's,@LOCALBASE@,${LOCALBASE},g'
127SUBST_STAGE.paths= post-patch 132SUBST_STAGE.paths= post-patch
128 133
129SUBST_CLASSES+= rpathfix 134SUBST_CLASSES+= rpathfix
130SUBST_FILES.rpathfix= cups-config.in 135SUBST_FILES.rpathfix= cups-config.in
131SUBST_MESSAGE.rpathfix= Adding rpath to cups-config. 136SUBST_MESSAGE.rpathfix= Adding rpath to cups-config.
132SUBST_SED.rpathfix= -e 's|@EXPORT_LDFLAGS@|${COMPILER_RPATH_FLAG}${PREFIX}/lib|g' 137SUBST_SED.rpathfix= -e 's|@EXPORT_LDFLAGS@|${COMPILER_RPATH_FLAG}${PREFIX}/lib|g'
133SUBST_STAGE.rpathfix= post-patch 138SUBST_STAGE.rpathfix= post-patch
134 139
135INSTALLATION_DIRS= ${DOCDIR} ${EGDIR} ${MIMEDIR} 140INSTALLATION_DIRS= ${DOCDIR} ${EGDIR} ${MIMEDIR}
136INSTALL_ENV+= DSTROOT=${DESTDIR:Q} 141INSTALL_ENV+= DSTROOT=${DESTDIR}
137 142
138pre-configure: 143pre-configure:
139.if !empty(CUPS_SYSTEM_GROUPS:M${CUPS_GROUP}) 144.if !empty(CUPS_SYSTEM_GROUPS:M${CUPS_GROUP})
140 ${ERROR_MSG} "CUPS_SYSTEM_GROUPS may not contain the CUPS_GROUP" 145 ${ERROR_MSG} "CUPS_SYSTEM_GROUPS may not contain the CUPS_GROUP"
141 exit 1 146 exit 1
142.endif 147.endif
143 cd ${WRKSRC} && aclocal && autoconf 148 cd ${WRKSRC} && aclocal && autoconf
144 149
145post-extract: 150post-extract:
146 ${CP} ${FILESDIR}/cups.pam ${WRKDIR}/cups.pam 151 ${CP} ${FILESDIR}/cups.pam ${WRKDIR}/cups.pam
147 152
148post-install: 153post-install:
149 set -e; for file in LICENSE.txt README.txt; do \ 154 set -e; for file in LICENSE.txt README.txt; do \
150 ${INSTALL_DATA} ${WRKSRC}/$${file} \ 155 ${INSTALL_DATA} ${WRKSRC}/$${file} \
151 ${DESTDIR}${DOCDIR}/$${file}; \ 156 ${DESTDIR}${DOCDIR}/$${file}; \
152 done 157 done
153 set -e; cd ${WRKSRC}/conf; for file in cupsd.conf snmp.conf ; do \ 158 set -e; cd ${WRKSRC}/conf; for file in cupsd.conf snmp.conf ; do \
154 ${INSTALL_DATA} $${file} ${DESTDIR}${EGDIR}/$${file}; \ 159 ${INSTALL_DATA} $${file} ${DESTDIR}${EGDIR}/$${file}; \
155 done 160 done
156 set -e; cd ${WRKSRC}/conf; for file in mime.convs mime.types; do \ 161 set -e; cd ${WRKSRC}/conf; for file in mime.convs mime.types; do \
157 ${INSTALL_DATA} $${file} ${DESTDIR}${MIMEDIR}/$${file}; \ 162 ${INSTALL_DATA} $${file} ${DESTDIR}${MIMEDIR}/$${file}; \
158 done 163 done
159.if !empty(PKG_OPTIONS:Mpam) 164.if !empty(PKG_OPTIONS:Mpam)
160 ${INSTALL_DATA} ${WRKDIR}/cups.pam ${DESTDIR}${EGDIR} 165 ${INSTALL_DATA} ${WRKDIR}/cups.pam ${DESTDIR}${EGDIR}
161.endif 166.endif
162 167
163.include "../../print/libpaper/buildlink3.mk" 168.include "../../print/libpaper/buildlink3.mk"
164.include "../../mk/bsd.pkg.mk" 169.include "../../mk/bsd.pkg.mk"

cvs diff -r1.33 -r1.34 pkgsrc/print/cups/Attic/PLIST (switch to unified diff)

--- pkgsrc/print/cups/Attic/PLIST 2010/07/20 00:01:22 1.33
+++ pkgsrc/print/cups/Attic/PLIST 2011/01/03 05:58:49 1.34
@@ -1,986 +1,986 @@ @@ -1,986 +1,986 @@
1@comment $NetBSD: PLIST,v 1.33 2010/07/20 00:01:22 sbd Exp $ 1@comment $NetBSD: PLIST,v 1.34 2011/01/03 05:58:49 adam Exp $
2bin/cancel 2bin/cancel
3bin/cups-config 3bin/cups-config
4bin/cupstestdsc 4bin/cupstestdsc
5bin/cupstestppd 5bin/cupstestppd
6bin/lp 6bin/lp
7bin/lpoptions 7bin/lpoptions
8bin/lppasswd 8bin/lppasswd
9bin/lpq 9bin/lpq
10bin/lpr 10bin/lpr
11bin/lprm 11bin/lprm
12bin/lpstat 12bin/lpstat
13bin/ppdc 13bin/ppdc
14bin/ppdhtml 14bin/ppdhtml
15bin/ppdi 15bin/ppdi
16bin/ppdmerge 16bin/ppdmerge
17bin/ppdpo 17bin/ppdpo
18include/cups/adminutil.h 18include/cups/adminutil.h
19include/cups/array.h 19include/cups/array.h
20include/cups/backend.h 20include/cups/backend.h
21include/cups/cgi.h 21include/cups/cgi.h
22include/cups/cups.h 22include/cups/cups.h
23include/cups/dir.h 23include/cups/dir.h
24include/cups/driver.h 24include/cups/driver.h
25include/cups/file.h 25include/cups/file.h
26include/cups/help-index.h 26include/cups/help-index.h
27include/cups/http.h 27include/cups/http.h
28include/cups/image.h 28include/cups/image.h
29include/cups/ipp.h 29include/cups/ipp.h
30include/cups/language.h 30include/cups/language.h
31include/cups/mime.h 31include/cups/mime.h
32include/cups/ppd.h 32include/cups/ppd.h
33include/cups/ppdc.h 33include/cups/ppdc.h
34include/cups/raster.h 34include/cups/raster.h
35include/cups/sidechannel.h 35include/cups/sidechannel.h
36include/cups/transcode.h 36include/cups/transcode.h
37include/cups/versioning.h 37include/cups/versioning.h
38lib/libcups.la 38lib/libcups.la
39lib/libcupscgi.la 39lib/libcupscgi.la
40lib/libcupsdriver.la 40lib/libcupsdriver.la
41lib/libcupsimage.la 41lib/libcupsimage.la
42lib/libcupsmime.la 42lib/libcupsmime.la
43lib/libcupsppdc.la 43lib/libcupsppdc.la
44${PLIST.dnssd}libexec/cups/backend/dnssd 44${PLIST.dnssd}libexec/cups/backend/dnssd
45libexec/cups/backend/http 45libexec/cups/backend/http
46libexec/cups/backend/ipp 46libexec/cups/backend/ipp
47libexec/cups/backend/lpd 47libexec/cups/backend/lpd
48${PLIST.dnssd}libexec/cups/backend/mdns 48${PLIST.dnssd}libexec/cups/backend/mdns
49libexec/cups/backend/parallel 49${PLIST.notmac}libexec/cups/backend/parallel
50libexec/cups/backend/scsi 50${PLIST.notmac}libexec/cups/backend/scsi
51libexec/cups/backend/serial 51libexec/cups/backend/serial
52libexec/cups/backend/snmp 52libexec/cups/backend/snmp
53libexec/cups/backend/socket 53libexec/cups/backend/socket
54libexec/cups/backend/usb 54libexec/cups/backend/usb
55libexec/cups/cgi-bin/admin.cgi 55libexec/cups/cgi-bin/admin.cgi
56libexec/cups/cgi-bin/classes.cgi 56libexec/cups/cgi-bin/classes.cgi
57libexec/cups/cgi-bin/help.cgi 57libexec/cups/cgi-bin/help.cgi
58libexec/cups/cgi-bin/jobs.cgi 58libexec/cups/cgi-bin/jobs.cgi
59libexec/cups/cgi-bin/printers.cgi 59libexec/cups/cgi-bin/printers.cgi
60libexec/cups/daemon/cups-deviced 60libexec/cups/daemon/cups-deviced
61libexec/cups/daemon/cups-driverd 61libexec/cups/daemon/cups-driverd
62libexec/cups/daemon/cups-lpd 62libexec/cups/daemon/cups-lpd
63libexec/cups/daemon/cups-polld 63libexec/cups/daemon/cups-polld
64libexec/cups/filter/bannertops 64libexec/cups/filter/bannertops
65libexec/cups/filter/commandtoescpx 65libexec/cups/filter/commandtoescpx
66libexec/cups/filter/commandtopclx 66libexec/cups/filter/commandtopclx
67libexec/cups/filter/commandtops 67libexec/cups/filter/commandtops
68libexec/cups/filter/gziptoany 68libexec/cups/filter/gziptoany
69libexec/cups/filter/hpgltops 69libexec/cups/filter/hpgltops
70libexec/cups/filter/imagetops 70${PLIST.notmac}libexec/cups/filter/imagetops
71libexec/cups/filter/imagetoraster 71${PLIST.notmac}libexec/cups/filter/imagetoraster
72libexec/cups/filter/pdftops 72libexec/cups/filter/pdftops
73libexec/cups/filter/pstops 73libexec/cups/filter/pstops
74libexec/cups/filter/rastertodymo 74libexec/cups/filter/rastertodymo
75libexec/cups/filter/rastertoepson 75libexec/cups/filter/rastertoepson
76libexec/cups/filter/rastertoescpx 76libexec/cups/filter/rastertoescpx
77libexec/cups/filter/rastertohp 77libexec/cups/filter/rastertohp
78libexec/cups/filter/rastertolabel 78libexec/cups/filter/rastertolabel
79libexec/cups/filter/rastertopclx 79libexec/cups/filter/rastertopclx
80libexec/cups/filter/texttops 80libexec/cups/filter/texttops
81libexec/cups/monitor/bcp 81libexec/cups/monitor/bcp
82libexec/cups/monitor/tbcp 82libexec/cups/monitor/tbcp
83${PLIST.dbus}libexec/cups/notifier/dbus 83${PLIST.dbus}libexec/cups/notifier/dbus
84libexec/cups/notifier/mailto 84libexec/cups/notifier/mailto
85libexec/cups/notifier/rss 85libexec/cups/notifier/rss
86man/man1/cancel.1 86man/man1/cancel.1
87man/man1/cups-config.1 87man/man1/cups-config.1
88man/man1/cupstestdsc.1 88man/man1/cupstestdsc.1
89man/man1/cupstestppd.1 89man/man1/cupstestppd.1
90man/man1/lp.1 90man/man1/lp.1
91man/man1/lpoptions.1 91man/man1/lpoptions.1
92man/man1/lppasswd.1 92man/man1/lppasswd.1
93man/man1/lpq.1 93man/man1/lpq.1
94man/man1/lpr.1 94man/man1/lpr.1
95man/man1/lprm.1 95man/man1/lprm.1
96man/man1/lpstat.1 96man/man1/lpstat.1
97man/man1/ppdc.1 97man/man1/ppdc.1
98man/man1/ppdhtml.1 98man/man1/ppdhtml.1
99man/man1/ppdi.1 99man/man1/ppdi.1
100man/man1/ppdmerge.1 100man/man1/ppdmerge.1
101man/man1/ppdpo.1 101man/man1/ppdpo.1
102man/man5/classes.conf.5 102man/man5/classes.conf.5
103man/man5/client.conf.5 103man/man5/client.conf.5
104man/man5/cups-snmp.conf.5 104man/man5/cups-snmp.conf.5
105man/man5/cupsd.conf.5 105man/man5/cupsd.conf.5
106man/man5/mailto.conf.5 106man/man5/mailto.conf.5
107man/man5/mime.convs.5 107man/man5/mime.convs.5
108man/man5/mime.types.5 108man/man5/mime.types.5
109man/man5/ppdcfile.5 109man/man5/ppdcfile.5
110man/man5/printers.conf.5 110man/man5/printers.conf.5
111man/man5/subscriptions.conf.5 111man/man5/subscriptions.conf.5
112man/man7/backend.7 112man/man7/backend.7
113man/man7/drv.7 113man/man7/drv.7
114man/man7/filter.7 114man/man7/filter.7
115man/man7/notifier.7 115man/man7/notifier.7
116man/man8/accept.8 116man/man8/accept.8
117man/man8/cups-deviced.8 117man/man8/cups-deviced.8
118man/man8/cups-driverd.8 118man/man8/cups-driverd.8
119man/man8/cups-lpd.8 119man/man8/cups-lpd.8
120man/man8/cups-polld.8 120man/man8/cups-polld.8
121man/man8/cupsaccept.8 121man/man8/cupsaccept.8
122man/man8/cupsaddsmb.8 122man/man8/cupsaddsmb.8
123man/man8/cupsctl.8 123man/man8/cupsctl.8
124man/man8/cupsd.8 124man/man8/cupsd.8
125man/man8/cupsdisable.8 125man/man8/cupsdisable.8
126man/man8/cupsenable.8 126man/man8/cupsenable.8
127man/man8/cupsfilter.8 127man/man8/cupsfilter.8
128man/man8/cupsreject.8 128man/man8/cupsreject.8
129man/man8/lpadmin.8 129man/man8/lpadmin.8
130man/man8/lpc.8 130man/man8/lpc.8
131man/man8/lpinfo.8 131man/man8/lpinfo.8
132man/man8/lpmove.8 132man/man8/lpmove.8
133man/man8/reject.8 133man/man8/reject.8
134sbin/accept 134sbin/accept
135sbin/cupsaccept 135sbin/cupsaccept
136sbin/cupsaddsmb 136sbin/cupsaddsmb
137sbin/cupsctl 137sbin/cupsctl
138sbin/cupsd 138sbin/cupsd
139sbin/cupsdisable 139sbin/cupsdisable
140sbin/cupsenable 140sbin/cupsenable
141sbin/cupsfilter 141sbin/cupsfilter
142sbin/cupsreject 142sbin/cupsreject
143sbin/lpadmin 143sbin/lpadmin
144sbin/lpc 144sbin/lpc
145sbin/lpinfo 145sbin/lpinfo
146sbin/lpmove 146sbin/lpmove
147sbin/reject 147sbin/reject
148share/cups/banners/classified 148share/cups/banners/classified
149share/cups/banners/confidential 149share/cups/banners/confidential
150share/cups/banners/secret 150share/cups/banners/secret
151share/cups/banners/standard 151share/cups/banners/standard
152share/cups/banners/topsecret 152share/cups/banners/topsecret
153share/cups/banners/unclassified 153share/cups/banners/unclassified
154share/cups/charmaps/euc-cn.txt 154share/cups/charmaps/euc-cn.txt
155share/cups/charmaps/euc-jp.txt 155share/cups/charmaps/euc-jp.txt
156share/cups/charmaps/euc-kr.txt 156share/cups/charmaps/euc-kr.txt
157share/cups/charmaps/euc-tw.txt 157share/cups/charmaps/euc-tw.txt
158share/cups/charmaps/iso-8859-1.txt 158share/cups/charmaps/iso-8859-1.txt
159share/cups/charmaps/iso-8859-10.txt 159share/cups/charmaps/iso-8859-10.txt
160share/cups/charmaps/iso-8859-11.txt 160share/cups/charmaps/iso-8859-11.txt
161share/cups/charmaps/iso-8859-13.txt 161share/cups/charmaps/iso-8859-13.txt
162share/cups/charmaps/iso-8859-14.txt 162share/cups/charmaps/iso-8859-14.txt
163share/cups/charmaps/iso-8859-15.txt 163share/cups/charmaps/iso-8859-15.txt
164share/cups/charmaps/iso-8859-16.txt 164share/cups/charmaps/iso-8859-16.txt
165share/cups/charmaps/iso-8859-2.txt 165share/cups/charmaps/iso-8859-2.txt
166share/cups/charmaps/iso-8859-3.txt 166share/cups/charmaps/iso-8859-3.txt
167share/cups/charmaps/iso-8859-4.txt 167share/cups/charmaps/iso-8859-4.txt
168share/cups/charmaps/iso-8859-5.txt 168share/cups/charmaps/iso-8859-5.txt
169share/cups/charmaps/iso-8859-6.txt 169share/cups/charmaps/iso-8859-6.txt
170share/cups/charmaps/iso-8859-7.txt 170share/cups/charmaps/iso-8859-7.txt
171share/cups/charmaps/iso-8859-8.txt 171share/cups/charmaps/iso-8859-8.txt
172share/cups/charmaps/iso-8859-9.txt 172share/cups/charmaps/iso-8859-9.txt
173share/cups/charmaps/jis-x0213.txt 173share/cups/charmaps/jis-x0213.txt
174share/cups/charmaps/koi8-r.txt 174share/cups/charmaps/koi8-r.txt
175share/cups/charmaps/koi8-u.txt 175share/cups/charmaps/koi8-u.txt
176share/cups/charmaps/mac-roman.txt 176share/cups/charmaps/mac-roman.txt
177share/cups/charmaps/windows-1250.txt 177share/cups/charmaps/windows-1250.txt
178share/cups/charmaps/windows-1251.txt 178share/cups/charmaps/windows-1251.txt
179share/cups/charmaps/windows-1252.txt 179share/cups/charmaps/windows-1252.txt
180share/cups/charmaps/windows-1253.txt 180share/cups/charmaps/windows-1253.txt
181share/cups/charmaps/windows-1254.txt 181share/cups/charmaps/windows-1254.txt
182share/cups/charmaps/windows-1255.txt 182share/cups/charmaps/windows-1255.txt
183share/cups/charmaps/windows-1256.txt 183share/cups/charmaps/windows-1256.txt
184share/cups/charmaps/windows-1257.txt 184share/cups/charmaps/windows-1257.txt
185share/cups/charmaps/windows-1258.txt 185share/cups/charmaps/windows-1258.txt
186share/cups/charmaps/windows-1361.txt 186share/cups/charmaps/windows-1361.txt
187share/cups/charmaps/windows-874.txt 187share/cups/charmaps/windows-874.txt
188share/cups/charmaps/windows-932.txt 188share/cups/charmaps/windows-932.txt
189share/cups/charmaps/windows-936.txt 189share/cups/charmaps/windows-936.txt
190share/cups/charmaps/windows-949.txt 190share/cups/charmaps/windows-949.txt
191share/cups/charmaps/windows-950.txt 191share/cups/charmaps/windows-950.txt
192share/cups/charsets/utf-8 192share/cups/charsets/utf-8
193share/cups/data/HPGLprolog 193share/cups/data/HPGLprolog
194share/cups/data/psglyphs 194share/cups/data/psglyphs
195share/cups/data/testprint 195share/cups/data/testprint
196share/cups/drv/sample.drv 196share/cups/drv/sample.drv
197share/cups/examples/color.drv 197share/cups/examples/color.drv
198share/cups/examples/constraint.drv 198share/cups/examples/constraint.drv
199share/cups/examples/custom.drv 199share/cups/examples/custom.drv
200share/cups/examples/grouping.drv 200share/cups/examples/grouping.drv
201share/cups/examples/laserjet-basic.drv 201share/cups/examples/laserjet-basic.drv
202share/cups/examples/laserjet-pjl.drv 202share/cups/examples/laserjet-pjl.drv
203share/cups/examples/minimum.drv 203share/cups/examples/minimum.drv
204share/cups/examples/postscript.drv 204share/cups/examples/postscript.drv
205share/cups/examples/r300-basic.drv 205share/cups/examples/r300-basic.drv
206share/cups/examples/r300-colorman.drv 206share/cups/examples/r300-colorman.drv
207share/cups/examples/r300-remote.drv 207share/cups/examples/r300-remote.drv
208share/cups/fonts/Monospace 208share/cups/fonts/Monospace
209share/cups/fonts/Monospace-Bold 209share/cups/fonts/Monospace-Bold
210share/cups/fonts/Monospace-BoldOblique 210share/cups/fonts/Monospace-BoldOblique
211share/cups/fonts/Monospace-Oblique 211share/cups/fonts/Monospace-Oblique
212share/cups/mime/mime.convs 212share/cups/mime/mime.convs
213share/cups/mime/mime.types 213share/cups/mime/mime.types
214share/cups/ppdc/epson.h 214share/cups/ppdc/epson.h
215share/cups/ppdc/escp.h 215share/cups/ppdc/escp.h
216share/cups/ppdc/font.defs 216share/cups/ppdc/font.defs
217share/cups/ppdc/hp.h 217share/cups/ppdc/hp.h
218share/cups/ppdc/label.h 218share/cups/ppdc/label.h
219share/cups/ppdc/media.defs 219share/cups/ppdc/media.defs
220share/cups/ppdc/pcl.h 220share/cups/ppdc/pcl.h
221share/cups/ppdc/raster.defs 221share/cups/ppdc/raster.defs
222share/cups/templates/add-class.tmpl 222share/cups/templates/add-class.tmpl
223share/cups/templates/add-printer.tmpl 223share/cups/templates/add-printer.tmpl
224share/cups/templates/add-rss-subscription.tmpl 224share/cups/templates/add-rss-subscription.tmpl
225share/cups/templates/admin.tmpl 225share/cups/templates/admin.tmpl
226share/cups/templates/choose-device.tmpl 226share/cups/templates/choose-device.tmpl
227share/cups/templates/choose-make.tmpl 227share/cups/templates/choose-make.tmpl
228share/cups/templates/choose-model.tmpl 228share/cups/templates/choose-model.tmpl
229share/cups/templates/choose-serial.tmpl 229share/cups/templates/choose-serial.tmpl
230share/cups/templates/choose-uri.tmpl 230share/cups/templates/choose-uri.tmpl
231share/cups/templates/class-added.tmpl 231share/cups/templates/class-added.tmpl
232share/cups/templates/class-confirm.tmpl 232share/cups/templates/class-confirm.tmpl
233share/cups/templates/class-deleted.tmpl 233share/cups/templates/class-deleted.tmpl
234share/cups/templates/class-jobs-header.tmpl 234share/cups/templates/class-jobs-header.tmpl
235share/cups/templates/class-modified.tmpl 235share/cups/templates/class-modified.tmpl
236share/cups/templates/class.tmpl 236share/cups/templates/class.tmpl
237share/cups/templates/classes-header.tmpl 237share/cups/templates/classes-header.tmpl
238share/cups/templates/classes.tmpl 238share/cups/templates/classes.tmpl
239share/cups/templates/command.tmpl 239share/cups/templates/command.tmpl
240share/cups/templates/de/add-class.tmpl 240share/cups/templates/de/add-class.tmpl
241share/cups/templates/de/add-printer.tmpl 241share/cups/templates/de/add-printer.tmpl
242share/cups/templates/de/add-rss-subscription.tmpl 242share/cups/templates/de/add-rss-subscription.tmpl
243share/cups/templates/de/admin.tmpl 243share/cups/templates/de/admin.tmpl
244share/cups/templates/de/choose-device.tmpl 244share/cups/templates/de/choose-device.tmpl
245share/cups/templates/de/choose-make.tmpl 245share/cups/templates/de/choose-make.tmpl
246share/cups/templates/de/choose-model.tmpl 246share/cups/templates/de/choose-model.tmpl
247share/cups/templates/de/choose-serial.tmpl 247share/cups/templates/de/choose-serial.tmpl
248share/cups/templates/de/choose-uri.tmpl 248share/cups/templates/de/choose-uri.tmpl
249share/cups/templates/de/class-added.tmpl 249share/cups/templates/de/class-added.tmpl
250share/cups/templates/de/class-confirm.tmpl 250share/cups/templates/de/class-confirm.tmpl
251share/cups/templates/de/class-deleted.tmpl 251share/cups/templates/de/class-deleted.tmpl
252share/cups/templates/de/class-jobs-header.tmpl 252share/cups/templates/de/class-jobs-header.tmpl
253share/cups/templates/de/class-modified.tmpl 253share/cups/templates/de/class-modified.tmpl
254share/cups/templates/de/class.tmpl 254share/cups/templates/de/class.tmpl
255share/cups/templates/de/classes-header.tmpl 255share/cups/templates/de/classes-header.tmpl
256share/cups/templates/de/classes.tmpl 256share/cups/templates/de/classes.tmpl
257share/cups/templates/de/command.tmpl 257share/cups/templates/de/command.tmpl
258share/cups/templates/de/edit-config.tmpl 258share/cups/templates/de/edit-config.tmpl
259share/cups/templates/de/error-op.tmpl 259share/cups/templates/de/error-op.tmpl
260share/cups/templates/de/error.tmpl 260share/cups/templates/de/error.tmpl
261share/cups/templates/de/header.tmpl 261share/cups/templates/de/header.tmpl
262share/cups/templates/de/help-header.tmpl 262share/cups/templates/de/help-header.tmpl
263share/cups/templates/de/help-printable.tmpl 263share/cups/templates/de/help-printable.tmpl
264share/cups/templates/de/help-trailer.tmpl 264share/cups/templates/de/help-trailer.tmpl
265share/cups/templates/de/job-cancel.tmpl 265share/cups/templates/de/job-cancel.tmpl
266share/cups/templates/de/job-hold.tmpl 266share/cups/templates/de/job-hold.tmpl
267share/cups/templates/de/job-move.tmpl 267share/cups/templates/de/job-move.tmpl
268share/cups/templates/de/job-moved.tmpl 268share/cups/templates/de/job-moved.tmpl
269share/cups/templates/de/job-release.tmpl 269share/cups/templates/de/job-release.tmpl
270share/cups/templates/de/job-restart.tmpl 270share/cups/templates/de/job-restart.tmpl
271share/cups/templates/de/jobs-header.tmpl 271share/cups/templates/de/jobs-header.tmpl
272share/cups/templates/de/jobs.tmpl 272share/cups/templates/de/jobs.tmpl
273share/cups/templates/de/list-available-printers.tmpl 273share/cups/templates/de/list-available-printers.tmpl
274share/cups/templates/de/modify-class.tmpl 274share/cups/templates/de/modify-class.tmpl
275share/cups/templates/de/modify-printer.tmpl 275share/cups/templates/de/modify-printer.tmpl
276share/cups/templates/de/norestart.tmpl 276share/cups/templates/de/norestart.tmpl
277share/cups/templates/de/option-boolean.tmpl 277share/cups/templates/de/option-boolean.tmpl
278share/cups/templates/de/option-conflict.tmpl 278share/cups/templates/de/option-conflict.tmpl
279share/cups/templates/de/option-header.tmpl 279share/cups/templates/de/option-header.tmpl
280share/cups/templates/de/option-pickmany.tmpl 280share/cups/templates/de/option-pickmany.tmpl
281share/cups/templates/de/option-pickone.tmpl 281share/cups/templates/de/option-pickone.tmpl
282share/cups/templates/de/option-trailer.tmpl 282share/cups/templates/de/option-trailer.tmpl
283share/cups/templates/de/pager.tmpl 283share/cups/templates/de/pager.tmpl
284share/cups/templates/de/printer-accept.tmpl 284share/cups/templates/de/printer-accept.tmpl
285share/cups/templates/de/printer-added.tmpl 285share/cups/templates/de/printer-added.tmpl
286share/cups/templates/de/printer-configured.tmpl 286share/cups/templates/de/printer-configured.tmpl
287share/cups/templates/de/printer-confirm.tmpl 287share/cups/templates/de/printer-confirm.tmpl
288share/cups/templates/de/printer-default.tmpl 288share/cups/templates/de/printer-default.tmpl
289share/cups/templates/de/printer-deleted.tmpl 289share/cups/templates/de/printer-deleted.tmpl
290share/cups/templates/de/printer-jobs-header.tmpl 290share/cups/templates/de/printer-jobs-header.tmpl
291share/cups/templates/de/printer-modified.tmpl 291share/cups/templates/de/printer-modified.tmpl
292share/cups/templates/de/printer-purge.tmpl 292share/cups/templates/de/printer-purge.tmpl
293share/cups/templates/de/printer-reject.tmpl 293share/cups/templates/de/printer-reject.tmpl
294share/cups/templates/de/printer-start.tmpl 294share/cups/templates/de/printer-start.tmpl
295share/cups/templates/de/printer-stop.tmpl 295share/cups/templates/de/printer-stop.tmpl
296share/cups/templates/de/printer.tmpl 296share/cups/templates/de/printer.tmpl
297share/cups/templates/de/printers-header.tmpl 297share/cups/templates/de/printers-header.tmpl
298share/cups/templates/de/printers.tmpl 298share/cups/templates/de/printers.tmpl
299share/cups/templates/de/restart.tmpl 299share/cups/templates/de/restart.tmpl
300share/cups/templates/de/samba-export.tmpl 300share/cups/templates/de/samba-export.tmpl
301share/cups/templates/de/samba-exported.tmpl 301share/cups/templates/de/samba-exported.tmpl
302share/cups/templates/de/search.tmpl 302share/cups/templates/de/search.tmpl
303share/cups/templates/de/set-printer-options-header.tmpl 303share/cups/templates/de/set-printer-options-header.tmpl
304share/cups/templates/de/set-printer-options-trailer.tmpl 304share/cups/templates/de/set-printer-options-trailer.tmpl
305share/cups/templates/de/subscription-added.tmpl 305share/cups/templates/de/subscription-added.tmpl
306share/cups/templates/de/subscription-canceled.tmpl 306share/cups/templates/de/subscription-canceled.tmpl
307share/cups/templates/de/test-page.tmpl 307share/cups/templates/de/test-page.tmpl
308share/cups/templates/de/trailer.tmpl 308share/cups/templates/de/trailer.tmpl
309share/cups/templates/de/users.tmpl 309share/cups/templates/de/users.tmpl
310share/cups/templates/edit-config.tmpl 310share/cups/templates/edit-config.tmpl
311share/cups/templates/error-op.tmpl 311share/cups/templates/error-op.tmpl
312share/cups/templates/error.tmpl 312share/cups/templates/error.tmpl
313share/cups/templates/es/add-class.tmpl 313share/cups/templates/es/add-class.tmpl
314share/cups/templates/es/add-printer.tmpl 314share/cups/templates/es/add-printer.tmpl
315share/cups/templates/es/add-rss-subscription.tmpl 315share/cups/templates/es/add-rss-subscription.tmpl
316share/cups/templates/es/admin.tmpl 316share/cups/templates/es/admin.tmpl
317share/cups/templates/es/choose-device.tmpl 317share/cups/templates/es/choose-device.tmpl
318share/cups/templates/es/choose-make.tmpl 318share/cups/templates/es/choose-make.tmpl
319share/cups/templates/es/choose-model.tmpl 319share/cups/templates/es/choose-model.tmpl
320share/cups/templates/es/choose-serial.tmpl 320share/cups/templates/es/choose-serial.tmpl
321share/cups/templates/es/choose-uri.tmpl 321share/cups/templates/es/choose-uri.tmpl
322share/cups/templates/es/class-added.tmpl 322share/cups/templates/es/class-added.tmpl
323share/cups/templates/es/class-confirm.tmpl 323share/cups/templates/es/class-confirm.tmpl
324share/cups/templates/es/class-deleted.tmpl 324share/cups/templates/es/class-deleted.tmpl
325share/cups/templates/es/class-jobs-header.tmpl 325share/cups/templates/es/class-jobs-header.tmpl
326share/cups/templates/es/class-modified.tmpl 326share/cups/templates/es/class-modified.tmpl
327share/cups/templates/es/class.tmpl 327share/cups/templates/es/class.tmpl
328share/cups/templates/es/classes-header.tmpl 328share/cups/templates/es/classes-header.tmpl
329share/cups/templates/es/classes.tmpl 329share/cups/templates/es/classes.tmpl
330share/cups/templates/es/command.tmpl 330share/cups/templates/es/command.tmpl
331share/cups/templates/es/edit-config.tmpl 331share/cups/templates/es/edit-config.tmpl
332share/cups/templates/es/error-op.tmpl 332share/cups/templates/es/error-op.tmpl
333share/cups/templates/es/error.tmpl 333share/cups/templates/es/error.tmpl
334share/cups/templates/es/header.tmpl 334share/cups/templates/es/header.tmpl
335share/cups/templates/es/help-header.tmpl 335share/cups/templates/es/help-header.tmpl
336share/cups/templates/es/help-printable.tmpl 336share/cups/templates/es/help-printable.tmpl
337share/cups/templates/es/help-trailer.tmpl 337share/cups/templates/es/help-trailer.tmpl
338share/cups/templates/es/job-cancel.tmpl 338share/cups/templates/es/job-cancel.tmpl
339share/cups/templates/es/job-hold.tmpl 339share/cups/templates/es/job-hold.tmpl
340share/cups/templates/es/job-move.tmpl 340share/cups/templates/es/job-move.tmpl
341share/cups/templates/es/job-moved.tmpl 341share/cups/templates/es/job-moved.tmpl
342share/cups/templates/es/job-release.tmpl 342share/cups/templates/es/job-release.tmpl
343share/cups/templates/es/job-restart.tmpl 343share/cups/templates/es/job-restart.tmpl
344share/cups/templates/es/jobs-header.tmpl 344share/cups/templates/es/jobs-header.tmpl
345share/cups/templates/es/jobs.tmpl 345share/cups/templates/es/jobs.tmpl
346share/cups/templates/es/list-available-printers.tmpl 346share/cups/templates/es/list-available-printers.tmpl
347share/cups/templates/es/modify-class.tmpl 347share/cups/templates/es/modify-class.tmpl
348share/cups/templates/es/modify-printer.tmpl 348share/cups/templates/es/modify-printer.tmpl
349share/cups/templates/es/norestart.tmpl 349share/cups/templates/es/norestart.tmpl
350share/cups/templates/es/option-boolean.tmpl 350share/cups/templates/es/option-boolean.tmpl
351share/cups/templates/es/option-conflict.tmpl 351share/cups/templates/es/option-conflict.tmpl
352share/cups/templates/es/option-header.tmpl 352share/cups/templates/es/option-header.tmpl
353share/cups/templates/es/option-pickmany.tmpl 353share/cups/templates/es/option-pickmany.tmpl
354share/cups/templates/es/option-pickone.tmpl 354share/cups/templates/es/option-pickone.tmpl
355share/cups/templates/es/option-trailer.tmpl 355share/cups/templates/es/option-trailer.tmpl
356share/cups/templates/es/pager.tmpl 356share/cups/templates/es/pager.tmpl
357share/cups/templates/es/printer-accept.tmpl 357share/cups/templates/es/printer-accept.tmpl
358share/cups/templates/es/printer-added.tmpl 358share/cups/templates/es/printer-added.tmpl
359share/cups/templates/es/printer-configured.tmpl 359share/cups/templates/es/printer-configured.tmpl
360share/cups/templates/es/printer-confirm.tmpl 360share/cups/templates/es/printer-confirm.tmpl
361share/cups/templates/es/printer-default.tmpl 361share/cups/templates/es/printer-default.tmpl
362share/cups/templates/es/printer-deleted.tmpl 362share/cups/templates/es/printer-deleted.tmpl
363share/cups/templates/es/printer-jobs-header.tmpl 363share/cups/templates/es/printer-jobs-header.tmpl
364share/cups/templates/es/printer-modified.tmpl 364share/cups/templates/es/printer-modified.tmpl
365share/cups/templates/es/printer-purge.tmpl 365share/cups/templates/es/printer-purge.tmpl
366share/cups/templates/es/printer-reject.tmpl 366share/cups/templates/es/printer-reject.tmpl
367share/cups/templates/es/printer-start.tmpl 367share/cups/templates/es/printer-start.tmpl
368share/cups/templates/es/printer-stop.tmpl 368share/cups/templates/es/printer-stop.tmpl
369share/cups/templates/es/printer.tmpl 369share/cups/templates/es/printer.tmpl
370share/cups/templates/es/printers-header.tmpl 370share/cups/templates/es/printers-header.tmpl
371share/cups/templates/es/printers.tmpl 371share/cups/templates/es/printers.tmpl
372share/cups/templates/es/restart.tmpl 372share/cups/templates/es/restart.tmpl
373share/cups/templates/es/samba-export.tmpl 373share/cups/templates/es/samba-export.tmpl
374share/cups/templates/es/samba-exported.tmpl 374share/cups/templates/es/samba-exported.tmpl
375share/cups/templates/es/search.tmpl 375share/cups/templates/es/search.tmpl
376share/cups/templates/es/set-printer-options-header.tmpl 376share/cups/templates/es/set-printer-options-header.tmpl
377share/cups/templates/es/set-printer-options-trailer.tmpl 377share/cups/templates/es/set-printer-options-trailer.tmpl
378share/cups/templates/es/subscription-added.tmpl 378share/cups/templates/es/subscription-added.tmpl
379share/cups/templates/es/subscription-canceled.tmpl 379share/cups/templates/es/subscription-canceled.tmpl
380share/cups/templates/es/test-page.tmpl 380share/cups/templates/es/test-page.tmpl
381share/cups/templates/es/trailer.tmpl 381share/cups/templates/es/trailer.tmpl
382share/cups/templates/es/users.tmpl 382share/cups/templates/es/users.tmpl
383share/cups/templates/eu/add-class.tmpl 383share/cups/templates/eu/add-class.tmpl
384share/cups/templates/eu/add-printer.tmpl 384share/cups/templates/eu/add-printer.tmpl
385share/cups/templates/eu/add-rss-subscription.tmpl 385share/cups/templates/eu/add-rss-subscription.tmpl
386share/cups/templates/eu/admin.tmpl 386share/cups/templates/eu/admin.tmpl
387share/cups/templates/eu/choose-device.tmpl 387share/cups/templates/eu/choose-device.tmpl
388share/cups/templates/eu/choose-make.tmpl 388share/cups/templates/eu/choose-make.tmpl
389share/cups/templates/eu/choose-model.tmpl 389share/cups/templates/eu/choose-model.tmpl
390share/cups/templates/eu/choose-serial.tmpl 390share/cups/templates/eu/choose-serial.tmpl
391share/cups/templates/eu/choose-uri.tmpl 391share/cups/templates/eu/choose-uri.tmpl
392share/cups/templates/eu/class-added.tmpl 392share/cups/templates/eu/class-added.tmpl
393share/cups/templates/eu/class-confirm.tmpl 393share/cups/templates/eu/class-confirm.tmpl
394share/cups/templates/eu/class-deleted.tmpl 394share/cups/templates/eu/class-deleted.tmpl
395share/cups/templates/eu/class-jobs-header.tmpl 395share/cups/templates/eu/class-jobs-header.tmpl
396share/cups/templates/eu/class-modified.tmpl 396share/cups/templates/eu/class-modified.tmpl
397share/cups/templates/eu/class.tmpl 397share/cups/templates/eu/class.tmpl
398share/cups/templates/eu/classes-header.tmpl 398share/cups/templates/eu/classes-header.tmpl
399share/cups/templates/eu/classes.tmpl 399share/cups/templates/eu/classes.tmpl
400share/cups/templates/eu/command.tmpl 400share/cups/templates/eu/command.tmpl
401share/cups/templates/eu/edit-config.tmpl 401share/cups/templates/eu/edit-config.tmpl
402share/cups/templates/eu/error-op.tmpl 402share/cups/templates/eu/error-op.tmpl
403share/cups/templates/eu/error.tmpl 403share/cups/templates/eu/error.tmpl
404share/cups/templates/eu/header.tmpl 404share/cups/templates/eu/header.tmpl
405share/cups/templates/eu/help-header.tmpl 405share/cups/templates/eu/help-header.tmpl
406share/cups/templates/eu/help-printable.tmpl 406share/cups/templates/eu/help-printable.tmpl
407share/cups/templates/eu/help-trailer.tmpl 407share/cups/templates/eu/help-trailer.tmpl
408share/cups/templates/eu/job-cancel.tmpl 408share/cups/templates/eu/job-cancel.tmpl
409share/cups/templates/eu/job-hold.tmpl 409share/cups/templates/eu/job-hold.tmpl
410share/cups/templates/eu/job-move.tmpl 410share/cups/templates/eu/job-move.tmpl
411share/cups/templates/eu/job-moved.tmpl 411share/cups/templates/eu/job-moved.tmpl
412share/cups/templates/eu/job-release.tmpl 412share/cups/templates/eu/job-release.tmpl
413share/cups/templates/eu/job-restart.tmpl 413share/cups/templates/eu/job-restart.tmpl
414share/cups/templates/eu/jobs-header.tmpl 414share/cups/templates/eu/jobs-header.tmpl
415share/cups/templates/eu/jobs.tmpl 415share/cups/templates/eu/jobs.tmpl
416share/cups/templates/eu/list-available-printers.tmpl 416share/cups/templates/eu/list-available-printers.tmpl
417share/cups/templates/eu/modify-class.tmpl 417share/cups/templates/eu/modify-class.tmpl
418share/cups/templates/eu/modify-printer.tmpl 418share/cups/templates/eu/modify-printer.tmpl
419share/cups/templates/eu/norestart.tmpl 419share/cups/templates/eu/norestart.tmpl
420share/cups/templates/eu/option-boolean.tmpl 420share/cups/templates/eu/option-boolean.tmpl
421share/cups/templates/eu/option-conflict.tmpl 421share/cups/templates/eu/option-conflict.tmpl
422share/cups/templates/eu/option-header.tmpl 422share/cups/templates/eu/option-header.tmpl
423share/cups/templates/eu/option-pickmany.tmpl 423share/cups/templates/eu/option-pickmany.tmpl
424share/cups/templates/eu/option-pickone.tmpl 424share/cups/templates/eu/option-pickone.tmpl
425share/cups/templates/eu/option-trailer.tmpl 425share/cups/templates/eu/option-trailer.tmpl
426share/cups/templates/eu/pager.tmpl 426share/cups/templates/eu/pager.tmpl
427share/cups/templates/eu/printer-accept.tmpl 427share/cups/templates/eu/printer-accept.tmpl
428share/cups/templates/eu/printer-added.tmpl 428share/cups/templates/eu/printer-added.tmpl
429share/cups/templates/eu/printer-configured.tmpl 429share/cups/templates/eu/printer-configured.tmpl
430share/cups/templates/eu/printer-confirm.tmpl 430share/cups/templates/eu/printer-confirm.tmpl
431share/cups/templates/eu/printer-default.tmpl 431share/cups/templates/eu/printer-default.tmpl
432share/cups/templates/eu/printer-deleted.tmpl 432share/cups/templates/eu/printer-deleted.tmpl
433share/cups/templates/eu/printer-jobs-header.tmpl 433share/cups/templates/eu/printer-jobs-header.tmpl
434share/cups/templates/eu/printer-modified.tmpl 434share/cups/templates/eu/printer-modified.tmpl
435share/cups/templates/eu/printer-purge.tmpl 435share/cups/templates/eu/printer-purge.tmpl
436share/cups/templates/eu/printer-reject.tmpl 436share/cups/templates/eu/printer-reject.tmpl
437share/cups/templates/eu/printer-start.tmpl 437share/cups/templates/eu/printer-start.tmpl
438share/cups/templates/eu/printer-stop.tmpl 438share/cups/templates/eu/printer-stop.tmpl
439share/cups/templates/eu/printer.tmpl 439share/cups/templates/eu/printer.tmpl
440share/cups/templates/eu/printers-header.tmpl 440share/cups/templates/eu/printers-header.tmpl
441share/cups/templates/eu/printers.tmpl 441share/cups/templates/eu/printers.tmpl
442share/cups/templates/eu/restart.tmpl 442share/cups/templates/eu/restart.tmpl
443share/cups/templates/eu/samba-export.tmpl 443share/cups/templates/eu/samba-export.tmpl
444share/cups/templates/eu/samba-exported.tmpl 444share/cups/templates/eu/samba-exported.tmpl
445share/cups/templates/eu/search.tmpl 445share/cups/templates/eu/search.tmpl
446share/cups/templates/eu/set-printer-options-header.tmpl 446share/cups/templates/eu/set-printer-options-header.tmpl
447share/cups/templates/eu/set-printer-options-trailer.tmpl 447share/cups/templates/eu/set-printer-options-trailer.tmpl
448share/cups/templates/eu/subscription-added.tmpl 448share/cups/templates/eu/subscription-added.tmpl
449share/cups/templates/eu/subscription-canceled.tmpl 449share/cups/templates/eu/subscription-canceled.tmpl
450share/cups/templates/eu/test-page.tmpl 450share/cups/templates/eu/test-page.tmpl
451share/cups/templates/eu/trailer.tmpl 451share/cups/templates/eu/trailer.tmpl
452share/cups/templates/eu/users.tmpl 452share/cups/templates/eu/users.tmpl
453share/cups/templates/header.tmpl 453share/cups/templates/header.tmpl
454share/cups/templates/help-header.tmpl 454share/cups/templates/help-header.tmpl
455share/cups/templates/help-printable.tmpl 455share/cups/templates/help-printable.tmpl
456share/cups/templates/help-trailer.tmpl 456share/cups/templates/help-trailer.tmpl
457share/cups/templates/id/add-class.tmpl 457share/cups/templates/id/add-class.tmpl
458share/cups/templates/id/add-printer.tmpl 458share/cups/templates/id/add-printer.tmpl
459share/cups/templates/id/add-rss-subscription.tmpl 459share/cups/templates/id/add-rss-subscription.tmpl
460share/cups/templates/id/admin.tmpl 460share/cups/templates/id/admin.tmpl
461share/cups/templates/id/choose-device.tmpl 461share/cups/templates/id/choose-device.tmpl
462share/cups/templates/id/choose-make.tmpl 462share/cups/templates/id/choose-make.tmpl
463share/cups/templates/id/choose-model.tmpl 463share/cups/templates/id/choose-model.tmpl
464share/cups/templates/id/choose-serial.tmpl 464share/cups/templates/id/choose-serial.tmpl
465share/cups/templates/id/choose-uri.tmpl 465share/cups/templates/id/choose-uri.tmpl
466share/cups/templates/id/class-added.tmpl 466share/cups/templates/id/class-added.tmpl
467share/cups/templates/id/class-confirm.tmpl 467share/cups/templates/id/class-confirm.tmpl
468share/cups/templates/id/class-deleted.tmpl 468share/cups/templates/id/class-deleted.tmpl
469share/cups/templates/id/class-jobs-header.tmpl 469share/cups/templates/id/class-jobs-header.tmpl
470share/cups/templates/id/class-modified.tmpl 470share/cups/templates/id/class-modified.tmpl
471share/cups/templates/id/class.tmpl 471share/cups/templates/id/class.tmpl
472share/cups/templates/id/classes-header.tmpl 472share/cups/templates/id/classes-header.tmpl
473share/cups/templates/id/classes.tmpl 473share/cups/templates/id/classes.tmpl
474share/cups/templates/id/command.tmpl 474share/cups/templates/id/command.tmpl
475share/cups/templates/id/edit-config.tmpl 475share/cups/templates/id/edit-config.tmpl
476share/cups/templates/id/error-op.tmpl 476share/cups/templates/id/error-op.tmpl
477share/cups/templates/id/error.tmpl 477share/cups/templates/id/error.tmpl
478share/cups/templates/id/header.tmpl 478share/cups/templates/id/header.tmpl
479share/cups/templates/id/help-header.tmpl 479share/cups/templates/id/help-header.tmpl
480share/cups/templates/id/help-printable.tmpl 480share/cups/templates/id/help-printable.tmpl
481share/cups/templates/id/help-trailer.tmpl 481share/cups/templates/id/help-trailer.tmpl
482share/cups/templates/id/job-cancel.tmpl 482share/cups/templates/id/job-cancel.tmpl
483share/cups/templates/id/job-hold.tmpl 483share/cups/templates/id/job-hold.tmpl
484share/cups/templates/id/job-move.tmpl 484share/cups/templates/id/job-move.tmpl
485share/cups/templates/id/job-moved.tmpl 485share/cups/templates/id/job-moved.tmpl
486share/cups/templates/id/job-release.tmpl 486share/cups/templates/id/job-release.tmpl
487share/cups/templates/id/job-restart.tmpl 487share/cups/templates/id/job-restart.tmpl
488share/cups/templates/id/jobs-header.tmpl 488share/cups/templates/id/jobs-header.tmpl
489share/cups/templates/id/jobs.tmpl 489share/cups/templates/id/jobs.tmpl
490share/cups/templates/id/list-available-printers.tmpl 490share/cups/templates/id/list-available-printers.tmpl
491share/cups/templates/id/modify-class.tmpl 491share/cups/templates/id/modify-class.tmpl
492share/cups/templates/id/modify-printer.tmpl 492share/cups/templates/id/modify-printer.tmpl
493share/cups/templates/id/norestart.tmpl 493share/cups/templates/id/norestart.tmpl
494share/cups/templates/id/option-boolean.tmpl 494share/cups/templates/id/option-boolean.tmpl
495share/cups/templates/id/option-conflict.tmpl 495share/cups/templates/id/option-conflict.tmpl
496share/cups/templates/id/option-header.tmpl 496share/cups/templates/id/option-header.tmpl
497share/cups/templates/id/option-pickmany.tmpl 497share/cups/templates/id/option-pickmany.tmpl
498share/cups/templates/id/option-pickone.tmpl 498share/cups/templates/id/option-pickone.tmpl
499share/cups/templates/id/option-trailer.tmpl 499share/cups/templates/id/option-trailer.tmpl
500share/cups/templates/id/pager.tmpl 500share/cups/templates/id/pager.tmpl
501share/cups/templates/id/printer-accept.tmpl 501share/cups/templates/id/printer-accept.tmpl
502share/cups/templates/id/printer-added.tmpl 502share/cups/templates/id/printer-added.tmpl
503share/cups/templates/id/printer-configured.tmpl 503share/cups/templates/id/printer-configured.tmpl
504share/cups/templates/id/printer-confirm.tmpl 504share/cups/templates/id/printer-confirm.tmpl
505share/cups/templates/id/printer-default.tmpl 505share/cups/templates/id/printer-default.tmpl
506share/cups/templates/id/printer-deleted.tmpl 506share/cups/templates/id/printer-deleted.tmpl
507share/cups/templates/id/printer-jobs-header.tmpl 507share/cups/templates/id/printer-jobs-header.tmpl
508share/cups/templates/id/printer-modified.tmpl 508share/cups/templates/id/printer-modified.tmpl
509share/cups/templates/id/printer-purge.tmpl 509share/cups/templates/id/printer-purge.tmpl
510share/cups/templates/id/printer-reject.tmpl 510share/cups/templates/id/printer-reject.tmpl
511share/cups/templates/id/printer-start.tmpl 511share/cups/templates/id/printer-start.tmpl
512share/cups/templates/id/printer-stop.tmpl 512share/cups/templates/id/printer-stop.tmpl
513share/cups/templates/id/printer.tmpl 513share/cups/templates/id/printer.tmpl
514share/cups/templates/id/printers-header.tmpl 514share/cups/templates/id/printers-header.tmpl
515share/cups/templates/id/printers.tmpl 515share/cups/templates/id/printers.tmpl
516share/cups/templates/id/restart.tmpl 516share/cups/templates/id/restart.tmpl
517share/cups/templates/id/samba-export.tmpl 517share/cups/templates/id/samba-export.tmpl
518share/cups/templates/id/samba-exported.tmpl 518share/cups/templates/id/samba-exported.tmpl
519share/cups/templates/id/search.tmpl 519share/cups/templates/id/search.tmpl
520share/cups/templates/id/set-printer-options-header.tmpl 520share/cups/templates/id/set-printer-options-header.tmpl
521share/cups/templates/id/set-printer-options-trailer.tmpl 521share/cups/templates/id/set-printer-options-trailer.tmpl
522share/cups/templates/id/subscription-added.tmpl 522share/cups/templates/id/subscription-added.tmpl
523share/cups/templates/id/subscription-canceled.tmpl 523share/cups/templates/id/subscription-canceled.tmpl
524share/cups/templates/id/test-page.tmpl 524share/cups/templates/id/test-page.tmpl
525share/cups/templates/id/trailer.tmpl 525share/cups/templates/id/trailer.tmpl
526share/cups/templates/id/users.tmpl 526share/cups/templates/id/users.tmpl
527share/cups/templates/it/add-class.tmpl 527share/cups/templates/it/add-class.tmpl
528share/cups/templates/it/add-printer.tmpl 528share/cups/templates/it/add-printer.tmpl
529share/cups/templates/it/add-rss-subscription.tmpl 529share/cups/templates/it/add-rss-subscription.tmpl
530share/cups/templates/it/admin.tmpl 530share/cups/templates/it/admin.tmpl
531share/cups/templates/it/choose-device.tmpl 531share/cups/templates/it/choose-device.tmpl
532share/cups/templates/it/choose-make.tmpl 532share/cups/templates/it/choose-make.tmpl
533share/cups/templates/it/choose-model.tmpl 533share/cups/templates/it/choose-model.tmpl
534share/cups/templates/it/choose-serial.tmpl 534share/cups/templates/it/choose-serial.tmpl
535share/cups/templates/it/choose-uri.tmpl 535share/cups/templates/it/choose-uri.tmpl
536share/cups/templates/it/class-added.tmpl 536share/cups/templates/it/class-added.tmpl
537share/cups/templates/it/class-confirm.tmpl 537share/cups/templates/it/class-confirm.tmpl
538share/cups/templates/it/class-deleted.tmpl 538share/cups/templates/it/class-deleted.tmpl
539share/cups/templates/it/class-jobs-header.tmpl 539share/cups/templates/it/class-jobs-header.tmpl
540share/cups/templates/it/class-modified.tmpl 540share/cups/templates/it/class-modified.tmpl
541share/cups/templates/it/class.tmpl 541share/cups/templates/it/class.tmpl
542share/cups/templates/it/classes-header.tmpl 542share/cups/templates/it/classes-header.tmpl
543share/cups/templates/it/classes.tmpl 543share/cups/templates/it/classes.tmpl
544share/cups/templates/it/command.tmpl 544share/cups/templates/it/command.tmpl
545share/cups/templates/it/edit-config.tmpl 545share/cups/templates/it/edit-config.tmpl
546share/cups/templates/it/error-op.tmpl 546share/cups/templates/it/error-op.tmpl
547share/cups/templates/it/error.tmpl 547share/cups/templates/it/error.tmpl
548share/cups/templates/it/help-header.tmpl 548share/cups/templates/it/help-header.tmpl
549share/cups/templates/it/help-printable.tmpl 549share/cups/templates/it/help-printable.tmpl
550share/cups/templates/it/help-trailer.tmpl 550share/cups/templates/it/help-trailer.tmpl
551share/cups/templates/it/job-cancel.tmpl 551share/cups/templates/it/job-cancel.tmpl
552share/cups/templates/it/job-hold.tmpl 552share/cups/templates/it/job-hold.tmpl
553share/cups/templates/it/job-move.tmpl 553share/cups/templates/it/job-move.tmpl
554share/cups/templates/it/job-moved.tmpl 554share/cups/templates/it/job-moved.tmpl
555share/cups/templates/it/job-release.tmpl 555share/cups/templates/it/job-release.tmpl
556share/cups/templates/it/job-restart.tmpl 556share/cups/templates/it/job-restart.tmpl
557share/cups/templates/it/jobs-header.tmpl 557share/cups/templates/it/jobs-header.tmpl
558share/cups/templates/it/jobs.tmpl 558share/cups/templates/it/jobs.tmpl
559share/cups/templates/it/list-available-printers.tmpl 559share/cups/templates/it/list-available-printers.tmpl
560share/cups/templates/it/modify-class.tmpl 560share/cups/templates/it/modify-class.tmpl
561share/cups/templates/it/modify-printer.tmpl 561share/cups/templates/it/modify-printer.tmpl
562share/cups/templates/it/norestart.tmpl 562share/cups/templates/it/norestart.tmpl
563share/cups/templates/it/option-boolean.tmpl 563share/cups/templates/it/option-boolean.tmpl
564share/cups/templates/it/option-conflict.tmpl 564share/cups/templates/it/option-conflict.tmpl
565share/cups/templates/it/option-header.tmpl 565share/cups/templates/it/option-header.tmpl
566share/cups/templates/it/option-pickmany.tmpl 566share/cups/templates/it/option-pickmany.tmpl
567share/cups/templates/it/option-pickone.tmpl 567share/cups/templates/it/option-pickone.tmpl
568share/cups/templates/it/option-trailer.tmpl 568share/cups/templates/it/option-trailer.tmpl
569share/cups/templates/it/pager.tmpl 569share/cups/templates/it/pager.tmpl
570share/cups/templates/it/printer-accept.tmpl 570share/cups/templates/it/printer-accept.tmpl
571share/cups/templates/it/printer-added.tmpl 571share/cups/templates/it/printer-added.tmpl
572share/cups/templates/it/printer-configured.tmpl 572share/cups/templates/it/printer-configured.tmpl
573share/cups/templates/it/printer-confirm.tmpl 573share/cups/templates/it/printer-confirm.tmpl
574share/cups/templates/it/printer-default.tmpl 574share/cups/templates/it/printer-default.tmpl
575share/cups/templates/it/printer-deleted.tmpl 575share/cups/templates/it/printer-deleted.tmpl
576share/cups/templates/it/printer-jobs-header.tmpl 576share/cups/templates/it/printer-jobs-header.tmpl
577share/cups/templates/it/printer-modified.tmpl 577share/cups/templates/it/printer-modified.tmpl
578share/cups/templates/it/printer-purge.tmpl 578share/cups/templates/it/printer-purge.tmpl
579share/cups/templates/it/printer-reject.tmpl 579share/cups/templates/it/printer-reject.tmpl
580share/cups/templates/it/printer-start.tmpl 580share/cups/templates/it/printer-start.tmpl
581share/cups/templates/it/printer-stop.tmpl 581share/cups/templates/it/printer-stop.tmpl
582share/cups/templates/it/printer.tmpl 582share/cups/templates/it/printer.tmpl
583share/cups/templates/it/printers-header.tmpl 583share/cups/templates/it/printers-header.tmpl
584share/cups/templates/it/printers.tmpl 584share/cups/templates/it/printers.tmpl
585share/cups/templates/it/restart.tmpl 585share/cups/templates/it/restart.tmpl
586share/cups/templates/it/samba-export.tmpl 586share/cups/templates/it/samba-export.tmpl
587share/cups/templates/it/samba-exported.tmpl 587share/cups/templates/it/samba-exported.tmpl
588share/cups/templates/it/search.tmpl 588share/cups/templates/it/search.tmpl
589share/cups/templates/it/set-printer-options-header.tmpl 589share/cups/templates/it/set-printer-options-header.tmpl
590share/cups/templates/it/set-printer-options-trailer.tmpl 590share/cups/templates/it/set-printer-options-trailer.tmpl
591share/cups/templates/it/subscription-added.tmpl 591share/cups/templates/it/subscription-added.tmpl
592share/cups/templates/it/subscription-canceled.tmpl 592share/cups/templates/it/subscription-canceled.tmpl
593share/cups/templates/it/test-page.tmpl 593share/cups/templates/it/test-page.tmpl
594share/cups/templates/it/trailer.tmpl 594share/cups/templates/it/trailer.tmpl
595share/cups/templates/it/users.tmpl 595share/cups/templates/it/users.tmpl
596share/cups/templates/ja/add-class.tmpl 596share/cups/templates/ja/add-class.tmpl
597share/cups/templates/ja/add-printer.tmpl 597share/cups/templates/ja/add-printer.tmpl
598share/cups/templates/ja/add-rss-subscription.tmpl 598share/cups/templates/ja/add-rss-subscription.tmpl
599share/cups/templates/ja/admin.tmpl 599share/cups/templates/ja/admin.tmpl
600share/cups/templates/ja/choose-device.tmpl 600share/cups/templates/ja/choose-device.tmpl
601share/cups/templates/ja/choose-make.tmpl 601share/cups/templates/ja/choose-make.tmpl
602share/cups/templates/ja/choose-model.tmpl 602share/cups/templates/ja/choose-model.tmpl
603share/cups/templates/ja/choose-serial.tmpl 603share/cups/templates/ja/choose-serial.tmpl
604share/cups/templates/ja/choose-uri.tmpl 604share/cups/templates/ja/choose-uri.tmpl
605share/cups/templates/ja/class-added.tmpl 605share/cups/templates/ja/class-added.tmpl
606share/cups/templates/ja/class-confirm.tmpl 606share/cups/templates/ja/class-confirm.tmpl
607share/cups/templates/ja/class-deleted.tmpl 607share/cups/templates/ja/class-deleted.tmpl
608share/cups/templates/ja/class-jobs-header.tmpl 608share/cups/templates/ja/class-jobs-header.tmpl
609share/cups/templates/ja/class-modified.tmpl 609share/cups/templates/ja/class-modified.tmpl
610share/cups/templates/ja/class.tmpl 610share/cups/templates/ja/class.tmpl
611share/cups/templates/ja/classes-header.tmpl 611share/cups/templates/ja/classes-header.tmpl
612share/cups/templates/ja/classes.tmpl 612share/cups/templates/ja/classes.tmpl
613share/cups/templates/ja/command.tmpl 613share/cups/templates/ja/command.tmpl
614share/cups/templates/ja/edit-config.tmpl 614share/cups/templates/ja/edit-config.tmpl
615share/cups/templates/ja/error-op.tmpl 615share/cups/templates/ja/error-op.tmpl
616share/cups/templates/ja/error.tmpl 616share/cups/templates/ja/error.tmpl
617share/cups/templates/ja/header.tmpl 617share/cups/templates/ja/header.tmpl
618share/cups/templates/ja/help-header.tmpl 618share/cups/templates/ja/help-header.tmpl
619share/cups/templates/ja/help-printable.tmpl 619share/cups/templates/ja/help-printable.tmpl
620share/cups/templates/ja/help-trailer.tmpl 620share/cups/templates/ja/help-trailer.tmpl
621share/cups/templates/ja/job-cancel.tmpl 621share/cups/templates/ja/job-cancel.tmpl
622share/cups/templates/ja/job-hold.tmpl 622share/cups/templates/ja/job-hold.tmpl
623share/cups/templates/ja/job-move.tmpl 623share/cups/templates/ja/job-move.tmpl
624share/cups/templates/ja/job-moved.tmpl 624share/cups/templates/ja/job-moved.tmpl
625share/cups/templates/ja/job-release.tmpl 625share/cups/templates/ja/job-release.tmpl
626share/cups/templates/ja/job-restart.tmpl 626share/cups/templates/ja/job-restart.tmpl
627share/cups/templates/ja/jobs-header.tmpl 627share/cups/templates/ja/jobs-header.tmpl
628share/cups/templates/ja/jobs.tmpl 628share/cups/templates/ja/jobs.tmpl
629share/cups/templates/ja/list-available-printers.tmpl 629share/cups/templates/ja/list-available-printers.tmpl
630share/cups/templates/ja/modify-class.tmpl 630share/cups/templates/ja/modify-class.tmpl
631share/cups/templates/ja/modify-printer.tmpl 631share/cups/templates/ja/modify-printer.tmpl
632share/cups/templates/ja/norestart.tmpl 632share/cups/templates/ja/norestart.tmpl
633share/cups/templates/ja/option-boolean.tmpl 633share/cups/templates/ja/option-boolean.tmpl
634share/cups/templates/ja/option-conflict.tmpl 634share/cups/templates/ja/option-conflict.tmpl
635share/cups/templates/ja/option-header.tmpl 635share/cups/templates/ja/option-header.tmpl
636share/cups/templates/ja/option-pickmany.tmpl 636share/cups/templates/ja/option-pickmany.tmpl
637share/cups/templates/ja/option-pickone.tmpl 637share/cups/templates/ja/option-pickone.tmpl
638share/cups/templates/ja/option-trailer.tmpl 638share/cups/templates/ja/option-trailer.tmpl
639share/cups/templates/ja/pager.tmpl 639share/cups/templates/ja/pager.tmpl
640share/cups/templates/ja/printer-accept.tmpl 640share/cups/templates/ja/printer-accept.tmpl
641share/cups/templates/ja/printer-added.tmpl 641share/cups/templates/ja/printer-added.tmpl
642share/cups/templates/ja/printer-configured.tmpl 642share/cups/templates/ja/printer-configured.tmpl
643share/cups/templates/ja/printer-confirm.tmpl 643share/cups/templates/ja/printer-confirm.tmpl
644share/cups/templates/ja/printer-default.tmpl 644share/cups/templates/ja/printer-default.tmpl
645share/cups/templates/ja/printer-deleted.tmpl 645share/cups/templates/ja/printer-deleted.tmpl
646share/cups/templates/ja/printer-jobs-header.tmpl 646share/cups/templates/ja/printer-jobs-header.tmpl
647share/cups/templates/ja/printer-modified.tmpl 647share/cups/templates/ja/printer-modified.tmpl
648share/cups/templates/ja/printer-purge.tmpl 648share/cups/templates/ja/printer-purge.tmpl
649share/cups/templates/ja/printer-reject.tmpl 649share/cups/templates/ja/printer-reject.tmpl
650share/cups/templates/ja/printer-start.tmpl 650share/cups/templates/ja/printer-start.tmpl
651share/cups/templates/ja/printer-stop.tmpl 651share/cups/templates/ja/printer-stop.tmpl
652share/cups/templates/ja/printer.tmpl 652share/cups/templates/ja/printer.tmpl
653share/cups/templates/ja/printers-header.tmpl 653share/cups/templates/ja/printers-header.tmpl
654share/cups/templates/ja/printers.tmpl 654share/cups/templates/ja/printers.tmpl
655share/cups/templates/ja/restart.tmpl 655share/cups/templates/ja/restart.tmpl
656share/cups/templates/ja/samba-export.tmpl 656share/cups/templates/ja/samba-export.tmpl
657share/cups/templates/ja/samba-exported.tmpl 657share/cups/templates/ja/samba-exported.tmpl
658share/cups/templates/ja/search.tmpl 658share/cups/templates/ja/search.tmpl
659share/cups/templates/ja/set-printer-options-header.tmpl 659share/cups/templates/ja/set-printer-options-header.tmpl
660share/cups/templates/ja/set-printer-options-trailer.tmpl 660share/cups/templates/ja/set-printer-options-trailer.tmpl
661share/cups/templates/ja/subscription-added.tmpl 661share/cups/templates/ja/subscription-added.tmpl
662share/cups/templates/ja/subscription-canceled.tmpl 662share/cups/templates/ja/subscription-canceled.tmpl
663share/cups/templates/ja/test-page.tmpl 663share/cups/templates/ja/test-page.tmpl
664share/cups/templates/ja/trailer.tmpl 664share/cups/templates/ja/trailer.tmpl
665share/cups/templates/ja/users.tmpl 665share/cups/templates/ja/users.tmpl
666share/cups/templates/job-cancel.tmpl 666share/cups/templates/job-cancel.tmpl
667share/cups/templates/job-hold.tmpl 667share/cups/templates/job-hold.tmpl
668share/cups/templates/job-move.tmpl 668share/cups/templates/job-move.tmpl
669share/cups/templates/job-moved.tmpl 669share/cups/templates/job-moved.tmpl
670share/cups/templates/job-release.tmpl 670share/cups/templates/job-release.tmpl
671share/cups/templates/job-restart.tmpl 671share/cups/templates/job-restart.tmpl
672share/cups/templates/jobs-header.tmpl 672share/cups/templates/jobs-header.tmpl
673share/cups/templates/jobs.tmpl 673share/cups/templates/jobs.tmpl
674share/cups/templates/list-available-printers.tmpl 674share/cups/templates/list-available-printers.tmpl
675share/cups/templates/modify-class.tmpl 675share/cups/templates/modify-class.tmpl
676share/cups/templates/modify-printer.tmpl 676share/cups/templates/modify-printer.tmpl
677share/cups/templates/norestart.tmpl 677share/cups/templates/norestart.tmpl
678share/cups/templates/option-boolean.tmpl 678share/cups/templates/option-boolean.tmpl
679share/cups/templates/option-conflict.tmpl 679share/cups/templates/option-conflict.tmpl
680share/cups/templates/option-header.tmpl 680share/cups/templates/option-header.tmpl
681share/cups/templates/option-pickmany.tmpl 681share/cups/templates/option-pickmany.tmpl
682share/cups/templates/option-pickone.tmpl 682share/cups/templates/option-pickone.tmpl
683share/cups/templates/option-trailer.tmpl 683share/cups/templates/option-trailer.tmpl
684share/cups/templates/pager.tmpl 684share/cups/templates/pager.tmpl
685share/cups/templates/pl/add-class.tmpl 685share/cups/templates/pl/add-class.tmpl
686share/cups/templates/pl/add-printer.tmpl 686share/cups/templates/pl/add-printer.tmpl
687share/cups/templates/pl/add-rss-subscription.tmpl 687share/cups/templates/pl/add-rss-subscription.tmpl
688share/cups/templates/pl/admin.tmpl 688share/cups/templates/pl/admin.tmpl
689share/cups/templates/pl/choose-device.tmpl 689share/cups/templates/pl/choose-device.tmpl
690share/cups/templates/pl/choose-make.tmpl 690share/cups/templates/pl/choose-make.tmpl
691share/cups/templates/pl/choose-model.tmpl 691share/cups/templates/pl/choose-model.tmpl
692share/cups/templates/pl/choose-serial.tmpl 692share/cups/templates/pl/choose-serial.tmpl
693share/cups/templates/pl/choose-uri.tmpl 693share/cups/templates/pl/choose-uri.tmpl
694share/cups/templates/pl/class-added.tmpl 694share/cups/templates/pl/class-added.tmpl
695share/cups/templates/pl/class-confirm.tmpl 695share/cups/templates/pl/class-confirm.tmpl
696share/cups/templates/pl/class-deleted.tmpl 696share/cups/templates/pl/class-deleted.tmpl
697share/cups/templates/pl/class-jobs-header.tmpl 697share/cups/templates/pl/class-jobs-header.tmpl
698share/cups/templates/pl/class-modified.tmpl 698share/cups/templates/pl/class-modified.tmpl
699share/cups/templates/pl/class.tmpl 699share/cups/templates/pl/class.tmpl
700share/cups/templates/pl/classes-header.tmpl 700share/cups/templates/pl/classes-header.tmpl
701share/cups/templates/pl/classes.tmpl 701share/cups/templates/pl/classes.tmpl
702share/cups/templates/pl/command.tmpl 702share/cups/templates/pl/command.tmpl
703share/cups/templates/pl/edit-config.tmpl 703share/cups/templates/pl/edit-config.tmpl
704share/cups/templates/pl/error-op.tmpl 704share/cups/templates/pl/error-op.tmpl
705share/cups/templates/pl/error.tmpl 705share/cups/templates/pl/error.tmpl
706share/cups/templates/pl/header.tmpl 706share/cups/templates/pl/header.tmpl
707share/cups/templates/pl/help-header.tmpl 707share/cups/templates/pl/help-header.tmpl
708share/cups/templates/pl/help-printable.tmpl 708share/cups/templates/pl/help-printable.tmpl
709share/cups/templates/pl/help-trailer.tmpl 709share/cups/templates/pl/help-trailer.tmpl
710share/cups/templates/pl/job-cancel.tmpl 710share/cups/templates/pl/job-cancel.tmpl
711share/cups/templates/pl/job-hold.tmpl 711share/cups/templates/pl/job-hold.tmpl
712share/cups/templates/pl/job-move.tmpl 712share/cups/templates/pl/job-move.tmpl
713share/cups/templates/pl/job-moved.tmpl 713share/cups/templates/pl/job-moved.tmpl
714share/cups/templates/pl/job-release.tmpl 714share/cups/templates/pl/job-release.tmpl
715share/cups/templates/pl/job-restart.tmpl 715share/cups/templates/pl/job-restart.tmpl
716share/cups/templates/pl/jobs-header.tmpl 716share/cups/templates/pl/jobs-header.tmpl
717share/cups/templates/pl/jobs.tmpl 717share/cups/templates/pl/jobs.tmpl
718share/cups/templates/pl/list-available-printers.tmpl 718share/cups/templates/pl/list-available-printers.tmpl
719share/cups/templates/pl/modify-class.tmpl 719share/cups/templates/pl/modify-class.tmpl
720share/cups/templates/pl/modify-printer.tmpl 720share/cups/templates/pl/modify-printer.tmpl
721share/cups/templates/pl/norestart.tmpl 721share/cups/templates/pl/norestart.tmpl
722share/cups/templates/pl/option-boolean.tmpl 722share/cups/templates/pl/option-boolean.tmpl
723share/cups/templates/pl/option-conflict.tmpl 723share/cups/templates/pl/option-conflict.tmpl
724share/cups/templates/pl/option-header.tmpl 724share/cups/templates/pl/option-header.tmpl
725share/cups/templates/pl/option-pickmany.tmpl 725share/cups/templates/pl/option-pickmany.tmpl
726share/cups/templates/pl/option-pickone.tmpl 726share/cups/templates/pl/option-pickone.tmpl
727share/cups/templates/pl/option-trailer.tmpl 727share/cups/templates/pl/option-trailer.tmpl
728share/cups/templates/pl/pager.tmpl 728share/cups/templates/pl/pager.tmpl
729share/cups/templates/pl/printer-accept.tmpl 729share/cups/templates/pl/printer-accept.tmpl
730share/cups/templates/pl/printer-added.tmpl 730share/cups/templates/pl/printer-added.tmpl
731share/cups/templates/pl/printer-configured.tmpl 731share/cups/templates/pl/printer-configured.tmpl
732share/cups/templates/pl/printer-confirm.tmpl 732share/cups/templates/pl/printer-confirm.tmpl
733share/cups/templates/pl/printer-default.tmpl 733share/cups/templates/pl/printer-default.tmpl
734share/cups/templates/pl/printer-deleted.tmpl 734share/cups/templates/pl/printer-deleted.tmpl
735share/cups/templates/pl/printer-jobs-header.tmpl 735share/cups/templates/pl/printer-jobs-header.tmpl
736share/cups/templates/pl/printer-modified.tmpl 736share/cups/templates/pl/printer-modified.tmpl
737share/cups/templates/pl/printer-purge.tmpl 737share/cups/templates/pl/printer-purge.tmpl
738share/cups/templates/pl/printer-reject.tmpl 738share/cups/templates/pl/printer-reject.tmpl
739share/cups/templates/pl/printer-start.tmpl 739share/cups/templates/pl/printer-start.tmpl
740share/cups/templates/pl/printer-stop.tmpl 740share/cups/templates/pl/printer-stop.tmpl
741share/cups/templates/pl/printer.tmpl 741share/cups/templates/pl/printer.tmpl
742share/cups/templates/pl/printers-header.tmpl 742share/cups/templates/pl/printers-header.tmpl
743share/cups/templates/pl/printers.tmpl 743share/cups/templates/pl/printers.tmpl
744share/cups/templates/pl/restart.tmpl 744share/cups/templates/pl/restart.tmpl
745share/cups/templates/pl/samba-export.tmpl 745share/cups/templates/pl/samba-export.tmpl
746share/cups/templates/pl/samba-exported.tmpl 746share/cups/templates/pl/samba-exported.tmpl
747share/cups/templates/pl/search.tmpl 747share/cups/templates/pl/search.tmpl
748share/cups/templates/pl/set-printer-options-header.tmpl 748share/cups/templates/pl/set-printer-options-header.tmpl
749share/cups/templates/pl/set-printer-options-trailer.tmpl 749share/cups/templates/pl/set-printer-options-trailer.tmpl
750share/cups/templates/pl/subscription-added.tmpl 750share/cups/templates/pl/subscription-added.tmpl
751share/cups/templates/pl/subscription-canceled.tmpl 751share/cups/templates/pl/subscription-canceled.tmpl
752share/cups/templates/pl/test-page.tmpl 752share/cups/templates/pl/test-page.tmpl
753share/cups/templates/pl/trailer.tmpl 753share/cups/templates/pl/trailer.tmpl
754share/cups/templates/pl/users.tmpl 754share/cups/templates/pl/users.tmpl
755share/cups/templates/printer-accept.tmpl 755share/cups/templates/printer-accept.tmpl
756share/cups/templates/printer-added.tmpl 756share/cups/templates/printer-added.tmpl
757share/cups/templates/printer-configured.tmpl 757share/cups/templates/printer-configured.tmpl
758share/cups/templates/printer-confirm.tmpl 758share/cups/templates/printer-confirm.tmpl
759share/cups/templates/printer-default.tmpl 759share/cups/templates/printer-default.tmpl
760share/cups/templates/printer-deleted.tmpl 760share/cups/templates/printer-deleted.tmpl
761share/cups/templates/printer-jobs-header.tmpl 761share/cups/templates/printer-jobs-header.tmpl
762share/cups/templates/printer-modified.tmpl 762share/cups/templates/printer-modified.tmpl
763share/cups/templates/printer-purge.tmpl 763share/cups/templates/printer-purge.tmpl
764share/cups/templates/printer-reject.tmpl 764share/cups/templates/printer-reject.tmpl
765share/cups/templates/printer-start.tmpl 765share/cups/templates/printer-start.tmpl
766share/cups/templates/printer-stop.tmpl 766share/cups/templates/printer-stop.tmpl
767share/cups/templates/printer.tmpl 767share/cups/templates/printer.tmpl
768share/cups/templates/printers-header.tmpl 768share/cups/templates/printers-header.tmpl
769share/cups/templates/printers.tmpl 769share/cups/templates/printers.tmpl
770share/cups/templates/restart.tmpl 770share/cups/templates/restart.tmpl
771share/cups/templates/ru/add-class.tmpl 771share/cups/templates/ru/add-class.tmpl
772share/cups/templates/ru/add-printer.tmpl 772share/cups/templates/ru/add-printer.tmpl
773share/cups/templates/ru/add-rss-subscription.tmpl 773share/cups/templates/ru/add-rss-subscription.tmpl
774share/cups/templates/ru/admin.tmpl 774share/cups/templates/ru/admin.tmpl
775share/cups/templates/ru/choose-device.tmpl 775share/cups/templates/ru/choose-device.tmpl
776share/cups/templates/ru/choose-make.tmpl 776share/cups/templates/ru/choose-make.tmpl
777share/cups/templates/ru/choose-model.tmpl 777share/cups/templates/ru/choose-model.tmpl
778share/cups/templates/ru/choose-serial.tmpl 778share/cups/templates/ru/choose-serial.tmpl
779share/cups/templates/ru/choose-uri.tmpl 779share/cups/templates/ru/choose-uri.tmpl
780share/cups/templates/ru/class-added.tmpl 780share/cups/templates/ru/class-added.tmpl
781share/cups/templates/ru/class-confirm.tmpl 781share/cups/templates/ru/class-confirm.tmpl
782share/cups/templates/ru/class-deleted.tmpl 782share/cups/templates/ru/class-deleted.tmpl
783share/cups/templates/ru/class-jobs-header.tmpl 783share/cups/templates/ru/class-jobs-header.tmpl
784share/cups/templates/ru/class-modified.tmpl 784share/cups/templates/ru/class-modified.tmpl
785share/cups/templates/ru/class.tmpl 785share/cups/templates/ru/class.tmpl
786share/cups/templates/ru/classes-header.tmpl 786share/cups/templates/ru/classes-header.tmpl
787share/cups/templates/ru/classes.tmpl 787share/cups/templates/ru/classes.tmpl
788share/cups/templates/ru/command.tmpl 788share/cups/templates/ru/command.tmpl
789share/cups/templates/ru/edit-config.tmpl 789share/cups/templates/ru/edit-config.tmpl
790share/cups/templates/ru/error-op.tmpl 790share/cups/templates/ru/error-op.tmpl
791share/cups/templates/ru/error.tmpl 791share/cups/templates/ru/error.tmpl
792share/cups/templates/ru/header.tmpl 792share/cups/templates/ru/header.tmpl
793share/cups/templates/ru/help-header.tmpl 793share/cups/templates/ru/help-header.tmpl
794share/cups/templates/ru/help-printable.tmpl 794share/cups/templates/ru/help-printable.tmpl
795share/cups/templates/ru/help-trailer.tmpl 795share/cups/templates/ru/help-trailer.tmpl
796share/cups/templates/ru/job-cancel.tmpl 796share/cups/templates/ru/job-cancel.tmpl
797share/cups/templates/ru/job-hold.tmpl 797share/cups/templates/ru/job-hold.tmpl
798share/cups/templates/ru/job-move.tmpl 798share/cups/templates/ru/job-move.tmpl
799share/cups/templates/ru/job-moved.tmpl 799share/cups/templates/ru/job-moved.tmpl
800share/cups/templates/ru/job-release.tmpl 800share/cups/templates/ru/job-release.tmpl
801share/cups/templates/ru/job-restart.tmpl 801share/cups/templates/ru/job-restart.tmpl
802share/cups/templates/ru/jobs-header.tmpl 802share/cups/templates/ru/jobs-header.tmpl
803share/cups/templates/ru/jobs.tmpl 803share/cups/templates/ru/jobs.tmpl
804share/cups/templates/ru/list-available-printers.tmpl 804share/cups/templates/ru/list-available-printers.tmpl
805share/cups/templates/ru/modify-class.tmpl 805share/cups/templates/ru/modify-class.tmpl
806share/cups/templates/ru/modify-printer.tmpl 806share/cups/templates/ru/modify-printer.tmpl
807share/cups/templates/ru/norestart.tmpl 807share/cups/templates/ru/norestart.tmpl
808share/cups/templates/ru/option-boolean.tmpl 808share/cups/templates/ru/option-boolean.tmpl
809share/cups/templates/ru/option-conflict.tmpl 809share/cups/templates/ru/option-conflict.tmpl
810share/cups/templates/ru/option-header.tmpl 810share/cups/templates/ru/option-header.tmpl
811share/cups/templates/ru/option-pickmany.tmpl 811share/cups/templates/ru/option-pickmany.tmpl
812share/cups/templates/ru/option-pickone.tmpl 812share/cups/templates/ru/option-pickone.tmpl
813share/cups/templates/ru/option-trailer.tmpl 813share/cups/templates/ru/option-trailer.tmpl
814share/cups/templates/ru/pager.tmpl 814share/cups/templates/ru/pager.tmpl
815share/cups/templates/ru/printer-accept.tmpl 815share/cups/templates/ru/printer-accept.tmpl
816share/cups/templates/ru/printer-added.tmpl 816share/cups/templates/ru/printer-added.tmpl
817share/cups/templates/ru/printer-configured.tmpl 817share/cups/templates/ru/printer-configured.tmpl
818share/cups/templates/ru/printer-confirm.tmpl 818share/cups/templates/ru/printer-confirm.tmpl
819share/cups/templates/ru/printer-default.tmpl 819share/cups/templates/ru/printer-default.tmpl
820share/cups/templates/ru/printer-deleted.tmpl 820share/cups/templates/ru/printer-deleted.tmpl
821share/cups/templates/ru/printer-jobs-header.tmpl 821share/cups/templates/ru/printer-jobs-header.tmpl
822share/cups/templates/ru/printer-modified.tmpl 822share/cups/templates/ru/printer-modified.tmpl
823share/cups/templates/ru/printer-purge.tmpl 823share/cups/templates/ru/printer-purge.tmpl
824share/cups/templates/ru/printer-reject.tmpl 824share/cups/templates/ru/printer-reject.tmpl
825share/cups/templates/ru/printer-start.tmpl 825share/cups/templates/ru/printer-start.tmpl
826share/cups/templates/ru/printer-stop.tmpl 826share/cups/templates/ru/printer-stop.tmpl
827share/cups/templates/ru/printer.tmpl 827share/cups/templates/ru/printer.tmpl
828share/cups/templates/ru/printers-header.tmpl 828share/cups/templates/ru/printers-header.tmpl
829share/cups/templates/ru/printers.tmpl 829share/cups/templates/ru/printers.tmpl
830share/cups/templates/ru/restart.tmpl 830share/cups/templates/ru/restart.tmpl
831share/cups/templates/ru/samba-export.tmpl 831share/cups/templates/ru/samba-export.tmpl
832share/cups/templates/ru/samba-exported.tmpl 832share/cups/templates/ru/samba-exported.tmpl
833share/cups/templates/ru/search.tmpl 833share/cups/templates/ru/search.tmpl
834share/cups/templates/ru/set-printer-options-header.tmpl 834share/cups/templates/ru/set-printer-options-header.tmpl
835share/cups/templates/ru/set-printer-options-trailer.tmpl 835share/cups/templates/ru/set-printer-options-trailer.tmpl
836share/cups/templates/ru/subscription-added.tmpl 836share/cups/templates/ru/subscription-added.tmpl
837share/cups/templates/ru/subscription-canceled.tmpl 837share/cups/templates/ru/subscription-canceled.tmpl
838share/cups/templates/ru/test-page.tmpl 838share/cups/templates/ru/test-page.tmpl
839share/cups/templates/ru/trailer.tmpl 839share/cups/templates/ru/trailer.tmpl
840share/cups/templates/ru/users.tmpl 840share/cups/templates/ru/users.tmpl
841share/cups/templates/samba-export.tmpl 841share/cups/templates/samba-export.tmpl
842share/cups/templates/samba-exported.tmpl 842share/cups/templates/samba-exported.tmpl
843share/cups/templates/search.tmpl 843share/cups/templates/search.tmpl
844share/cups/templates/set-printer-options-header.tmpl 844share/cups/templates/set-printer-options-header.tmpl
845share/cups/templates/set-printer-options-trailer.tmpl 845share/cups/templates/set-printer-options-trailer.tmpl
846share/cups/templates/subscription-added.tmpl 846share/cups/templates/subscription-added.tmpl
847share/cups/templates/subscription-canceled.tmpl 847share/cups/templates/subscription-canceled.tmpl
848share/cups/templates/test-page.tmpl 848share/cups/templates/test-page.tmpl
849share/cups/templates/trailer.tmpl 849share/cups/templates/trailer.tmpl
850share/cups/templates/users.tmpl 850share/cups/templates/users.tmpl
851share/doc/cups/LICENSE.txt 851share/doc/cups/LICENSE.txt
852share/doc/cups/README.txt 852share/doc/cups/README.txt
853share/doc/cups/cups-printable.css 853share/doc/cups/cups-printable.css
854share/doc/cups/cups.css 854share/doc/cups/cups.css
855share/doc/cups/de/index.html 855share/doc/cups/de/index.html
856share/doc/cups/es/index.html 856share/doc/cups/es/index.html
857share/doc/cups/eu/index.html 857share/doc/cups/eu/index.html
858share/doc/cups/help/accounting.html 858share/doc/cups/help/accounting.html
859share/doc/cups/help/api-array.html 859share/doc/cups/help/api-array.html
860share/doc/cups/help/api-cgi.html 860share/doc/cups/help/api-cgi.html
861share/doc/cups/help/api-cups.html 861share/doc/cups/help/api-cups.html
862share/doc/cups/help/api-driver.html 862share/doc/cups/help/api-driver.html
863share/doc/cups/help/api-filedir.html 863share/doc/cups/help/api-filedir.html
864share/doc/cups/help/api-filter.html 864share/doc/cups/help/api-filter.html
865share/doc/cups/help/api-httpipp.html 865share/doc/cups/help/api-httpipp.html
866share/doc/cups/help/api-mime.html 866share/doc/cups/help/api-mime.html
867share/doc/cups/help/api-overview.html 867share/doc/cups/help/api-overview.html
868share/doc/cups/help/api-ppd.html 868share/doc/cups/help/api-ppd.html
869share/doc/cups/help/api-ppdc.html 869share/doc/cups/help/api-ppdc.html
870share/doc/cups/help/api-raster.html 870share/doc/cups/help/api-raster.html
871share/doc/cups/help/cgi.html 871share/doc/cups/help/cgi.html
872share/doc/cups/help/glossary.html 872share/doc/cups/help/glossary.html
873share/doc/cups/help/kerberos.html 873share/doc/cups/help/kerberos.html
874share/doc/cups/help/license.html 874share/doc/cups/help/license.html
875share/doc/cups/help/man-backend.html 875share/doc/cups/help/man-backend.html
876share/doc/cups/help/man-cancel.html 876share/doc/cups/help/man-cancel.html
877share/doc/cups/help/man-cups-config.html 877share/doc/cups/help/man-cups-config.html
878share/doc/cups/help/man-cups-lpd.html 878share/doc/cups/help/man-cups-lpd.html
879share/doc/cups/help/man-cups-polld.html 879share/doc/cups/help/man-cups-polld.html
880share/doc/cups/help/man-cupsaccept.html 880share/doc/cups/help/man-cupsaccept.html
881share/doc/cups/help/man-cupsaddsmb.html 881share/doc/cups/help/man-cupsaddsmb.html
882share/doc/cups/help/man-cupsd.html 882share/doc/cups/help/man-cupsd.html
883share/doc/cups/help/man-cupsenable.html 883share/doc/cups/help/man-cupsenable.html
884share/doc/cups/help/man-cupstestdsc.html 884share/doc/cups/help/man-cupstestdsc.html
885share/doc/cups/help/man-cupstestppd.html 885share/doc/cups/help/man-cupstestppd.html
886share/doc/cups/help/man-drv.html 886share/doc/cups/help/man-drv.html
887share/doc/cups/help/man-filter.html 887share/doc/cups/help/man-filter.html
888share/doc/cups/help/man-lp.html 888share/doc/cups/help/man-lp.html
889share/doc/cups/help/man-lpadmin.html 889share/doc/cups/help/man-lpadmin.html
890share/doc/cups/help/man-lpc.html 890share/doc/cups/help/man-lpc.html
891share/doc/cups/help/man-lpinfo.html 891share/doc/cups/help/man-lpinfo.html
892share/doc/cups/help/man-lpmove.html 892share/doc/cups/help/man-lpmove.html
893share/doc/cups/help/man-lpoptions.html 893share/doc/cups/help/man-lpoptions.html
894share/doc/cups/help/man-lppasswd.html 894share/doc/cups/help/man-lppasswd.html
895share/doc/cups/help/man-lpq.html 895share/doc/cups/help/man-lpq.html
896share/doc/cups/help/man-lpr.html 896share/doc/cups/help/man-lpr.html
897share/doc/cups/help/man-lprm.html 897share/doc/cups/help/man-lprm.html
898share/doc/cups/help/man-lpstat.html 898share/doc/cups/help/man-lpstat.html
899share/doc/cups/help/man-mime.convs.html 899share/doc/cups/help/man-mime.convs.html
900share/doc/cups/help/man-mime.types.html 900share/doc/cups/help/man-mime.types.html
901share/doc/cups/help/man-notifier.html 901share/doc/cups/help/man-notifier.html
902share/doc/cups/help/man-ppdc.html 902share/doc/cups/help/man-ppdc.html
903share/doc/cups/help/man-ppdhtml.html 903share/doc/cups/help/man-ppdhtml.html
904share/doc/cups/help/man-ppdi.html 904share/doc/cups/help/man-ppdi.html
905share/doc/cups/help/man-ppdmerge.html 905share/doc/cups/help/man-ppdmerge.html
906share/doc/cups/help/man-ppdpo.html 906share/doc/cups/help/man-ppdpo.html
907share/doc/cups/help/network.html 907share/doc/cups/help/network.html
908share/doc/cups/help/options.html 908share/doc/cups/help/options.html
909share/doc/cups/help/overview.html 909share/doc/cups/help/overview.html
910share/doc/cups/help/policies.html 910share/doc/cups/help/policies.html
911share/doc/cups/help/postscript-driver.html 911share/doc/cups/help/postscript-driver.html
912share/doc/cups/help/ppd-compiler.html 912share/doc/cups/help/ppd-compiler.html
913share/doc/cups/help/raster-driver.html 913share/doc/cups/help/raster-driver.html
914share/doc/cups/help/ref-access_log.html 914share/doc/cups/help/ref-access_log.html
915share/doc/cups/help/ref-classes-conf.html 915share/doc/cups/help/ref-classes-conf.html
916share/doc/cups/help/ref-client-conf.html 916share/doc/cups/help/ref-client-conf.html
917share/doc/cups/help/ref-cupsd-conf.html 917share/doc/cups/help/ref-cupsd-conf.html
918share/doc/cups/help/ref-error_log.html 918share/doc/cups/help/ref-error_log.html
919share/doc/cups/help/ref-mailto-conf.html 919share/doc/cups/help/ref-mailto-conf.html
920share/doc/cups/help/ref-page_log.html 920share/doc/cups/help/ref-page_log.html
921share/doc/cups/help/ref-ppdcfile.html 921share/doc/cups/help/ref-ppdcfile.html
922share/doc/cups/help/ref-printers-conf.html 922share/doc/cups/help/ref-printers-conf.html
923share/doc/cups/help/ref-snmp-conf.html 923share/doc/cups/help/ref-snmp-conf.html
924share/doc/cups/help/ref-subscriptions-conf.html 924share/doc/cups/help/ref-subscriptions-conf.html
925share/doc/cups/help/security.html 925share/doc/cups/help/security.html
926share/doc/cups/help/sharing.html 926share/doc/cups/help/sharing.html
927share/doc/cups/help/spec-banner.html 927share/doc/cups/help/spec-banner.html
928share/doc/cups/help/spec-browsing.html 928share/doc/cups/help/spec-browsing.html
929share/doc/cups/help/spec-cmp.html 929share/doc/cups/help/spec-cmp.html
930share/doc/cups/help/spec-command.html 930share/doc/cups/help/spec-command.html
931share/doc/cups/help/spec-design.html 931share/doc/cups/help/spec-design.html
932share/doc/cups/help/spec-ipp.html 932share/doc/cups/help/spec-ipp.html
933share/doc/cups/help/spec-pdf.html 933share/doc/cups/help/spec-pdf.html
934share/doc/cups/help/spec-postscript.html 934share/doc/cups/help/spec-postscript.html
935share/doc/cups/help/spec-ppd.html 935share/doc/cups/help/spec-ppd.html
936share/doc/cups/help/spec-raster.html 936share/doc/cups/help/spec-raster.html
937share/doc/cups/help/spec-stp.html 937share/doc/cups/help/spec-stp.html
938share/doc/cups/help/standard.html 938share/doc/cups/help/standard.html
939share/doc/cups/help/translation.html 939share/doc/cups/help/translation.html
940share/doc/cups/help/whatsnew.html 940share/doc/cups/help/whatsnew.html
941share/doc/cups/id/index.html 941share/doc/cups/id/index.html
942share/doc/cups/images/color-wheel.png 942share/doc/cups/images/color-wheel.png
943share/doc/cups/images/cups-block-diagram.png 943share/doc/cups/images/cups-block-diagram.png
944share/doc/cups/images/cups-command-chain.png 944share/doc/cups/images/cups-command-chain.png
945share/doc/cups/images/cups-icon.png 945share/doc/cups/images/cups-icon.png
946share/doc/cups/images/cups-postscript-chain.png 946share/doc/cups/images/cups-postscript-chain.png
947share/doc/cups/images/cups-raster-chain.png 947share/doc/cups/images/cups-raster-chain.png
948share/doc/cups/images/cups.png 948share/doc/cups/images/cups.png
949share/doc/cups/images/left.gif 949share/doc/cups/images/left.gif
950share/doc/cups/images/raster.png 950share/doc/cups/images/raster.png
951share/doc/cups/images/right.gif 951share/doc/cups/images/right.gif
952share/doc/cups/images/sel.gif 952share/doc/cups/images/sel.gif
953share/doc/cups/images/smiley.jpg 953share/doc/cups/images/smiley.jpg
954share/doc/cups/images/unsel.gif 954share/doc/cups/images/unsel.gif
955share/doc/cups/images/wait.gif 955share/doc/cups/images/wait.gif
956share/doc/cups/index.html 956share/doc/cups/index.html
957share/doc/cups/it/index.html 957share/doc/cups/it/index.html
958share/doc/cups/ja/index.html 958share/doc/cups/ja/index.html
959share/doc/cups/pl/index.html 959share/doc/cups/pl/index.html
960share/doc/cups/robots.txt 960share/doc/cups/robots.txt
961share/doc/cups/ru/index.html 961share/doc/cups/ru/index.html
962${PLIST.pam}share/examples/cups/cups.pam 962${PLIST.pam}share/examples/cups/cups.pam
963share/examples/cups/cupsd.conf 963share/examples/cups/cupsd.conf
964share/examples/cups/snmp.conf 964share/examples/cups/snmp.conf
965share/examples/rc.d/cupsd 965share/examples/rc.d/cupsd
966share/locale/da/cups_da.po 966share/locale/da/cups_da.po
967share/locale/de/cups_de.po 967share/locale/de/cups_de.po
968share/locale/es/cups_es.po 968share/locale/es/cups_es.po
969share/locale/eu/cups_eu.po 969share/locale/eu/cups_eu.po
970share/locale/fi/cups_fi.po 970share/locale/fi/cups_fi.po
971share/locale/fr/cups_fr.po 971share/locale/fr/cups_fr.po
972share/locale/id/cups_id.po 972share/locale/id/cups_id.po
973share/locale/it/cups_it.po 973share/locale/it/cups_it.po
974share/locale/ja/cups_ja.po 974share/locale/ja/cups_ja.po
975share/locale/ko/cups_ko.po 975share/locale/ko/cups_ko.po
976share/locale/nl/cups_nl.po 976share/locale/nl/cups_nl.po
977share/locale/no/cups_no.po 977share/locale/no/cups_no.po
978share/locale/pl/cups_pl.po 978share/locale/pl/cups_pl.po
979share/locale/pt/cups_pt.po 979share/locale/pt/cups_pt.po
980share/locale/pt_BR/cups_pt_BR.po 980share/locale/pt_BR/cups_pt_BR.po
981share/locale/ru/cups_ru.po 981share/locale/ru/cups_ru.po
982share/locale/sv/cups_sv.po 982share/locale/sv/cups_sv.po
983share/locale/zh/cups_zh.po 983share/locale/zh/cups_zh.po
984share/locale/zh_TW/cups_zh_TW.po 984share/locale/zh_TW/cups_zh_TW.po
985@pkgdir share/cups/profiles 985@pkgdir share/cups/profiles
986@pkgdir share/cups/model 986@pkgdir share/cups/model

cvs diff -r1.11 -r1.12 pkgsrc/print/cups/Attic/options.mk (switch to unified diff)

--- pkgsrc/print/cups/Attic/options.mk 2010/07/14 11:25:19 1.11
+++ pkgsrc/print/cups/Attic/options.mk 2011/01/03 05:58:49 1.12
@@ -1,98 +1,98 @@ @@ -1,98 +1,98 @@
1# $NetBSD: options.mk,v 1.11 2010/07/14 11:25:19 sbd Exp $ 1# $NetBSD: options.mk,v 1.12 2011/01/03 05:58:49 adam Exp $
2 2
3PKG_OPTIONS_VAR= PKG_OPTIONS.cups 3PKG_OPTIONS_VAR= PKG_OPTIONS.cups
4PKG_OPTIONS_REQUIRED_GROUPS= pdftops 4PKG_OPTIONS_REQUIRED_GROUPS= pdftops
5PKG_OPTIONS_GROUP.pdftops= ghostscript poppler 5PKG_OPTIONS_GROUP.pdftops= ghostscript poppler
6PKG_SUPPORTED_OPTIONS= acl dbus dnssd kerberos libusb pam slp tcpwrappers threads 6PKG_SUPPORTED_OPTIONS= acl dbus dnssd kerberos libusb pam slp tcpwrappers threads
7PKG_SUGGESTED_OPTIONS= dbus dnssd kerberos libusb poppler slp 7PKG_SUGGESTED_OPTIONS= dbus dnssd kerberos libusb poppler slp
8PKG_OPTIONS_LEGACY_OPTS+= xpdf:poppler gs:ghostscript 8PKG_OPTIONS_LEGACY_OPTS+= xpdf:poppler gs:ghostscript
9 9
10.include "../../mk/bsd.options.mk" 10.include "../../mk/bsd.options.mk"
11 11
12MESSAGE_SRC= ${PKGDIR}/MESSAGE 12MESSAGE_SRC= ${PKGDIR}/MESSAGE
13 13
14.if !empty(PKG_OPTIONS:Macl) 14.if !empty(PKG_OPTIONS:Macl)
15CONFIGURE_ARGS+= --enable-acl 15CONFIGURE_ARGS+= --enable-acl
16.else 16.else
17CONFIGURE_ARGS+= --disable-acl 17CONFIGURE_ARGS+= --disable-acl
18.endif 18.endif
19 19
20PLIST_VARS+= dbus 20PLIST_VARS+= dbus
21.if !empty(PKG_OPTIONS:Mdbus) 21.if !empty(PKG_OPTIONS:Mdbus)
22USE_TOOLS+= pkg-config 22USE_TOOLS+= pkg-config
23. include "../../sysutils/dbus/buildlink3.mk" 23. include "../../sysutils/dbus/buildlink3.mk"
24CONFIGURE_ARGS+= --enable-dbus 24CONFIGURE_ARGS+= --enable-dbus
25PLIST.dbus= yes 25PLIST.dbus= yes
26.else 26.else
27CONFIGURE_ARGS+= --disable-dbus 27CONFIGURE_ARGS+= --disable-dbus
28.endif 28.endif
29 29
30PLIST_VARS+= dnssd 30PLIST_VARS+= dnssd
31.if !empty(PKG_OPTIONS:Mdnssd) 31.if !empty(PKG_OPTIONS:Mdnssd)
32.include "../../net/mDNSResponder/buildlink3.mk" 32.include "../../net/mDNSResponder/buildlink3.mk"
33CONFIGURE_ARGS+= --enable-dnssd 33CONFIGURE_ARGS+= --enable-dnssd
34PLIST.dnssd= yes 34PLIST.dnssd= yes
35.else 35.else
36CONFIGURE_ARGS+= --disable-dnssd 36CONFIGURE_ARGS+= --disable-dnssd
37.endif 37.endif
38 38
39.if !empty(PKG_OPTIONS:Mghostscript) 39.if !empty(PKG_OPTIONS:Mghostscript)
40USE_TOOLS+= gs:run 40USE_TOOLS+= gs:run
41CONFIGURE_ARGS+= --with-pdftops=gs 41CONFIGURE_ARGS+= --with-pdftops=gs
42CONFIGURE_ENV+= ac_cv_path_CUPS_GHOSTSCRIPT=${TOOLS_PATH.gs} 42CONFIGURE_ENV+= ac_cv_path_CUPS_GHOSTSCRIPT=${TOOLS_PATH.gs}
43.endif 43.endif
44 44
45.if !empty(PKG_OPTIONS:Mkerberos) 45.if !empty(PKG_OPTIONS:Mkerberos)
46.include "../../mk/krb5.buildlink3.mk" 46.include "../../mk/krb5.buildlink3.mk"
47CONFIGURE_ARGS+= --enable-gssapi 47CONFIGURE_ARGS+= --enable-gssapi
48.else 48.else
49CONFIGURE_ARGS+= --disable-gssapi 49CONFIGURE_ARGS+= --disable-gssapi
50.endif 50.endif
51 51
52.if !empty(PKG_OPTIONS:Mlibusb) 52.if !empty(PKG_OPTIONS:Mlibusb)
53.include "../../devel/libusb/buildlink3.mk" 53.include "../../devel/libusb/buildlink3.mk"
54CONFIGURE_ARGS+= --enable-libusb 54CONFIGURE_ARGS+= --enable-libusb
55MESSAGE_SRC+= ${PKGDIR}/MESSAGE.libusb 55MESSAGE_SRC+= ${PKGDIR}/MESSAGE.libusb
56.else 56.else
57CONFIGURE_ARGS+= --disable-libusb 57CONFIGURE_ARGS+= --disable-libusb
58.endif 58.endif
59 59
60PLIST_VARS+= pam 60PLIST_VARS+= pam
61.if !empty(PKG_OPTIONS:Mpam) 61.if !empty(PKG_OPTIONS:Mpam)
62. include "../../mk/pam.buildlink3.mk" 62. include "../../mk/pam.buildlink3.mk"
63CONFIGURE_ARGS+= --enable-pam 63CONFIGURE_ARGS+= --enable-pam
64MESSAGE_SRC+= ${PKGDIR}/MESSAGE.pam 64MESSAGE_SRC+= ${PKGDIR}/MESSAGE.pam
65PLIST.pam= yes 65PLIST.pam= yes
66.else 66.else
67CONFIGURE_ARGS+= --disable-pam 67CONFIGURE_ARGS+= --disable-pam
68MESSAGE_SRC= ${.CURDIR}/MESSAGE 68MESSAGE_SRC= ${.CURDIR}/MESSAGE
69.endif 69.endif
70 70
71.if !empty(PKG_OPTIONS:Mpoppler) 71.if !empty(PKG_OPTIONS:Mpoppler)
72FIND_PREFIX:= POPPLERDIR=poppler-utils 72FIND_PREFIX:= POPPLERDIR=poppler-utils
73.include "../../mk/find-prefix.mk" 73.include "../../mk/find-prefix.mk"
74DEPENDS+= poppler-utils-[0-9]*:../../print/poppler-utils 74DEPENDS+= poppler-utils-[0-9]*:../../print/poppler-utils
75CONFIGURE_ARGS+= --with-pdftops=pdftops 75CONFIGURE_ARGS+= --with-pdftops=pdftops
76CONFIGURE_ENV+= ac_cv_path_CUPS_PDFTOPS=${POPPLERDIR}/bin/pdftops 76CONFIGURE_ENV+= ac_cv_path_CUPS_PDFTOPS=${POPPLERDIR}/bin/pdftops
77.endif 77.endif
78 78
79.if !empty(PKG_OPTIONS:Mslp) 79.if !empty(PKG_OPTIONS:Mslp)
80.include "../../net/openslp/buildlink3.mk" 80.include "../../net/openslp/buildlink3.mk"
81CONFIGURE_ARGS+= --enable-slp 81CONFIGURE_ARGS+= --enable-slp
82.else 82.else
83CONFIGURE_ARGS+= --disable-slp 83CONFIGURE_ARGS+= --disable-slp
84.endif 84.endif
85 85
86.if !empty(PKG_OPTIONS:Mtcpwrappers) 86.if !empty(PKG_OPTIONS:Mtcpwrappers)
87.include "../../security/tcp_wrappers/buildlink3.mk" 87.include "../../security/tcp_wrappers/buildlink3.mk"
88CONFIGURE_ARGS+= --enable-tcp-wrappers 88CONFIGURE_ARGS+= --enable-tcp-wrappers
89.else 89.else
90CONFIGURE_ARGS+= --disable-tcp-wrappers 90CONFIGURE_ARGS+= --disable-tcp-wrappers
91.endif 91.endif
92 92
93.if !empty(PKG_OPTIONS:Mthreads) 93.if !empty(PKG_OPTIONS:Mthreads)
94. include "../../mk/pthread.buildlink3.mk" 94. include "../../mk/pthread.buildlink3.mk"
95CONFIGURE_ARGS+= --enable-threads 95CONFIGURE_ARGS+= --enable-threads
96.else 96.else
97CONFIGURE_ARGS+= --disable-threads 97CONFIGURE_ARGS+= --disable-threads
98.endif 98.endif