mirror of
https://codeberg.org/Toasterson/ips.git
synced 2026-04-10 21:30:41 +00:00
add sample pakaging data from oi-userland
This commit is contained in:
parent
cba2a122f1
commit
463c69ae10
20 changed files with 5006 additions and 0 deletions
96
sample_data/pkgs/cups/Makefile
Normal file
96
sample_data/pkgs/cups/Makefile
Normal file
|
|
@ -0,0 +1,96 @@
|
||||||
|
#
|
||||||
|
# CDDL HEADER START
|
||||||
|
#
|
||||||
|
# The contents of this file are subject to the terms of the
|
||||||
|
# Common Development and Distribution License (the "License").
|
||||||
|
# You may not use this file except in compliance with the License.
|
||||||
|
#
|
||||||
|
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
|
||||||
|
# or http://www.opensolaris.org/os/licensing.
|
||||||
|
# See the License for the specific language governing permissions
|
||||||
|
# and limitations under the License.
|
||||||
|
#
|
||||||
|
# When distributing Covered Code, include this CDDL HEADER in each
|
||||||
|
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
|
||||||
|
# If applicable, add the following below this CDDL HEADER, with the
|
||||||
|
# fields enclosed by brackets "[]" replaced with your own identifying
|
||||||
|
# information: Portions Copyright [yyyy] [name of copyright owner]
|
||||||
|
#
|
||||||
|
# CDDL HEADER END
|
||||||
|
#
|
||||||
|
|
||||||
|
#
|
||||||
|
# Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||||
|
#
|
||||||
|
include ../../../make-rules/shared-macros.mk
|
||||||
|
|
||||||
|
COMPONENT_NAME= cups
|
||||||
|
COMPONENT_VERSION= 2.3.3
|
||||||
|
COMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
|
||||||
|
COMPONENT_PROJECT_URL= http://www.cups.org/
|
||||||
|
COMPONENT_ARCHIVE= $(COMPONENT_SRC)-source.tar.gz
|
||||||
|
COMPONENT_ARCHIVE_HASH= sha256:261fd948bce8647b6d5cb2a1784f0c24cc52b5c4e827b71d726020bcc502f3ee
|
||||||
|
COMPONENT_ARCHIVE_URL= https://github.com/apple/cups/releases/download/v$(COMPONENT_VERSION)/$(COMPONENT_ARCHIVE)
|
||||||
|
COMPONENT_BUGDB= utility/cups
|
||||||
|
|
||||||
|
include $(WS_MAKE_RULES)/common.mk
|
||||||
|
|
||||||
|
BUILD_BITS= 64
|
||||||
|
|
||||||
|
# don't use LD_Z_IGNORE: causes linker problems
|
||||||
|
LD_Z_IGNORE=
|
||||||
|
|
||||||
|
LDFLAGS += -lsocket
|
||||||
|
|
||||||
|
CONFIGURE_ENV += DSOFLAGS="$(LDFLAGS)"
|
||||||
|
CONFIGURE_ENV += LDFLAGS="$(LDFLAGS)"
|
||||||
|
COMPONENT_BUILD_ENV += LDFLAGS="$(LDFLAGS)"
|
||||||
|
|
||||||
|
CONFIGURE_OPTIONS += --prefix=/usr
|
||||||
|
CONFIGURE_OPTIONS += --mandir=/usr/share/man
|
||||||
|
CONFIGURE_OPTIONS += --localedir=$(USRSHARELOCALEDIR)
|
||||||
|
CONFIGURE_OPTIONS += --sysconfdir=$(ETCDIR)
|
||||||
|
CONFIGURE_OPTIONS += --localstatedir=/var
|
||||||
|
CONFIGURE_OPTIONS += --with-fontpath=/usr/openwin/lib
|
||||||
|
CONFIGURE_OPTIONS += --with-logdir=/var/log/cups
|
||||||
|
CONFIGURE_OPTIONS += --with-domainsocket=/var/run/cups-socket
|
||||||
|
CONFIGURE_OPTIONS += --with-smfmanifestdir=/lib/svc/manifest/application
|
||||||
|
CONFIGURE_OPTIONS += --with-printcap=/etc/printers.conf
|
||||||
|
CONFIGURE_OPTIONS += --with-cups-user=lp
|
||||||
|
CONFIGURE_OPTIONS += --with-cups-group=lp
|
||||||
|
CONFIGURE_OPTIONS += --disable-systemd
|
||||||
|
CONFIGURE_OPTIONS += --disable-static
|
||||||
|
CONFIGURE_OPTIONS += --disable-gnutls
|
||||||
|
CONFIGURE_OPTIONS += --enable-openssl
|
||||||
|
CONFIGURE_OPTIONS += --enable-dbus
|
||||||
|
CONFIGURE_OPTIONS += --enable-threads
|
||||||
|
CONFIGURE_OPTIONS += --with-archflags="$(CC_BITS)"
|
||||||
|
|
||||||
|
$(BUILD_DIR)/%/.installed: ENV += DSTROOT="$(PROTO_DIR)"
|
||||||
|
|
||||||
|
COMPONENT_PRE_CONFIGURE_ACTION = \
|
||||||
|
$(CLONEY) $(SOURCE_DIR) $(@D) ; \
|
||||||
|
find $(@D) -name '*.in' | sed -e 's/.in$$//' | xargs $(RM) ; \
|
||||||
|
( cd $(SOURCE_DIR) ; autoconf -f )
|
||||||
|
|
||||||
|
# Build dependencies
|
||||||
|
REQUIRED_PACKAGES += image/library/libpng16
|
||||||
|
REQUIRED_PACKAGES += image/library/libtiff
|
||||||
|
REQUIRED_PACKAGES += service/network/dns/mdns
|
||||||
|
REQUIRED_PACKAGES += service/network/slp
|
||||||
|
|
||||||
|
# Auto-generated dependencies
|
||||||
|
REQUIRED_PACKAGES += SUNWcs
|
||||||
|
REQUIRED_PACKAGES += library/print/cups-libs
|
||||||
|
REQUIRED_PACKAGES += library/security/openssl
|
||||||
|
REQUIRED_PACKAGES += library/zlib
|
||||||
|
REQUIRED_PACKAGES += runtime/perl-522
|
||||||
|
REQUIRED_PACKAGES += runtime/perl-524
|
||||||
|
REQUIRED_PACKAGES += service/security/kerberos-5
|
||||||
|
REQUIRED_PACKAGES += system/library
|
||||||
|
REQUIRED_PACKAGES += $(GXX_RUNTIME_PKG)
|
||||||
|
REQUIRED_PACKAGES += $(GCC_RUNTIME_PKG)
|
||||||
|
REQUIRED_PACKAGES += system/library/libdbus
|
||||||
|
REQUIRED_PACKAGES += system/library/math
|
||||||
|
REQUIRED_PACKAGES += system/library/security/gss
|
||||||
|
REQUIRED_PACKAGES += system/network/avahi
|
||||||
20
sample_data/pkgs/cups/Solaris/ManageCUPS.html
Normal file
20
sample_data/pkgs/cups/Solaris/ManageCUPS.html
Normal file
|
|
@ -0,0 +1,20 @@
|
||||||
|
<HTML>
|
||||||
|
<HEAD>
|
||||||
|
<!--
|
||||||
|
Copyright (c) 2008, 2011, Oracle and/or its affiliates. All rights reserved.
|
||||||
|
-->
|
||||||
|
<!--
|
||||||
|
META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"
|
||||||
|
-->
|
||||||
|
<!--
|
||||||
|
META NAME="GENERATOR" CONTENT="Mozilla/4.02 [en] (X11; U; SunOS 5.6 sun4u) [Netscape]"
|
||||||
|
-->
|
||||||
|
</HEAD>
|
||||||
|
<BODY>
|
||||||
|
When the Manage CUPS Authorization is in the Authorizations Included column, it
|
||||||
|
grants permission to enable, disable or restart the CUPS Printing Services.
|
||||||
|
<p>
|
||||||
|
If the Manage CUPS Authorization is grayed, then you are not entitled to Add or Remove this authorization.
|
||||||
|
<BR>
|
||||||
|
</BODY>
|
||||||
|
</HTML>
|
||||||
1
sample_data/pkgs/cups/Solaris/auth_attr
Normal file
1
sample_data/pkgs/cups/Solaris/auth_attr
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
solaris.smf.manage.cups:::Manage CUPS service states::help=ManageCUPS.html
|
||||||
30
sample_data/pkgs/cups/Solaris/desktop-print-management
Normal file
30
sample_data/pkgs/cups/Solaris/desktop-print-management
Normal file
|
|
@ -0,0 +1,30 @@
|
||||||
|
#! /usr/bin/sh
|
||||||
|
#
|
||||||
|
# CDDL HEADER START
|
||||||
|
#
|
||||||
|
# The contents of this file are subject to the terms of the
|
||||||
|
# Common Development and Distribution License (the "License").
|
||||||
|
# You may not use this file except in compliance with the License.
|
||||||
|
#
|
||||||
|
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
|
||||||
|
# or http://www.opensolaris.org/os/licensing.
|
||||||
|
# See the License for the specific language governing permissions
|
||||||
|
# and limitations under the License.
|
||||||
|
#
|
||||||
|
# When distributing Covered Code, include this CDDL HEADER in each
|
||||||
|
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
|
||||||
|
# If applicable, add the following below this CDDL HEADER, with the
|
||||||
|
# fields enclosed by brackets "[]" replaced with your own identifying
|
||||||
|
# information: Portions Copyright [yyyy] [name of copyright owner]
|
||||||
|
#
|
||||||
|
# CDDL HEADER END
|
||||||
|
#
|
||||||
|
|
||||||
|
#
|
||||||
|
# Copyright (c) 2008, 2011, Oracle and/or its affiliates. All rights reserved.
|
||||||
|
#
|
||||||
|
|
||||||
|
# For the time being, this will launch a browser pointing to the
|
||||||
|
# CUPS Web interface.
|
||||||
|
exec /usr/bin/system-config-printer
|
||||||
|
exec gnome-open http://localhost:631/admin/
|
||||||
|
|
@ -0,0 +1,29 @@
|
||||||
|
#! /usr/bin/sh
|
||||||
|
#
|
||||||
|
# CDDL HEADER START
|
||||||
|
#
|
||||||
|
# The contents of this file are subject to the terms of the
|
||||||
|
# Common Development and Distribution License (the "License").
|
||||||
|
# You may not use this file except in compliance with the License.
|
||||||
|
#
|
||||||
|
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
|
||||||
|
# or http://www.opensolaris.org/os/licensing.
|
||||||
|
# See the License for the specific language governing permissions
|
||||||
|
# and limitations under the License.
|
||||||
|
#
|
||||||
|
# When distributing Covered Code, include this CDDL HEADER in each
|
||||||
|
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
|
||||||
|
# If applicable, add the following below this CDDL HEADER, with the
|
||||||
|
# fields enclosed by brackets "[]" replaced with your own identifying
|
||||||
|
# information: Portions Copyright [yyyy] [name of copyright owner]
|
||||||
|
#
|
||||||
|
# CDDL HEADER END
|
||||||
|
#
|
||||||
|
|
||||||
|
#
|
||||||
|
# Copyright (c) 2008, 2011, Oracle and/or its affiliates. All rights reserved.
|
||||||
|
#
|
||||||
|
|
||||||
|
# There is no applet to start at this time, exit gracefully
|
||||||
|
exec /usr/lib/system-config-printer/system-config-printer-applet
|
||||||
|
exit 0
|
||||||
76
sample_data/pkgs/cups/Solaris/print-service-selector
Executable file
76
sample_data/pkgs/cups/Solaris/print-service-selector
Executable file
|
|
@ -0,0 +1,76 @@
|
||||||
|
#!/bin/ksh
|
||||||
|
#
|
||||||
|
# CDDL HEADER START
|
||||||
|
#
|
||||||
|
# The contents of this file are subject to the terms of the
|
||||||
|
# Common Development and Distribution License (the "License").
|
||||||
|
# You may not use this file except in compliance with the License.
|
||||||
|
#
|
||||||
|
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
|
||||||
|
# or http://www.opensolaris.org/os/licensing.
|
||||||
|
# See the License for the specific language governing permissions
|
||||||
|
# and limitations under the License.
|
||||||
|
#
|
||||||
|
# When distributing Covered Code, include this CDDL HEADER in each
|
||||||
|
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
|
||||||
|
# If applicable, add the following below this CDDL HEADER, with the
|
||||||
|
# fields enclosed by brackets "[]" replaced with your own identifying
|
||||||
|
# information: Portions Copyright [yyyy] [name of copyright owner]
|
||||||
|
#
|
||||||
|
# CDDL HEADER END
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
|
||||||
|
# Use is subject to license terms.
|
||||||
|
#
|
||||||
|
#ident "@(#)print-service-selector 1.1 09/10/23 SMI"
|
||||||
|
|
||||||
|
. /lib/svc/share/smf_include.sh
|
||||||
|
|
||||||
|
CUPS_SVC='cups/scheduler'
|
||||||
|
CUPS_BIN='/usr/lib/cups/bin/lp'
|
||||||
|
LP_BIN='/usr/lib/lp/bin/lp'
|
||||||
|
ACTIVE_SVC_PROP='general/active'
|
||||||
|
|
||||||
|
is_cups_active()
|
||||||
|
{
|
||||||
|
ACTIVE=$( /usr/bin/svcprop -C -p "$ACTIVE_SVC_PROP" "${CUPS_SVC}:default" \
|
||||||
|
2>/dev/null )
|
||||||
|
[[ "$ACTIVE" == 'true' ]]
|
||||||
|
}
|
||||||
|
|
||||||
|
is_lp_installed()
|
||||||
|
{
|
||||||
|
[[ -f "$LP_BIN" ]]
|
||||||
|
}
|
||||||
|
|
||||||
|
is_cups_installed()
|
||||||
|
{
|
||||||
|
[[ -f "$CUPS_BIN" ]]
|
||||||
|
}
|
||||||
|
|
||||||
|
set_cups_active()
|
||||||
|
{
|
||||||
|
if ! /usr/sbin/print-service -s cups
|
||||||
|
then
|
||||||
|
echo "ERROR: Unable to set CUPS as the default print service" >&2
|
||||||
|
exit $SMF_EXIT_ERR_FATAL
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
if is_lp_installed
|
||||||
|
then
|
||||||
|
# Do nothing. They either upgraded, installed LP only, or both.
|
||||||
|
# In any of these cases, we either want the default or the previously
|
||||||
|
# selected behaviour.
|
||||||
|
true
|
||||||
|
elif is_cups_installed
|
||||||
|
then
|
||||||
|
# LP is not installed -- make CUPS the default if it is not already
|
||||||
|
is_cups_active || set_cups_active
|
||||||
|
else
|
||||||
|
echo "ERROR: Neither CUPS nor LP packages installed" >&2
|
||||||
|
exit $SMF_EXIT_ERR_FATAL
|
||||||
|
fi
|
||||||
|
|
||||||
|
exit $SMF_EXIT_OK
|
||||||
1
sample_data/pkgs/cups/Solaris/prof_attr
Normal file
1
sample_data/pkgs/cups/Solaris/prof_attr
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
CUPS Administration:RO:::auths=solaris.smf.manage.cups
|
||||||
100
sample_data/pkgs/cups/Solaris/service-selector.xml
Normal file
100
sample_data/pkgs/cups/Solaris/service-selector.xml
Normal file
|
|
@ -0,0 +1,100 @@
|
||||||
|
<?xml version="1.0"?>
|
||||||
|
<!DOCTYPE service_bundle SYSTEM "/usr/share/lib/xml/dtd/service_bundle.dtd.1">
|
||||||
|
<!--
|
||||||
|
Copyright 2010 Sun Microsystems, Inc. All rights reserved.
|
||||||
|
Use is subject to license terms.
|
||||||
|
|
||||||
|
CDDL HEADER START
|
||||||
|
|
||||||
|
The contents of this file are subject to the terms of the
|
||||||
|
Common Development and Distribution License (the "License").
|
||||||
|
You may not use this file except in compliance with the License.
|
||||||
|
|
||||||
|
You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
|
||||||
|
or http://www.opensolaris.org/os/licensing.
|
||||||
|
See the License for the specific language governing permissions
|
||||||
|
and limitations under the License.
|
||||||
|
|
||||||
|
When distributing Covered Code, include this CDDL HEADER in each
|
||||||
|
file and include the License file at usr/src/OPENSOLARIS.LICENSE.
|
||||||
|
If applicable, add the following below this CDDL HEADER, with the
|
||||||
|
fields enclosed by brackets "[]" replaced with your own identifying
|
||||||
|
information: Portions Copyright [yyyy] [name of copyright owner]
|
||||||
|
|
||||||
|
CDDL HEADER END
|
||||||
|
|
||||||
|
ident "@(#)service-selector.xml 1.2 10/01/04 SMI"
|
||||||
|
|
||||||
|
NOTE: This service manifest is not editable; its contents will
|
||||||
|
be overwritten by package or patch operations, including
|
||||||
|
operating system upgrade. Make customizations in a different
|
||||||
|
file.
|
||||||
|
|
||||||
|
Service to set the default print service.
|
||||||
|
-->
|
||||||
|
|
||||||
|
<service_bundle type='manifest' name='SUNWpcu:print-service-selector'>
|
||||||
|
|
||||||
|
<service
|
||||||
|
name='application/print/service-selector'
|
||||||
|
type='service'
|
||||||
|
version='1'>
|
||||||
|
|
||||||
|
<create_default_instance enabled='true' />
|
||||||
|
|
||||||
|
<single_instance />
|
||||||
|
|
||||||
|
<!--
|
||||||
|
This service sets the default print service depending on the
|
||||||
|
services available.
|
||||||
|
-->
|
||||||
|
|
||||||
|
<dependency
|
||||||
|
name='usr'
|
||||||
|
type='service'
|
||||||
|
grouping='require_all'
|
||||||
|
restart_on='none'>
|
||||||
|
<service_fmri value='svc:/system/filesystem/minimal' />
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
This dependency is required to ensure that the cups manifest has
|
||||||
|
been imported prior to selecting a default print service.
|
||||||
|
-->
|
||||||
|
|
||||||
|
<dependency
|
||||||
|
name='cups-manifest-import'
|
||||||
|
type='service'
|
||||||
|
grouping='optional_all'
|
||||||
|
restart_on='none'>
|
||||||
|
<service_fmri value='svc:/system/manifest-import' />
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<exec_method
|
||||||
|
type='method'
|
||||||
|
name='start'
|
||||||
|
exec='/lib/svc/method/print-service-selector'
|
||||||
|
timeout_seconds='0' />
|
||||||
|
|
||||||
|
<exec_method
|
||||||
|
type='method'
|
||||||
|
name='stop'
|
||||||
|
exec=':true'
|
||||||
|
timeout_seconds='0' />
|
||||||
|
|
||||||
|
<property_group name='startd' type='framework'>
|
||||||
|
<propval name='duration' type='astring' value='transient' />
|
||||||
|
</property_group>
|
||||||
|
|
||||||
|
<stability value='Unstable' />
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<common_name>
|
||||||
|
<loctext xml:lang='C'>
|
||||||
|
print service selector
|
||||||
|
</loctext>
|
||||||
|
</common_name>
|
||||||
|
</template>
|
||||||
|
</service>
|
||||||
|
|
||||||
|
</service_bundle>
|
||||||
28
sample_data/pkgs/cups/Solaris/smb
Normal file
28
sample_data/pkgs/cups/Solaris/smb
Normal file
|
|
@ -0,0 +1,28 @@
|
||||||
|
#!/usr/bin/perl
|
||||||
|
#
|
||||||
|
# CDDL HEADER START
|
||||||
|
#
|
||||||
|
# The contents of this file are subject to the terms of the
|
||||||
|
# Common Development and Distribution License (the "License").
|
||||||
|
# You may not use this file except in compliance with the License.
|
||||||
|
#
|
||||||
|
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
|
||||||
|
# or http://www.opensolaris.org/os/licensing.
|
||||||
|
# See the License for the specific language governing permissions
|
||||||
|
# and limitations under the License.
|
||||||
|
#
|
||||||
|
# When distributing Covered Code, include this CDDL HEADER in each
|
||||||
|
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
|
||||||
|
# If applicable, add the following below this CDDL HEADER, with the
|
||||||
|
# fields enclosed by brackets "[]" replaced with your own identifying
|
||||||
|
# information: Portions Copyright [yyyy] [name of copyright owner]
|
||||||
|
#
|
||||||
|
# CDDL HEADER END
|
||||||
|
#
|
||||||
|
# Copyright (c) 2009, 2011, Oracle and/or its affiliates. All rights reserved.
|
||||||
|
#
|
||||||
|
# a simple shell script for SMB printing that can either use SAMBA's smbspool(1)
|
||||||
|
# or a native smb print client should it materialize in the future.
|
||||||
|
#
|
||||||
|
(-f '/etc/samba/smb.conf') && exec('/usr/bin/smbspool', @ARGV);
|
||||||
|
exit(1);
|
||||||
33
sample_data/pkgs/cups/Solaris/svc-cupsd
Normal file
33
sample_data/pkgs/cups/Solaris/svc-cupsd
Normal file
|
|
@ -0,0 +1,33 @@
|
||||||
|
#!/usr/bin/ksh
|
||||||
|
#
|
||||||
|
# Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
|
||||||
|
#
|
||||||
|
|
||||||
|
#
|
||||||
|
# Standard prolog
|
||||||
|
#
|
||||||
|
. /lib/svc/share/smf_include.sh
|
||||||
|
|
||||||
|
if [ -z "$SMF_FMRI" ] ; then
|
||||||
|
echo "SMF framework variables are not initialized."
|
||||||
|
exit $SMF_EXIT_ERR_NOSMF
|
||||||
|
fi
|
||||||
|
|
||||||
|
# directory where to look for startup scripts
|
||||||
|
STARTUP=/usr/lib/cups/startup
|
||||||
|
|
||||||
|
# for all startup scripts found in the directory
|
||||||
|
for SCRIPT in $STARTUP/* ; do
|
||||||
|
# verify the script is executable
|
||||||
|
[ -x "$SCRIPT" ] || continue
|
||||||
|
# execute the script
|
||||||
|
if ! "$SCRIPT" "$SMF_FMRI" "startup/${SCRIPT##*/}" ; then
|
||||||
|
echo "Warning: startup script $SCRIPT failed."
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
# execute the CUPS daemon
|
||||||
|
exec /usr/sbin/cupsd
|
||||||
|
|
||||||
|
# fatal error, failed to execute CUPS daemon
|
||||||
|
exit $SMF_EXIT_ERR_FATAL
|
||||||
7
sample_data/pkgs/cups/Solaris/tsol_banner.ps
Normal file
7
sample_data/pkgs/cups/Solaris/tsol_banner.ps
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
%
|
||||||
|
% Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
|
||||||
|
%
|
||||||
|
% works in conjunction with tsol_separator.ps to do a banner page
|
||||||
|
%
|
||||||
|
|
||||||
|
SeparatorPagesDict /Banner get exec
|
||||||
619
sample_data/pkgs/cups/Solaris/tsol_separator.ps
Normal file
619
sample_data/pkgs/cups/Solaris/tsol_separator.ps
Normal file
|
|
@ -0,0 +1,619 @@
|
||||||
|
%%
|
||||||
|
%% Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
|
||||||
|
%%
|
||||||
|
|
||||||
|
%%
|
||||||
|
%% This PostScript file is used as input to tsol_labeled_banner,
|
||||||
|
%% which will prepend code to set the values of a number of
|
||||||
|
%% variables.
|
||||||
|
|
||||||
|
%% This PostScript file may be modified for local customizations or
|
||||||
|
%% internationalization. Comments marked "INTERNATIONALIZE:" show
|
||||||
|
%% places where changes may be made for internationalization. Comments
|
||||||
|
%% marked "CUSTOMIZE:" show places where some typical customization
|
||||||
|
%% changes may be made.
|
||||||
|
|
||||||
|
|
||||||
|
%% The following comments describe variables set by tsol_labeled_banner
|
||||||
|
|
||||||
|
%% These variables are from the print job information that can be
|
||||||
|
%% displayed with lpstat or lpq.
|
||||||
|
%%
|
||||||
|
%% /Job_Classification The classification (from the sensitivity label) to
|
||||||
|
%% be displayed at the top and bottom of the banner
|
||||||
|
%% /Job_Printer Printer Name
|
||||||
|
%% /Job_Host Host job was submitted from
|
||||||
|
%% /Job_User User who submitted the job
|
||||||
|
%% /Job_JobID Job number
|
||||||
|
%% /Job_Title Job title
|
||||||
|
%%
|
||||||
|
%% Job Page labels are added in pstops filter, so page labels should not be
|
||||||
|
%% added here.
|
||||||
|
%%
|
||||||
|
%% /Job_DoPageLabels Print page labels NO.
|
||||||
|
%%
|
||||||
|
%% These variables are generated from the system clock value.
|
||||||
|
%%
|
||||||
|
%% /Job_Date Date and time the job is being printed, in the
|
||||||
|
%% locale's default format
|
||||||
|
%% /Job_Hash A randomly generatred identifying number for
|
||||||
|
%% matching up the banner and trailer pages of the job
|
||||||
|
%%
|
||||||
|
%%
|
||||||
|
%% The following variables are the job's labels
|
||||||
|
%% as interpreted by the bcltobanner(3TSOL) library routine.
|
||||||
|
%%
|
||||||
|
%% /Job_Classification The classification (from the sensitivity label) to be
|
||||||
|
%% displayed at the top and bottom of the banner page.
|
||||||
|
%% /Job_Protect The sensitivity label to be displayed in the protect-as
|
||||||
|
%% field.
|
||||||
|
%% /Job_Caveats The caveats from the sesitivity label.
|
||||||
|
%% /Job_Channels The channels from the sesitivity label.
|
||||||
|
%%
|
||||||
|
%%
|
||||||
|
%% The following variables are the job's Sensitivity Label and
|
||||||
|
%% Information Label as interpreted by the bsltos and biltos library
|
||||||
|
%% routines.
|
||||||
|
%%
|
||||||
|
%% /Job_SL_Internal The sensitivity label in internal view format.
|
||||||
|
%% /Job_SL_External The sensitivity label in external view format.
|
||||||
|
|
||||||
|
/SeparatorPagesDict 100 dict def
|
||||||
|
userdict /JobDict known not {
|
||||||
|
userdict /JobDict 100 dict put
|
||||||
|
} if
|
||||||
|
|
||||||
|
SeparatorPagesDict
|
||||||
|
begin
|
||||||
|
|
||||||
|
%% CUSTOMIZE: To print header page label left-justified, set this to false
|
||||||
|
/center_label true def
|
||||||
|
|
||||||
|
/center_show where {
|
||||||
|
pop
|
||||||
|
} {
|
||||||
|
userdict /center_show
|
||||||
|
{
|
||||||
|
dup stringwidth exch
|
||||||
|
2 div neg exch rmoveto show
|
||||||
|
} put
|
||||||
|
} ifelse
|
||||||
|
|
||||||
|
/append where
|
||||||
|
{ pop }
|
||||||
|
{
|
||||||
|
/append
|
||||||
|
{
|
||||||
|
1 index length 1 index length add
|
||||||
|
1 index dup type /dicttype eq
|
||||||
|
{
|
||||||
|
pop dict
|
||||||
|
begin
|
||||||
|
exch { def } forall
|
||||||
|
{ def } forall
|
||||||
|
currentdict
|
||||||
|
end
|
||||||
|
}
|
||||||
|
{
|
||||||
|
/arraytype eq { array } { string } ifelse
|
||||||
|
dup 4 -1 roll 1 index copy length 4 -1 roll putinterval
|
||||||
|
}
|
||||||
|
ifelse
|
||||||
|
} def
|
||||||
|
} ifelse
|
||||||
|
|
||||||
|
/fontheight
|
||||||
|
systemdict /fontheight known
|
||||||
|
{ systemdict /fontheight get }
|
||||||
|
{
|
||||||
|
{
|
||||||
|
gsave
|
||||||
|
setfont (qf) true charpath flattenpath pathbbox
|
||||||
|
4 -1 roll pop exch pop exch sub
|
||||||
|
grestore
|
||||||
|
}
|
||||||
|
} ifelse
|
||||||
|
def
|
||||||
|
|
||||||
|
/m { moveto } def
|
||||||
|
/r { rmoveto } def
|
||||||
|
/rl { rlineto } def
|
||||||
|
|
||||||
|
/NewLine {
|
||||||
|
currentpoint exch pop
|
||||||
|
currentfont fontheight sub errorx0 exch moveto
|
||||||
|
} def
|
||||||
|
|
||||||
|
/clipSL {
|
||||||
|
/MaxWidth exch def
|
||||||
|
dup stringwidth pop MaxWidth gt {
|
||||||
|
{
|
||||||
|
dup stringwidth pop (<-) stringwidth pop add MaxWidth le {exit} if
|
||||||
|
dup 0 exch length 1 sub getinterval
|
||||||
|
} loop
|
||||||
|
(<-)
|
||||||
|
%% Concatenate strings
|
||||||
|
dup length 2 index length add 1 index pop string
|
||||||
|
dup 0 4 index putinterval
|
||||||
|
dup 4 -1 roll length 4 -1 roll putinterval
|
||||||
|
} if
|
||||||
|
} def
|
||||||
|
|
||||||
|
/BreakWithBlanks {
|
||||||
|
|
||||||
|
{restoftext ( ) search
|
||||||
|
{
|
||||||
|
/blank_nextword exch def pop
|
||||||
|
/blank_restoftext exch def
|
||||||
|
/blank_wordwidth blank_nextword stringwidth pop def
|
||||||
|
|
||||||
|
restoftext (/) search
|
||||||
|
{
|
||||||
|
/slash_nextword exch def pop
|
||||||
|
/slash_restoftext exch def
|
||||||
|
/slash_wordwidth slash_nextword stringwidth pop def
|
||||||
|
|
||||||
|
blank_wordwidth slash_wordwidth lt
|
||||||
|
{
|
||||||
|
/nextword blank_nextword def
|
||||||
|
/restoftext blank_restoftext def
|
||||||
|
/wordwidth blank_wordwidth def
|
||||||
|
/breakwidth ( ) stringwidth pop def
|
||||||
|
}
|
||||||
|
{
|
||||||
|
/nextword slash_nextword def
|
||||||
|
/restoftext slash_restoftext def
|
||||||
|
/wordwidth slash_wordwidth def
|
||||||
|
/breakwidth (/) stringwidth pop def
|
||||||
|
}ifelse
|
||||||
|
}
|
||||||
|
{
|
||||||
|
pop
|
||||||
|
/nextword blank_nextword def
|
||||||
|
/restoftext blank_restoftext def
|
||||||
|
/wordwidth blank_wordwidth def
|
||||||
|
/breakwidth ( ) stringwidth pop def
|
||||||
|
}ifelse
|
||||||
|
|
||||||
|
curwidth wordwidth add linewidth gt
|
||||||
|
{textstring startchar
|
||||||
|
lastwordbreak startchar sub
|
||||||
|
getinterval proc
|
||||||
|
/startchar lastwordbreak def
|
||||||
|
/curwidth wordwidth breakwidth add def }
|
||||||
|
|
||||||
|
{/curwidth curwidth wordwidth add
|
||||||
|
breakwidth add def
|
||||||
|
} ifelse
|
||||||
|
/lastwordbreak lastwordbreak
|
||||||
|
nextword length add 1 add def
|
||||||
|
}
|
||||||
|
{pop BreakWithSlashes exit}
|
||||||
|
ifelse
|
||||||
|
}loop
|
||||||
|
}def
|
||||||
|
|
||||||
|
/BreakWithSlashes
|
||||||
|
{
|
||||||
|
/breakchar (/) def
|
||||||
|
/breakwidth breakchar stringwidth pop def
|
||||||
|
{restoftext breakchar search
|
||||||
|
{/nextword exch def pop
|
||||||
|
/restoftext exch def
|
||||||
|
/wordwidth nextword stringwidth pop def
|
||||||
|
|
||||||
|
curwidth wordwidth add linewidth gt
|
||||||
|
{textstring startchar
|
||||||
|
lastwordbreak startchar sub
|
||||||
|
getinterval proc
|
||||||
|
/startchar lastwordbreak def
|
||||||
|
/curwidth wordwidth breakwidth add def }
|
||||||
|
|
||||||
|
{/curwidth curwidth wordwidth add
|
||||||
|
breakwidth add def
|
||||||
|
} ifelse
|
||||||
|
/lastwordbreak lastwordbreak
|
||||||
|
nextword length add 1 add def
|
||||||
|
}
|
||||||
|
{pop exit}
|
||||||
|
ifelse
|
||||||
|
}loop
|
||||||
|
}def
|
||||||
|
|
||||||
|
/BreakIntoLines
|
||||||
|
{/proc exch def
|
||||||
|
/linewidth exch 40 sub def
|
||||||
|
/textstring exch def
|
||||||
|
|
||||||
|
/curwidth 0 def
|
||||||
|
/lastwordbreak 0 def
|
||||||
|
/startchar 0 def
|
||||||
|
/restoftext textstring def
|
||||||
|
|
||||||
|
% begin scale the font if necessary
|
||||||
|
|
||||||
|
/allowedarea linewidth fbh 10 div mul def
|
||||||
|
/currentarea currentfont fontheight textstring stringwidth pop mul def
|
||||||
|
|
||||||
|
currentarea allowedarea gt
|
||||||
|
{
|
||||||
|
currentfont allowedarea currentarea div scalefont setfont
|
||||||
|
}if
|
||||||
|
|
||||||
|
% end scale the font if necessary
|
||||||
|
|
||||||
|
BreakWithBlanks
|
||||||
|
/lastchar textstring length def
|
||||||
|
textstring startchar lastchar startchar sub
|
||||||
|
getinterval proc
|
||||||
|
}def
|
||||||
|
|
||||||
|
|
||||||
|
/ShowBanner {
|
||||||
|
JobDict /Job_Proclam? get {
|
||||||
|
systemdict /showpage get cvx exec
|
||||||
|
} if
|
||||||
|
} def
|
||||||
|
|
||||||
|
/Init {
|
||||||
|
|
||||||
|
initgraphics
|
||||||
|
/#copies 1 def
|
||||||
|
initmatrix
|
||||||
|
erasepage
|
||||||
|
|
||||||
|
clippath pathbbox /fbh exch def
|
||||||
|
/fbw exch def
|
||||||
|
pop pop newpath
|
||||||
|
0 0 moveto
|
||||||
|
0 fbh translate
|
||||||
|
0 0 moveto
|
||||||
|
|
||||||
|
/margin fbh 20 div def
|
||||||
|
/imargin margin 1.1 mul def
|
||||||
|
/errorx0 imargin def
|
||||||
|
/errorx1 fbw imargin sub def
|
||||||
|
/errory1 imargin def
|
||||||
|
|
||||||
|
gsave
|
||||||
|
} def
|
||||||
|
|
||||||
|
% this stuff is lpd dependant.
|
||||||
|
|
||||||
|
/lpdglue {
|
||||||
|
userdict
|
||||||
|
begin
|
||||||
|
JobDict
|
||||||
|
begin
|
||||||
|
% If Job_Printer is defined, assume the others are too,
|
||||||
|
/Job_Printer where
|
||||||
|
{
|
||||||
|
pop
|
||||||
|
/Job_Proclam? true def
|
||||||
|
/Job_Endclam? true def
|
||||||
|
|
||||||
|
/Printer Job_Printer def
|
||||||
|
/Host Job_Host def
|
||||||
|
/User Job_User def
|
||||||
|
/Title Job_Title def
|
||||||
|
/JobID Job_JobID def
|
||||||
|
/Date Job_Date def
|
||||||
|
|
||||||
|
%% CUSTOMIZE: To use a different string at the top and
|
||||||
|
%% bottom of each page, change the following line. For
|
||||||
|
%% instance, to use the sensitivity label in external view
|
||||||
|
%% format, change the line to: /PageLabel Job_SL_External def
|
||||||
|
%% To eliminate page labels completely, change this line to
|
||||||
|
%% set the page label to an empty string: /PageLabel () def
|
||||||
|
/PageLabel Job_SL_Internal def
|
||||||
|
Job_Protect () eq
|
||||||
|
{
|
||||||
|
%% Job_Protect is empty because SLs are turned
|
||||||
|
%% off in secconf. (Turning off SLs is actually not yet
|
||||||
|
%% supported by the system.)
|
||||||
|
/Protect () def
|
||||||
|
/Protect_Text1 () def
|
||||||
|
/Protect_Text2 () def
|
||||||
|
}
|
||||||
|
{
|
||||||
|
%% INTERNATIONALIZE/CUSTOMIZE: Replace the text between
|
||||||
|
%% parentheses with the appropriate text to display
|
||||||
|
%% above and below the SL.
|
||||||
|
/Protect Job_Protect def
|
||||||
|
/Protect_Text1 (This output must be protected as:) def
|
||||||
|
/Protect_Text2 (unless manually reviewed and downgraded.) def
|
||||||
|
}
|
||||||
|
ifelse
|
||||||
|
|
||||||
|
%% CUSTOMIZE: To not print the caveats, change
|
||||||
|
%% this line to /Caveats () def
|
||||||
|
/Caveats Job_Caveats def
|
||||||
|
%% CUSTOMIZE: To not print the channels, change
|
||||||
|
%% this line to /Channels () def
|
||||||
|
/Channels Job_Channels def
|
||||||
|
|
||||||
|
%% CUSTOMIZE: To not print the hash number, change
|
||||||
|
%% this line to /Hash () def
|
||||||
|
/Hash Job_Hash def
|
||||||
|
|
||||||
|
%% CUSTOMIZE: To not print the head label, change
|
||||||
|
%% this line to /HeadLabel () def
|
||||||
|
%% You may also substitute another string. For example, to use
|
||||||
|
%% the SL in internal view format: /HeadLabel Job_SL_Internal def
|
||||||
|
/HeadLabel Job_Classification def
|
||||||
|
} {
|
||||||
|
/Job_Proclam? false def
|
||||||
|
/Job_Endclam? false def
|
||||||
|
} ifelse
|
||||||
|
end
|
||||||
|
end
|
||||||
|
} def
|
||||||
|
|
||||||
|
/border {
|
||||||
|
gsave
|
||||||
|
setlinewidth
|
||||||
|
setgray
|
||||||
|
30 -20 moveto
|
||||||
|
0 60 fbh sub rlineto
|
||||||
|
fbw 60 sub 0 rlineto
|
||||||
|
0 fbh 60 sub rlineto
|
||||||
|
60 currentlinewidth 2 div sub fbw sub 0 rlineto
|
||||||
|
stroke
|
||||||
|
grestore
|
||||||
|
} def
|
||||||
|
|
||||||
|
/TSOLJobInfo {
|
||||||
|
gsave
|
||||||
|
|
||||||
|
/fontscale fbh 50 div def
|
||||||
|
/Courier-Bold findfont fontscale scalefont setfont
|
||||||
|
/ClippedLabel
|
||||||
|
JobDict /HeadLabel get
|
||||||
|
SeparatorPagesDict /fbw get 90 sub
|
||||||
|
SeparatorPagesDict /clipSL get exec
|
||||||
|
def
|
||||||
|
|
||||||
|
/head_len {
|
||||||
|
ClippedLabel stringwidth pop 5 add
|
||||||
|
HeadLabel () eq { pop 0 } if
|
||||||
|
} def
|
||||||
|
15 setlinewidth
|
||||||
|
fbw 2 div head_len 2 div sub -20 moveto
|
||||||
|
head_len 0 rlineto stroke
|
||||||
|
1 setgray
|
||||||
|
fbw 10 div -25 m gsave ClippedLabel
|
||||||
|
currentpoint exch pop fbw 2 div exch moveto
|
||||||
|
center_show NewLine grestore
|
||||||
|
|
||||||
|
0 setgray
|
||||||
|
/fontscale fbh 70 div def
|
||||||
|
|
||||||
|
/Helvetica findfont fontscale scalefont setfont
|
||||||
|
0 fbh 8 div neg r Protect_Text1
|
||||||
|
currentpoint exch pop
|
||||||
|
center_label {
|
||||||
|
fbw 2 div exch moveto center_show
|
||||||
|
}
|
||||||
|
{
|
||||||
|
fbw 10 div exch moveto show
|
||||||
|
}
|
||||||
|
ifelse
|
||||||
|
/fontscale fbh 60 div def
|
||||||
|
/Helvetica-Bold findfont fontscale scalefont setfont
|
||||||
|
|
||||||
|
0 fbh 150 div neg r
|
||||||
|
Protect
|
||||||
|
fbw errorx0 3 mul sub % width minus margins
|
||||||
|
|
||||||
|
center_label {
|
||||||
|
{NewLine currentpoint exch pop fbw 2 div exch moveto center_show}
|
||||||
|
BreakIntoLines
|
||||||
|
}
|
||||||
|
{
|
||||||
|
{NewLine currentpoint exch pop fbw 10 div exch moveto show}
|
||||||
|
BreakIntoLines
|
||||||
|
}
|
||||||
|
ifelse
|
||||||
|
|
||||||
|
/fontscale fbh 70 div def
|
||||||
|
/Helvetica findfont fontscale scalefont setfont
|
||||||
|
0 fbh 50 div neg r Protect_Text2
|
||||||
|
currentpoint exch pop
|
||||||
|
center_label {
|
||||||
|
fbw 2 div exch moveto center_show
|
||||||
|
}
|
||||||
|
{
|
||||||
|
fbw 10 div exch moveto show
|
||||||
|
}
|
||||||
|
ifelse
|
||||||
|
|
||||||
|
/fontscale fbh 60 div def
|
||||||
|
/Helvetica-Bold findfont fontscale scalefont setfont
|
||||||
|
0 fbh 200 div neg r
|
||||||
|
|
||||||
|
0 fbh 10 div neg r
|
||||||
|
|
||||||
|
/fontscale fbh 40 div def
|
||||||
|
/Helvetica-Bold findfont fontscale scalefont setfont
|
||||||
|
|
||||||
|
0 fbh 30 div neg r gsave
|
||||||
|
%% INTERNATIONALIZE: Replace the text between
|
||||||
|
%% parentheses with the appropriate text.
|
||||||
|
(User: ) User (@) Host append append append
|
||||||
|
currentpoint exch pop fbw 2 div exch moveto center_show
|
||||||
|
NewLine grestore
|
||||||
|
0 fbh 30 div neg r gsave
|
||||||
|
%% INTERNATIONALIZE: Replace the text between
|
||||||
|
%% parentheses with the appropriate text.
|
||||||
|
(Job: ) JobID append
|
||||||
|
currentpoint exch pop fbw 2 div exch moveto center_show
|
||||||
|
NewLine grestore
|
||||||
|
0 fbh 30 div neg r gsave
|
||||||
|
Title
|
||||||
|
currentpoint exch pop fbw 2 div exch moveto center_show
|
||||||
|
NewLine grestore
|
||||||
|
/fontscale fbh 70 div def
|
||||||
|
/Helvetica findfont fontscale scalefont setfont
|
||||||
|
0 fbh 30 div neg r gsave
|
||||||
|
%% INTERNATIONALIZE: Replace the text between
|
||||||
|
%% parentheses with the appropriate text.
|
||||||
|
(Printed at: ) Date append
|
||||||
|
currentpoint exch pop fbw 2 div exch moveto center_show
|
||||||
|
NewLine grestore
|
||||||
|
0 fbh 30 div neg r gsave
|
||||||
|
%% INTERNATIONALIZE: Replace the text between
|
||||||
|
%% parentheses with the appropriate text.
|
||||||
|
(Printer queue: ) Printer append
|
||||||
|
currentpoint exch pop fbw 2 div exch moveto center_show
|
||||||
|
NewLine grestore
|
||||||
|
|
||||||
|
/Helvetica-Bold findfont fontscale scalefont setfont
|
||||||
|
0 fbh 20 div neg r
|
||||||
|
Caveats
|
||||||
|
fbw errorx0 3 mul sub % width minus margins
|
||||||
|
{NewLine currentpoint exch pop fbw 2 div exch moveto center_show}
|
||||||
|
BreakIntoLines
|
||||||
|
|
||||||
|
0 fbh 30 div neg r
|
||||||
|
Channels
|
||||||
|
fbw errorx0 3 mul sub % width minus margins
|
||||||
|
{NewLine currentpoint exch pop fbw 2 div exch moveto center_show}
|
||||||
|
BreakIntoLines
|
||||||
|
|
||||||
|
/fontscale fbh 50 div def
|
||||||
|
/Courier-Bold findfont fontscale scalefont setfont
|
||||||
|
15 setlinewidth
|
||||||
|
fbw 2 div head_len 2 div sub 40 fbh sub moveto
|
||||||
|
head_len 0 rlineto stroke
|
||||||
|
1 setgray
|
||||||
|
fbw 10 div 35 fbh sub m gsave ClippedLabel
|
||||||
|
currentpoint exch pop fbw 2 div exch moveto center_show
|
||||||
|
NewLine grestore
|
||||||
|
|
||||||
|
grestore
|
||||||
|
} def
|
||||||
|
|
||||||
|
/JobHashInfo {
|
||||||
|
gsave
|
||||||
|
0 setgray
|
||||||
|
/fontscale fbh 50 div def
|
||||||
|
/Helvetica-Bold findfont fontscale scalefont setfont
|
||||||
|
|
||||||
|
%% Upper left corner
|
||||||
|
Hash
|
||||||
|
fbw 12 div 50 neg m gsave show grestore
|
||||||
|
|
||||||
|
%% Lower left corner
|
||||||
|
Hash
|
||||||
|
fbw 12 div fbh 60 sub neg m gsave show grestore
|
||||||
|
|
||||||
|
%% Lower right corner
|
||||||
|
Hash dup stringwidth pop
|
||||||
|
fbw 11 mul 12 div exch sub fbh 60 sub neg m gsave show grestore
|
||||||
|
|
||||||
|
%% Upper right corner
|
||||||
|
Hash dup stringwidth pop
|
||||||
|
fbw 11 mul 12 div exch sub 50 neg m gsave show grestore
|
||||||
|
|
||||||
|
/fontscale fbh 40 div def
|
||||||
|
/Helvetica-Bold findfont fontscale scalefont setfont
|
||||||
|
fbw 10 div 120 fbh sub m gsave
|
||||||
|
currentpoint exch pop fbw 2 div exch moveto center_show
|
||||||
|
|
||||||
|
grestore
|
||||||
|
} def
|
||||||
|
|
||||||
|
|
||||||
|
/jobproclam {
|
||||||
|
JobDict
|
||||||
|
begin
|
||||||
|
Job_Proclam?
|
||||||
|
%% INTERNATIONALIZE: Replace the text between
|
||||||
|
%% parentheses with the appropriate text.
|
||||||
|
{ TSOLJobInfo (JOB START) JobHashInfo}
|
||||||
|
{ 0 -100 rmoveto }
|
||||||
|
ifelse
|
||||||
|
end
|
||||||
|
} def
|
||||||
|
|
||||||
|
/jobendclam {
|
||||||
|
JobDict
|
||||||
|
begin
|
||||||
|
Job_Endclam?
|
||||||
|
%% INTERNATIONALIZE: Replace the text between
|
||||||
|
%% parentheses with the appropriate text.
|
||||||
|
{ TSOLJobInfo (JOB END) JobHashInfo}
|
||||||
|
{ 0 -100 rmoveto }
|
||||||
|
ifelse
|
||||||
|
end
|
||||||
|
} def
|
||||||
|
|
||||||
|
|
||||||
|
/JobProclam {
|
||||||
|
jobproclam
|
||||||
|
} def
|
||||||
|
|
||||||
|
/JobEndclam {
|
||||||
|
jobendclam
|
||||||
|
} def
|
||||||
|
|
||||||
|
% A fancy box around page
|
||||||
|
|
||||||
|
/BannerBorder {
|
||||||
|
.7 16 border
|
||||||
|
} def
|
||||||
|
|
||||||
|
/TrailerBorder {
|
||||||
|
0 4 border
|
||||||
|
} def
|
||||||
|
|
||||||
|
%
|
||||||
|
% -------------------------------------------------------------------------
|
||||||
|
%
|
||||||
|
% The structure of separator pages is defined below. This is invoked by
|
||||||
|
% using a line like:
|
||||||
|
%
|
||||||
|
% SeparatorPagesDict /Banner get exec
|
||||||
|
%
|
||||||
|
|
||||||
|
/Banner {
|
||||||
|
SeparatorPagesDict
|
||||||
|
begin
|
||||||
|
Init
|
||||||
|
lpdglue
|
||||||
|
BannerBorder
|
||||||
|
JobProclam
|
||||||
|
end
|
||||||
|
} def
|
||||||
|
|
||||||
|
/Trailer {
|
||||||
|
SeparatorPagesDict
|
||||||
|
begin
|
||||||
|
Init
|
||||||
|
lpdglue
|
||||||
|
TrailerBorder
|
||||||
|
JobEndclam
|
||||||
|
end
|
||||||
|
} def
|
||||||
|
|
||||||
|
/SkipPageLabels false def
|
||||||
|
end
|
||||||
|
|
||||||
|
SeparatorPagesDict begin
|
||||||
|
clippath pathbbox /fbh exch def
|
||||||
|
/fbw exch def
|
||||||
|
pop pop
|
||||||
|
lpdglue
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
JobDict /Job_DoPageLabels get (YES) eq
|
||||||
|
JobDict /PageLabel get () ne and {
|
||||||
|
userdict begin
|
||||||
|
/showpage {
|
||||||
|
systemdict /showpage get cvx exec
|
||||||
|
} bind def
|
||||||
|
end
|
||||||
|
}if
|
||||||
|
|
||||||
|
%% End of tsol_separator.ps
|
||||||
6
sample_data/pkgs/cups/Solaris/tsol_trailer.ps
Normal file
6
sample_data/pkgs/cups/Solaris/tsol_trailer.ps
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
%
|
||||||
|
% Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
|
||||||
|
%
|
||||||
|
% used in conjunction with tsol_separator.ps to create a trailer page
|
||||||
|
%
|
||||||
|
SeparatorPagesDict /Trailer get exec
|
||||||
38
sample_data/pkgs/cups/cups-libs.p5m
Normal file
38
sample_data/pkgs/cups/cups-libs.p5m
Normal file
|
|
@ -0,0 +1,38 @@
|
||||||
|
#
|
||||||
|
# CDDL HEADER START
|
||||||
|
#
|
||||||
|
# The contents of this file are subject to the terms of the
|
||||||
|
# Common Development and Distribution License (the "License").
|
||||||
|
# You may not use this file except in compliance with the License.
|
||||||
|
#
|
||||||
|
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
|
||||||
|
# or http://www.opensolaris.org/os/licensing.
|
||||||
|
# See the License for the specific language governing permissions
|
||||||
|
# and limitations under the License.
|
||||||
|
#
|
||||||
|
# When distributing Covered Code, include this CDDL HEADER in each
|
||||||
|
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
|
||||||
|
# If applicable, add the following below this CDDL HEADER, with the
|
||||||
|
# fields enclosed by brackets "[]" replaced with your own identifying
|
||||||
|
# information: Portions Copyright [yyyy] [name of copyright owner]
|
||||||
|
#
|
||||||
|
# CDDL HEADER END
|
||||||
|
#
|
||||||
|
# Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||||
|
#
|
||||||
|
|
||||||
|
set name=pkg.fmri value=pkg:/library/print/cups-libs@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
|
||||||
|
set name=pkg.summary value="Common Unix Print System (CUPS) runtime libraries"
|
||||||
|
set name=com.oracle.info.description value="the Common Unix Print System (CUPS) runtime libraries"
|
||||||
|
set name=info.classification value="org.opensolaris.category.2008:System/Printing"
|
||||||
|
set name=info.upstream-url value=$(COMPONENT_PROJECT_URL)
|
||||||
|
set name=info.source-url value=$(COMPONENT_ARCHIVE_URL)
|
||||||
|
set name=org.opensolaris.arc-caseid value=PSARC/2008/130
|
||||||
|
set name=org.opensolaris.consolidation value=$(CONSOLIDATION)
|
||||||
|
|
||||||
|
license cups-license license="CUPS, GPLv2, LGPLv2.1, Aladdin, Unicode"
|
||||||
|
|
||||||
|
file path=usr/lib/libcups.so.2
|
||||||
|
file path=usr/lib/libcupsimage.so.2
|
||||||
|
link path=usr/lib/libcups.so target=libcups.so.2
|
||||||
|
link path=usr/lib/libcupsimage.so target=libcupsimage.so.2
|
||||||
2063
sample_data/pkgs/cups/cups-license
Normal file
2063
sample_data/pkgs/cups/cups-license
Normal file
File diff suppressed because it is too large
Load diff
894
sample_data/pkgs/cups/cups.p5m
Normal file
894
sample_data/pkgs/cups/cups.p5m
Normal file
|
|
@ -0,0 +1,894 @@
|
||||||
|
#
|
||||||
|
# CDDL HEADER START
|
||||||
|
#
|
||||||
|
# The contents of this file are subject to the terms of the
|
||||||
|
# Common Development and Distribution License (the "License").
|
||||||
|
# You may not use this file except in compliance with the License.
|
||||||
|
#
|
||||||
|
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
|
||||||
|
# or http://www.opensolaris.org/os/licensing.
|
||||||
|
# See the License for the specific language governing permissions
|
||||||
|
# and limitations under the License.
|
||||||
|
#
|
||||||
|
# When distributing Covered Code, include this CDDL HEADER in each
|
||||||
|
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
|
||||||
|
# If applicable, add the following below this CDDL HEADER, with the
|
||||||
|
# fields enclosed by brackets "[]" replaced with your own identifying
|
||||||
|
# information: Portions Copyright [yyyy] [name of copyright owner]
|
||||||
|
#
|
||||||
|
# CDDL HEADER END
|
||||||
|
#
|
||||||
|
# Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||||
|
#
|
||||||
|
|
||||||
|
# This is the template for package manifest (.p5m) file
|
||||||
|
# It contains all of the comments needed to re-construct
|
||||||
|
# the manual actions needed to convert "gmake install"
|
||||||
|
# prototype to final package shape. It collects all of the
|
||||||
|
# info originally held in install-sfw and prototype_* files.
|
||||||
|
#
|
||||||
|
# Significant portion of this file was created by hand-editing.
|
||||||
|
# So please do not reformat/sort the lines of this file strip the
|
||||||
|
# comments by using of the automate reformating tools.
|
||||||
|
|
||||||
|
<transform file path=usr.*/man/.+ -> default mangler.man.stability volatile>
|
||||||
|
<transform file path=usr/lib/cups/.+ ->default mode 0555>
|
||||||
|
|
||||||
|
set name=pkg.fmri value=pkg:/print/cups@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
|
||||||
|
set name=pkg.summary value="Common Unix Print System (CUPS)"
|
||||||
|
set name=com.oracle.info.description value="the Common Unix Print System (CUPS)"
|
||||||
|
set name=info.classification value="org.opensolaris.category.2008:System/Printing"
|
||||||
|
set name=info.upstream-url value=$(COMPONENT_PROJECT_URL)
|
||||||
|
set name=info.source-url value=$(COMPONENT_ARCHIVE_URL)
|
||||||
|
set name=org.opensolaris.arc-caseid value=PSARC/2008/130
|
||||||
|
set name=org.opensolaris.consolidation value=$(CONSOLIDATION)
|
||||||
|
|
||||||
|
license cups-license license="CUPS, GPLv2, LGPLv2.1, Aladdin, Unicode"
|
||||||
|
|
||||||
|
# When USB/non-postscript printer is detected in desktop no test-page can be printed
|
||||||
|
# when ghostscrip is not installed.
|
||||||
|
depend fmri=print/filter/ghostscript type=require
|
||||||
|
|
||||||
|
# Default test page is in cups-filters
|
||||||
|
depend fmri=print/cups-filters type=require
|
||||||
|
|
||||||
|
#
|
||||||
|
dir group=lp path=etc/cups
|
||||||
|
dir group=lp path=etc/cups/interfaces
|
||||||
|
dir group=lp path=etc/cups/ppd
|
||||||
|
dir group=lp path=etc/cups/profiles
|
||||||
|
dir group=lp path=etc/cups/ssl mode=0700
|
||||||
|
|
||||||
|
|
||||||
|
#
|
||||||
|
dir group=lp path=var/cache/cups mode=0775
|
||||||
|
dir group=lp path=var/cache/cups/rss mode=0775
|
||||||
|
dir group=lp path=var/log/cups
|
||||||
|
|
||||||
|
|
||||||
|
#
|
||||||
|
dir group=lp path=var/spool/cups mode=0710
|
||||||
|
dir group=lp path=var/spool/cups/tmp mode=01770
|
||||||
|
dir group=lp owner=lp path=var/spool/lp mode=0775
|
||||||
|
|
||||||
|
# edited file-objects
|
||||||
|
file group=lp mode=0640 path=etc/cups/cupsd.conf preserve=true
|
||||||
|
file group=lp mode=0640 path=etc/cups/cups-files.conf preserve=true
|
||||||
|
file path=lib/svc/manifest/application/cups.xml mode=0444 restart_fmri=svc:/system/manifest-import:default
|
||||||
|
|
||||||
|
file Solaris/service-selector.xml path=lib/svc/manifest/application/print/service-selector.xml mode=0444 restart_fmri=svc:/system/manifest-import:default
|
||||||
|
|
||||||
|
file Solaris/print-service-selector path=lib/svc/method/print-service-selector
|
||||||
|
|
||||||
|
# SMF service start method script
|
||||||
|
file Solaris/svc-cupsd path=lib/svc/method/svc-cupsd
|
||||||
|
|
||||||
|
# SMF help
|
||||||
|
file Solaris/ManageCUPS.html mode=0444 path=usr/lib/help/auths/locale/C/ManageCUPS.html
|
||||||
|
|
||||||
|
file usr/bin/cancel path=usr/lib/cups/bin/cancel mode=0555
|
||||||
|
file usr/bin/lp path=usr/lib/cups/bin/lp mode=0555
|
||||||
|
file usr/bin/lpr path=usr/lib/cups/bin/lpr mode=0555
|
||||||
|
file usr/bin/lpstat path=usr/lib/cups/bin/lpstat mode=0555
|
||||||
|
file usr/bin/lpq path=usr/lib/cups/bin/lpq mode=0555
|
||||||
|
file usr/bin/lprm path=usr/lib/cups/bin/lprm mode=0555
|
||||||
|
file usr/sbin/cupsaccept path=usr/lib/cups/bin/cupsaccept mode=0555
|
||||||
|
file usr/sbin/lpc path=usr/lib/cups/bin/lpc mode=0555
|
||||||
|
file usr/sbin/lpmove path=usr/lib/cups/bin/lpmove mode=0555
|
||||||
|
file usr/sbin/lpadmin path=usr/lib/cups/bin/lpadmin mode=0555
|
||||||
|
file path=usr/sbin/lpinfo
|
||||||
|
|
||||||
|
link path=usr/lib/cups/bin/accept target=cupsaccept
|
||||||
|
link path=usr/lib/cups/bin/cupsdisable target=cupsaccept
|
||||||
|
link path=usr/lib/cups/bin/disable target=cupsaccept
|
||||||
|
link path=usr/lib/cups/bin/cupsenable target=cupsaccept
|
||||||
|
link path=usr/lib/cups/bin/enable target=cupsaccept
|
||||||
|
link path=usr/lib/cups/bin/cupsreject target=cupsaccept
|
||||||
|
link path=usr/lib/cups/bin/reject target=cupsaccept
|
||||||
|
|
||||||
|
# install the desktop menu related bits
|
||||||
|
file Solaris/desktop-print-management mode=0555 path=usr/lib/cups/bin/desktop-print-management
|
||||||
|
file Solaris/desktop-print-management-applet mode=0555 path=usr/lib/cups/bin/desktop-print-management-applet
|
||||||
|
file Solaris/smb mode=0555 path=usr/lib/cups/backend/smb
|
||||||
|
|
||||||
|
# install the service to set up CUPS as the default print service
|
||||||
|
file Solaris/auth_attr path=etc/security/auth_attr.d/cups
|
||||||
|
file Solaris/prof_attr path=etc/security/prof_attr.d/cups
|
||||||
|
file Solaris/tsol_banner.ps path=usr/lib/cups/filter/tsol_banner.ps
|
||||||
|
file Solaris/tsol_separator.ps path=usr/lib/cups/filter/tsol_separator.ps
|
||||||
|
file Solaris/tsol_trailer.ps path=usr/lib/cups/filter/tsol_trailer.ps
|
||||||
|
|
||||||
|
# file-objects from sample-manifest
|
||||||
|
file path=etc/cups/cups-files.conf.default
|
||||||
|
file path=etc/cups/cupsd.conf.default
|
||||||
|
file path=etc/cups/snmp.conf
|
||||||
|
file path=etc/cups/snmp.conf.default
|
||||||
|
file path=etc/dbus-1/system.d/cups.conf
|
||||||
|
file path=usr/bin/cups-config
|
||||||
|
file path=usr/bin/cupstestppd
|
||||||
|
file path=usr/bin/ippeveprinter
|
||||||
|
file path=usr/bin/ippfind
|
||||||
|
file path=usr/bin/ipptool
|
||||||
|
file path=usr/bin/ppdc
|
||||||
|
file path=usr/bin/ppdhtml
|
||||||
|
file path=usr/bin/ppdi
|
||||||
|
file path=usr/bin/ppdmerge
|
||||||
|
file path=usr/bin/ppdpo
|
||||||
|
file path=usr/include/cups/adminutil.h
|
||||||
|
file path=usr/include/cups/array.h
|
||||||
|
file path=usr/include/cups/backend.h
|
||||||
|
file path=usr/include/cups/cups.h
|
||||||
|
file path=usr/include/cups/dir.h
|
||||||
|
file path=usr/include/cups/file.h
|
||||||
|
file path=usr/include/cups/http.h
|
||||||
|
file path=usr/include/cups/ipp.h
|
||||||
|
file path=usr/include/cups/language.h
|
||||||
|
file path=usr/include/cups/ppd.h
|
||||||
|
file path=usr/include/cups/pwg.h
|
||||||
|
file path=usr/include/cups/raster.h
|
||||||
|
file path=usr/include/cups/sidechannel.h
|
||||||
|
file path=usr/include/cups/transcode.h
|
||||||
|
file path=usr/include/cups/versioning.h
|
||||||
|
file path=usr/lib/cups/backend/dnssd
|
||||||
|
link path=usr/lib/cups/backend/http target=ipp
|
||||||
|
file path=usr/lib/cups/backend/ipp
|
||||||
|
file path=usr/lib/cups/backend/lpd
|
||||||
|
file path=usr/lib/cups/backend/snmp
|
||||||
|
file path=usr/lib/cups/backend/socket
|
||||||
|
file path=usr/lib/cups/backend/usb
|
||||||
|
file path=usr/lib/cups/cgi-bin/admin.cgi
|
||||||
|
file path=usr/lib/cups/cgi-bin/classes.cgi
|
||||||
|
file path=usr/lib/cups/cgi-bin/help.cgi
|
||||||
|
file path=usr/lib/cups/cgi-bin/jobs.cgi
|
||||||
|
file path=usr/lib/cups/cgi-bin/printers.cgi
|
||||||
|
file path=usr/lib/cups/command/ippevepcl
|
||||||
|
file path=usr/lib/cups/command/ippeveps
|
||||||
|
file path=usr/lib/cups/daemon/cups-deviced
|
||||||
|
file path=usr/lib/cups/daemon/cups-driverd
|
||||||
|
file path=usr/lib/cups/daemon/cups-exec
|
||||||
|
file path=usr/lib/cups/daemon/cups-lpd
|
||||||
|
file path=usr/lib/cups/filter/commandtops
|
||||||
|
file path=usr/lib/cups/filter/gziptoany
|
||||||
|
file path=usr/lib/cups/filter/pstops
|
||||||
|
file path=usr/lib/cups/filter/rastertoepson
|
||||||
|
file path=usr/lib/cups/filter/rastertohp
|
||||||
|
file path=usr/lib/cups/filter/rastertolabel
|
||||||
|
file path=usr/lib/cups/filter/rastertopwg
|
||||||
|
file path=usr/lib/cups/monitor/bcp
|
||||||
|
file path=usr/lib/cups/monitor/tbcp
|
||||||
|
file path=usr/lib/cups/notifier/dbus
|
||||||
|
file path=usr/lib/cups/notifier/mailto
|
||||||
|
file path=usr/lib/cups/notifier/rss
|
||||||
|
file path=usr/sbin/cupsctl
|
||||||
|
file path=usr/sbin/cupsd
|
||||||
|
file path=usr/share/applications/cups.desktop
|
||||||
|
file path=usr/share/cups/drv/sample.drv
|
||||||
|
file path=usr/share/cups/examples/color.drv
|
||||||
|
file path=usr/share/cups/examples/constraint.drv
|
||||||
|
file path=usr/share/cups/examples/custom.drv
|
||||||
|
file path=usr/share/cups/examples/grouping.drv
|
||||||
|
file path=usr/share/cups/examples/laserjet-basic.drv
|
||||||
|
file path=usr/share/cups/examples/laserjet-pjl.drv
|
||||||
|
file path=usr/share/cups/examples/minimum.drv
|
||||||
|
file path=usr/share/cups/examples/postscript.drv
|
||||||
|
file path=usr/share/cups/examples/r300-basic.drv
|
||||||
|
file path=usr/share/cups/examples/r300-colorman.drv
|
||||||
|
file path=usr/share/cups/examples/r300-remote.drv
|
||||||
|
file path=usr/share/cups/ipptool/cancel-current-job.test
|
||||||
|
file path=usr/share/cups/ipptool/color.jpg
|
||||||
|
file path=usr/share/cups/ipptool/create-job-format.test
|
||||||
|
file path=usr/share/cups/ipptool/create-job-sheets.test
|
||||||
|
file path=usr/share/cups/ipptool/create-job-timeout.test
|
||||||
|
file path=usr/share/cups/ipptool/create-job.test
|
||||||
|
file path=usr/share/cups/ipptool/create-printer-subscription.test
|
||||||
|
file path=usr/share/cups/ipptool/cups-create-local-printer.test
|
||||||
|
file path=usr/share/cups/ipptool/document-a4.pdf
|
||||||
|
file path=usr/share/cups/ipptool/document-a4.ps
|
||||||
|
file path=usr/share/cups/ipptool/document-letter.pdf
|
||||||
|
file path=usr/share/cups/ipptool/document-letter.ps
|
||||||
|
file path=usr/share/cups/ipptool/fax-job.test
|
||||||
|
file path=usr/share/cups/ipptool/get-completed-jobs.test
|
||||||
|
file path=usr/share/cups/ipptool/get-devices.test
|
||||||
|
file path=usr/share/cups/ipptool/get-job-attributes.test
|
||||||
|
file path=usr/share/cups/ipptool/get-job-attributes2.test
|
||||||
|
file path=usr/share/cups/ipptool/get-job-template-attributes.test
|
||||||
|
file path=usr/share/cups/ipptool/get-jobs.test
|
||||||
|
file path=usr/share/cups/ipptool/get-notifications.test
|
||||||
|
file path=usr/share/cups/ipptool/get-ppd-printer.test
|
||||||
|
file path=usr/share/cups/ipptool/get-ppd.test
|
||||||
|
file path=usr/share/cups/ipptool/get-ppds-drv-only.test
|
||||||
|
file path=usr/share/cups/ipptool/get-ppds-language.test
|
||||||
|
file path=usr/share/cups/ipptool/get-ppds-make-and-model.test
|
||||||
|
file path=usr/share/cups/ipptool/get-ppds-make.test
|
||||||
|
file path=usr/share/cups/ipptool/get-ppds-product.test
|
||||||
|
file path=usr/share/cups/ipptool/get-ppds-psversion.test
|
||||||
|
file path=usr/share/cups/ipptool/get-ppds.test
|
||||||
|
file path=usr/share/cups/ipptool/get-printer-attributes-suite.test
|
||||||
|
file path=usr/share/cups/ipptool/get-printer-attributes.test
|
||||||
|
file path=usr/share/cups/ipptool/get-printer-description-attributes.test
|
||||||
|
file path=usr/share/cups/ipptool/get-printers-printer-id.test
|
||||||
|
file path=usr/share/cups/ipptool/get-printers.test
|
||||||
|
file path=usr/share/cups/ipptool/get-subscriptions.test
|
||||||
|
file path=usr/share/cups/ipptool/gray.jpg
|
||||||
|
file path=usr/share/cups/ipptool/identify-printer-display.test
|
||||||
|
file path=usr/share/cups/ipptool/identify-printer-multiple.test
|
||||||
|
file path=usr/share/cups/ipptool/identify-printer.test
|
||||||
|
file path=usr/share/cups/ipptool/ipp-1.1.test
|
||||||
|
file path=usr/share/cups/ipptool/ipp-2.0.test
|
||||||
|
file path=usr/share/cups/ipptool/ipp-2.1.test
|
||||||
|
file path=usr/share/cups/ipptool/ipp-2.2.test
|
||||||
|
file path=usr/share/cups/ipptool/ipp-backend.test
|
||||||
|
file path=usr/share/cups/ipptool/ipp-everywhere.test
|
||||||
|
file path=usr/share/cups/ipptool/onepage-a4.pdf
|
||||||
|
file path=usr/share/cups/ipptool/onepage-a4.ps
|
||||||
|
file path=usr/share/cups/ipptool/onepage-letter.pdf
|
||||||
|
file path=usr/share/cups/ipptool/onepage-letter.ps
|
||||||
|
file path=usr/share/cups/ipptool/print-job-and-wait.test
|
||||||
|
file path=usr/share/cups/ipptool/print-job-deflate.test
|
||||||
|
file path=usr/share/cups/ipptool/print-job-gzip.test
|
||||||
|
file path=usr/share/cups/ipptool/print-job-hold.test
|
||||||
|
file path=usr/share/cups/ipptool/print-job-letter.test
|
||||||
|
file path=usr/share/cups/ipptool/print-job-manual.test
|
||||||
|
file path=usr/share/cups/ipptool/print-job-media-col.test
|
||||||
|
file path=usr/share/cups/ipptool/print-job-password.test
|
||||||
|
file path=usr/share/cups/ipptool/print-job.test
|
||||||
|
file path=usr/share/cups/ipptool/print-uri.test
|
||||||
|
file path=usr/share/cups/ipptool/set-attrs-hold.test
|
||||||
|
file path=usr/share/cups/ipptool/testfile.jpg
|
||||||
|
file path=usr/share/cups/ipptool/testfile.pcl
|
||||||
|
file path=usr/share/cups/ipptool/testfile.pdf
|
||||||
|
file path=usr/share/cups/ipptool/testfile.ps
|
||||||
|
file path=usr/share/cups/ipptool/testfile.txt
|
||||||
|
file path=usr/share/cups/ipptool/validate-job.test
|
||||||
|
file path=usr/share/cups/mime/mime.convs
|
||||||
|
file path=usr/share/cups/mime/mime.types
|
||||||
|
file path=usr/share/cups/ppdc/epson.h
|
||||||
|
file path=usr/share/cups/ppdc/font.defs
|
||||||
|
file path=usr/share/cups/ppdc/hp.h
|
||||||
|
file path=usr/share/cups/ppdc/label.h
|
||||||
|
file path=usr/share/cups/ppdc/media.defs
|
||||||
|
file path=usr/share/cups/ppdc/raster.defs
|
||||||
|
file path=usr/share/cups/templates/add-class.tmpl
|
||||||
|
file path=usr/share/cups/templates/add-printer.tmpl
|
||||||
|
file path=usr/share/cups/templates/admin.tmpl
|
||||||
|
file path=usr/share/cups/templates/choose-device.tmpl
|
||||||
|
file path=usr/share/cups/templates/choose-make.tmpl
|
||||||
|
file path=usr/share/cups/templates/choose-model.tmpl
|
||||||
|
file path=usr/share/cups/templates/choose-serial.tmpl
|
||||||
|
file path=usr/share/cups/templates/choose-uri.tmpl
|
||||||
|
file path=usr/share/cups/templates/class-added.tmpl
|
||||||
|
file path=usr/share/cups/templates/class-confirm.tmpl
|
||||||
|
file path=usr/share/cups/templates/class-deleted.tmpl
|
||||||
|
file path=usr/share/cups/templates/class-jobs-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/class-modified.tmpl
|
||||||
|
file path=usr/share/cups/templates/class.tmpl
|
||||||
|
file path=usr/share/cups/templates/classes-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/classes.tmpl
|
||||||
|
file path=usr/share/cups/templates/command.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/add-class.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/add-printer.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/admin.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/choose-device.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/choose-make.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/choose-model.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/choose-serial.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/choose-uri.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/class-added.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/class-confirm.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/class-deleted.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/class-jobs-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/class-modified.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/class.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/classes-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/classes.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/command.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/edit-config.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/error-op.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/error.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/header.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/help-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/help-printable.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/help-trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/job-cancel.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/job-hold.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/job-move.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/job-moved.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/job-release.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/job-restart.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/jobs-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/jobs.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/list-available-printers.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/modify-class.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/modify-printer.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/norestart.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/option-boolean.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/option-conflict.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/option-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/option-pickmany.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/option-pickone.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/option-trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/pager.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/printer-accept.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/printer-added.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/printer-cancel-jobs.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/printer-configured.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/printer-confirm.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/printer-default.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/printer-deleted.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/printer-jobs-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/printer-modified.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/printer-reject.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/printer-start.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/printer-stop.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/printer.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/printers-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/printers.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/restart.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/search.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/set-printer-options-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/set-printer-options-trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/test-page.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/users.tmpl
|
||||||
|
file path=usr/share/cups/templates/edit-config.tmpl
|
||||||
|
file path=usr/share/cups/templates/error-op.tmpl
|
||||||
|
file path=usr/share/cups/templates/error.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/add-class.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/add-printer.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/admin.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/choose-device.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/choose-make.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/choose-model.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/choose-serial.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/choose-uri.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/class-added.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/class-confirm.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/class-deleted.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/class-jobs-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/class-modified.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/class.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/classes-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/classes.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/command.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/edit-config.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/error-op.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/error.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/header.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/help-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/help-printable.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/help-trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/job-cancel.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/job-hold.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/job-move.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/job-moved.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/job-release.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/job-restart.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/jobs-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/jobs.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/list-available-printers.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/modify-class.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/modify-printer.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/norestart.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/option-boolean.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/option-conflict.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/option-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/option-pickmany.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/option-pickone.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/option-trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/pager.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/printer-accept.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/printer-added.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/printer-cancel-jobs.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/printer-configured.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/printer-confirm.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/printer-default.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/printer-deleted.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/printer-jobs-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/printer-modified.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/printer-reject.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/printer-start.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/printer-stop.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/printer.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/printers-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/printers.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/restart.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/search.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/set-printer-options-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/set-printer-options-trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/test-page.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/users.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/add-class.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/add-printer.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/admin.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/choose-device.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/choose-make.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/choose-model.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/choose-serial.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/choose-uri.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/class-added.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/class-confirm.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/class-deleted.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/class-jobs-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/class-modified.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/class.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/classes-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/classes.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/command.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/edit-config.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/error-op.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/error.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/header.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/help-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/help-printable.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/help-trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/job-cancel.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/job-hold.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/job-move.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/job-moved.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/job-release.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/job-restart.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/jobs-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/jobs.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/list-available-printers.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/modify-class.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/modify-printer.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/norestart.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/option-boolean.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/option-conflict.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/option-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/option-pickmany.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/option-pickone.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/option-trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/pager.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/printer-accept.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/printer-added.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/printer-cancel-jobs.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/printer-configured.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/printer-confirm.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/printer-default.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/printer-deleted.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/printer-jobs-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/printer-modified.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/printer-reject.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/printer-start.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/printer-stop.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/printer.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/printers-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/printers.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/restart.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/search.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/set-printer-options-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/set-printer-options-trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/test-page.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/users.tmpl
|
||||||
|
file path=usr/share/cups/templates/header.tmpl
|
||||||
|
file path=usr/share/cups/templates/help-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/help-printable.tmpl
|
||||||
|
file path=usr/share/cups/templates/help-trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/add-class.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/add-printer.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/admin.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/choose-device.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/choose-make.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/choose-model.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/choose-serial.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/choose-uri.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/class-added.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/class-confirm.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/class-deleted.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/class-jobs-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/class-modified.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/class.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/classes-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/classes.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/command.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/edit-config.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/error-op.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/error.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/header.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/help-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/help-printable.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/help-trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/job-cancel.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/job-hold.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/job-move.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/job-moved.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/job-release.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/job-restart.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/jobs-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/jobs.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/list-available-printers.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/modify-class.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/modify-printer.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/norestart.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/option-boolean.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/option-conflict.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/option-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/option-pickmany.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/option-pickone.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/option-trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/pager.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/printer-accept.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/printer-added.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/printer-cancel-jobs.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/printer-configured.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/printer-confirm.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/printer-default.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/printer-deleted.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/printer-jobs-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/printer-modified.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/printer-reject.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/printer-start.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/printer-stop.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/printer.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/printers-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/printers.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/restart.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/search.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/set-printer-options-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/set-printer-options-trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/test-page.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/users.tmpl
|
||||||
|
file path=usr/share/cups/templates/job-cancel.tmpl
|
||||||
|
file path=usr/share/cups/templates/job-hold.tmpl
|
||||||
|
file path=usr/share/cups/templates/job-move.tmpl
|
||||||
|
file path=usr/share/cups/templates/job-moved.tmpl
|
||||||
|
file path=usr/share/cups/templates/job-release.tmpl
|
||||||
|
file path=usr/share/cups/templates/job-restart.tmpl
|
||||||
|
file path=usr/share/cups/templates/jobs-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/jobs.tmpl
|
||||||
|
file path=usr/share/cups/templates/list-available-printers.tmpl
|
||||||
|
file path=usr/share/cups/templates/modify-class.tmpl
|
||||||
|
file path=usr/share/cups/templates/modify-printer.tmpl
|
||||||
|
file path=usr/share/cups/templates/norestart.tmpl
|
||||||
|
file path=usr/share/cups/templates/option-boolean.tmpl
|
||||||
|
file path=usr/share/cups/templates/option-conflict.tmpl
|
||||||
|
file path=usr/share/cups/templates/option-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/option-pickmany.tmpl
|
||||||
|
file path=usr/share/cups/templates/option-pickone.tmpl
|
||||||
|
file path=usr/share/cups/templates/option-trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/pager.tmpl
|
||||||
|
file path=usr/share/cups/templates/printer-accept.tmpl
|
||||||
|
file path=usr/share/cups/templates/printer-added.tmpl
|
||||||
|
file path=usr/share/cups/templates/printer-cancel-jobs.tmpl
|
||||||
|
file path=usr/share/cups/templates/printer-configured.tmpl
|
||||||
|
file path=usr/share/cups/templates/printer-confirm.tmpl
|
||||||
|
file path=usr/share/cups/templates/printer-default.tmpl
|
||||||
|
file path=usr/share/cups/templates/printer-deleted.tmpl
|
||||||
|
file path=usr/share/cups/templates/printer-jobs-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/printer-modified.tmpl
|
||||||
|
file path=usr/share/cups/templates/printer-reject.tmpl
|
||||||
|
file path=usr/share/cups/templates/printer-start.tmpl
|
||||||
|
file path=usr/share/cups/templates/printer-stop.tmpl
|
||||||
|
file path=usr/share/cups/templates/printer.tmpl
|
||||||
|
file path=usr/share/cups/templates/printers-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/printers.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/add-class.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/add-printer.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/admin.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/choose-device.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/choose-make.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/choose-model.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/choose-serial.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/choose-uri.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/class-added.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/class-confirm.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/class-deleted.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/class-jobs-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/class-modified.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/class.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/classes-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/classes.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/command.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/edit-config.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/error-op.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/error.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/header.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/help-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/help-printable.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/help-trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/job-cancel.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/job-hold.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/job-move.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/job-moved.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/job-release.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/job-restart.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/jobs-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/jobs.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/list-available-printers.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/modify-class.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/modify-printer.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/norestart.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/option-boolean.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/option-conflict.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/option-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/option-pickmany.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/option-pickone.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/option-trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/pager.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/printer-accept.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/printer-added.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/printer-cancel-jobs.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/printer-configured.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/printer-confirm.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/printer-default.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/printer-deleted.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/printer-jobs-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/printer-modified.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/printer-reject.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/printer-start.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/printer-stop.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/printer.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/printers-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/printers.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/restart.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/search.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/set-printer-options-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/set-printer-options-trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/test-page.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/users.tmpl
|
||||||
|
file path=usr/share/cups/templates/restart.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/add-class.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/add-printer.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/admin.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/choose-device.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/choose-make.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/choose-model.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/choose-serial.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/choose-uri.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/class-added.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/class-confirm.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/class-deleted.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/class-jobs-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/class-modified.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/class.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/classes-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/classes.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/command.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/edit-config.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/error-op.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/error.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/header.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/help-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/help-printable.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/help-trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/job-cancel.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/job-hold.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/job-move.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/job-moved.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/job-release.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/job-restart.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/jobs-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/jobs.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/list-available-printers.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/modify-class.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/modify-printer.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/norestart.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/option-boolean.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/option-conflict.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/option-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/option-pickmany.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/option-pickone.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/option-trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/pager.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/printer-accept.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/printer-added.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/printer-cancel-jobs.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/printer-configured.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/printer-confirm.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/printer-default.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/printer-deleted.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/printer-jobs-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/printer-modified.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/printer-reject.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/printer-start.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/printer-stop.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/printer.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/printers-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/printers.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/restart.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/search.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/set-printer-options-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/set-printer-options-trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/test-page.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/users.tmpl
|
||||||
|
file path=usr/share/cups/templates/search.tmpl
|
||||||
|
file path=usr/share/cups/templates/set-printer-options-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/set-printer-options-trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/test-page.tmpl
|
||||||
|
file path=usr/share/cups/templates/trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/users.tmpl
|
||||||
|
file path=usr/share/cups/usb/org.cups.usb-quirks
|
||||||
|
file path=usr/share/doc/cups/apple-touch-icon.png
|
||||||
|
file path=usr/share/doc/cups/cups-printable.css
|
||||||
|
file path=usr/share/doc/cups/cups.css
|
||||||
|
file path=usr/share/doc/cups/de/index.html
|
||||||
|
file path=usr/share/doc/cups/es/index.html
|
||||||
|
file path=usr/share/doc/cups/help/accounting.html
|
||||||
|
file path=usr/share/doc/cups/help/admin.html
|
||||||
|
file path=usr/share/doc/cups/help/api-admin.html
|
||||||
|
file path=usr/share/doc/cups/help/api-filter.html
|
||||||
|
file path=usr/share/doc/cups/help/api-ppd.html
|
||||||
|
file path=usr/share/doc/cups/help/api-raster.html
|
||||||
|
file path=usr/share/doc/cups/help/cgi.html
|
||||||
|
file path=usr/share/doc/cups/help/cupspm.html
|
||||||
|
file path=usr/share/doc/cups/help/encryption.html
|
||||||
|
file path=usr/share/doc/cups/help/firewalls.html
|
||||||
|
file path=usr/share/doc/cups/help/glossary.html
|
||||||
|
file path=usr/share/doc/cups/help/kerberos.html
|
||||||
|
file path=usr/share/doc/cups/help/license.html
|
||||||
|
file path=usr/share/doc/cups/help/man-backend.html
|
||||||
|
file path=usr/share/doc/cups/help/man-cancel.html
|
||||||
|
file path=usr/share/doc/cups/help/man-classes.conf.html
|
||||||
|
file path=usr/share/doc/cups/help/man-client.conf.html
|
||||||
|
file path=usr/share/doc/cups/help/man-cups-config.html
|
||||||
|
file path=usr/share/doc/cups/help/man-cups-files.conf.html
|
||||||
|
file path=usr/share/doc/cups/help/man-cups-lpd.html
|
||||||
|
file path=usr/share/doc/cups/help/man-cups-snmp.html
|
||||||
|
file path=usr/share/doc/cups/help/man-cups.html
|
||||||
|
file path=usr/share/doc/cups/help/man-cupsaccept.html
|
||||||
|
file path=usr/share/doc/cups/help/man-cupsd-helper.html
|
||||||
|
file path=usr/share/doc/cups/help/man-cupsd-logs.html
|
||||||
|
file path=usr/share/doc/cups/help/man-cupsd.conf.html
|
||||||
|
file path=usr/share/doc/cups/help/man-cupsd.html
|
||||||
|
file path=usr/share/doc/cups/help/man-cupsenable.html
|
||||||
|
file path=usr/share/doc/cups/help/man-cupstestppd.html
|
||||||
|
file path=usr/share/doc/cups/help/man-filter.html
|
||||||
|
file path=usr/share/doc/cups/help/man-ippevepcl.html
|
||||||
|
file path=usr/share/doc/cups/help/man-ippeveprinter.html
|
||||||
|
file path=usr/share/doc/cups/help/man-ippfind.html
|
||||||
|
file path=usr/share/doc/cups/help/man-ipptool.html
|
||||||
|
file path=usr/share/doc/cups/help/man-ipptoolfile.html
|
||||||
|
file path=usr/share/doc/cups/help/man-lp.html
|
||||||
|
file path=usr/share/doc/cups/help/man-lpadmin.html
|
||||||
|
file path=usr/share/doc/cups/help/man-lpc.html
|
||||||
|
file path=usr/share/doc/cups/help/man-lpinfo.html
|
||||||
|
file path=usr/share/doc/cups/help/man-lpmove.html
|
||||||
|
file path=usr/share/doc/cups/help/man-lpoptions.html
|
||||||
|
file path=usr/share/doc/cups/help/man-lpq.html
|
||||||
|
file path=usr/share/doc/cups/help/man-lpr.html
|
||||||
|
file path=usr/share/doc/cups/help/man-lprm.html
|
||||||
|
file path=usr/share/doc/cups/help/man-lpstat.html
|
||||||
|
file path=usr/share/doc/cups/help/man-mime.convs.html
|
||||||
|
file path=usr/share/doc/cups/help/man-mime.types.html
|
||||||
|
file path=usr/share/doc/cups/help/man-notifier.html
|
||||||
|
file path=usr/share/doc/cups/help/man-ppdc.html
|
||||||
|
file path=usr/share/doc/cups/help/man-ppdhtml.html
|
||||||
|
file path=usr/share/doc/cups/help/man-ppdi.html
|
||||||
|
file path=usr/share/doc/cups/help/man-ppdmerge.html
|
||||||
|
file path=usr/share/doc/cups/help/man-ppdpo.html
|
||||||
|
file path=usr/share/doc/cups/help/man-printers.conf.html
|
||||||
|
file path=usr/share/doc/cups/help/man-subscriptions.conf.html
|
||||||
|
file path=usr/share/doc/cups/help/network.html
|
||||||
|
file path=usr/share/doc/cups/help/options.html
|
||||||
|
file path=usr/share/doc/cups/help/overview.html
|
||||||
|
file path=usr/share/doc/cups/help/policies.html
|
||||||
|
file path=usr/share/doc/cups/help/postscript-driver.html
|
||||||
|
file path=usr/share/doc/cups/help/ppd-compiler.html
|
||||||
|
file path=usr/share/doc/cups/help/raster-driver.html
|
||||||
|
file path=usr/share/doc/cups/help/ref-ppdcfile.html
|
||||||
|
file path=usr/share/doc/cups/help/security.html
|
||||||
|
file path=usr/share/doc/cups/help/sharing.html
|
||||||
|
file path=usr/share/doc/cups/help/spec-banner.html
|
||||||
|
file path=usr/share/doc/cups/help/spec-command.html
|
||||||
|
file path=usr/share/doc/cups/help/spec-design.html
|
||||||
|
file path=usr/share/doc/cups/help/spec-ipp.html
|
||||||
|
file path=usr/share/doc/cups/help/spec-ppd.html
|
||||||
|
file path=usr/share/doc/cups/help/spec-raster.html
|
||||||
|
file path=usr/share/doc/cups/help/spec-stp.html
|
||||||
|
file path=usr/share/doc/cups/help/translation.html
|
||||||
|
file path=usr/share/doc/cups/images/color-wheel.png
|
||||||
|
file path=usr/share/doc/cups/images/cups-block-diagram.png
|
||||||
|
file path=usr/share/doc/cups/images/cups-command-chain.png
|
||||||
|
file path=usr/share/doc/cups/images/cups-icon.png
|
||||||
|
file path=usr/share/doc/cups/images/cups-postscript-chain.png
|
||||||
|
file path=usr/share/doc/cups/images/cups-raster-chain.png
|
||||||
|
file path=usr/share/doc/cups/images/cups.png
|
||||||
|
file path=usr/share/doc/cups/images/generic.png
|
||||||
|
file path=usr/share/doc/cups/images/left.gif
|
||||||
|
file path=usr/share/doc/cups/images/raster-organization.png
|
||||||
|
file path=usr/share/doc/cups/images/raster.png
|
||||||
|
file path=usr/share/doc/cups/images/right.gif
|
||||||
|
file path=usr/share/doc/cups/images/sample-image.png
|
||||||
|
file path=usr/share/doc/cups/images/sel.gif
|
||||||
|
file path=usr/share/doc/cups/images/smiley.jpg
|
||||||
|
file path=usr/share/doc/cups/images/unsel.gif
|
||||||
|
file path=usr/share/doc/cups/images/wait.gif
|
||||||
|
file path=usr/share/doc/cups/index.html
|
||||||
|
file path=usr/share/doc/cups/ja/index.html
|
||||||
|
file path=usr/share/doc/cups/pt_BR/index.html
|
||||||
|
file path=usr/share/doc/cups/robots.txt
|
||||||
|
file path=usr/share/doc/cups/ru/index.html
|
||||||
|
file path=usr/share/icons/hicolor/128x128/apps/cups.png
|
||||||
|
file path=usr/share/icons/hicolor/16x16/apps/cups.png
|
||||||
|
file path=usr/share/icons/hicolor/32x32/apps/cups.png
|
||||||
|
file path=usr/share/icons/hicolor/64x64/apps/cups.png
|
||||||
|
file path=usr/share/locale/ca/cups_ca.po
|
||||||
|
file path=usr/share/locale/cs/cups_cs.po
|
||||||
|
file path=usr/share/locale/de/cups_de.po
|
||||||
|
file path=usr/share/locale/en/cups_en.po
|
||||||
|
file path=usr/share/locale/es/cups_es.po
|
||||||
|
file path=usr/share/locale/fr/cups_fr.po
|
||||||
|
file path=usr/share/locale/it/cups_it.po
|
||||||
|
file path=usr/share/locale/ja/cups_ja.po
|
||||||
|
file path=usr/share/locale/pt_BR/cups_pt_BR.po
|
||||||
|
file path=usr/share/locale/ru/cups_ru.po
|
||||||
|
file path=usr/share/locale/zh_CN/cups_zh_CN.po
|
||||||
|
file path=usr/share/man/man1/cancel.1
|
||||||
|
file path=usr/share/man/man1/cups-config.1
|
||||||
|
file path=usr/share/man/man1/cups.1
|
||||||
|
file path=usr/share/man/man1/cupstestppd.1
|
||||||
|
file path=usr/share/man/man1/ippeveprinter.1
|
||||||
|
file path=usr/share/man/man1/ippfind.1
|
||||||
|
file path=usr/share/man/man1/ipptool.1
|
||||||
|
file path=usr/share/man/man1/lp.1
|
||||||
|
file path=usr/share/man/man1/lpoptions.1
|
||||||
|
file path=usr/share/man/man1/lpq.1
|
||||||
|
file path=usr/share/man/man1/lpr.1
|
||||||
|
file path=usr/share/man/man1/lprm.1
|
||||||
|
file path=usr/share/man/man1/lpstat.1
|
||||||
|
file path=usr/share/man/man1/ppdc.1
|
||||||
|
file path=usr/share/man/man1/ppdhtml.1
|
||||||
|
file path=usr/share/man/man1/ppdi.1
|
||||||
|
file path=usr/share/man/man1/ppdmerge.1
|
||||||
|
file path=usr/share/man/man1/ppdpo.1
|
||||||
|
file path=usr/share/man/man5/classes.conf.5
|
||||||
|
file path=usr/share/man/man5/client.conf.5
|
||||||
|
file path=usr/share/man/man5/cups-files.conf.5
|
||||||
|
file path=usr/share/man/man5/cups-snmp.conf.5
|
||||||
|
file path=usr/share/man/man5/cupsd-logs.5
|
||||||
|
file path=usr/share/man/man5/cupsd.conf.5
|
||||||
|
file path=usr/share/man/man5/ipptoolfile.5
|
||||||
|
file path=usr/share/man/man5/mailto.conf.5
|
||||||
|
file path=usr/share/man/man5/mime.convs.5
|
||||||
|
file path=usr/share/man/man5/mime.types.5
|
||||||
|
file path=usr/share/man/man5/ppdcfile.5
|
||||||
|
file path=usr/share/man/man5/printers.conf.5
|
||||||
|
file path=usr/share/man/man5/subscriptions.conf.5
|
||||||
|
file path=usr/share/man/man7/backend.7
|
||||||
|
file path=usr/share/man/man7/filter.7
|
||||||
|
file path=usr/share/man/man7/ippevepcl.7
|
||||||
|
link path=usr/share/man/man7/ippeveps.7 target=ippevepcl.7
|
||||||
|
file path=usr/share/man/man7/notifier.7
|
||||||
|
link path=usr/share/man/man8/cups-deviced.8 target=cupsd-helper.8
|
||||||
|
link path=usr/share/man/man8/cups-driverd.8 target=cupsd-helper.8
|
||||||
|
link path=usr/share/man/man8/cups-exec.8 target=cupsd-helper.8
|
||||||
|
file path=usr/share/man/man8/cups-lpd.8
|
||||||
|
file path=usr/share/man/man8/cups-snmp.8
|
||||||
|
file path=usr/share/man/man8/cupsaccept.8
|
||||||
|
file path=usr/share/man/man8/cupsctl.8
|
||||||
|
file path=usr/share/man/man8/cupsd-helper.8
|
||||||
|
file path=usr/share/man/man8/cupsd.8
|
||||||
|
link path=usr/share/man/man8/cupsdisable.8 target=cupsenable.8
|
||||||
|
file path=usr/share/man/man8/cupsenable.8
|
||||||
|
file path=usr/share/man/man8/cupsfilter.8
|
||||||
|
link path=usr/share/man/man8/cupsreject.8 target=cupsaccept.8
|
||||||
|
file path=usr/share/man/man8/lpadmin.8
|
||||||
|
file path=usr/share/man/man8/lpc.8
|
||||||
|
file path=usr/share/man/man8/lpinfo.8
|
||||||
|
file path=usr/share/man/man8/lpmove.8
|
||||||
820
sample_data/pkgs/cups/manifests/sample-manifest.p5m
Normal file
820
sample_data/pkgs/cups/manifests/sample-manifest.p5m
Normal file
|
|
@ -0,0 +1,820 @@
|
||||||
|
#
|
||||||
|
# This file and its contents are supplied under the terms of the
|
||||||
|
# Common Development and Distribution License ("CDDL"), version 1.0.
|
||||||
|
# You may only use this file in accordance with the terms of version
|
||||||
|
# 1.0 of the CDDL.
|
||||||
|
#
|
||||||
|
# A full copy of the text of the CDDL should have accompanied this
|
||||||
|
# source. A copy of the CDDL is also available via the Internet at
|
||||||
|
# http://www.illumos.org/license/CDDL.
|
||||||
|
#
|
||||||
|
|
||||||
|
#
|
||||||
|
# Copyright 2020 <contributor>
|
||||||
|
#
|
||||||
|
|
||||||
|
set name=pkg.fmri value=pkg:/$(COMPONENT_FMRI)@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
|
||||||
|
set name=pkg.summary value="$(COMPONENT_SUMMARY)"
|
||||||
|
set name=info.classification value="$(COMPONENT_CLASSIFICATION)"
|
||||||
|
set name=info.upstream-url value=$(COMPONENT_PROJECT_URL)
|
||||||
|
set name=info.source-url value=$(COMPONENT_ARCHIVE_URL)
|
||||||
|
set name=org.opensolaris.consolidation value=$(CONSOLIDATION)
|
||||||
|
|
||||||
|
license $(COMPONENT_LICENSE_FILE) license='$(COMPONENT_LICENSE)'
|
||||||
|
|
||||||
|
file path=etc/cups/cups-files.conf
|
||||||
|
file path=etc/cups/cups-files.conf.default
|
||||||
|
file path=etc/cups/cupsd.conf
|
||||||
|
file path=etc/cups/cupsd.conf.default
|
||||||
|
file path=etc/cups/snmp.conf
|
||||||
|
file path=etc/cups/snmp.conf.default
|
||||||
|
file path=etc/dbus-1/system.d/cups.conf
|
||||||
|
file path=lib/svc/manifest/application/cups.xml
|
||||||
|
file path=usr/bin/cancel
|
||||||
|
file path=usr/bin/cups-config
|
||||||
|
file path=usr/bin/cupstestppd
|
||||||
|
file path=usr/bin/ippeveprinter
|
||||||
|
file path=usr/bin/ippfind
|
||||||
|
file path=usr/bin/ipptool
|
||||||
|
file path=usr/bin/lp
|
||||||
|
file path=usr/bin/lpoptions
|
||||||
|
file path=usr/bin/lpq
|
||||||
|
file path=usr/bin/lpr
|
||||||
|
file path=usr/bin/lprm
|
||||||
|
file path=usr/bin/lpstat
|
||||||
|
file path=usr/bin/ppdc
|
||||||
|
file path=usr/bin/ppdhtml
|
||||||
|
file path=usr/bin/ppdi
|
||||||
|
file path=usr/bin/ppdmerge
|
||||||
|
file path=usr/bin/ppdpo
|
||||||
|
file path=usr/include/cups/adminutil.h
|
||||||
|
file path=usr/include/cups/array.h
|
||||||
|
file path=usr/include/cups/backend.h
|
||||||
|
file path=usr/include/cups/cups.h
|
||||||
|
file path=usr/include/cups/dir.h
|
||||||
|
file path=usr/include/cups/file.h
|
||||||
|
file path=usr/include/cups/http.h
|
||||||
|
file path=usr/include/cups/ipp.h
|
||||||
|
file path=usr/include/cups/language.h
|
||||||
|
file path=usr/include/cups/ppd.h
|
||||||
|
file path=usr/include/cups/pwg.h
|
||||||
|
file path=usr/include/cups/raster.h
|
||||||
|
file path=usr/include/cups/sidechannel.h
|
||||||
|
file path=usr/include/cups/transcode.h
|
||||||
|
file path=usr/include/cups/versioning.h
|
||||||
|
file path=usr/lib/cups/backend/dnssd
|
||||||
|
link path=usr/lib/cups/backend/http target=ipp
|
||||||
|
file path=usr/lib/cups/backend/ipp
|
||||||
|
file path=usr/lib/cups/backend/lpd
|
||||||
|
file path=usr/lib/cups/backend/snmp
|
||||||
|
file path=usr/lib/cups/backend/socket
|
||||||
|
file path=usr/lib/cups/backend/usb
|
||||||
|
file path=usr/lib/cups/cgi-bin/admin.cgi
|
||||||
|
file path=usr/lib/cups/cgi-bin/classes.cgi
|
||||||
|
file path=usr/lib/cups/cgi-bin/help.cgi
|
||||||
|
file path=usr/lib/cups/cgi-bin/jobs.cgi
|
||||||
|
file path=usr/lib/cups/cgi-bin/printers.cgi
|
||||||
|
file path=usr/lib/cups/command/ippevepcl
|
||||||
|
file path=usr/lib/cups/command/ippeveps
|
||||||
|
file path=usr/lib/cups/daemon/cups-deviced
|
||||||
|
file path=usr/lib/cups/daemon/cups-driverd
|
||||||
|
file path=usr/lib/cups/daemon/cups-exec
|
||||||
|
file path=usr/lib/cups/daemon/cups-lpd
|
||||||
|
file path=usr/lib/cups/filter/commandtops
|
||||||
|
file path=usr/lib/cups/filter/gziptoany
|
||||||
|
file path=usr/lib/cups/filter/pstops
|
||||||
|
file path=usr/lib/cups/filter/rastertoepson
|
||||||
|
file path=usr/lib/cups/filter/rastertohp
|
||||||
|
file path=usr/lib/cups/filter/rastertolabel
|
||||||
|
file path=usr/lib/cups/filter/rastertopwg
|
||||||
|
file path=usr/lib/cups/monitor/bcp
|
||||||
|
file path=usr/lib/cups/monitor/tbcp
|
||||||
|
file path=usr/lib/cups/notifier/dbus
|
||||||
|
file path=usr/lib/cups/notifier/mailto
|
||||||
|
file path=usr/lib/cups/notifier/rss
|
||||||
|
link path=usr/lib/libcups.so target=libcups.so.2
|
||||||
|
file path=usr/lib/libcups.so.2
|
||||||
|
link path=usr/lib/libcupsimage.so target=libcupsimage.so.2
|
||||||
|
file path=usr/lib/libcupsimage.so.2
|
||||||
|
file path=usr/sbin/cupsaccept
|
||||||
|
file path=usr/sbin/cupsctl
|
||||||
|
file path=usr/sbin/cupsd
|
||||||
|
link path=usr/sbin/cupsdisable target=cupsaccept
|
||||||
|
link path=usr/sbin/cupsenable target=cupsaccept
|
||||||
|
file path=usr/sbin/cupsfilter
|
||||||
|
link path=usr/sbin/cupsreject target=cupsaccept
|
||||||
|
file path=usr/sbin/lpadmin
|
||||||
|
file path=usr/sbin/lpc
|
||||||
|
file path=usr/sbin/lpinfo
|
||||||
|
file path=usr/sbin/lpmove
|
||||||
|
file path=usr/share/applications/cups.desktop
|
||||||
|
file path=usr/share/cups/drv/sample.drv
|
||||||
|
file path=usr/share/cups/examples/color.drv
|
||||||
|
file path=usr/share/cups/examples/constraint.drv
|
||||||
|
file path=usr/share/cups/examples/custom.drv
|
||||||
|
file path=usr/share/cups/examples/grouping.drv
|
||||||
|
file path=usr/share/cups/examples/laserjet-basic.drv
|
||||||
|
file path=usr/share/cups/examples/laserjet-pjl.drv
|
||||||
|
file path=usr/share/cups/examples/minimum.drv
|
||||||
|
file path=usr/share/cups/examples/postscript.drv
|
||||||
|
file path=usr/share/cups/examples/r300-basic.drv
|
||||||
|
file path=usr/share/cups/examples/r300-colorman.drv
|
||||||
|
file path=usr/share/cups/examples/r300-remote.drv
|
||||||
|
file path=usr/share/cups/ipptool/cancel-current-job.test
|
||||||
|
file path=usr/share/cups/ipptool/color.jpg
|
||||||
|
file path=usr/share/cups/ipptool/create-job-format.test
|
||||||
|
file path=usr/share/cups/ipptool/create-job-sheets.test
|
||||||
|
file path=usr/share/cups/ipptool/create-job-timeout.test
|
||||||
|
file path=usr/share/cups/ipptool/create-job.test
|
||||||
|
file path=usr/share/cups/ipptool/create-printer-subscription.test
|
||||||
|
file path=usr/share/cups/ipptool/cups-create-local-printer.test
|
||||||
|
file path=usr/share/cups/ipptool/document-a4.pdf
|
||||||
|
file path=usr/share/cups/ipptool/document-a4.ps
|
||||||
|
file path=usr/share/cups/ipptool/document-letter.pdf
|
||||||
|
file path=usr/share/cups/ipptool/document-letter.ps
|
||||||
|
file path=usr/share/cups/ipptool/fax-job.test
|
||||||
|
file path=usr/share/cups/ipptool/get-completed-jobs.test
|
||||||
|
file path=usr/share/cups/ipptool/get-devices.test
|
||||||
|
file path=usr/share/cups/ipptool/get-job-attributes.test
|
||||||
|
file path=usr/share/cups/ipptool/get-job-attributes2.test
|
||||||
|
file path=usr/share/cups/ipptool/get-job-template-attributes.test
|
||||||
|
file path=usr/share/cups/ipptool/get-jobs.test
|
||||||
|
file path=usr/share/cups/ipptool/get-notifications.test
|
||||||
|
file path=usr/share/cups/ipptool/get-ppd-printer.test
|
||||||
|
file path=usr/share/cups/ipptool/get-ppd.test
|
||||||
|
file path=usr/share/cups/ipptool/get-ppds-drv-only.test
|
||||||
|
file path=usr/share/cups/ipptool/get-ppds-language.test
|
||||||
|
file path=usr/share/cups/ipptool/get-ppds-make-and-model.test
|
||||||
|
file path=usr/share/cups/ipptool/get-ppds-make.test
|
||||||
|
file path=usr/share/cups/ipptool/get-ppds-product.test
|
||||||
|
file path=usr/share/cups/ipptool/get-ppds-psversion.test
|
||||||
|
file path=usr/share/cups/ipptool/get-ppds.test
|
||||||
|
file path=usr/share/cups/ipptool/get-printer-attributes-suite.test
|
||||||
|
file path=usr/share/cups/ipptool/get-printer-attributes.test
|
||||||
|
file path=usr/share/cups/ipptool/get-printer-description-attributes.test
|
||||||
|
file path=usr/share/cups/ipptool/get-printers-printer-id.test
|
||||||
|
file path=usr/share/cups/ipptool/get-printers.test
|
||||||
|
file path=usr/share/cups/ipptool/get-subscriptions.test
|
||||||
|
file path=usr/share/cups/ipptool/gray.jpg
|
||||||
|
file path=usr/share/cups/ipptool/identify-printer-display.test
|
||||||
|
file path=usr/share/cups/ipptool/identify-printer-multiple.test
|
||||||
|
file path=usr/share/cups/ipptool/identify-printer.test
|
||||||
|
file path=usr/share/cups/ipptool/ipp-1.1.test
|
||||||
|
file path=usr/share/cups/ipptool/ipp-2.0.test
|
||||||
|
file path=usr/share/cups/ipptool/ipp-2.1.test
|
||||||
|
file path=usr/share/cups/ipptool/ipp-2.2.test
|
||||||
|
file path=usr/share/cups/ipptool/ipp-backend.test
|
||||||
|
file path=usr/share/cups/ipptool/ipp-everywhere.test
|
||||||
|
file path=usr/share/cups/ipptool/onepage-a4.pdf
|
||||||
|
file path=usr/share/cups/ipptool/onepage-a4.ps
|
||||||
|
file path=usr/share/cups/ipptool/onepage-letter.pdf
|
||||||
|
file path=usr/share/cups/ipptool/onepage-letter.ps
|
||||||
|
file path=usr/share/cups/ipptool/print-job-and-wait.test
|
||||||
|
file path=usr/share/cups/ipptool/print-job-deflate.test
|
||||||
|
file path=usr/share/cups/ipptool/print-job-gzip.test
|
||||||
|
file path=usr/share/cups/ipptool/print-job-hold.test
|
||||||
|
file path=usr/share/cups/ipptool/print-job-letter.test
|
||||||
|
file path=usr/share/cups/ipptool/print-job-manual.test
|
||||||
|
file path=usr/share/cups/ipptool/print-job-media-col.test
|
||||||
|
file path=usr/share/cups/ipptool/print-job-password.test
|
||||||
|
file path=usr/share/cups/ipptool/print-job.test
|
||||||
|
file path=usr/share/cups/ipptool/print-uri.test
|
||||||
|
file path=usr/share/cups/ipptool/set-attrs-hold.test
|
||||||
|
file path=usr/share/cups/ipptool/testfile.jpg
|
||||||
|
file path=usr/share/cups/ipptool/testfile.pcl
|
||||||
|
file path=usr/share/cups/ipptool/testfile.pdf
|
||||||
|
file path=usr/share/cups/ipptool/testfile.ps
|
||||||
|
file path=usr/share/cups/ipptool/testfile.txt
|
||||||
|
file path=usr/share/cups/ipptool/validate-job.test
|
||||||
|
file path=usr/share/cups/mime/mime.convs
|
||||||
|
file path=usr/share/cups/mime/mime.types
|
||||||
|
file path=usr/share/cups/ppdc/epson.h
|
||||||
|
file path=usr/share/cups/ppdc/font.defs
|
||||||
|
file path=usr/share/cups/ppdc/hp.h
|
||||||
|
file path=usr/share/cups/ppdc/label.h
|
||||||
|
file path=usr/share/cups/ppdc/media.defs
|
||||||
|
file path=usr/share/cups/ppdc/raster.defs
|
||||||
|
file path=usr/share/cups/templates/add-class.tmpl
|
||||||
|
file path=usr/share/cups/templates/add-printer.tmpl
|
||||||
|
file path=usr/share/cups/templates/admin.tmpl
|
||||||
|
file path=usr/share/cups/templates/choose-device.tmpl
|
||||||
|
file path=usr/share/cups/templates/choose-make.tmpl
|
||||||
|
file path=usr/share/cups/templates/choose-model.tmpl
|
||||||
|
file path=usr/share/cups/templates/choose-serial.tmpl
|
||||||
|
file path=usr/share/cups/templates/choose-uri.tmpl
|
||||||
|
file path=usr/share/cups/templates/class-added.tmpl
|
||||||
|
file path=usr/share/cups/templates/class-confirm.tmpl
|
||||||
|
file path=usr/share/cups/templates/class-deleted.tmpl
|
||||||
|
file path=usr/share/cups/templates/class-jobs-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/class-modified.tmpl
|
||||||
|
file path=usr/share/cups/templates/class.tmpl
|
||||||
|
file path=usr/share/cups/templates/classes-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/classes.tmpl
|
||||||
|
file path=usr/share/cups/templates/command.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/add-class.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/add-printer.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/admin.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/choose-device.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/choose-make.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/choose-model.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/choose-serial.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/choose-uri.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/class-added.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/class-confirm.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/class-deleted.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/class-jobs-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/class-modified.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/class.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/classes-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/classes.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/command.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/edit-config.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/error-op.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/error.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/header.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/help-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/help-printable.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/help-trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/job-cancel.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/job-hold.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/job-move.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/job-moved.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/job-release.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/job-restart.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/jobs-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/jobs.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/list-available-printers.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/modify-class.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/modify-printer.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/norestart.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/option-boolean.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/option-conflict.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/option-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/option-pickmany.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/option-pickone.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/option-trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/pager.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/printer-accept.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/printer-added.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/printer-cancel-jobs.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/printer-configured.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/printer-confirm.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/printer-default.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/printer-deleted.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/printer-jobs-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/printer-modified.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/printer-reject.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/printer-start.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/printer-stop.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/printer.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/printers-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/printers.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/restart.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/search.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/set-printer-options-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/set-printer-options-trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/test-page.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/de/users.tmpl
|
||||||
|
file path=usr/share/cups/templates/edit-config.tmpl
|
||||||
|
file path=usr/share/cups/templates/error-op.tmpl
|
||||||
|
file path=usr/share/cups/templates/error.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/add-class.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/add-printer.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/admin.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/choose-device.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/choose-make.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/choose-model.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/choose-serial.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/choose-uri.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/class-added.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/class-confirm.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/class-deleted.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/class-jobs-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/class-modified.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/class.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/classes-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/classes.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/command.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/edit-config.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/error-op.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/error.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/header.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/help-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/help-printable.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/help-trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/job-cancel.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/job-hold.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/job-move.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/job-moved.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/job-release.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/job-restart.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/jobs-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/jobs.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/list-available-printers.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/modify-class.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/modify-printer.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/norestart.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/option-boolean.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/option-conflict.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/option-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/option-pickmany.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/option-pickone.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/option-trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/pager.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/printer-accept.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/printer-added.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/printer-cancel-jobs.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/printer-configured.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/printer-confirm.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/printer-default.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/printer-deleted.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/printer-jobs-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/printer-modified.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/printer-reject.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/printer-start.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/printer-stop.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/printer.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/printers-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/printers.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/restart.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/search.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/set-printer-options-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/set-printer-options-trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/test-page.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/es/users.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/add-class.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/add-printer.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/admin.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/choose-device.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/choose-make.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/choose-model.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/choose-serial.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/choose-uri.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/class-added.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/class-confirm.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/class-deleted.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/class-jobs-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/class-modified.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/class.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/classes-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/classes.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/command.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/edit-config.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/error-op.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/error.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/header.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/help-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/help-printable.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/help-trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/job-cancel.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/job-hold.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/job-move.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/job-moved.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/job-release.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/job-restart.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/jobs-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/jobs.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/list-available-printers.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/modify-class.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/modify-printer.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/norestart.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/option-boolean.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/option-conflict.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/option-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/option-pickmany.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/option-pickone.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/option-trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/pager.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/printer-accept.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/printer-added.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/printer-cancel-jobs.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/printer-configured.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/printer-confirm.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/printer-default.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/printer-deleted.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/printer-jobs-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/printer-modified.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/printer-reject.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/printer-start.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/printer-stop.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/printer.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/printers-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/printers.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/restart.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/search.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/set-printer-options-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/set-printer-options-trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/test-page.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/fr/users.tmpl
|
||||||
|
file path=usr/share/cups/templates/header.tmpl
|
||||||
|
file path=usr/share/cups/templates/help-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/help-printable.tmpl
|
||||||
|
file path=usr/share/cups/templates/help-trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/add-class.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/add-printer.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/admin.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/choose-device.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/choose-make.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/choose-model.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/choose-serial.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/choose-uri.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/class-added.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/class-confirm.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/class-deleted.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/class-jobs-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/class-modified.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/class.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/classes-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/classes.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/command.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/edit-config.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/error-op.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/error.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/header.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/help-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/help-printable.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/help-trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/job-cancel.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/job-hold.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/job-move.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/job-moved.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/job-release.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/job-restart.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/jobs-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/jobs.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/list-available-printers.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/modify-class.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/modify-printer.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/norestart.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/option-boolean.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/option-conflict.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/option-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/option-pickmany.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/option-pickone.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/option-trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/pager.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/printer-accept.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/printer-added.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/printer-cancel-jobs.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/printer-configured.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/printer-confirm.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/printer-default.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/printer-deleted.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/printer-jobs-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/printer-modified.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/printer-reject.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/printer-start.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/printer-stop.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/printer.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/printers-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/printers.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/restart.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/search.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/set-printer-options-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/set-printer-options-trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/test-page.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/ja/users.tmpl
|
||||||
|
file path=usr/share/cups/templates/job-cancel.tmpl
|
||||||
|
file path=usr/share/cups/templates/job-hold.tmpl
|
||||||
|
file path=usr/share/cups/templates/job-move.tmpl
|
||||||
|
file path=usr/share/cups/templates/job-moved.tmpl
|
||||||
|
file path=usr/share/cups/templates/job-release.tmpl
|
||||||
|
file path=usr/share/cups/templates/job-restart.tmpl
|
||||||
|
file path=usr/share/cups/templates/jobs-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/jobs.tmpl
|
||||||
|
file path=usr/share/cups/templates/list-available-printers.tmpl
|
||||||
|
file path=usr/share/cups/templates/modify-class.tmpl
|
||||||
|
file path=usr/share/cups/templates/modify-printer.tmpl
|
||||||
|
file path=usr/share/cups/templates/norestart.tmpl
|
||||||
|
file path=usr/share/cups/templates/option-boolean.tmpl
|
||||||
|
file path=usr/share/cups/templates/option-conflict.tmpl
|
||||||
|
file path=usr/share/cups/templates/option-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/option-pickmany.tmpl
|
||||||
|
file path=usr/share/cups/templates/option-pickone.tmpl
|
||||||
|
file path=usr/share/cups/templates/option-trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/pager.tmpl
|
||||||
|
file path=usr/share/cups/templates/printer-accept.tmpl
|
||||||
|
file path=usr/share/cups/templates/printer-added.tmpl
|
||||||
|
file path=usr/share/cups/templates/printer-cancel-jobs.tmpl
|
||||||
|
file path=usr/share/cups/templates/printer-configured.tmpl
|
||||||
|
file path=usr/share/cups/templates/printer-confirm.tmpl
|
||||||
|
file path=usr/share/cups/templates/printer-default.tmpl
|
||||||
|
file path=usr/share/cups/templates/printer-deleted.tmpl
|
||||||
|
file path=usr/share/cups/templates/printer-jobs-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/printer-modified.tmpl
|
||||||
|
file path=usr/share/cups/templates/printer-reject.tmpl
|
||||||
|
file path=usr/share/cups/templates/printer-start.tmpl
|
||||||
|
file path=usr/share/cups/templates/printer-stop.tmpl
|
||||||
|
file path=usr/share/cups/templates/printer.tmpl
|
||||||
|
file path=usr/share/cups/templates/printers-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/printers.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/add-class.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/add-printer.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/admin.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/choose-device.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/choose-make.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/choose-model.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/choose-serial.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/choose-uri.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/class-added.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/class-confirm.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/class-deleted.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/class-jobs-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/class-modified.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/class.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/classes-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/classes.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/command.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/edit-config.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/error-op.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/error.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/header.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/help-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/help-printable.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/help-trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/job-cancel.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/job-hold.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/job-move.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/job-moved.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/job-release.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/job-restart.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/jobs-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/jobs.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/list-available-printers.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/modify-class.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/modify-printer.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/norestart.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/option-boolean.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/option-conflict.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/option-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/option-pickmany.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/option-pickone.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/option-trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/pager.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/printer-accept.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/printer-added.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/printer-cancel-jobs.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/printer-configured.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/printer-confirm.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/printer-default.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/printer-deleted.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/printer-jobs-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/printer-modified.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/printer-reject.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/printer-start.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/printer-stop.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/printer.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/printers-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/printers.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/restart.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/search.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/set-printer-options-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/set-printer-options-trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/test-page.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/pt_BR/users.tmpl
|
||||||
|
file path=usr/share/cups/templates/restart.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/add-class.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/add-printer.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/admin.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/choose-device.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/choose-make.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/choose-model.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/choose-serial.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/choose-uri.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/class-added.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/class-confirm.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/class-deleted.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/class-jobs-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/class-modified.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/class.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/classes-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/classes.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/command.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/edit-config.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/error-op.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/error.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/header.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/help-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/help-printable.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/help-trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/job-cancel.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/job-hold.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/job-move.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/job-moved.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/job-release.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/job-restart.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/jobs-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/jobs.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/list-available-printers.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/modify-class.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/modify-printer.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/norestart.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/option-boolean.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/option-conflict.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/option-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/option-pickmany.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/option-pickone.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/option-trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/pager.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/printer-accept.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/printer-added.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/printer-cancel-jobs.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/printer-configured.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/printer-confirm.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/printer-default.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/printer-deleted.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/printer-jobs-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/printer-modified.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/printer-reject.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/printer-start.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/printer-stop.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/printer.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/printers-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/printers.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/restart.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/search.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/set-printer-options-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/set-printer-options-trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/test-page.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/ru/users.tmpl
|
||||||
|
file path=usr/share/cups/templates/search.tmpl
|
||||||
|
file path=usr/share/cups/templates/set-printer-options-header.tmpl
|
||||||
|
file path=usr/share/cups/templates/set-printer-options-trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/test-page.tmpl
|
||||||
|
file path=usr/share/cups/templates/trailer.tmpl
|
||||||
|
file path=usr/share/cups/templates/users.tmpl
|
||||||
|
file path=usr/share/cups/usb/org.cups.usb-quirks
|
||||||
|
file path=usr/share/doc/cups/apple-touch-icon.png
|
||||||
|
file path=usr/share/doc/cups/cups-printable.css
|
||||||
|
file path=usr/share/doc/cups/cups.css
|
||||||
|
file path=usr/share/doc/cups/de/index.html
|
||||||
|
file path=usr/share/doc/cups/es/index.html
|
||||||
|
file path=usr/share/doc/cups/help/accounting.html
|
||||||
|
file path=usr/share/doc/cups/help/admin.html
|
||||||
|
file path=usr/share/doc/cups/help/api-admin.html
|
||||||
|
file path=usr/share/doc/cups/help/api-filter.html
|
||||||
|
file path=usr/share/doc/cups/help/api-ppd.html
|
||||||
|
file path=usr/share/doc/cups/help/api-raster.html
|
||||||
|
file path=usr/share/doc/cups/help/cgi.html
|
||||||
|
file path=usr/share/doc/cups/help/cupspm.html
|
||||||
|
file path=usr/share/doc/cups/help/encryption.html
|
||||||
|
file path=usr/share/doc/cups/help/firewalls.html
|
||||||
|
file path=usr/share/doc/cups/help/glossary.html
|
||||||
|
file path=usr/share/doc/cups/help/kerberos.html
|
||||||
|
file path=usr/share/doc/cups/help/license.html
|
||||||
|
file path=usr/share/doc/cups/help/man-backend.html
|
||||||
|
file path=usr/share/doc/cups/help/man-cancel.html
|
||||||
|
file path=usr/share/doc/cups/help/man-classes.conf.html
|
||||||
|
file path=usr/share/doc/cups/help/man-client.conf.html
|
||||||
|
file path=usr/share/doc/cups/help/man-cups-config.html
|
||||||
|
file path=usr/share/doc/cups/help/man-cups-files.conf.html
|
||||||
|
file path=usr/share/doc/cups/help/man-cups-lpd.html
|
||||||
|
file path=usr/share/doc/cups/help/man-cups-snmp.html
|
||||||
|
file path=usr/share/doc/cups/help/man-cups.html
|
||||||
|
file path=usr/share/doc/cups/help/man-cupsaccept.html
|
||||||
|
file path=usr/share/doc/cups/help/man-cupsd-helper.html
|
||||||
|
file path=usr/share/doc/cups/help/man-cupsd-logs.html
|
||||||
|
file path=usr/share/doc/cups/help/man-cupsd.conf.html
|
||||||
|
file path=usr/share/doc/cups/help/man-cupsd.html
|
||||||
|
file path=usr/share/doc/cups/help/man-cupsenable.html
|
||||||
|
file path=usr/share/doc/cups/help/man-cupstestppd.html
|
||||||
|
file path=usr/share/doc/cups/help/man-filter.html
|
||||||
|
file path=usr/share/doc/cups/help/man-ippevepcl.html
|
||||||
|
file path=usr/share/doc/cups/help/man-ippeveprinter.html
|
||||||
|
file path=usr/share/doc/cups/help/man-ippfind.html
|
||||||
|
file path=usr/share/doc/cups/help/man-ipptool.html
|
||||||
|
file path=usr/share/doc/cups/help/man-ipptoolfile.html
|
||||||
|
file path=usr/share/doc/cups/help/man-lp.html
|
||||||
|
file path=usr/share/doc/cups/help/man-lpadmin.html
|
||||||
|
file path=usr/share/doc/cups/help/man-lpc.html
|
||||||
|
file path=usr/share/doc/cups/help/man-lpinfo.html
|
||||||
|
file path=usr/share/doc/cups/help/man-lpmove.html
|
||||||
|
file path=usr/share/doc/cups/help/man-lpoptions.html
|
||||||
|
file path=usr/share/doc/cups/help/man-lpq.html
|
||||||
|
file path=usr/share/doc/cups/help/man-lpr.html
|
||||||
|
file path=usr/share/doc/cups/help/man-lprm.html
|
||||||
|
file path=usr/share/doc/cups/help/man-lpstat.html
|
||||||
|
file path=usr/share/doc/cups/help/man-mime.convs.html
|
||||||
|
file path=usr/share/doc/cups/help/man-mime.types.html
|
||||||
|
file path=usr/share/doc/cups/help/man-notifier.html
|
||||||
|
file path=usr/share/doc/cups/help/man-ppdc.html
|
||||||
|
file path=usr/share/doc/cups/help/man-ppdhtml.html
|
||||||
|
file path=usr/share/doc/cups/help/man-ppdi.html
|
||||||
|
file path=usr/share/doc/cups/help/man-ppdmerge.html
|
||||||
|
file path=usr/share/doc/cups/help/man-ppdpo.html
|
||||||
|
file path=usr/share/doc/cups/help/man-printers.conf.html
|
||||||
|
file path=usr/share/doc/cups/help/man-subscriptions.conf.html
|
||||||
|
file path=usr/share/doc/cups/help/network.html
|
||||||
|
file path=usr/share/doc/cups/help/options.html
|
||||||
|
file path=usr/share/doc/cups/help/overview.html
|
||||||
|
file path=usr/share/doc/cups/help/policies.html
|
||||||
|
file path=usr/share/doc/cups/help/postscript-driver.html
|
||||||
|
file path=usr/share/doc/cups/help/ppd-compiler.html
|
||||||
|
file path=usr/share/doc/cups/help/raster-driver.html
|
||||||
|
file path=usr/share/doc/cups/help/ref-ppdcfile.html
|
||||||
|
file path=usr/share/doc/cups/help/security.html
|
||||||
|
file path=usr/share/doc/cups/help/sharing.html
|
||||||
|
file path=usr/share/doc/cups/help/spec-banner.html
|
||||||
|
file path=usr/share/doc/cups/help/spec-command.html
|
||||||
|
file path=usr/share/doc/cups/help/spec-design.html
|
||||||
|
file path=usr/share/doc/cups/help/spec-ipp.html
|
||||||
|
file path=usr/share/doc/cups/help/spec-ppd.html
|
||||||
|
file path=usr/share/doc/cups/help/spec-raster.html
|
||||||
|
file path=usr/share/doc/cups/help/spec-stp.html
|
||||||
|
file path=usr/share/doc/cups/help/translation.html
|
||||||
|
file path=usr/share/doc/cups/images/color-wheel.png
|
||||||
|
file path=usr/share/doc/cups/images/cups-block-diagram.png
|
||||||
|
file path=usr/share/doc/cups/images/cups-command-chain.png
|
||||||
|
file path=usr/share/doc/cups/images/cups-icon.png
|
||||||
|
file path=usr/share/doc/cups/images/cups-postscript-chain.png
|
||||||
|
file path=usr/share/doc/cups/images/cups-raster-chain.png
|
||||||
|
file path=usr/share/doc/cups/images/cups.png
|
||||||
|
file path=usr/share/doc/cups/images/generic.png
|
||||||
|
file path=usr/share/doc/cups/images/left.gif
|
||||||
|
file path=usr/share/doc/cups/images/raster-organization.png
|
||||||
|
file path=usr/share/doc/cups/images/raster.png
|
||||||
|
file path=usr/share/doc/cups/images/right.gif
|
||||||
|
file path=usr/share/doc/cups/images/sample-image.png
|
||||||
|
file path=usr/share/doc/cups/images/sel.gif
|
||||||
|
file path=usr/share/doc/cups/images/smiley.jpg
|
||||||
|
file path=usr/share/doc/cups/images/unsel.gif
|
||||||
|
file path=usr/share/doc/cups/images/wait.gif
|
||||||
|
file path=usr/share/doc/cups/index.html
|
||||||
|
file path=usr/share/doc/cups/ja/index.html
|
||||||
|
file path=usr/share/doc/cups/pt_BR/index.html
|
||||||
|
file path=usr/share/doc/cups/robots.txt
|
||||||
|
file path=usr/share/doc/cups/ru/index.html
|
||||||
|
file path=usr/share/icons/hicolor/128x128/apps/cups.png
|
||||||
|
file path=usr/share/icons/hicolor/16x16/apps/cups.png
|
||||||
|
file path=usr/share/icons/hicolor/32x32/apps/cups.png
|
||||||
|
file path=usr/share/icons/hicolor/64x64/apps/cups.png
|
||||||
|
file path=usr/share/locale/ca/cups_ca.po
|
||||||
|
file path=usr/share/locale/cs/cups_cs.po
|
||||||
|
file path=usr/share/locale/de/cups_de.po
|
||||||
|
file path=usr/share/locale/en/cups_en.po
|
||||||
|
file path=usr/share/locale/es/cups_es.po
|
||||||
|
file path=usr/share/locale/fr/cups_fr.po
|
||||||
|
file path=usr/share/locale/it/cups_it.po
|
||||||
|
file path=usr/share/locale/ja/cups_ja.po
|
||||||
|
file path=usr/share/locale/pt_BR/cups_pt_BR.po
|
||||||
|
file path=usr/share/locale/ru/cups_ru.po
|
||||||
|
file path=usr/share/locale/zh_CN/cups_zh_CN.po
|
||||||
|
file path=usr/share/man/man1/cancel.1
|
||||||
|
file path=usr/share/man/man1/cups-config.1
|
||||||
|
file path=usr/share/man/man1/cups.1
|
||||||
|
file path=usr/share/man/man1/cupstestppd.1
|
||||||
|
file path=usr/share/man/man1/ippeveprinter.1
|
||||||
|
file path=usr/share/man/man1/ippfind.1
|
||||||
|
file path=usr/share/man/man1/ipptool.1
|
||||||
|
file path=usr/share/man/man1/lp.1
|
||||||
|
file path=usr/share/man/man1/lpoptions.1
|
||||||
|
file path=usr/share/man/man1/lpq.1
|
||||||
|
file path=usr/share/man/man1/lpr.1
|
||||||
|
file path=usr/share/man/man1/lprm.1
|
||||||
|
file path=usr/share/man/man1/lpstat.1
|
||||||
|
file path=usr/share/man/man1/ppdc.1
|
||||||
|
file path=usr/share/man/man1/ppdhtml.1
|
||||||
|
file path=usr/share/man/man1/ppdi.1
|
||||||
|
file path=usr/share/man/man1/ppdmerge.1
|
||||||
|
file path=usr/share/man/man1/ppdpo.1
|
||||||
|
file path=usr/share/man/man5/classes.conf.5
|
||||||
|
file path=usr/share/man/man5/client.conf.5
|
||||||
|
file path=usr/share/man/man5/cups-files.conf.5
|
||||||
|
file path=usr/share/man/man5/cups-snmp.conf.5
|
||||||
|
file path=usr/share/man/man5/cupsd-logs.5
|
||||||
|
file path=usr/share/man/man5/cupsd.conf.5
|
||||||
|
file path=usr/share/man/man5/ipptoolfile.5
|
||||||
|
file path=usr/share/man/man5/mailto.conf.5
|
||||||
|
file path=usr/share/man/man5/mime.convs.5
|
||||||
|
file path=usr/share/man/man5/mime.types.5
|
||||||
|
file path=usr/share/man/man5/ppdcfile.5
|
||||||
|
file path=usr/share/man/man5/printers.conf.5
|
||||||
|
file path=usr/share/man/man5/subscriptions.conf.5
|
||||||
|
file path=usr/share/man/man7/backend.7
|
||||||
|
file path=usr/share/man/man7/filter.7
|
||||||
|
file path=usr/share/man/man7/ippevepcl.7
|
||||||
|
link path=usr/share/man/man7/ippeveps.7 target=ippevepcl.7
|
||||||
|
file path=usr/share/man/man7/notifier.7
|
||||||
|
link path=usr/share/man/man8/cups-deviced.8 target=cupsd-helper.8
|
||||||
|
link path=usr/share/man/man8/cups-driverd.8 target=cupsd-helper.8
|
||||||
|
link path=usr/share/man/man8/cups-exec.8 target=cupsd-helper.8
|
||||||
|
file path=usr/share/man/man8/cups-lpd.8
|
||||||
|
file path=usr/share/man/man8/cups-snmp.8
|
||||||
|
file path=usr/share/man/man8/cupsaccept.8
|
||||||
|
file path=usr/share/man/man8/cupsctl.8
|
||||||
|
file path=usr/share/man/man8/cupsd-helper.8
|
||||||
|
file path=usr/share/man/man8/cupsd.8
|
||||||
|
link path=usr/share/man/man8/cupsdisable.8 target=cupsenable.8
|
||||||
|
file path=usr/share/man/man8/cupsenable.8
|
||||||
|
file path=usr/share/man/man8/cupsfilter.8
|
||||||
|
link path=usr/share/man/man8/cupsreject.8 target=cupsaccept.8
|
||||||
|
file path=usr/share/man/man8/lpadmin.8
|
||||||
|
file path=usr/share/man/man8/lpc.8
|
||||||
|
file path=usr/share/man/man8/lpinfo.8
|
||||||
|
file path=usr/share/man/man8/lpmove.8
|
||||||
105
sample_data/pkgs/cups/patches/02-smf.patch
Normal file
105
sample_data/pkgs/cups/patches/02-smf.patch
Normal file
|
|
@ -0,0 +1,105 @@
|
||||||
|
smf(5) support in cups upstream was introduced in times of
|
||||||
|
Open Solaris enthusiasm. Currently the community do not like
|
||||||
|
to support anything non-Apple.
|
||||||
|
It might worth to ask to remove the smf(5) support from
|
||||||
|
cups upstream entirely then keep it on by own.
|
||||||
|
|
||||||
|
diff -wpruN '--exclude=*.orig' a~/scheduler/cups.xml.in a/scheduler/cups.xml.in
|
||||||
|
--- a~/scheduler/cups.xml.in 1970-01-01 00:00:00
|
||||||
|
+++ a/scheduler/cups.xml.in 1970-01-01 00:00:00
|
||||||
|
@@ -41,7 +41,6 @@
|
||||||
|
<service_fmri value='svc:/network/loopback' />
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
-
|
||||||
|
<dependency
|
||||||
|
name='network'
|
||||||
|
grouping='optional_all'
|
||||||
|
@@ -50,21 +49,13 @@
|
||||||
|
<service_fmri value='svc:/milestone/network' />
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
- <dependency
|
||||||
|
- name='lpsched'
|
||||||
|
- grouping='exclude_all'
|
||||||
|
- restart_on='none'
|
||||||
|
- type='service'>
|
||||||
|
- <service_fmri value='svc:/application/print/server' />
|
||||||
|
- </dependency>
|
||||||
|
-
|
||||||
|
<exec_method
|
||||||
|
type='method'
|
||||||
|
name='stop'
|
||||||
|
exec=':kill'
|
||||||
|
timeout_seconds='60' />
|
||||||
|
|
||||||
|
- <instance name='default' enabled='false' >
|
||||||
|
+ <instance name='default' enabled='true' >
|
||||||
|
|
||||||
|
<dependency
|
||||||
|
name='config_data'
|
||||||
|
@@ -79,16 +70,20 @@
|
||||||
|
name='start'
|
||||||
|
exec='@sbindir@/cupsd'
|
||||||
|
timeout_seconds='60' >
|
||||||
|
- <method_context>
|
||||||
|
+ <method_context security_flags="aslr">
|
||||||
|
<method_credential user='root' group='@CUPS_GROUP@' />
|
||||||
|
</method_context>
|
||||||
|
</exec_method>
|
||||||
|
|
||||||
|
<property_group name='general' type='framework'>
|
||||||
|
+ <propval name='active' type='boolean'
|
||||||
|
+ value='true' />
|
||||||
|
<propval name='action_authorization' type='astring'
|
||||||
|
value='solaris.smf.manage.cups' />
|
||||||
|
<propval name='value_authorization' type='astring'
|
||||||
|
- value='solaris.smf.value.cups' />
|
||||||
|
+ value='solaris.smf.manage.cups' />
|
||||||
|
+ <!-- sub-process core dumps shouldn't restart session -->
|
||||||
|
+ <propval name='ignore_error' type='astring' value='core,signal' />
|
||||||
|
</property_group>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
@@ -142,21 +137,13 @@
|
||||||
|
<service_fmri value='svc:/milestone/network' />
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
- <dependency
|
||||||
|
- name='in-lpd'
|
||||||
|
- grouping='exclude_all'
|
||||||
|
- restart_on='none'
|
||||||
|
- type='service'>
|
||||||
|
- <service_fmri value='svc:/application/print/rfc1179' />
|
||||||
|
- </dependency>
|
||||||
|
-
|
||||||
|
<exec_method
|
||||||
|
type='method'
|
||||||
|
name='stop'
|
||||||
|
exec=':kill'
|
||||||
|
timeout_seconds='60' />
|
||||||
|
|
||||||
|
- <instance name='default' enabled='false' >
|
||||||
|
+ <instance name='default' enabled='true' >
|
||||||
|
<dependency
|
||||||
|
name='cupsd'
|
||||||
|
grouping='require_all'
|
||||||
|
@@ -170,7 +157,7 @@
|
||||||
|
name='inetd_start'
|
||||||
|
exec='@CUPS_SERVERBIN@/daemon/cups-lpd -o document-format=application/octet-stream'
|
||||||
|
timeout_seconds='0'>
|
||||||
|
- <method_context>
|
||||||
|
+ <method_context security_flags="aslr">
|
||||||
|
<method_credential user='@CUPS_USER@' group='@CUPS_GROUP@' />
|
||||||
|
</method_context>
|
||||||
|
</exec_method>
|
||||||
|
@@ -188,7 +175,7 @@
|
||||||
|
<propval name='action_authorization' type='astring'
|
||||||
|
value='solaris.smf.manage.cups' />
|
||||||
|
<propval name='value_authorization' type='astring'
|
||||||
|
- value='solaris.smf.value.cups' />
|
||||||
|
+ value='solaris.smf.manage.cups' />
|
||||||
|
</property_group>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
|
||||||
13
sample_data/pkgs/cups/patches/properly-check-pie.patch
Normal file
13
sample_data/pkgs/cups/patches/properly-check-pie.patch
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
diff -wpruN '--exclude=*.orig' a~/config-scripts/cups-compiler.m4 a/config-scripts/cups-compiler.m4
|
||||||
|
--- a~/config-scripts/cups-compiler.m4 1970-01-01 00:00:00
|
||||||
|
+++ a/config-scripts/cups-compiler.m4 1970-01-01 00:00:00
|
||||||
|
@@ -145,7 +145,7 @@ if test -n "$GCC"; then
|
||||||
|
|
||||||
|
*)
|
||||||
|
CFLAGS="$CFLAGS -fPIE -pie"
|
||||||
|
- AC_TRY_COMPILE(,,[
|
||||||
|
+ AC_TRY_LINK(,,[
|
||||||
|
PIEFLAGS="-fPIE -pie"
|
||||||
|
AC_MSG_RESULT(yes)],
|
||||||
|
AC_MSG_RESULT(no))
|
||||||
|
|
||||||
27
sample_data/pkgs/cups/pkg5
Normal file
27
sample_data/pkgs/cups/pkg5
Normal file
|
|
@ -0,0 +1,27 @@
|
||||||
|
{
|
||||||
|
"dependencies": [
|
||||||
|
"SUNWcs",
|
||||||
|
"image/library/libpng16",
|
||||||
|
"image/library/libtiff",
|
||||||
|
"library/print/cups-libs",
|
||||||
|
"library/security/openssl",
|
||||||
|
"library/zlib",
|
||||||
|
"runtime/perl-522",
|
||||||
|
"runtime/perl-524",
|
||||||
|
"service/network/dns/mdns",
|
||||||
|
"service/network/slp",
|
||||||
|
"service/security/kerberos-5",
|
||||||
|
"system/library",
|
||||||
|
"system/library/g++-7-runtime",
|
||||||
|
"system/library/gcc-7-runtime",
|
||||||
|
"system/library/libdbus",
|
||||||
|
"system/library/math",
|
||||||
|
"system/library/security/gss",
|
||||||
|
"system/network/avahi"
|
||||||
|
],
|
||||||
|
"fmris": [
|
||||||
|
"library/print/cups-libs",
|
||||||
|
"print/cups"
|
||||||
|
],
|
||||||
|
"name": "cups"
|
||||||
|
}
|
||||||
Loading…
Add table
Reference in a new issue