Changeset 3f16459 for pst/printing


Ignore:
Timestamp:
09/14/2003 10:49:33 PM (21 years ago)
Author:
Igor Živković <igor@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.0, 6.1, 6.2, 6.2.0, 6.2.0-rc1, 6.2.0-rc2, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, v5_0, v5_0-pre1, v5_1, v5_1-pre1, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
d7d440b
Parents:
8de1b8ec
Message:

update to cups-1.1.19

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@1077 af4574ff-66df-0310-9fd7-8a98e5e911e0

Location:
pst/printing/cups
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • pst/printing/cups/cups-config.xml

    r8de1b8ec r3f16459  
    11<sect2>
    2 <title>CUPS Configuration</title>
     2<title><acronym>CUPS</acronym> Configuration</title>
    33
    4 <para>Configuration of CUPS is dependent on the type of printer and can be complex.
    5 Generally, postscript printers are easier.  For detailed instructions on
    6 configuration and use of CUPS, see <ulink url="http://www.cups.org/documentation.php"/>.
    7 The Software Administrators Manual and Software Users Manual are particularly
    8 useful.</para>
     4<para>Configuration of <acronym>CUPS</acronym> is dependent on the type
     5of printer and can be complex. Generally, postscript printers are easier.
     6For detailed instructions on configuration and use of <acronym>CUPS</acronym>,
     7see <ulink url="http://www.cups.org/documentation.php"/>. The Software
     8Administrators Manual and Software Users Manual are particularly useful.</para>
    99
    10 <para>During the install, cups created the startup file
    11 <filename>/etc/rc.d/init.d/cups</filename>.
    12 The file works, but you may want to change it to a more
    13 conventional LFS startup file:</para>
     10<para>During the install, <acronym>CUPS</acronym> created the startup file
     11<filename>/etc/rc.d/init.d/cups</filename>. The file works, but you may
     12want to change it to a more conventional <acronym>LFS</acronym> startup file:</para>
    1413
    15 <para><screen><userinput>cat &gt; /etc/rc.d/init.d/cups &lt;&lt; "EOF"
    16 
     14<screen><userinput><command>cat &gt; /etc/rc.d/init.d/cups &lt;&lt; "EOF"
    1715#!/bin/sh
    1816# Begin $rc_base/init.d/cups
     
    5553
    5654# End $rc_base/init.d/cups startup script.
    57 EOF</userinput></screen></para>
     55EOF</command></userinput></screen>
    5856
    59 <para>The CUPS install also copies the initialization script to the
    60 <filename>/etc/rc.d/rc{0,2,3,5}</filename> directories.  You may want
    61 to delete those files and add symbolic links to
    62 <filename>/etc/rc.d/init.d/cups</filename>.</para>
     57<para>Create the symbolic links to this file in the relevant
     58<filename class="directory">rc.d</filename> directory
     59with the following commands:</para>
    6360
    64 
     61<screen><userinput><command>cd /etc/rc.d/init.d &amp;&amp;
     62ln -sf ../init.d/cups ../rc0.d/K00cups &amp;&amp;
     63ln -sf ../init.d/cups ../rc2.d/S99cups &amp;&amp;
     64ln -sf ../init.d/cups ../rc3.d/S99cups &amp;&amp;
     65ln -sf ../init.d/cups ../rc5.d/S99cups</command></userinput></screen>
    6566
    6667</sect2>
  • pst/printing/cups/cups-desc.xml

    r8de1b8ec r3f16459  
    22<title>Contents</title>
    33
    4 <para>CUPS provides:</para>
     4<para><acronym>CUPS</acronym> provides
     5<command>accept</command>,
     6<command>cupsaddsmb</command>,
     7<command>cupsd</command>,
     8<command>cupstestppd</command>,
     9<command>lpadmin</command>,
     10<command>lpc</command>,
     11<command>lpinfo</command>,
     12<command>lpmove</command>,
     13<command>reject</command>,
     14<command>cancel</command>,
     15<command>cups-config</command>,
     16<command>disable</command>,
     17<command>enable</command>,
     18<command>lp</command>,
     19<command>lpoptions</command>,
     20<command>lppasswd</command>,
     21<command>lpq</command>,
     22<command>lpr</command>,
     23<command>lprm</command>,
     24<command>lpstat</command>,
     25<filename class="libraryfile">libcups</filename>,
     26<filename class="libraryfile">libcupsimage</filename> and various
     27scripts and filters.</para>
    528
    6 <para>/usr/sbin/lpc - line printer control program </para>
    7 <para>/usr/sbin/cupsd - common unix printing system daemon</para>
    8 <para>/usr/sbin/accept - accept jobs sent to a destination</para>
    9 <para>/usr/sbin/reject - reject jobs sent to a destination</para>
    10 <para>/usr/sbin/cupsaddsmb - export printers to samba for windows clients</para>
    11 <para>/usr/sbin/lpadmin - configure cups printers and classes</para>
    12 <para>/usr/sbin/lpinfo - show available devices or drivers </para>
    13 <para>/usr/sbin/lpmove - move a job to a new destination</para>
    14 <para>/usr/sbin/cupstestppd - test conformance of ppd files</para>
    15 <para>/usr/bin/lpq - show printer queue status</para>
    16 <para>/usr/bin/lpr - print files</para>
    17 <para>/usr/bin/lprm -  cancel print jobs</para>
    18 <para>/usr/bin/cancel - cancel jobs</para>
    19 <para>/usr/bin/disable -  start printers and classes</para>
    20 <para>/usr/bin/enable -  start printers and classes</para>
    21 <para>/usr/bin/lp - print files </para>
    22 <para>/usr/bin/lpoptions - display or set printer options and defaults</para>
    23 <para>/usr/bin/lpstat -  print cups status information</para>
    24 <para>/usr/bin/lppasswd - add, change, or delete digest passwords</para>
    25 <para>/usr/bin/cups-config - get cups api, compiler, directory, and link information</para>
     29<sect3><title>lpc</title>
     30<para><command>lpc</command> provides limited control over printer
     31and class queues provided by <acronym>CUPS</acronym>.</para></sect3>
     32
     33<sect3><title>cupsd</title>
     34<para><command>cupsd</command> is the scheduler for the Common UNIX Printing System.
     35</para></sect3>
     36
     37<sect3><title>accept</title>
     38<para><command>accept</command> instructs the printing system to accept print jobs to the specified
     39destinations.
     40</para></sect3>
     41
     42<sect3><title>reject</title>
     43<para><command>reject</command> reject instructs the printing system to
     44reject print jobs to the specified destinations.
     45</para></sect3>
     46
     47<sect3><title>cupsaddsmb</title>
     48<para><command>cupsaddsmb</command> exports printers to the SAMBA software for
     49use with Windows clients.
     50</para></sect3>
     51
     52<sect3><title>lpadmin</title>
     53<para><command>lpadmin</command> configures printer and class queues provided by
     54<acronym>CUPS</acronym>.
     55</para></sect3>
     56
     57<sect3><title>lpinfo</title>
     58<para><command>lpinfo</command> lists the available devices or drivers known to
     59the <acronym>CUPS</acronym> server.
     60</para></sect3>
     61
     62<sect3><title>lpmove</title>
     63<para><command>lpmove</command> moves the specified job to a new destination.
     64</para></sect3>
     65
     66<sect3><title>cupstestppd</title>
     67<para><command>cupstestppd</command> tests the conformance of <acronym>PPD</acronym> files.
     68</para></sect3>
     69
     70<sect3><title>lpq</title>
     71<para><command>lpq</command> shows the current print queue status on the named printer.
     72</para></sect3>
     73
     74<sect3><title>lpr</title>
     75<para><command>lpr</command> submits files for printing.
     76</para></sect3>
     77
     78<sect3><title>lprm</title>
     79<para><command>lprm</command> cancels print jobs that have been queued for printing.
     80</para></sect3>
     81
     82<sect3><title>cancel</title>
     83<para><command>cancel</command> cancels existing print jobs.
     84</para></sect3>
     85
     86<sect3><title>disable</title>
     87<para><command>disable</command> stops the named printers or classes.
     88</para></sect3>
     89
     90<sect3><title>enable</title>
     91<para><command>enable</command> starts the named printers or classes.
     92</para></sect3>
     93
     94<sect3><title>lp</title>
     95<para><command>lp</command> submits files for printing or alters a pending job.
     96</para></sect3>
     97
     98<sect3><title>lpoptions</title>
     99<para><command>lpoptions</command> displays or sets printer options and defaults.
     100</para></sect3>
     101
     102<sect3><title>lpstat</title>
     103<para><command>lpstat</command> displays status information about the
     104current classes, jobs, and printers.</para></sect3>
     105
     106<sect3><title>lppasswd</title>
     107<para><command>lppasswd</command> adds, changes or deletes passwords in
     108the <acronym>CUPS</acronym> digest password file <filename>passwd.md5</filename>.
     109</para></sect3>
     110
     111<sect3><title>cups-config</title>
     112<para><command>cups-config</command> is the <acronym>CUPS</acronym> program configuration utility.
     113</para></sect3>
    26114
    27115</sect2>
    28 
  • pst/printing/cups/cups-exp.xml

    r8de1b8ec r3f16459  
    11<sect2>
    2 <title>Installation command explanations</title>
     2<title>Command explanations</title>
    33
    4 <para>The basic default behavior of the installation is appropriate for LFS systems. 
    5 CUPS files are placed in <filename>/usr/bin</filename>,
    6 <filename>/usr/sbin</filename>, <filename>/var</filename> and
    7 <filename>/etc/cups</filename>.</para>
     4<para>The basic default behavior of the installation is appropriate for
     5<acronym>LFS</acronym> systems. <acronym>CUPS</acronym> files are placed in <filename
     6class="directory">/usr/bin</filename>, <filename class="directory">/usr/sbin</filename>, <filename
     7class="directory">/var</filename> and <filename class="directory">/etc/cups</filename>.</para>
     8
     9<para><command>rm /etc/rc.d/rc*.d/*cups</command> : We want symbolic
     10links to <filename>/etc/rc.d/init.d/cups</filename> instead of the initialization scripts
     11which <acronym>CUPS</acronym> installs.</para>
    812
    913</sect2>
  • pst/printing/cups/cups-inst.xml

    r8de1b8ec r3f16459  
    11<sect2>
    2 <title>Installation of CUPS</title>
     2<title>Installation of
     3<application><acronym>CUPS</acronym></application></title>
    34
    4 <para>Install CUPS by running the following commands:</para>
     5<para>Install <application><acronym>CUPS</acronym></application> by
     6running the following commands:</para>
    57
    6 <para><screen><userinput>./configure &amp;&amp;
     8<screen><userinput><command>./configure &amp;&amp;
    79make &amp;&amp;
    8 make install</userinput></screen></para>
    9 
     10make install &amp;&amp;
     11rm /etc/rc.d/rc*.d/*cups</command></userinput></screen>
    1012
    1113</sect2>
  • pst/printing/cups/cups-intro.xml

    r8de1b8ec r3f16459  
    11<sect2>
    2 <title>Introduction to CUPS</title>
     2<title>Introduction to
     3<application><acronym>CUPS</acronym></application></title>
    34
    4 <screen>Download location (HTTP):       <ulink url="&cups-download-http;"/>
    5 Download location (FTP):        <ulink url="&cups-download-ftp;"/>
    6 Version used:                   &cups-version;
    7 Package size:                   &cups-size;
    8 Estimated Disk space required:  &cups-buildsize;</screen>
    9 
    10 
    11 <para>The Common UNIX Printing System ("CUPS") is a print spooler and
     5<para>The Common UNIX Printing System (<acronym>CUPS</acronym>) is a print spooler and
    126associated utilities. It is based on the "Internet Printing Protocol"
    137and provides printing services to most PostScript and
    148raster printers.</para>
    159
    16 <screen>CUPS depends on:
    17 <xref linkend="espgs"/> (for non-postscript printers)
    18 CUPS will utilize:
    19 <xref linkend="libjpeg"/>, <xref linkend="libpng"/> and <xref linkend="libtiff"/></screen>
     10<sect3><title>Package information</title>
     11<itemizedlist spacing='compact'>
     12<listitem><para>Download (HTTP): <ulink url="&cups-download-http;"/></para></listitem>
     13<listitem><para>Download (FTP): <ulink url="&cups-download-ftp;"/></para></listitem>
     14<listitem><para>Download size: &cups-size;</para></listitem>
     15<listitem><para>Estimated Disk space required: &cups-buildsize;</para></listitem>
     16<listitem><para>Estimated build time: &cups-time;</para></listitem></itemizedlist>
     17</sect3>
     18
     19<sect3><title><application><acronym>CUPS</acronym></application> dependencies</title>
     20<sect4><title>Optional</title>
     21<para><xref linkend="libjpeg"/>, <xref linkend="libpng"/>, <xref
     22linkend="libtiff"/>, <xref linkend="openssl"/>, <xref
     23linkend="Linux_PAM"/>, <!--<xref linkend="php"/>--> and <xref
     24linkend="Python"/></para></sect4>
     25</sect3>
    2026
    2127</sect2>
  • pst/printing/cups/cups.ent

    r8de1b8ec r3f16459  
    55<!ENTITY cups-config SYSTEM "cups-config.xml">
    66<!ENTITY cups-exp SYSTEM "cups-exp.xml">
    7 <!ENTITY cups-buildsize "21 MB">
    8 <!ENTITY cups-version "1.1.18">
    9 <!ENTITY cups-download-http "http://www.cups.org/software.html">
     7<!ENTITY cups-buildsize "32 MB">
     8<!ENTITY cups-version "1.1.19">
     9<!ENTITY cups-download-http "">
    1010<!ENTITY cups-download-ftp "ftp://ftp.easysw.com/pub/cups/&cups-version;/cups-&cups-version;-source.tar.bz2">
    11 <!ENTITY cups-size "3.3 MB">
     11<!ENTITY cups-size "3.5 MB">
     12<!ENTITY cups-time "0.67 SBU">
Note: See TracChangeset for help on using the changeset viewer.