summaryrefslogtreecommitdiff
path: root/print
diff options
context:
space:
mode:
authorAndrew Pantyukhin <sat@FreeBSD.org>2006-12-06 09:39:28 +0000
committerAndrew Pantyukhin <sat@FreeBSD.org>2006-12-06 09:39:28 +0000
commit27e3ffc8097cb75f2449972d9c4bb5d0c4297f46 (patch)
treea0848d72ff969456dfcce986e20679379855bd8e /print
parent- Add Easy Software mirrors for cups, fltk and other ports (diff)
- Update to 1.2.7
- Clean up a little bit - Clean up var at deinstallation Approved by: Sergey Akifyev <asa@agava.com> (months of timeouts)
Notes
Notes: svn path=/head/; revision=179010
Diffstat (limited to 'print')
-rw-r--r--print/cups-base/Makefile91
-rw-r--r--print/cups-base/distinfo6
-rw-r--r--print/cups-base/files/patch-Makefile60
-rw-r--r--print/cups-base/pkg-plist1229
-rw-r--r--print/cups/Makefile17
5 files changed, 793 insertions, 610 deletions
diff --git a/print/cups-base/Makefile b/print/cups-base/Makefile
index 1ab81ce93632..f4063e4b4b91 100644
--- a/print/cups-base/Makefile
+++ b/print/cups-base/Makefile
@@ -7,18 +7,19 @@
# $FreeBSD$
#
-PORTNAME= cups-base
-PORTVERSION= 1.2.2
+PORTNAME= cups
+PORTVERSION= 1.2.7
+DISTVERSIONSUFFIX= -source
CATEGORIES= print
-MASTER_SITES= ftp://ftp.funet.fi/pub/mirrors/ftp.easysw.com/pub/cups/${PORTVERSION}/ \
- ftp://ftp.ntua.gr/pub/gnu/cups/${PORTVERSION}/ \
- ftp://ftp.easysw.com/pub/cups/${PORTVERSION}/ \
- ftp://ftp.fisek.com.tr/pub/cups/${PORTVERSION}/ \
- ftp://ftp.mpg.goe.ni.schule.de/pub/internet/printing/cups/${PORTVERSION}/
-DISTNAME= cups-${PORTVERSION}-source
+MASTER_SITES= EASYSW/${PORTNAME}/${DISTVERSION}
+PKGNAMESUFFIX= -base
MAINTAINER= asa@agava.com
-COMMENT= The Common UNIX Printing System
+COMMENT= Common UNIX Printing System
+
+LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \
+ png.5:${PORTSDIR}/graphics/png \
+ tiff.4:${PORTSDIR}/graphics/tiff
CONFLICTS= LPRng-[0-9]*
@@ -28,49 +29,42 @@ USE_GMAKE= yes
USE_PERL5_RUN= yes
GNU_CONFIGURE= yes
USE_RC_SUBR= cupsd
-CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
- LDFLAGS="-L${LOCALBASE}/lib"
+CPPFLAGS= -I${LOCALBASE}/include
+LDFLAGS= -L${LOCALBASE}/lib
+DSOFLAGS= -Wl,-rpath,${PREFIX}/lib -L${PREFIX}/lib
+CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" DSOFLAGS="${DSOFLAGS}"
+CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
+CONFIGURE_ARGS+= --localstatedir=/var \
+ --disable-pam \
+ --disable-slp \
+ --with-cups-user=${CUPSOWN} \
+ --with-cups-group=${CUPSGRP} \
+ --with-system-groups=${CUPSSYSGRP} \
+ --with-docdir=${DOCSDIR} \
+ --with-domainsocket=${CUPS_SOCKET}
OPTIONS= GNUTLS "Build with GNUTLS library" on \
PHP "Build PHP support" off \
PYTHON "Build PYTHON support" off \
LIBPAPER "Build with libpaper support" off
-.include <bsd.port.pre.mk>
-
-CUPS_FILESDIR= ${PORTSDIR}/print/cups/files
CUPS_ETCDIR= ${PREFIX}/etc/cups
-CUPS_RCDIR= ${PREFIX}/etc/rc.d
-CUPS_DOCSDIR= ${PREFIX}/share/doc/cups
CUPS_SPOOLDIR= /var/spool/cups
CUPS_SOCKET?= /var/run/cups.sock
-DOCSDIR= ${CUPS_DOCSDIR}
-WRKSRC= ${WRKDIR}/cups-${PORTVERSION}
+WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION}
# file, dir ownership
CUPSGRP= cups
CUPSOWN= cups
CUPSSYSGRP= wheel
-LIB_DEPENDS+= jpeg.9:${PORTSDIR}/graphics/jpeg \
- png.5:${PORTSDIR}/graphics/png \
- tiff.4:${PORTSDIR}/graphics/tiff
-
-CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
-
-CONFIGURE_ARGS+= --localstatedir=/var \
- --disable-pam \
- --disable-slp \
- --with-cups-user=${CUPSOWN} \
- --with-cups-group=${CUPSGRP} \
- --with-system-groups=${CUPSSYSGRP} \
- --with-docdir=${CUPS_DOCSDIR} \
- --with-rcdir=${CUPS_RCDIR} \
- --with-domainsocket=${CUPS_SOCKET}
+.include <bsd.port.pre.mk>
.if !defined(WITHOUT_GNUTLS)
CONFIGURE_ARGS+= --enable-gnutls --disable-openssl
LIB_DEPENDS+= gnutls-openssl.13:${PORTSDIR}/security/gnutls
+.else
+CONFIGURE_ARGS+= --disable-gnutls --enable-openssl
.endif
.if defined(WITH_PHP)
@@ -94,10 +88,6 @@ CONFIGURE_ARGS+= --enable-libpaper
LIB_DEPENDS+= paper.2:${PORTSDIR}/print/libpaper
.endif
-CONFIGURE_ARGS+= CPPFLAGS="-I.. -I${LOCALBASE}/include"
-CONFIGURE_ARGS+= DSOFLAGS="-Wl,-rpath,${PREFIX}/lib -L${PREFIX}/lib"
-CONFIGURE_ARGS+= LDFLAGS="-L${LOCALBASE}/lib"
-
MAN1EXT= 1
MAN5EXT= 5
MAN7EXT= 7
@@ -145,21 +135,18 @@ pre-configure::
@${ECHO_MSG} ${CONFIGURE_ARGS} | fmt
post-patch:
- @${REINPLACE_CMD} -e '/SILENT/d;\
- s|@SSLFLAGS@|@SSLFLAGS@ -I${LOCALBASE}/include|; \
- s|@SSLLIBS@|@SSLLIBS@ -L${LOCALBASE}/lib|' \
- ${WRKSRC}/Makedefs.in
- @${REINPLACE_CMD} -e 's|/etc/cups|/usr/local/etc/cups|g' \
- ${WRKSRC}/man/*.man*
- @${REINPLACE_CMD} -e 's|CXX="$$CC"||g' \
- ${WRKSRC}/${CONFIGURE_SCRIPT}
+ @${REINPLACE_CMD} -e '/SILENT/d' ${WRKSRC}/Makedefs.in
+ @${REINPLACE_CMD} -e '/share/s|/usr/share|${PREFIX}/share|g' ${WRKSRC}/Makefile
+ @${REINPLACE_CMD} -e 's|/etc/cups|/usr/local/etc/cups|g' ${WRKSRC}/man/*.man*
+ @${REINPLACE_CMD} -e 's|CXX="$$CC"||g' ${WRKSRC}/${CONFIGURE_SCRIPT}
pre-install:
@${ECHO_MSG} "===>" Stopping cupsd ...
-killall cupsd || ${TRUE}
+ @${INSTALL} -d ${DESKTOPDIR}/
post-install:
- ${MKDIR} ${CUPS_ETCDIR}
+ ${INSTALL} -d ${CUPS_ETCDIR}/
.if defined(CUPS_OVERWRITE_BASE)
${SH} ${PKGINSTALL} placeholder POST-INSTALL overwrite
.else
@@ -167,12 +154,10 @@ post-install:
.endif
.for f in cupsd.conf mime.convs mime.types
${INSTALL_DATA} ${WRKSRC}/conf/${f} ${CUPS_ETCDIR}/${f}.N
- cd ${CUPS_ETCDIR}; if test ! -f ${f}; then ${CP} -p ${f}.N ${f}; fi
-.endfor # cupsd.conf mime.convs mime.types
-# ${FIND} ${PREFIX}/man/cat* -type l -name '*.0' -delete
- ${MKDIR} ${CUPS_SPOOLDIR} ${CUPS_SPOOLDIR}/tmp
- ${CHOWN} -R ${CUPSOWN}:${CUPSGRP} ${CUPS_SPOOLDIR}
- ${CHMOD} -R g+w ${CUPS_SPOOLDIR}
- @${SED} -e 's#PREFIX#${PREFIX}#' ${PKGMESSAGE}
+ cd ${CUPS_ETCDIR}/; if test ! -f ${f}; then ${CP} -p ${f}.N ${f}; fi
+.endfor
+ ${INSTALL} -d ${CUPS_SPOOLDIR}/tmp/
+ ${CHOWN} -R ${CUPSOWN}:${CUPSGRP} ${CUPS_SPOOLDIR}/
+ ${CHMOD} -R g+w ${CUPS_SPOOLDIR}/
.include <bsd.port.post.mk>
diff --git a/print/cups-base/distinfo b/print/cups-base/distinfo
index d418bc64ca1e..16172a1bcfea 100644
--- a/print/cups-base/distinfo
+++ b/print/cups-base/distinfo
@@ -1,3 +1,3 @@
-MD5 (cups-1.2.2-source.tar.bz2) = 091de9109c9252cb37427859e90190ad
-SHA256 (cups-1.2.2-source.tar.bz2) = 16dad788e7d2060a3b59778edb1c39c2354c800c127fe6768f8005580533e776
-SIZE (cups-1.2.2-source.tar.bz2) = 3527322
+MD5 (cups-1.2.7-source.tar.bz2) = bf44783d9b46130bee9f2995e6055470
+SHA256 (cups-1.2.7-source.tar.bz2) = e7485d6b3dcbd338a2361aff66c516f8dfafc1c81ea5b01396f6ee5f365c4eb3
+SIZE (cups-1.2.7-source.tar.bz2) = 3585758
diff --git a/print/cups-base/files/patch-Makefile b/print/cups-base/files/patch-Makefile
deleted file mode 100644
index 9204c155429c..000000000000
--- a/print/cups-base/files/patch-Makefile
+++ /dev/null
@@ -1,60 +0,0 @@
---- Makefile.orig Fri May 19 14:44:29 2006
-+++ Makefile Thu Jun 29 22:07:22 2006
-@@ -99,57 +99,10 @@
- echo Installing cups-config script...
- $(INSTALL_DIR) -m 755 $(BINDIR)
- $(INSTALL_SCRIPT) cups-config $(BINDIR)/cups-config
-- if test "x$(INITDIR)" != x; then \
-- echo Installing init scripts...; \
-- $(INSTALL_DIR) -m 755 $(BUILDROOT)$(INITDIR)/init.d; \
-- $(INSTALL_SCRIPT) init/cups.sh $(BUILDROOT)$(INITDIR)/init.d/cups; \
-- $(INSTALL_DIR) -m 755 $(BUILDROOT)$(INITDIR)/rc0.d; \
-- $(INSTALL_SCRIPT) init/cups.sh $(BUILDROOT)$(INITDIR)/rc0.d/K00cups; \
-- $(INSTALL_DIR) -m 755 $(BUILDROOT)$(INITDIR)/rc2.d; \
-- $(INSTALL_SCRIPT) init/cups.sh $(BUILDROOT)$(INITDIR)/rc2.d/S99cups; \
-- $(INSTALL_DIR) -m 755 $(BUILDROOT)$(INITDIR)/rc3.d; \
-- $(INSTALL_SCRIPT) init/cups.sh $(BUILDROOT)$(INITDIR)/rc3.d/S99cups; \
-- $(INSTALL_DIR) -m 755 $(BUILDROOT)$(INITDIR)/rc5.d; \
-- $(INSTALL_SCRIPT) init/cups.sh $(BUILDROOT)$(INITDIR)/rc5.d/S99cups; \
-- fi
-- if test "x$(INITDIR)" = x -a "x$(INITDDIR)" != x; then \
-- $(INSTALL_DIR) $(BUILDROOT)$(INITDDIR); \
-- if test "$(INITDDIR)" = "/System/Library/StartupItems/PrintingServices"; then \
-- echo Installing StartupItems files...; \
-- $(INSTALL_SCRIPT) init/PrintingServices $(BUILDROOT)$(INITDDIR)/PrintingServices; \
-- $(INSTALL_DATA) init/StartupParameters.plist $(BUILDROOT)$(INITDDIR)/StartupParameters.plist; \
-- $(INSTALL_DIR) -m 755 $(BUILDROOT)$(INITDDIR)/Resources/English.lproj; \
-- $(INSTALL_DATA) init/Localizable.strings $(BUILDROOT)$(INITDDIR)/Resources/English.lproj/Localizable.strings; \
-- elif test "$(INITDDIR)" = "/System/Library/LaunchDaemons"; then \
-- echo Installing LaunchDaemons configuration file...; \
-- $(INSTALL_DATA) init/org.cups.cupsd.plist $(BUILDROOT)$(DEFAULT_LAUNCHD_CONF); \
-- else \
-- echo Installing RC script...; \
-- $(INSTALL_SCRIPT) init/cups.sh $(BUILDROOT)$(INITDDIR)/cups; \
-- fi \
-- fi
- if test "x$(DBUSDIR)" != x; then \
- echo Installing cups.conf in $(DBUSDIR)...;\
- $(INSTALL_DIR) -m 755 $(BUILDROOT)$(DBUSDIR); \
- $(INSTALL_DATA) packaging/cups-dbus.conf $(BUILDROOT)$(DBUSDIR)/cups.conf; \
-- fi
-- if test "x$(XINETD)" != x; then \
-- echo Installing xinetd configuration file for cups-lpd...; \
-- $(INSTALL_DIR) -m 755 $(BUILDROOT)$(XINETD); \
-- $(INSTALL_DATA) init/cups-lpd $(BUILDROOT)$(XINETD)/cups-lpd; \
-- fi
-- if test -d /usr/share/applications; then \
-- echo Installing desktop icons...; \
-- $(INSTALL_DIR) -m 755 $(BUILDROOT)/usr/share/applications; \
-- $(INSTALL_DATA) desktop/cups.desktop $(BUILDROOT)/usr/share/applications; \
-- $(INSTALL_DIR) -m 755 $(BUILDROOT)/usr/share/icons/hicolor/16x16/apps; \
-- $(INSTALL_DATA) desktop/cups-16.png $(BUILDROOT)/usr/share/icons/hicolor/16x16/apps/cups.png; \
-- $(INSTALL_DIR) -m 755 $(BUILDROOT)/usr/share/icons/hicolor/32x32/apps; \
-- $(INSTALL_DATA) desktop/cups-32.png $(BUILDROOT)/usr/share/icons/hicolor/32x32/apps/cups.png; \
-- $(INSTALL_DIR) -m 755 $(BUILDROOT)/usr/share/icons/hicolor/64x64/apps; \
-- $(INSTALL_DATA) desktop/cups-64.png $(BUILDROOT)/usr/share/icons/hicolor/64x64/apps/cups.png; \
-- $(INSTALL_DIR) -m 755 $(BUILDROOT)/usr/share/icons/hicolor/128x128/apps; \
-- $(INSTALL_DATA) desktop/cups-128.png $(BUILDROOT)/usr/share/icons/hicolor/128x128/apps/cups.png; \
- fi
-
-
diff --git a/print/cups-base/pkg-plist b/print/cups-base/pkg-plist
index fed1cfd5aee6..c79f61e83d22 100644
--- a/print/cups-base/pkg-plist
+++ b/print/cups-base/pkg-plist
@@ -4,7 +4,12 @@
@exec chown -R root:daemon /var/spool/cups
@exec mkdir %D/etc/cups/ppd || true
@exec mkdir %D/etc/cups/interfaces || true
-@unexec rm -rf /var/spool/cups 2>&1 >/dev/null || true
+@unexec rm -rf /var/spool/cups 2>/dev/null || true
+@unexec rm -rf /var/cache/cups 2>/dev/null || true
+@unexec rmdir /var/cache 2>/dev/null || true
+@unexec rmdir /var/log/cups 2>/dev/null || true
+@unexec rmdir /var/run/cups/certs 2>/dev/null || true
+@unexec rmdir /var/run/cups 2>/dev/null || true
@unexec if cmp -s %D/etc/cups/cupsd.conf.N %D/etc/cups/cupsd.conf; then rm -f %D/etc/cups/cupsd.conf; fi
etc/cups/cupsd.conf.N
@exec if test ! -f %D/etc/cups/cupsd.conf; then cp -p %D/etc/cups/cupsd.conf.N %D/etc/cups/cupsd.conf; fi
@@ -27,6 +32,7 @@ bin/lpstat
bin/cups-config
include/cups/adminutil.h
include/cups/array.h
+include/cups/backend.h
include/cups/cups.h
include/cups/dir.h
include/cups/file.h
@@ -295,6 +301,112 @@ sbin/reject
%%DOCSDIR%%/es/images/button-view-page-log.gif
%%DOCSDIR%%/es/images/button-view-printable-version.gif
%%DOCSDIR%%/es/index.html
+%%DOCSDIR%%/et/images/button-accept-jobs.gif
+%%DOCSDIR%%/et/images/button-add-class.gif
+%%DOCSDIR%%/et/images/button-add-printer.gif
+%%DOCSDIR%%/et/images/button-add-this-printer.gif
+%%DOCSDIR%%/et/images/button-cancel-all-jobs.gif
+%%DOCSDIR%%/et/images/button-cancel-job.gif
+%%DOCSDIR%%/et/images/button-change-settings.gif
+%%DOCSDIR%%/et/images/button-clean-print-heads.gif
+%%DOCSDIR%%/et/images/button-clear.gif
+%%DOCSDIR%%/et/images/button-continue.gif
+%%DOCSDIR%%/et/images/button-delete-class.gif
+%%DOCSDIR%%/et/images/button-delete-printer.gif
+%%DOCSDIR%%/et/images/button-edit-configuration-file.gif
+%%DOCSDIR%%/et/images/button-export-samba.gif
+%%DOCSDIR%%/et/images/button-help.gif
+%%DOCSDIR%%/et/images/button-hold-job.gif
+%%DOCSDIR%%/et/images/button-manage-classes.gif
+%%DOCSDIR%%/et/images/button-manage-jobs.gif
+%%DOCSDIR%%/et/images/button-manage-printers.gif
+%%DOCSDIR%%/et/images/button-manage-server.gif
+%%DOCSDIR%%/et/images/button-modify-class.gif
+%%DOCSDIR%%/et/images/button-modify-printer.gif
+%%DOCSDIR%%/et/images/button-move-job.gif
+%%DOCSDIR%%/et/images/button-move-jobs.gif
+%%DOCSDIR%%/et/images/button-print-self-test-page.gif
+%%DOCSDIR%%/et/images/button-print-test-page.gif
+%%DOCSDIR%%/et/images/button-publish-printer.gif
+%%DOCSDIR%%/et/images/button-reject-jobs.gif
+%%DOCSDIR%%/et/images/button-release-job.gif
+%%DOCSDIR%%/et/images/button-restart-job.gif
+%%DOCSDIR%%/et/images/button-save-changes.gif
+%%DOCSDIR%%/et/images/button-search.gif
+%%DOCSDIR%%/et/images/button-set-allowed-users.gif
+%%DOCSDIR%%/et/images/button-set-as-default.gif
+%%DOCSDIR%%/et/images/button-set-printer-options.gif
+%%DOCSDIR%%/et/images/button-show-active.gif
+%%DOCSDIR%%/et/images/button-show-all.gif
+%%DOCSDIR%%/et/images/button-show-completed.gif
+%%DOCSDIR%%/et/images/button-show-next.gif
+%%DOCSDIR%%/et/images/button-show-previous.gif
+%%DOCSDIR%%/et/images/button-sort-ascending.gif
+%%DOCSDIR%%/et/images/button-sort-descending.gif
+%%DOCSDIR%%/et/images/button-start-class.gif
+%%DOCSDIR%%/et/images/button-start-printer.gif
+%%DOCSDIR%%/et/images/button-stop-class.gif
+%%DOCSDIR%%/et/images/button-stop-printer.gif
+%%DOCSDIR%%/et/images/button-unpublish-printer.gif
+%%DOCSDIR%%/et/images/button-use-default-config.gif
+%%DOCSDIR%%/et/images/button-view-access-log.gif
+%%DOCSDIR%%/et/images/button-view-error-log.gif
+%%DOCSDIR%%/et/images/button-view-page-log.gif
+%%DOCSDIR%%/et/images/button-view-printable-version.gif
+%%DOCSDIR%%/et/index.html
+%%DOCSDIR%%/it/images/button-accept-jobs.gif
+%%DOCSDIR%%/it/images/button-add-class.gif
+%%DOCSDIR%%/it/images/button-add-printer.gif
+%%DOCSDIR%%/it/images/button-add-this-printer.gif
+%%DOCSDIR%%/it/images/button-cancel-all-jobs.gif
+%%DOCSDIR%%/it/images/button-cancel-job.gif
+%%DOCSDIR%%/it/images/button-change-settings.gif
+%%DOCSDIR%%/it/images/button-clean-print-heads.gif
+%%DOCSDIR%%/it/images/button-clear.gif
+%%DOCSDIR%%/it/images/button-continue.gif
+%%DOCSDIR%%/it/images/button-delete-class.gif
+%%DOCSDIR%%/it/images/button-delete-printer.gif
+%%DOCSDIR%%/it/images/button-edit-configuration-file.gif
+%%DOCSDIR%%/it/images/button-export-samba.gif
+%%DOCSDIR%%/it/images/button-help.gif
+%%DOCSDIR%%/it/images/button-hold-job.gif
+%%DOCSDIR%%/it/images/button-manage-classes.gif
+%%DOCSDIR%%/it/images/button-manage-jobs.gif
+%%DOCSDIR%%/it/images/button-manage-printers.gif
+%%DOCSDIR%%/it/images/button-manage-server.gif
+%%DOCSDIR%%/it/images/button-modify-class.gif
+%%DOCSDIR%%/it/images/button-modify-printer.gif
+%%DOCSDIR%%/it/images/button-move-job.gif
+%%DOCSDIR%%/it/images/button-move-jobs.gif
+%%DOCSDIR%%/it/images/button-print-self-test-page.gif
+%%DOCSDIR%%/it/images/button-print-test-page.gif
+%%DOCSDIR%%/it/images/button-publish-printer.gif
+%%DOCSDIR%%/it/images/button-reject-jobs.gif
+%%DOCSDIR%%/it/images/button-release-job.gif
+%%DOCSDIR%%/it/images/button-restart-job.gif
+%%DOCSDIR%%/it/images/button-save-changes.gif
+%%DOCSDIR%%/it/images/button-search.gif
+%%DOCSDIR%%/it/images/button-set-allowed-users.gif
+%%DOCSDIR%%/it/images/button-set-as-default.gif
+%%DOCSDIR%%/it/images/button-set-printer-options.gif
+%%DOCSDIR%%/it/images/button-show-active.gif
+%%DOCSDIR%%/it/images/button-show-all.gif
+%%DOCSDIR%%/it/images/button-show-completed.gif
+%%DOCSDIR%%/it/images/button-show-next.gif
+%%DOCSDIR%%/it/images/button-show-previous.gif
+%%DOCSDIR%%/it/images/button-sort-ascending.gif
+%%DOCSDIR%%/it/images/button-sort-descending.gif
+%%DOCSDIR%%/it/images/button-start-class.gif
+%%DOCSDIR%%/it/images/button-start-printer.gif
+%%DOCSDIR%%/it/images/button-stop-class.gif
+%%DOCSDIR%%/it/images/button-stop-printer.gif
+%%DOCSDIR%%/it/images/button-unpublish-printer.gif
+%%DOCSDIR%%/it/images/button-use-default-config.gif
+%%DOCSDIR%%/it/images/button-view-access-log.gif
+%%DOCSDIR%%/it/images/button-view-error-log.gif
+%%DOCSDIR%%/it/images/button-view-page-log.gif
+%%DOCSDIR%%/it/images/button-view-printable-version.gif
+%%DOCSDIR%%/it/index.html
%%DOCSDIR%%/ja/images/button-accept-jobs.gif
%%DOCSDIR%%/ja/images/button-add-class.gif
%%DOCSDIR%%/ja/images/button-add-printer.gif
@@ -450,467 +562,601 @@ sbin/reject
%%DOCSDIR%%/sv/images/button-view-page-log.gif
%%DOCSDIR%%/sv/images/button-view-printable-version.gif
%%DOCSDIR%%/sv/index.html
+share/applications/cups.desktop
+share/icons/hicolor/16x16/apps/cups.png
+share/icons/hicolor/32x32/apps/cups.png
+share/icons/hicolor/64x64/apps/cups.png
+share/icons/hicolor/128x128/apps/cups.png
share/locale/de/cups_de.po
share/locale/es/cups_es.po
+share/locale/et/cups_et.po
+share/locale/it/cups_it.po
share/locale/ja/cups_ja.po
share/locale/pl/cups_pl.po
share/locale/sv/cups_sv.po
-share/cups/banners/classified
-share/cups/banners/confidential
-share/cups/banners/secret
-share/cups/banners/standard
-share/cups/banners/topsecret
-share/cups/banners/unclassified
-share/cups/charmaps/euc-cn.txt
-share/cups/charmaps/euc-jp.txt
-share/cups/charmaps/euc-kr.txt
-share/cups/charmaps/euc-tw.txt
-share/cups/charmaps/iso-8859-10.txt
-share/cups/charmaps/iso-8859-11.txt
-share/cups/charmaps/iso-8859-13.txt
-share/cups/charmaps/iso-8859-14.txt
-share/cups/charmaps/iso-8859-15.txt
-share/cups/charmaps/iso-8859-16.txt
-share/cups/charmaps/iso-8859-1.txt
-share/cups/charmaps/iso-8859-2.txt
-share/cups/charmaps/iso-8859-3.txt
-share/cups/charmaps/iso-8859-4.txt
-share/cups/charmaps/iso-8859-5.txt
-share/cups/charmaps/iso-8859-6.txt
-share/cups/charmaps/iso-8859-7.txt
-share/cups/charmaps/iso-8859-8.txt
-share/cups/charmaps/iso-8859-9.txt
-share/cups/charmaps/koi8-r.txt
-share/cups/charmaps/koi8-u.txt
-share/cups/charmaps/mac-roman.txt
-share/cups/charmaps/windows-1250.txt
-share/cups/charmaps/windows-1251.txt
-share/cups/charmaps/windows-1252.txt
-share/cups/charmaps/windows-1253.txt
-share/cups/charmaps/windows-1254.txt
-share/cups/charmaps/windows-1255.txt
-share/cups/charmaps/windows-1256.txt
-share/cups/charmaps/windows-1257.txt
-share/cups/charmaps/windows-1258.txt
-share/cups/charmaps/windows-1361.txt
-share/cups/charmaps/windows-874.txt
-share/cups/charmaps/windows-932.txt
-share/cups/charmaps/windows-936.txt
-share/cups/charmaps/windows-949.txt
-share/cups/charmaps/windows-950.txt
-share/cups/charsets/windows-874
-share/cups/charsets/windows-1250
-share/cups/charsets/windows-1251
-share/cups/charsets/windows-1252
-share/cups/charsets/windows-1253
-share/cups/charsets/windows-1254
-share/cups/charsets/windows-1255
-share/cups/charsets/windows-1256
-share/cups/charsets/windows-1257
-share/cups/charsets/windows-1258
-share/cups/charsets/koi8-r
-share/cups/charsets/koi8-u
-share/cups/charsets/iso-8859-1
-share/cups/charsets/iso-8859-2
-share/cups/charsets/iso-8859-3
-share/cups/charsets/iso-8859-4
-share/cups/charsets/iso-8859-5
-share/cups/charsets/iso-8859-6
-share/cups/charsets/iso-8859-7
-share/cups/charsets/iso-8859-8
-share/cups/charsets/iso-8859-9
-share/cups/charsets/iso-8859-10
-share/cups/charsets/iso-8859-13
-share/cups/charsets/iso-8859-14
-share/cups/charsets/iso-8859-15
-share/cups/charsets/utf-8
-share/cups/model/deskjet.ppd
-share/cups/model/deskjet2.ppd
-share/cups/model/dymo.ppd
-share/cups/model/epson9.ppd
-share/cups/model/epson24.ppd
-share/cups/model/laserjet.ppd
-share/cups/model/okidata9.ppd
-share/cups/model/okidat24.ppd
-share/cups/model/stcolor.ppd
-share/cups/model/stcolor2.ppd
-share/cups/model/stphoto.ppd
-share/cups/model/stphoto2.ppd
-share/cups/model/zebra.ppd
-share/cups/model/zebraep1.ppd
-share/cups/model/zebraep2.ppd
-share/cups/data/HPGLprolog
-share/cups/data/psglyphs
-share/cups/data/testprint.ps
-share/cups/fonts/Courier
-share/cups/fonts/Courier-Bold
-share/cups/fonts/Courier-BoldOblique
-share/cups/fonts/Courier-Oblique
-share/cups/fonts/Symbol
-share/cups/templates/add-class.tmpl
-share/cups/templates/add-printer.tmpl
-share/cups/templates/admin.tmpl
-share/cups/templates/choose-device.tmpl
-share/cups/templates/choose-make.tmpl
-share/cups/templates/choose-model.tmpl
-share/cups/templates/choose-serial.tmpl
-share/cups/templates/choose-uri.tmpl
-share/cups/templates/class-added.tmpl
-share/cups/templates/class-confirm.tmpl
-share/cups/templates/class-deleted.tmpl
-share/cups/templates/class-jobs-header.tmpl
-share/cups/templates/class-modified.tmpl
-share/cups/templates/classes.tmpl
-share/cups/templates/classes-header.tmpl
-share/cups/templates/de/add-class.tmpl
-share/cups/templates/de/add-printer.tmpl
-share/cups/templates/de/admin.tmpl
-share/cups/templates/de/choose-device.tmpl
-share/cups/templates/de/choose-make.tmpl
-share/cups/templates/de/choose-model.tmpl
-share/cups/templates/de/choose-serial.tmpl
-share/cups/templates/de/choose-uri.tmpl
-share/cups/templates/de/class-added.tmpl
-share/cups/templates/de/class-confirm.tmpl
-share/cups/templates/de/class-deleted.tmpl
-share/cups/templates/de/class-jobs-header.tmpl
-share/cups/templates/de/class-modified.tmpl
-share/cups/templates/de/classes-header.tmpl
-share/cups/templates/de/classes.tmpl
-share/cups/templates/de/edit-config.tmpl
-share/cups/templates/de/error-op.tmpl
-share/cups/templates/de/error.tmpl
-share/cups/templates/de/header.tmpl
-share/cups/templates/de/help-header.tmpl
-share/cups/templates/de/help-printable.tmpl
-share/cups/templates/de/job-cancel.tmpl
-share/cups/templates/de/job-hold.tmpl
-share/cups/templates/de/job-move.tmpl
-share/cups/templates/de/job-moved.tmpl
-share/cups/templates/de/job-release.tmpl
-share/cups/templates/de/job-restart.tmpl
-share/cups/templates/de/jobs-header.tmpl
-share/cups/templates/de/jobs.tmpl
-share/cups/templates/de/maintenance.tmpl
-share/cups/templates/de/modify-class.tmpl
-share/cups/templates/de/modify-printer.tmpl
-share/cups/templates/de/option-boolean.tmpl
-share/cups/templates/de/option-conflict.tmpl
-share/cups/templates/de/option-header.tmpl
-share/cups/templates/de/option-pickmany.tmpl
-share/cups/templates/de/option-pickone.tmpl
-share/cups/templates/de/option-trailer.tmpl
-share/cups/templates/de/pager.tmpl
-share/cups/templates/de/printer-accept.tmpl
-share/cups/templates/de/printer-added.tmpl
-share/cups/templates/de/printer-configured.tmpl
-share/cups/templates/de/printer-confirm.tmpl
-share/cups/templates/de/printer-default.tmpl
-share/cups/templates/de/printer-deleted.tmpl
-share/cups/templates/de/printer-jobs-header.tmpl
-share/cups/templates/de/printer-modified.tmpl
-share/cups/templates/de/printer-purge.tmpl
-share/cups/templates/de/printer-reject.tmpl
-share/cups/templates/de/printer-start.tmpl
-share/cups/templates/de/printer-stop.tmpl
-share/cups/templates/de/printers-header.tmpl
-share/cups/templates/de/printers.tmpl
-share/cups/templates/de/restart.tmpl
-share/cups/templates/de/samba-export.tmpl
-share/cups/templates/de/samba-exported.tmpl
-share/cups/templates/de/search.tmpl
-share/cups/templates/de/set-printer-options-header.tmpl
-share/cups/templates/de/set-printer-options-trailer.tmpl
-share/cups/templates/de/test-page.tmpl
-share/cups/templates/de/trailer.tmpl
-share/cups/templates/de/users.tmpl
-share/cups/templates/edit-config.tmpl
-share/cups/templates/error.tmpl
-share/cups/templates/error-op.tmpl
-share/cups/templates/es/add-class.tmpl
-share/cups/templates/es/add-printer.tmpl
-share/cups/templates/es/admin.tmpl
-share/cups/templates/es/choose-device.tmpl
-share/cups/templates/es/choose-make.tmpl
-share/cups/templates/es/choose-model.tmpl
-share/cups/templates/es/choose-serial.tmpl
-share/cups/templates/es/choose-uri.tmpl
-share/cups/templates/es/class-added.tmpl
-share/cups/templates/es/class-confirm.tmpl
-share/cups/templates/es/class-deleted.tmpl
-share/cups/templates/es/class-jobs-header.tmpl
-share/cups/templates/es/class-modified.tmpl
-share/cups/templates/es/classes.tmpl
-share/cups/templates/es/classes-header.tmpl
-share/cups/templates/es/edit-config.tmpl
-share/cups/templates/es/error.tmpl
-share/cups/templates/es/error-op.tmpl
-share/cups/templates/es/header.tmpl
-share/cups/templates/es/help-header.tmpl
-share/cups/templates/es/help-printable.tmpl
-share/cups/templates/es/job-cancel.tmpl
-share/cups/templates/es/job-hold.tmpl
-share/cups/templates/es/job-move.tmpl
-share/cups/templates/es/job-moved.tmpl
-share/cups/templates/es/job-release.tmpl
-share/cups/templates/es/job-restart.tmpl
-share/cups/templates/es/jobs.tmpl
-share/cups/templates/es/jobs-header.tmpl
-share/cups/templates/es/maintenance.tmpl
-share/cups/templates/es/modify-class.tmpl
-share/cups/templates/es/modify-printer.tmpl
-share/cups/templates/es/option-boolean.tmpl
-share/cups/templates/es/option-conflict.tmpl
-share/cups/templates/es/option-header.tmpl
-share/cups/templates/es/option-pickmany.tmpl
-share/cups/templates/es/option-pickone.tmpl
-share/cups/templates/es/option-trailer.tmpl
-share/cups/templates/es/pager.tmpl
-share/cups/templates/es/printer-accept.tmpl
-share/cups/templates/es/printer-added.tmpl
-share/cups/templates/es/printer-configured.tmpl
-share/cups/templates/es/printer-confirm.tmpl
-share/cups/templates/es/printer-default.tmpl
-share/cups/templates/es/printer-deleted.tmpl
-share/cups/templates/es/printer-jobs-header.tmpl
-share/cups/templates/es/printer-modified.tmpl
-share/cups/templates/es/printer-purge.tmpl
-share/cups/templates/es/printer-reject.tmpl
-share/cups/templates/es/printer-start.tmpl
-share/cups/templates/es/printer-stop.tmpl
-share/cups/templates/es/printers.tmpl
-share/cups/templates/es/printers-header.tmpl
-share/cups/templates/es/restart.tmpl
-share/cups/templates/es/search.tmpl
-share/cups/templates/es/samba-export.tmpl
-share/cups/templates/es/samba-exported.tmpl
-share/cups/templates/es/set-printer-options-header.tmpl
-share/cups/templates/es/set-printer-options-trailer.tmpl
-share/cups/templates/es/test-page.tmpl
-share/cups/templates/es/trailer.tmpl
-share/cups/templates/es/users.tmpl
-share/cups/templates/header.tmpl
-share/cups/templates/help-header.tmpl
-share/cups/templates/help-printable.tmpl
-share/cups/templates/job-cancel.tmpl
-share/cups/templates/job-hold.tmpl
-share/cups/templates/job-move.tmpl
-share/cups/templates/job-moved.tmpl
-share/cups/templates/job-release.tmpl
-share/cups/templates/job-restart.tmpl
-share/cups/templates/jobs.tmpl
-share/cups/templates/jobs-header.tmpl
-share/cups/templates/maintenance.tmpl
-share/cups/templates/modify-class.tmpl
-share/cups/templates/modify-printer.tmpl
-share/cups/templates/option-boolean.tmpl
-share/cups/templates/option-conflict.tmpl
-share/cups/templates/option-header.tmpl
-share/cups/templates/option-pickmany.tmpl
-share/cups/templates/option-pickone.tmpl
-share/cups/templates/option-trailer.tmpl
-share/cups/templates/pager.tmpl
-share/cups/templates/printer-accept.tmpl
-share/cups/templates/printer-added.tmpl
-share/cups/templates/printer-configured.tmpl
-share/cups/templates/printer-confirm.tmpl
-share/cups/templates/printer-default.tmpl
-share/cups/templates/printer-deleted.tmpl
-share/cups/templates/printer-jobs-header.tmpl
-share/cups/templates/printer-modified.tmpl
-share/cups/templates/printer-purge.tmpl
-share/cups/templates/printer-reject.tmpl
-share/cups/templates/printer-start.tmpl
-share/cups/templates/printer-stop.tmpl
-share/cups/templates/printers.tmpl
-share/cups/templates/printers-header.tmpl
-share/cups/templates/restart.tmpl
-share/cups/templates/search.tmpl
-share/cups/templates/samba-export.tmpl
-share/cups/templates/samba-exported.tmpl
-share/cups/templates/set-printer-options-header.tmpl
-share/cups/templates/set-printer-options-trailer.tmpl
-share/cups/templates/test-page.tmpl
-share/cups/templates/trailer.tmpl
-share/cups/templates/users.tmpl
-share/cups/templates/ja/add-class.tmpl
-share/cups/templates/ja/add-printer.tmpl
-share/cups/templates/ja/admin.tmpl
-share/cups/templates/ja/choose-device.tmpl
-share/cups/templates/ja/choose-make.tmpl
-share/cups/templates/ja/choose-model.tmpl
-share/cups/templates/ja/choose-serial.tmpl
-share/cups/templates/ja/choose-uri.tmpl
-share/cups/templates/ja/class-added.tmpl
-share/cups/templates/ja/class-confirm.tmpl
-share/cups/templates/ja/class-deleted.tmpl
-share/cups/templates/ja/class-jobs-header.tmpl
-share/cups/templates/ja/class-modified.tmpl
-share/cups/templates/ja/classes.tmpl
-share/cups/templates/ja/classes-header.tmpl
-share/cups/templates/ja/edit-config.tmpl
-share/cups/templates/ja/error.tmpl
-share/cups/templates/ja/error-op.tmpl
-share/cups/templates/ja/header.tmpl
-share/cups/templates/ja/help-header.tmpl
-share/cups/templates/ja/job-cancel.tmpl
-share/cups/templates/ja/job-hold.tmpl
-share/cups/templates/ja/job-move.tmpl
-share/cups/templates/ja/job-moved.tmpl
-share/cups/templates/ja/job-release.tmpl
-share/cups/templates/ja/job-restart.tmpl
-share/cups/templates/ja/jobs.tmpl
-share/cups/templates/ja/jobs-header.tmpl
-share/cups/templates/ja/maintenance.tmpl
-share/cups/templates/ja/modify-class.tmpl
-share/cups/templates/ja/modify-printer.tmpl
-share/cups/templates/ja/option-conflict.tmpl
-share/cups/templates/ja/option-trailer.tmpl
-share/cups/templates/ja/pager.tmpl
-share/cups/templates/ja/printer-accept.tmpl
-share/cups/templates/ja/printer-added.tmpl
-share/cups/templates/ja/printer-configured.tmpl
-share/cups/templates/ja/printer-confirm.tmpl
-share/cups/templates/ja/printer-default.tmpl
-share/cups/templates/ja/printer-deleted.tmpl
-share/cups/templates/ja/printer-jobs-header.tmpl
-share/cups/templates/ja/printer-modified.tmpl
-share/cups/templates/ja/printer-purge.tmpl
-share/cups/templates/ja/printer-reject.tmpl
-share/cups/templates/ja/printer-start.tmpl
-share/cups/templates/ja/printer-stop.tmpl
-share/cups/templates/ja/printers.tmpl
-share/cups/templates/ja/printers-header.tmpl
-share/cups/templates/ja/restart.tmpl
-share/cups/templates/ja/samba-export.tmpl
-share/cups/templates/ja/samba-exported.tmpl
-share/cups/templates/ja/search.tmpl
-share/cups/templates/ja/test-page.tmpl
-share/cups/templates/ja/users.tmpl
-share/cups/templates/pl/add-class.tmpl
-share/cups/templates/pl/add-printer.tmpl
-share/cups/templates/pl/admin.tmpl
-share/cups/templates/pl/choose-device.tmpl
-share/cups/templates/pl/choose-make.tmpl
-share/cups/templates/pl/choose-model.tmpl
-share/cups/templates/pl/choose-serial.tmpl
-share/cups/templates/pl/choose-uri.tmpl
-share/cups/templates/pl/class-added.tmpl
-share/cups/templates/pl/class-confirm.tmpl
-share/cups/templates/pl/class-deleted.tmpl
-share/cups/templates/pl/class-jobs-header.tmpl
-share/cups/templates/pl/class-modified.tmpl
-share/cups/templates/pl/classes.tmpl
-share/cups/templates/pl/classes-header.tmpl
-share/cups/templates/pl/edit-config.tmpl
-share/cups/templates/pl/error.tmpl
-share/cups/templates/pl/error-op.tmpl
-share/cups/templates/pl/header.tmpl
-share/cups/templates/pl/help-header.tmpl
-share/cups/templates/pl/help-printable.tmpl
-share/cups/templates/pl/job-cancel.tmpl
-share/cups/templates/pl/job-hold.tmpl
-share/cups/templates/pl/job-move.tmpl
-share/cups/templates/pl/job-moved.tmpl
-share/cups/templates/pl/job-release.tmpl
-share/cups/templates/pl/job-restart.tmpl
-share/cups/templates/pl/jobs.tmpl
-share/cups/templates/pl/jobs-header.tmpl
-share/cups/templates/pl/maintenance.tmpl
-share/cups/templates/pl/modify-class.tmpl
-share/cups/templates/pl/modify-printer.tmpl
-share/cups/templates/pl/option-boolean.tmpl
-share/cups/templates/pl/option-conflict.tmpl
-share/cups/templates/pl/option-header.tmpl
-share/cups/templates/pl/option-pickmany.tmpl
-share/cups/templates/pl/option-pickone.tmpl
-share/cups/templates/pl/option-trailer.tmpl
-share/cups/templates/pl/pager.tmpl
-share/cups/templates/pl/printer-accept.tmpl
-share/cups/templates/pl/printer-added.tmpl
-share/cups/templates/pl/printer-configured.tmpl
-share/cups/templates/pl/printer-confirm.tmpl
-share/cups/templates/pl/printer-default.tmpl
-share/cups/templates/pl/printer-deleted.tmpl
-share/cups/templates/pl/printer-jobs-header.tmpl
-share/cups/templates/pl/printer-modified.tmpl
-share/cups/templates/pl/printer-purge.tmpl
-share/cups/templates/pl/printer-reject.tmpl
-share/cups/templates/pl/printer-start.tmpl
-share/cups/templates/pl/printer-stop.tmpl
-share/cups/templates/pl/printers.tmpl
-share/cups/templates/pl/printers-header.tmpl
-share/cups/templates/pl/restart.tmpl
-share/cups/templates/pl/search.tmpl
-share/cups/templates/pl/samba-export.tmpl
-share/cups/templates/pl/samba-exported.tmpl
-share/cups/templates/pl/set-printer-options-header.tmpl
-share/cups/templates/pl/set-printer-options-trailer.tmpl
-share/cups/templates/pl/test-page.tmpl
-share/cups/templates/pl/trailer.tmpl
-share/cups/templates/pl/users.tmpl
-share/cups/templates/sv/add-class.tmpl
-share/cups/templates/sv/add-printer.tmpl
-share/cups/templates/sv/admin.tmpl
-share/cups/templates/sv/choose-device.tmpl
-share/cups/templates/sv/choose-make.tmpl
-share/cups/templates/sv/choose-model.tmpl
-share/cups/templates/sv/choose-serial.tmpl
-share/cups/templates/sv/choose-uri.tmpl
-share/cups/templates/sv/class-added.tmpl
-share/cups/templates/sv/class-confirm.tmpl
-share/cups/templates/sv/class-deleted.tmpl
-share/cups/templates/sv/class-jobs-header.tmpl
-share/cups/templates/sv/class-modified.tmpl
-share/cups/templates/sv/classes.tmpl
-share/cups/templates/sv/classes-header.tmpl
-share/cups/templates/sv/edit-config.tmpl
-share/cups/templates/sv/error.tmpl
-share/cups/templates/sv/error-op.tmpl
-share/cups/templates/sv/header.tmpl
-share/cups/templates/sv/help-header.tmpl
-share/cups/templates/sv/help-printable.tmpl
-share/cups/templates/sv/job-cancel.tmpl
-share/cups/templates/sv/job-hold.tmpl
-share/cups/templates/sv/job-move.tmpl
-share/cups/templates/sv/job-moved.tmpl
-share/cups/templates/sv/job-release.tmpl
-share/cups/templates/sv/job-restart.tmpl
-share/cups/templates/sv/jobs.tmpl
-share/cups/templates/sv/jobs-header.tmpl
-share/cups/templates/sv/maintenance.tmpl
-share/cups/templates/sv/modify-class.tmpl
-share/cups/templates/sv/modify-printer.tmpl
-share/cups/templates/sv/option-boolean.tmpl
-share/cups/templates/sv/option-conflict.tmpl
-share/cups/templates/sv/option-header.tmpl
-share/cups/templates/sv/option-pickmany.tmpl
-share/cups/templates/sv/option-pickone.tmpl
-share/cups/templates/sv/option-trailer.tmpl
-share/cups/templates/sv/pager.tmpl
-share/cups/templates/sv/printer-accept.tmpl
-share/cups/templates/sv/printer-added.tmpl
-share/cups/templates/sv/printer-configured.tmpl
-share/cups/templates/sv/printer-confirm.tmpl
-share/cups/templates/sv/printer-default.tmpl
-share/cups/templates/sv/printer-deleted.tmpl
-share/cups/templates/sv/printer-jobs-header.tmpl
-share/cups/templates/sv/printer-modified.tmpl
-share/cups/templates/sv/printer-purge.tmpl
-share/cups/templates/sv/printer-reject.tmpl
-share/cups/templates/sv/printer-start.tmpl
-share/cups/templates/sv/printer-stop.tmpl
-share/cups/templates/sv/printers.tmpl
-share/cups/templates/sv/printers-header.tmpl
-share/cups/templates/sv/restart.tmpl
-share/cups/templates/sv/search.tmpl
-share/cups/templates/sv/samba-export.tmpl
-share/cups/templates/sv/samba-exported.tmpl
-share/cups/templates/sv/set-printer-options-header.tmpl
-share/cups/templates/sv/set-printer-options-trailer.tmpl
-share/cups/templates/sv/test-page.tmpl
-share/cups/templates/sv/trailer.tmpl
-share/cups/templates/sv/users.tmpl
+%%DATADIR%%/banners/classified
+%%DATADIR%%/banners/confidential
+%%DATADIR%%/banners/secret
+%%DATADIR%%/banners/standard
+%%DATADIR%%/banners/topsecret
+%%DATADIR%%/banners/unclassified
+%%DATADIR%%/charmaps/euc-cn.txt
+%%DATADIR%%/charmaps/euc-jp.txt
+%%DATADIR%%/charmaps/euc-kr.txt
+%%DATADIR%%/charmaps/euc-tw.txt
+%%DATADIR%%/charmaps/iso-8859-10.txt
+%%DATADIR%%/charmaps/iso-8859-11.txt
+%%DATADIR%%/charmaps/iso-8859-13.txt
+%%DATADIR%%/charmaps/iso-8859-14.txt
+%%DATADIR%%/charmaps/iso-8859-15.txt
+%%DATADIR%%/charmaps/iso-8859-16.txt
+%%DATADIR%%/charmaps/iso-8859-1.txt
+%%DATADIR%%/charmaps/iso-8859-2.txt
+%%DATADIR%%/charmaps/iso-8859-3.txt
+%%DATADIR%%/charmaps/iso-8859-4.txt
+%%DATADIR%%/charmaps/iso-8859-5.txt
+%%DATADIR%%/charmaps/iso-8859-6.txt
+%%DATADIR%%/charmaps/iso-8859-7.txt
+%%DATADIR%%/charmaps/iso-8859-8.txt
+%%DATADIR%%/charmaps/iso-8859-9.txt
+%%DATADIR%%/charmaps/koi8-r.txt
+%%DATADIR%%/charmaps/koi8-u.txt
+%%DATADIR%%/charmaps/mac-roman.txt
+%%DATADIR%%/charmaps/windows-1250.txt
+%%DATADIR%%/charmaps/windows-1251.txt
+%%DATADIR%%/charmaps/windows-1252.txt
+%%DATADIR%%/charmaps/windows-1253.txt
+%%DATADIR%%/charmaps/windows-1254.txt
+%%DATADIR%%/charmaps/windows-1255.txt
+%%DATADIR%%/charmaps/windows-1256.txt
+%%DATADIR%%/charmaps/windows-1257.txt
+%%DATADIR%%/charmaps/windows-1258.txt
+%%DATADIR%%/charmaps/windows-1361.txt
+%%DATADIR%%/charmaps/windows-874.txt
+%%DATADIR%%/charmaps/windows-932.txt
+%%DATADIR%%/charmaps/windows-936.txt
+%%DATADIR%%/charmaps/windows-949.txt
+%%DATADIR%%/charmaps/windows-950.txt
+%%DATADIR%%/charsets/windows-874
+%%DATADIR%%/charsets/windows-1250
+%%DATADIR%%/charsets/windows-1251
+%%DATADIR%%/charsets/windows-1252
+%%DATADIR%%/charsets/windows-1253
+%%DATADIR%%/charsets/windows-1254
+%%DATADIR%%/charsets/windows-1255
+%%DATADIR%%/charsets/windows-1256
+%%DATADIR%%/charsets/windows-1257
+%%DATADIR%%/charsets/windows-1258
+%%DATADIR%%/charsets/koi8-r
+%%DATADIR%%/charsets/koi8-u
+%%DATADIR%%/charsets/iso-8859-1
+%%DATADIR%%/charsets/iso-8859-2
+%%DATADIR%%/charsets/iso-8859-3
+%%DATADIR%%/charsets/iso-8859-4
+%%DATADIR%%/charsets/iso-8859-5
+%%DATADIR%%/charsets/iso-8859-6
+%%DATADIR%%/charsets/iso-8859-7
+%%DATADIR%%/charsets/iso-8859-8
+%%DATADIR%%/charsets/iso-8859-9
+%%DATADIR%%/charsets/iso-8859-10
+%%DATADIR%%/charsets/iso-8859-13
+%%DATADIR%%/charsets/iso-8859-14
+%%DATADIR%%/charsets/iso-8859-15
+%%DATADIR%%/charsets/utf-8
+%%DATADIR%%/model/deskjet.ppd
+%%DATADIR%%/model/deskjet2.ppd
+%%DATADIR%%/model/dymo.ppd
+%%DATADIR%%/model/epson9.ppd
+%%DATADIR%%/model/epson24.ppd
+%%DATADIR%%/model/laserjet.ppd
+%%DATADIR%%/model/okidata9.ppd
+%%DATADIR%%/model/okidat24.ppd
+%%DATADIR%%/model/stcolor.ppd
+%%DATADIR%%/model/stcolor2.ppd
+%%DATADIR%%/model/stphoto.ppd
+%%DATADIR%%/model/stphoto2.ppd
+%%DATADIR%%/model/zebra.ppd
+%%DATADIR%%/model/zebraep1.ppd
+%%DATADIR%%/model/zebraep2.ppd
+%%DATADIR%%/data/HPGLprolog
+%%DATADIR%%/data/psglyphs
+%%DATADIR%%/data/testprint.ps
+%%DATADIR%%/fonts/Courier
+%%DATADIR%%/fonts/Courier-Bold
+%%DATADIR%%/fonts/Courier-BoldOblique
+%%DATADIR%%/fonts/Courier-Oblique
+%%DATADIR%%/fonts/Symbol
+%%DATADIR%%/templates/add-class.tmpl
+%%DATADIR%%/templates/add-printer.tmpl
+%%DATADIR%%/templates/admin.tmpl
+%%DATADIR%%/templates/choose-device.tmpl
+%%DATADIR%%/templates/choose-make.tmpl
+%%DATADIR%%/templates/choose-model.tmpl
+%%DATADIR%%/templates/choose-serial.tmpl
+%%DATADIR%%/templates/choose-uri.tmpl
+%%DATADIR%%/templates/class-added.tmpl
+%%DATADIR%%/templates/class-confirm.tmpl
+%%DATADIR%%/templates/class-deleted.tmpl
+%%DATADIR%%/templates/class-jobs-header.tmpl
+%%DATADIR%%/templates/class-modified.tmpl
+%%DATADIR%%/templates/classes.tmpl
+%%DATADIR%%/templates/classes-header.tmpl
+%%DATADIR%%/templates/de/add-class.tmpl
+%%DATADIR%%/templates/de/add-printer.tmpl
+%%DATADIR%%/templates/de/admin.tmpl
+%%DATADIR%%/templates/de/choose-device.tmpl
+%%DATADIR%%/templates/de/choose-make.tmpl
+%%DATADIR%%/templates/de/choose-model.tmpl
+%%DATADIR%%/templates/de/choose-serial.tmpl
+%%DATADIR%%/templates/de/choose-uri.tmpl
+%%DATADIR%%/templates/de/class-added.tmpl
+%%DATADIR%%/templates/de/class-confirm.tmpl
+%%DATADIR%%/templates/de/class-deleted.tmpl
+%%DATADIR%%/templates/de/class-jobs-header.tmpl
+%%DATADIR%%/templates/de/class-modified.tmpl
+%%DATADIR%%/templates/de/classes-header.tmpl
+%%DATADIR%%/templates/de/classes.tmpl
+%%DATADIR%%/templates/de/edit-config.tmpl
+%%DATADIR%%/templates/de/error-op.tmpl
+%%DATADIR%%/templates/de/error.tmpl
+%%DATADIR%%/templates/de/header.tmpl
+%%DATADIR%%/templates/de/help-header.tmpl
+%%DATADIR%%/templates/de/help-printable.tmpl
+%%DATADIR%%/templates/de/job-cancel.tmpl
+%%DATADIR%%/templates/de/job-hold.tmpl
+%%DATADIR%%/templates/de/job-move.tmpl
+%%DATADIR%%/templates/de/job-moved.tmpl
+%%DATADIR%%/templates/de/job-release.tmpl
+%%DATADIR%%/templates/de/job-restart.tmpl
+%%DATADIR%%/templates/de/jobs-header.tmpl
+%%DATADIR%%/templates/de/jobs.tmpl
+%%DATADIR%%/templates/de/maintenance.tmpl
+%%DATADIR%%/templates/de/modify-class.tmpl
+%%DATADIR%%/templates/de/modify-printer.tmpl
+%%DATADIR%%/templates/de/option-boolean.tmpl
+%%DATADIR%%/templates/de/option-conflict.tmpl
+%%DATADIR%%/templates/de/option-header.tmpl
+%%DATADIR%%/templates/de/option-pickmany.tmpl
+%%DATADIR%%/templates/de/option-pickone.tmpl
+%%DATADIR%%/templates/de/option-trailer.tmpl
+%%DATADIR%%/templates/de/pager.tmpl
+%%DATADIR%%/templates/de/printer-accept.tmpl
+%%DATADIR%%/templates/de/printer-added.tmpl
+%%DATADIR%%/templates/de/printer-configured.tmpl
+%%DATADIR%%/templates/de/printer-confirm.tmpl
+%%DATADIR%%/templates/de/printer-default.tmpl
+%%DATADIR%%/templates/de/printer-deleted.tmpl
+%%DATADIR%%/templates/de/printer-jobs-header.tmpl
+%%DATADIR%%/templates/de/printer-modified.tmpl
+%%DATADIR%%/templates/de/printer-purge.tmpl
+%%DATADIR%%/templates/de/printer-reject.tmpl
+%%DATADIR%%/templates/de/printer-start.tmpl
+%%DATADIR%%/templates/de/printer-stop.tmpl
+%%DATADIR%%/templates/de/printers-header.tmpl
+%%DATADIR%%/templates/de/printers.tmpl
+%%DATADIR%%/templates/de/restart.tmpl
+%%DATADIR%%/templates/de/samba-export.tmpl
+%%DATADIR%%/templates/de/samba-exported.tmpl
+%%DATADIR%%/templates/de/search.tmpl
+%%DATADIR%%/templates/de/set-printer-options-header.tmpl
+%%DATADIR%%/templates/de/set-printer-options-trailer.tmpl
+%%DATADIR%%/templates/de/test-page.tmpl
+%%DATADIR%%/templates/de/trailer.tmpl
+%%DATADIR%%/templates/de/users.tmpl
+%%DATADIR%%/templates/edit-config.tmpl
+%%DATADIR%%/templates/error.tmpl
+%%DATADIR%%/templates/error-op.tmpl
+%%DATADIR%%/templates/es/add-class.tmpl
+%%DATADIR%%/templates/es/add-printer.tmpl
+%%DATADIR%%/templates/es/admin.tmpl
+%%DATADIR%%/templates/es/choose-device.tmpl
+%%DATADIR%%/templates/es/choose-make.tmpl
+%%DATADIR%%/templates/es/choose-model.tmpl
+%%DATADIR%%/templates/es/choose-serial.tmpl
+%%DATADIR%%/templates/es/choose-uri.tmpl
+%%DATADIR%%/templates/es/class-added.tmpl
+%%DATADIR%%/templates/es/class-confirm.tmpl
+%%DATADIR%%/templates/es/class-deleted.tmpl
+%%DATADIR%%/templates/es/class-jobs-header.tmpl
+%%DATADIR%%/templates/es/class-modified.tmpl
+%%DATADIR%%/templates/es/classes.tmpl
+%%DATADIR%%/templates/es/classes-header.tmpl
+%%DATADIR%%/templates/es/edit-config.tmpl
+%%DATADIR%%/templates/es/error.tmpl
+%%DATADIR%%/templates/es/error-op.tmpl
+%%DATADIR%%/templates/es/header.tmpl
+%%DATADIR%%/templates/es/help-header.tmpl
+%%DATADIR%%/templates/es/help-printable.tmpl
+%%DATADIR%%/templates/es/job-cancel.tmpl
+%%DATADIR%%/templates/es/job-hold.tmpl
+%%DATADIR%%/templates/es/job-move.tmpl
+%%DATADIR%%/templates/es/job-moved.tmpl
+%%DATADIR%%/templates/es/job-release.tmpl
+%%DATADIR%%/templates/es/job-restart.tmpl
+%%DATADIR%%/templates/es/jobs.tmpl
+%%DATADIR%%/templates/es/jobs-header.tmpl
+%%DATADIR%%/templates/es/maintenance.tmpl
+%%DATADIR%%/templates/es/modify-class.tmpl
+%%DATADIR%%/templates/es/modify-printer.tmpl
+%%DATADIR%%/templates/es/norestart.tmpl
+%%DATADIR%%/templates/es/option-boolean.tmpl
+%%DATADIR%%/templates/es/option-conflict.tmpl
+%%DATADIR%%/templates/es/option-header.tmpl
+%%DATADIR%%/templates/es/option-pickmany.tmpl
+%%DATADIR%%/templates/es/option-pickone.tmpl
+%%DATADIR%%/templates/es/option-trailer.tmpl
+%%DATADIR%%/templates/es/pager.tmpl
+%%DATADIR%%/templates/es/printer-accept.tmpl
+%%DATADIR%%/templates/es/printer-added.tmpl
+%%DATADIR%%/templates/es/printer-configured.tmpl
+%%DATADIR%%/templates/es/printer-confirm.tmpl
+%%DATADIR%%/templates/es/printer-default.tmpl
+%%DATADIR%%/templates/es/printer-deleted.tmpl
+%%DATADIR%%/templates/es/printer-jobs-header.tmpl
+%%DATADIR%%/templates/es/printer-modified.tmpl
+%%DATADIR%%/templates/es/printer-purge.tmpl
+%%DATADIR%%/templates/es/printer-reject.tmpl
+%%DATADIR%%/templates/es/printer-start.tmpl
+%%DATADIR%%/templates/es/printer-stop.tmpl
+%%DATADIR%%/templates/es/printers.tmpl
+%%DATADIR%%/templates/es/printers-header.tmpl
+%%DATADIR%%/templates/es/restart.tmpl
+%%DATADIR%%/templates/es/search.tmpl
+%%DATADIR%%/templates/es/samba-export.tmpl
+%%DATADIR%%/templates/es/samba-exported.tmpl
+%%DATADIR%%/templates/es/set-printer-options-header.tmpl
+%%DATADIR%%/templates/es/set-printer-options-trailer.tmpl
+%%DATADIR%%/templates/es/test-page.tmpl
+%%DATADIR%%/templates/es/trailer.tmpl
+%%DATADIR%%/templates/es/users.tmpl
+%%DATADIR%%/templates/et/add-class.tmpl
+%%DATADIR%%/templates/et/add-printer.tmpl
+%%DATADIR%%/templates/et/admin.tmpl
+%%DATADIR%%/templates/et/choose-device.tmpl
+%%DATADIR%%/templates/et/choose-make.tmpl
+%%DATADIR%%/templates/et/choose-model.tmpl
+%%DATADIR%%/templates/et/choose-serial.tmpl
+%%DATADIR%%/templates/et/choose-uri.tmpl
+%%DATADIR%%/templates/et/class-added.tmpl
+%%DATADIR%%/templates/et/class-confirm.tmpl
+%%DATADIR%%/templates/et/class-deleted.tmpl
+%%DATADIR%%/templates/et/class-jobs-header.tmpl
+%%DATADIR%%/templates/et/class-modified.tmpl
+%%DATADIR%%/templates/et/classes-header.tmpl
+%%DATADIR%%/templates/et/classes.tmpl
+%%DATADIR%%/templates/et/edit-config.tmpl
+%%DATADIR%%/templates/et/error-op.tmpl
+%%DATADIR%%/templates/et/error.tmpl
+%%DATADIR%%/templates/et/header.tmpl
+%%DATADIR%%/templates/et/help-header.tmpl
+%%DATADIR%%/templates/et/help-printable.tmpl
+%%DATADIR%%/templates/et/job-cancel.tmpl
+%%DATADIR%%/templates/et/job-hold.tmpl
+%%DATADIR%%/templates/et/job-moved.tmpl
+%%DATADIR%%/templates/et/job-release.tmpl
+%%DATADIR%%/templates/et/job-restart.tmpl
+%%DATADIR%%/templates/et/jobs-header.tmpl
+%%DATADIR%%/templates/et/jobs.tmpl
+%%DATADIR%%/templates/et/maintenance.tmpl
+%%DATADIR%%/templates/et/modify-class.tmpl
+%%DATADIR%%/templates/et/modify-printer.tmpl
+%%DATADIR%%/templates/et/norestart.tmpl
+%%DATADIR%%/templates/et/option-boolean.tmpl
+%%DATADIR%%/templates/et/option-conflict.tmpl
+%%DATADIR%%/templates/et/option-header.tmpl
+%%DATADIR%%/templates/et/option-pickmany.tmpl
+%%DATADIR%%/templates/et/option-pickone.tmpl
+%%DATADIR%%/templates/et/option-trailer.tmpl
+%%DATADIR%%/templates/et/pager.tmpl
+%%DATADIR%%/templates/et/printer-accept.tmpl
+%%DATADIR%%/templates/et/printer-added.tmpl
+%%DATADIR%%/templates/et/printer-configured.tmpl
+%%DATADIR%%/templates/et/printer-confirm.tmpl
+%%DATADIR%%/templates/et/printer-default.tmpl
+%%DATADIR%%/templates/et/printer-deleted.tmpl
+%%DATADIR%%/templates/et/printer-jobs-header.tmpl
+%%DATADIR%%/templates/et/printer-modified.tmpl
+%%DATADIR%%/templates/et/printer-purge.tmpl
+%%DATADIR%%/templates/et/printer-reject.tmpl
+%%DATADIR%%/templates/et/printer-start.tmpl
+%%DATADIR%%/templates/et/printer-stop.tmpl
+%%DATADIR%%/templates/et/printers-header.tmpl
+%%DATADIR%%/templates/et/printers.tmpl
+%%DATADIR%%/templates/et/restart.tmpl
+%%DATADIR%%/templates/et/samba-export.tmpl
+%%DATADIR%%/templates/et/samba-exported.tmpl
+%%DATADIR%%/templates/et/search.tmpl
+%%DATADIR%%/templates/et/set-printer-options-header.tmpl
+%%DATADIR%%/templates/et/set-printer-options-trailer.tmpl
+%%DATADIR%%/templates/et/test-page.tmpl
+%%DATADIR%%/templates/et/trailer.tmpl
+%%DATADIR%%/templates/et/users.tmpl
+%%DATADIR%%/templates/header.tmpl
+%%DATADIR%%/templates/help-header.tmpl
+%%DATADIR%%/templates/help-printable.tmpl
+%%DATADIR%%/templates/it/add-class.tmpl
+%%DATADIR%%/templates/it/add-printer.tmpl
+%%DATADIR%%/templates/it/admin.tmpl
+%%DATADIR%%/templates/it/choose-device.tmpl
+%%DATADIR%%/templates/it/choose-make.tmpl
+%%DATADIR%%/templates/it/choose-model.tmpl
+%%DATADIR%%/templates/it/choose-serial.tmpl
+%%DATADIR%%/templates/it/choose-uri.tmpl
+%%DATADIR%%/templates/it/class-added.tmpl
+%%DATADIR%%/templates/it/class-confirm.tmpl
+%%DATADIR%%/templates/it/class-deleted.tmpl
+%%DATADIR%%/templates/it/class-jobs-header.tmpl
+%%DATADIR%%/templates/it/class-modified.tmpl
+%%DATADIR%%/templates/it/classes-header.tmpl
+%%DATADIR%%/templates/it/classes.tmpl
+%%DATADIR%%/templates/it/edit-config.tmpl
+%%DATADIR%%/templates/it/error-op.tmpl
+%%DATADIR%%/templates/it/error.tmpl
+%%DATADIR%%/templates/it/header.tmpl
+%%DATADIR%%/templates/it/help-header.tmpl
+%%DATADIR%%/templates/it/help-printable.tmpl
+%%DATADIR%%/templates/it/job-cancel.tmpl
+%%DATADIR%%/templates/it/job-hold.tmpl
+%%DATADIR%%/templates/it/job-move.tmpl
+%%DATADIR%%/templates/it/job-moved.tmpl
+%%DATADIR%%/templates/it/job-release.tmpl
+%%DATADIR%%/templates/it/job-restart.tmpl
+%%DATADIR%%/templates/it/jobs-header.tmpl
+%%DATADIR%%/templates/it/jobs.tmpl
+%%DATADIR%%/templates/it/maintenance.tmpl
+%%DATADIR%%/templates/it/modify-class.tmpl
+%%DATADIR%%/templates/it/modify-printer.tmpl
+%%DATADIR%%/templates/it/norestart.tmpl
+%%DATADIR%%/templates/it/option-boolean.tmpl
+%%DATADIR%%/templates/it/option-conflict.tmpl
+%%DATADIR%%/templates/it/option-header.tmpl
+%%DATADIR%%/templates/it/option-pickmany.tmpl
+%%DATADIR%%/templates/it/option-pickone.tmpl
+%%DATADIR%%/templates/it/option-trailer.tmpl
+%%DATADIR%%/templates/it/pager.tmpl
+%%DATADIR%%/templates/it/printer-accept.tmpl
+%%DATADIR%%/templates/it/printer-added.tmpl
+%%DATADIR%%/templates/it/printer-configured.tmpl
+%%DATADIR%%/templates/it/printer-confirm.tmpl
+%%DATADIR%%/templates/it/printer-default.tmpl
+%%DATADIR%%/templates/it/printer-deleted.tmpl
+%%DATADIR%%/templates/it/printer-jobs-header.tmpl
+%%DATADIR%%/templates/it/printer-modified.tmpl
+%%DATADIR%%/templates/it/printer-purge.tmpl
+%%DATADIR%%/templates/it/printer-reject.tmpl
+%%DATADIR%%/templates/it/printer-start.tmpl
+%%DATADIR%%/templates/it/printer-stop.tmpl
+%%DATADIR%%/templates/it/printers-header.tmpl
+%%DATADIR%%/templates/it/printers.tmpl
+%%DATADIR%%/templates/it/restart.tmpl
+%%DATADIR%%/templates/it/samba-export.tmpl
+%%DATADIR%%/templates/it/samba-exported.tmpl
+%%DATADIR%%/templates/it/search.tmpl
+%%DATADIR%%/templates/it/set-printer-options-header.tmpl
+%%DATADIR%%/templates/it/set-printer-options-trailer.tmpl
+%%DATADIR%%/templates/it/test-page.tmpl
+%%DATADIR%%/templates/it/trailer.tmpl
+%%DATADIR%%/templates/it/users.tmpl
+%%DATADIR%%/templates/job-cancel.tmpl
+%%DATADIR%%/templates/job-hold.tmpl
+%%DATADIR%%/templates/job-move.tmpl
+%%DATADIR%%/templates/job-moved.tmpl
+%%DATADIR%%/templates/job-release.tmpl
+%%DATADIR%%/templates/job-restart.tmpl
+%%DATADIR%%/templates/jobs.tmpl
+%%DATADIR%%/templates/jobs-header.tmpl
+%%DATADIR%%/templates/maintenance.tmpl
+%%DATADIR%%/templates/modify-class.tmpl
+%%DATADIR%%/templates/modify-printer.tmpl
+%%DATADIR%%/templates/norestart.tmpl
+%%DATADIR%%/templates/option-boolean.tmpl
+%%DATADIR%%/templates/option-conflict.tmpl
+%%DATADIR%%/templates/option-header.tmpl
+%%DATADIR%%/templates/option-pickmany.tmpl
+%%DATADIR%%/templates/option-pickone.tmpl
+%%DATADIR%%/templates/option-trailer.tmpl
+%%DATADIR%%/templates/pager.tmpl
+%%DATADIR%%/templates/printer-accept.tmpl
+%%DATADIR%%/templates/printer-added.tmpl
+%%DATADIR%%/templates/printer-configured.tmpl
+%%DATADIR%%/templates/printer-confirm.tmpl
+%%DATADIR%%/templates/printer-default.tmpl
+%%DATADIR%%/templates/printer-deleted.tmpl
+%%DATADIR%%/templates/printer-jobs-header.tmpl
+%%DATADIR%%/templates/printer-modified.tmpl
+%%DATADIR%%/templates/printer-purge.tmpl
+%%DATADIR%%/templates/printer-reject.tmpl
+%%DATADIR%%/templates/printer-start.tmpl
+%%DATADIR%%/templates/printer-stop.tmpl
+%%DATADIR%%/templates/printers.tmpl
+%%DATADIR%%/templates/printers-header.tmpl
+%%DATADIR%%/templates/restart.tmpl
+%%DATADIR%%/templates/search.tmpl
+%%DATADIR%%/templates/samba-export.tmpl
+%%DATADIR%%/templates/samba-exported.tmpl
+%%DATADIR%%/templates/set-printer-options-header.tmpl
+%%DATADIR%%/templates/set-printer-options-trailer.tmpl
+%%DATADIR%%/templates/test-page.tmpl
+%%DATADIR%%/templates/trailer.tmpl
+%%DATADIR%%/templates/users.tmpl
+%%DATADIR%%/templates/ja/add-class.tmpl
+%%DATADIR%%/templates/ja/add-printer.tmpl
+%%DATADIR%%/templates/ja/admin.tmpl
+%%DATADIR%%/templates/ja/choose-device.tmpl
+%%DATADIR%%/templates/ja/choose-make.tmpl
+%%DATADIR%%/templates/ja/choose-model.tmpl
+%%DATADIR%%/templates/ja/choose-serial.tmpl
+%%DATADIR%%/templates/ja/choose-uri.tmpl
+%%DATADIR%%/templates/ja/class-added.tmpl
+%%DATADIR%%/templates/ja/class-confirm.tmpl
+%%DATADIR%%/templates/ja/class-deleted.tmpl
+%%DATADIR%%/templates/ja/class-jobs-header.tmpl
+%%DATADIR%%/templates/ja/class-modified.tmpl
+%%DATADIR%%/templates/ja/classes.tmpl
+%%DATADIR%%/templates/ja/classes-header.tmpl
+%%DATADIR%%/templates/ja/edit-config.tmpl
+%%DATADIR%%/templates/ja/error.tmpl
+%%DATADIR%%/templates/ja/error-op.tmpl
+%%DATADIR%%/templates/ja/header.tmpl
+%%DATADIR%%/templates/ja/help-header.tmpl
+%%DATADIR%%/templates/ja/job-cancel.tmpl
+%%DATADIR%%/templates/ja/job-hold.tmpl
+%%DATADIR%%/templates/ja/job-move.tmpl
+%%DATADIR%%/templates/ja/job-moved.tmpl
+%%DATADIR%%/templates/ja/job-release.tmpl
+%%DATADIR%%/templates/ja/job-restart.tmpl
+%%DATADIR%%/templates/ja/jobs.tmpl
+%%DATADIR%%/templates/ja/jobs-header.tmpl
+%%DATADIR%%/templates/ja/maintenance.tmpl
+%%DATADIR%%/templates/ja/modify-class.tmpl
+%%DATADIR%%/templates/ja/modify-printer.tmpl
+%%DATADIR%%/templates/ja/option-conflict.tmpl
+%%DATADIR%%/templates/ja/option-trailer.tmpl
+%%DATADIR%%/templates/ja/pager.tmpl
+%%DATADIR%%/templates/ja/printer-accept.tmpl
+%%DATADIR%%/templates/ja/printer-added.tmpl
+%%DATADIR%%/templates/ja/printer-configured.tmpl
+%%DATADIR%%/templates/ja/printer-confirm.tmpl
+%%DATADIR%%/templates/ja/printer-default.tmpl
+%%DATADIR%%/templates/ja/printer-deleted.tmpl
+%%DATADIR%%/templates/ja/printer-jobs-header.tmpl
+%%DATADIR%%/templates/ja/printer-modified.tmpl
+%%DATADIR%%/templates/ja/printer-purge.tmpl
+%%DATADIR%%/templates/ja/printer-reject.tmpl
+%%DATADIR%%/templates/ja/printer-start.tmpl
+%%DATADIR%%/templates/ja/printer-stop.tmpl
+%%DATADIR%%/templates/ja/printers.tmpl
+%%DATADIR%%/templates/ja/printers-header.tmpl
+%%DATADIR%%/templates/ja/restart.tmpl
+%%DATADIR%%/templates/ja/samba-export.tmpl
+%%DATADIR%%/templates/ja/samba-exported.tmpl
+%%DATADIR%%/templates/ja/search.tmpl
+%%DATADIR%%/templates/ja/test-page.tmpl
+%%DATADIR%%/templates/ja/users.tmpl
+%%DATADIR%%/templates/pl/add-class.tmpl
+%%DATADIR%%/templates/pl/add-printer.tmpl
+%%DATADIR%%/templates/pl/admin.tmpl
+%%DATADIR%%/templates/pl/choose-device.tmpl
+%%DATADIR%%/templates/pl/choose-make.tmpl
+%%DATADIR%%/templates/pl/choose-model.tmpl
+%%DATADIR%%/templates/pl/choose-serial.tmpl
+%%DATADIR%%/templates/pl/choose-uri.tmpl
+%%DATADIR%%/templates/pl/class-added.tmpl
+%%DATADIR%%/templates/pl/class-confirm.tmpl
+%%DATADIR%%/templates/pl/class-deleted.tmpl
+%%DATADIR%%/templates/pl/class-jobs-header.tmpl
+%%DATADIR%%/templates/pl/class-modified.tmpl
+%%DATADIR%%/templates/pl/classes.tmpl
+%%DATADIR%%/templates/pl/classes-header.tmpl
+%%DATADIR%%/templates/pl/edit-config.tmpl
+%%DATADIR%%/templates/pl/error.tmpl
+%%DATADIR%%/templates/pl/error-op.tmpl
+%%DATADIR%%/templates/pl/header.tmpl
+%%DATADIR%%/templates/pl/help-header.tmpl
+%%DATADIR%%/templates/pl/help-printable.tmpl
+%%DATADIR%%/templates/pl/job-cancel.tmpl
+%%DATADIR%%/templates/pl/job-hold.tmpl
+%%DATADIR%%/templates/pl/job-move.tmpl
+%%DATADIR%%/templates/pl/job-moved.tmpl
+%%DATADIR%%/templates/pl/job-release.tmpl
+%%DATADIR%%/templates/pl/job-restart.tmpl
+%%DATADIR%%/templates/pl/jobs.tmpl
+%%DATADIR%%/templates/pl/jobs-header.tmpl
+%%DATADIR%%/templates/pl/maintenance.tmpl
+%%DATADIR%%/templates/pl/modify-class.tmpl
+%%DATADIR%%/templates/pl/modify-printer.tmpl
+%%DATADIR%%/templates/pl/option-boolean.tmpl
+%%DATADIR%%/templates/pl/option-conflict.tmpl
+%%DATADIR%%/templates/pl/option-header.tmpl
+%%DATADIR%%/templates/pl/option-pickmany.tmpl
+%%DATADIR%%/templates/pl/option-pickone.tmpl
+%%DATADIR%%/templates/pl/option-trailer.tmpl
+%%DATADIR%%/templates/pl/pager.tmpl
+%%DATADIR%%/templates/pl/printer-accept.tmpl
+%%DATADIR%%/templates/pl/printer-added.tmpl
+%%DATADIR%%/templates/pl/printer-configured.tmpl
+%%DATADIR%%/templates/pl/printer-confirm.tmpl
+%%DATADIR%%/templates/pl/printer-default.tmpl
+%%DATADIR%%/templates/pl/printer-deleted.tmpl
+%%DATADIR%%/templates/pl/printer-jobs-header.tmpl
+%%DATADIR%%/templates/pl/printer-modified.tmpl
+%%DATADIR%%/templates/pl/printer-purge.tmpl
+%%DATADIR%%/templates/pl/printer-reject.tmpl
+%%DATADIR%%/templates/pl/printer-start.tmpl
+%%DATADIR%%/templates/pl/printer-stop.tmpl
+%%DATADIR%%/templates/pl/printers.tmpl
+%%DATADIR%%/templates/pl/printers-header.tmpl
+%%DATADIR%%/templates/pl/restart.tmpl
+%%DATADIR%%/templates/pl/search.tmpl
+%%DATADIR%%/templates/pl/samba-export.tmpl
+%%DATADIR%%/templates/pl/samba-exported.tmpl
+%%DATADIR%%/templates/pl/set-printer-options-header.tmpl
+%%DATADIR%%/templates/pl/set-printer-options-trailer.tmpl
+%%DATADIR%%/templates/pl/test-page.tmpl
+%%DATADIR%%/templates/pl/trailer.tmpl
+%%DATADIR%%/templates/pl/users.tmpl
+%%DATADIR%%/templates/sv/add-class.tmpl
+%%DATADIR%%/templates/sv/add-printer.tmpl
+%%DATADIR%%/templates/sv/admin.tmpl
+%%DATADIR%%/templates/sv/choose-device.tmpl
+%%DATADIR%%/templates/sv/choose-make.tmpl
+%%DATADIR%%/templates/sv/choose-model.tmpl
+%%DATADIR%%/templates/sv/choose-serial.tmpl
+%%DATADIR%%/templates/sv/choose-uri.tmpl
+%%DATADIR%%/templates/sv/class-added.tmpl
+%%DATADIR%%/templates/sv/class-confirm.tmpl
+%%DATADIR%%/templates/sv/class-deleted.tmpl
+%%DATADIR%%/templates/sv/class-jobs-header.tmpl
+%%DATADIR%%/templates/sv/class-modified.tmpl
+%%DATADIR%%/templates/sv/classes.tmpl
+%%DATADIR%%/templates/sv/classes-header.tmpl
+%%DATADIR%%/templates/sv/edit-config.tmpl
+%%DATADIR%%/templates/sv/error.tmpl
+%%DATADIR%%/templates/sv/error-op.tmpl
+%%DATADIR%%/templates/sv/header.tmpl
+%%DATADIR%%/templates/sv/help-header.tmpl
+%%DATADIR%%/templates/sv/help-printable.tmpl
+%%DATADIR%%/templates/sv/job-cancel.tmpl
+%%DATADIR%%/templates/sv/job-hold.tmpl
+%%DATADIR%%/templates/sv/job-move.tmpl
+%%DATADIR%%/templates/sv/job-moved.tmpl
+%%DATADIR%%/templates/sv/job-release.tmpl
+%%DATADIR%%/templates/sv/job-restart.tmpl
+%%DATADIR%%/templates/sv/jobs.tmpl
+%%DATADIR%%/templates/sv/jobs-header.tmpl
+%%DATADIR%%/templates/sv/maintenance.tmpl
+%%DATADIR%%/templates/sv/modify-class.tmpl
+%%DATADIR%%/templates/sv/modify-printer.tmpl
+%%DATADIR%%/templates/sv/option-boolean.tmpl
+%%DATADIR%%/templates/sv/option-conflict.tmpl
+%%DATADIR%%/templates/sv/option-header.tmpl
+%%DATADIR%%/templates/sv/option-pickmany.tmpl
+%%DATADIR%%/templates/sv/option-pickone.tmpl
+%%DATADIR%%/templates/sv/option-trailer.tmpl
+%%DATADIR%%/templates/sv/pager.tmpl
+%%DATADIR%%/templates/sv/printer-accept.tmpl
+%%DATADIR%%/templates/sv/printer-added.tmpl
+%%DATADIR%%/templates/sv/printer-configured.tmpl
+%%DATADIR%%/templates/sv/printer-confirm.tmpl
+%%DATADIR%%/templates/sv/printer-default.tmpl
+%%DATADIR%%/templates/sv/printer-deleted.tmpl
+%%DATADIR%%/templates/sv/printer-jobs-header.tmpl
+%%DATADIR%%/templates/sv/printer-modified.tmpl
+%%DATADIR%%/templates/sv/printer-purge.tmpl
+%%DATADIR%%/templates/sv/printer-reject.tmpl
+%%DATADIR%%/templates/sv/printer-start.tmpl
+%%DATADIR%%/templates/sv/printer-stop.tmpl
+%%DATADIR%%/templates/sv/printers.tmpl
+%%DATADIR%%/templates/sv/printers-header.tmpl
+%%DATADIR%%/templates/sv/restart.tmpl
+%%DATADIR%%/templates/sv/search.tmpl
+%%DATADIR%%/templates/sv/samba-export.tmpl
+%%DATADIR%%/templates/sv/samba-exported.tmpl
+%%DATADIR%%/templates/sv/set-printer-options-header.tmpl
+%%DATADIR%%/templates/sv/set-printer-options-trailer.tmpl
+%%DATADIR%%/templates/sv/test-page.tmpl
+%%DATADIR%%/templates/sv/trailer.tmpl
+%%DATADIR%%/templates/sv/users.tmpl
etc/cups/cupsd.conf.default
libexec/cups/backend/ipp
libexec/cups/backend/lpd
@@ -952,44 +1198,61 @@ sbin/cupsaddsmb
sbin/lpadmin
sbin/lpinfo
sbin/lpmove
+@dirrmtry share/applications
+@dirrmtry share/icons/hicolor/16x16/apps
+@dirrmtry share/icons/hicolor/16x16
+@dirrmtry share/icons/hicolor/32x32/apps
+@dirrmtry share/icons/hicolor/32x32
+@dirrmtry share/icons/hicolor/64x64/apps
+@dirrmtry share/icons/hicolor/64x64
+@dirrmtry share/icons/hicolor/128x128/apps
+@dirrmtry share/icons/hicolor/128x128
+@dirrmtry share/icons/hicolor
+@dirrmtry share/icons
@dirrmtry share/locale/pl
-@dirrm %%DOCSDIR%%/sv/images
-@dirrm %%DOCSDIR%%/sv
-@dirrm %%DOCSDIR%%/pl/images
-@dirrm %%DOCSDIR%%/pl
+@dirrm %%DOCSDIR%%/de/images
+@dirrm %%DOCSDIR%%/de
+@dirrm %%DOCSDIR%%/es/images
+@dirrm %%DOCSDIR%%/es
+@dirrm %%DOCSDIR%%/et/images
+@dirrm %%DOCSDIR%%/et
+@dirrm %%DOCSDIR%%/it/images
+@dirrm %%DOCSDIR%%/it
@dirrm %%DOCSDIR%%/ja/images
@dirrm %%DOCSDIR%%/ja
+@dirrm %%DOCSDIR%%/pl/images
+@dirrm %%DOCSDIR%%/pl
+@dirrm %%DOCSDIR%%/sv/images
+@dirrm %%DOCSDIR%%/sv
@dirrm %%DOCSDIR%%/images
@dirrm %%DOCSDIR%%/help
-@dirrm %%DOCSDIR%%/es/images
-@dirrm %%DOCSDIR%%/es
-@dirrm %%DOCSDIR%%/de/images
-@dirrm %%DOCSDIR%%/de
@dirrm %%DOCSDIR%%
-@dirrm share/cups/templates/sv
-@dirrm share/cups/templates/pl
-@dirrm share/cups/templates/ja
-@dirrm share/cups/templates/es
-@dirrm share/cups/templates/de
-@dirrm share/cups/templates
-@exec mkdir -p share/cups/profiles
-@dirrm share/cups/profiles
-@dirrm share/cups/model
-@dirrm share/cups/fonts
-@dirrm share/cups/data
-@dirrm share/cups/charsets
-@dirrm share/cups/charmaps
-@dirrm share/cups/banners
-@dirrm share/cups
+@dirrm %%DATADIR%%/templates/de
+@dirrm %%DATADIR%%/templates/es
+@dirrm %%DATADIR%%/templates/et
+@dirrm %%DATADIR%%/templates/it
+@dirrm %%DATADIR%%/templates/ja
+@dirrm %%DATADIR%%/templates/pl
+@dirrm %%DATADIR%%/templates/sv
+@dirrm %%DATADIR%%/templates
+@exec mkdir -p %%DATADIR%%/profiles
+@dirrm %%DATADIR%%/profiles
+@dirrmtry %%DATADIR%%/model
+@dirrm %%DATADIR%%/fonts
+@dirrm %%DATADIR%%/data
+@dirrm %%DATADIR%%/charsets
+@dirrm %%DATADIR%%/charmaps
+@dirrm %%DATADIR%%/banners
+@dirrmtry %%DATADIR%%
@dirrm libexec/cups/notifier
@dirrm libexec/cups/monitor
-@dirrm libexec/cups/filter
+@dirrmtry libexec/cups/filter
@exec mkdir -p libexec/cups/driver
@dirrm libexec/cups/driver
@dirrm libexec/cups/daemon
@dirrm libexec/cups/cgi-bin
-@dirrm libexec/cups/backend
-@dirrm libexec/cups
+@dirrmtry libexec/cups/backend
+@dirrmtry libexec/cups
%%PHP%%@dirrmtry lib/php/%%PHP_EXT_DIR%%
@dirrm include/cups
@dirrmtry etc/cups/interfaces
diff --git a/print/cups/Makefile b/print/cups/Makefile
index c75e2117f035..73be38a2dfcd 100644
--- a/print/cups/Makefile
+++ b/print/cups/Makefile
@@ -8,26 +8,21 @@
#
PORTNAME= cups
-PORTVERSION= 1.2.2
+PORTVERSION= 1.2.7
CATEGORIES= print
MASTER_SITES= # empty
DISTFILES= # empty
-EXTRACT_ONLY= # empty
MAINTAINER= asa@agava.com
-COMMENT= The Common UNIX Printing System: Metaport to install complete system
+COMMENT= Common UNIX Printing System: Metaport to install complete system
+RUN_DEPENDS= espgs:${PORTSDIR}/print/cups-pstoraster \
+ cupsd:${PORTSDIR}/print/cups-base
.if make(package)
DEPENDS_TARGET="package"
.endif # make(package)
-LIB_DEPENDS+= cups.2:${PORTSDIR}/print/cups-base
-RUN_DEPENDS+= espgs:${PORTSDIR}/print/cups-pstoraster
-
-NO_BUILD= true
-
-do-build:
-
-do-install:
+NO_BUILD= yes
+do-install: # empty
.include <bsd.port.mk>