debian/0000755000000000000000000000000011765323621007174 5ustar debian/README.Debian0000644000000000000000000001070711765311426011242 0ustar README for Debian package of LPRng ================================== This is a collection of things that you should read, especially if you are having troubles with LPRng or your printers. Please also note there is a LPRng-HOWTO in the lprng-doc package. If you are having one of these problems listed below and report a bug about it, make sure you have read this README and you say in your bug report you have done so. GTK Applications Not Printing to LPRng -------------------------------------- Programs based on the gtk library (which includes a lot of popular programs in Debian) have lost the ability to print to lpr/lprng just before the release of Debian 5.0. A workaround to this problem of gtk+2.0 can be: * for a one-user setup, include an entry in the file .gtkrc-2.0 in your home directory with the line: gtk-print-backends = "file,lpr" * for a system-wide setup, include the same line in the file /etc/gtk-2.0/gtkrc Network Printer not Printing ---------------------------- #1 source of all my bug reports would have to be this. Someone has a networked printer (that is a printer with its own IP address), they've upgraded from some old LPRng, say 3.6.12 or lower, and now the printer stops working and the jobs just disappear. You probably have something in your /etc/printcap like lp=/dev/null as well as some rp and rm lines. Well, the job is going to the lp line and ending up in /dev/null, remove that line out of printcap. Or you might have a lpr_bounce clause in there which should be removed. Not printing under high load? ----------------------------- #2 source of bugs, maybe going to #1 soon is the bugs surrounding done_jobs. In short if you run versions around 3.8.10 you have old jobs hanging around your spool, if you run 3.8.15 then you'll lose jobs. I have now put a temporary fix (done_jobs=0) by default. If you do not let dpkg upgrade your lpd.conf file then unless you like weirdo bugs put a line in /etc/lprng/lpd.conf like this: done_jobs=0 Remote Users not being able to print ------------------------------------ LPRng version 3.6.A locked down the daemon even more than previous versions. By default the Debian package doesn't listen on the TCP port. To enable remote connections to the LPRng lpd daemon, add the following line to /etc/lprng/lpd.conf: lpd_listen_port=515 Local printer and lprng not starting ------------------------------------ For some peoples setups you may need to add some modules "parport_c" and "lp" to /etc/modules for the lprng daemon to work. Remote Printers and no spool file --------------------------------- Some people want to directly print to their remote printers without having all the spooling etc on the Linux box. Some old versions allowed this to happen out of the box. The newer LPRngs do not because it is generall a bad idea. But if you want to do it, put something like this in your /etc/printcap lp1:rp=pr:rm=10.0.1.2 :force_localhost@ Also read the LPRng-HOWTO for more information. Why is GDBM disabled in configure? ---------------------------------- In 3.7.3 gdbm was introduced. Unfortunately it uses some definitions that I could not find (certainly, they won't in gdbm.h), so it was disabled. lpd does not start or you get connection refused messages --------------------------------------------------------- From version 3.8.2 there are two new reasons why LPRng's lpd server will not start. The first is that the /etc/printcap file is not installed by default as it is shared amongst many packages and the lprng package should not claim ownership over it. Look in /usr/share/doc/lprng/examples for an example printcap. Secondly there is a debconf question which asks if you want lpd to be started, most people should say yes. Using lprng in a chroot ----------------------- If you use lprng inside a chroot you will be unable to print if you try to use localhost. This is because lprng is too clever and when it sees localhost it uses a unix socket (which may not exist in the chroot). The solution is to either mount /var/run into the chroot or alternatively add the following line to the lpd.conf file inside the chroot: unix_socket_path=off This will force lprng client inside the chroot to actually use a TCP socket and not the (non-existent) unix socket. Daily check ----------- Since 3.8.A-1 the daily check will silently exit if there is no /etc/printcap file. This means if you have to have lprng installed for lsb reasons but don't have printers, just make sure there is no /etc/printcap debian/control0000644000000000000000000000145111765320357010603 0ustar Source: lprng Section: net Priority: extra Maintainer: Craig Small Build-Depends: debhelper (>= 9.0), mawk | gawk, procps, libwrap0-dev, libkrb5-dev, debconf | debconf-2.0, libssl-dev, po-debconf, openssl Standards-Version: 3.9.3 Homepage: http://lprng.sourceforge.net/ Package: lprng Architecture: any Multi-Arch: foreign Pre-Depends: debconf | debconf-2.0 Depends: lsb-base (>= 2.0), ${shlibs:Depends}, ${misc:Depends} Provides: lpr Suggests: magicfilter, lprng-doc Conflicts: lpr, apsfilter (<<4.9.1-10), suidmanager (<< 0.50), cupsys-bsd Replaces: lpr Description: lpr/lpd printer spooling system The LPRng software is an enhanced, extended, and portable version of the Berkeley LPR software (the standards UNIX printer spooler) You can use this for local and remote printers. debian/patches/0000755000000000000000000000000011765312516010624 5ustar debian/patches/string_literals0000644000000000000000000000171111765312516013754 0ustar --- a/src/common/sendjob.c +++ b/src/common/sendjob.c @@ -172,7 +172,7 @@ } goto retry_connect; } - setstatus(logjob, error ); + setstatus(logjob, "%s", error ); goto error; } save_host = safestrdup(RemoteHost_DYN,__FILE__,__LINE__); --- a/src/common/checkpc.c +++ b/src/common/checkpc.c @@ -114,7 +114,7 @@ } if( Verbose ){ - if(Verbose)MESSAGE( Version ); + MESSAGE("%s", Version ); } Initialize(argc, argv, envp, 'D' ); @@ -1436,7 +1436,7 @@ if( (tf = popen( "ps | grep XXYYZZ | grep -v grep", "r" )) ){ Max_open( fileno(tf) ); while( fgets( line, sizeof(line), tf ) ){ - FPRINTF( STDOUT, line ); + FPRINTF( STDOUT, "%s", line ); ++i; } fclose(tf); @@ -1445,7 +1445,7 @@ if( i == 0 && (tf = popen( "ps | grep XXYYZZ | grep -v grep", "r" )) ){ Max_open( fileno(tf) ); while( fgets( line, sizeof(line), tf ) ){ - FPRINTF( STDOUT, line ); + FPRINTF( STDOUT, "%s", line ); ++i; } fclose(tf); debian/patches/series0000644000000000000000000000007111765312341012033 0ustar lpd_conf_manwarnings portable_maxpathlen string_literals debian/patches/10_lpd_n.patch0000644000000000000000000000267411532526724013252 0ustar Author: Description: Minor man page corrections for lpd.n --- lprng-3.8.A.orig/man/lpd.n +++ lprng-3.8.A/man/lpd.n @@ -162,7 +162,7 @@ Q for queue information (i.e.- LPRM request), and so forth. The -.l X +.B X key indicates the initial connection to the LPD spooler, and can be used to control connections from remote systems. The @@ -820,7 +820,7 @@ Normally job files are forwarded to a printer without modification. The -.b lpd_bounce +.B lpd_bounce flag makes the queue a .I "bounce queue" and allows banners to be generated and @@ -1251,13 +1251,13 @@ The options for the filter command line will be replaced by appropriate values. Option specifications have the form $[0| ][-]X. -." Option specifications have the form $[0| ][-][']X. +.\" Option specifications have the form $[0| ][-][']X. The default option expansion has the form $X -> -X'value'; the form $0X or $(space)X adds a space after the -X, i.e.- $0X -> -X 'value'; the form $-X suppresses the -X, i.e. - $-X -> value. -." the form $-X suppresses the -X, i.e. - $-X -> 'value'; -." and the form $'X suppresses the quotes around the value. -." Note that the 0,-, and ' can be combined. For example, $-'X -> value. +.\" the form $-X suppresses the -X, i.e. - $-X -> 'value'; +.\" and the form $'X suppresses the quotes around the value. +.\" Note that the 0,-, and ' can be combined. For example, $-'X -> value. The options will be expanded as follows: .RS .sp debian/patches/manpage_symlink.patch0000644000000000000000000000112111532526724015016 0ustar Index: lprng-3.8.A/man/pclbanner.n =================================================================== --- lprng-3.8.A.orig/man/pclbanner.n 2009-09-22 15:10:46.000000000 +1000 +++ lprng-3.8.A/man/pclbanner.n 2009-09-22 15:10:59.000000000 +1000 @@ -1 +1 @@ -.so man3/lpbanner.3 +.so man1/lpbanner.1 Index: lprng-3.8.A/man/psbanner.n =================================================================== --- lprng-3.8.A.orig/man/psbanner.n 2009-09-22 15:11:26.000000000 +1000 +++ lprng-3.8.A/man/psbanner.n 2009-09-22 15:11:32.000000000 +1000 @@ -1 +1 @@ -.so man3/lpbanner.3 +.so man1/lpbanner.1 debian/patches/10_lpd_perms_n.patch0000644000000000000000000000044211532526724014447 0ustar Author: Description: Changed .l tags to .B --- lprng-3.8.A.orig/man/lpd.perms.n +++ lprng-3.8.A/man/lpd.perms.n @@ -72,7 +72,7 @@ and Q for queue information (i.e.- LPQ request). The -.l X +.B X key is used when checking for connection information. .LP Initially, debian/patches/20_kfreebsd_stty.patch0000644000000000000000000000103011532526724015010 0ustar Author: Description: lprng builds on kfreebsd #537857 Index: lprng-3.8.A/src/common/stty.c =================================================================== --- lprng-3.8.A.orig/src/common/stty.c 2009-09-22 15:03:59.000000000 +1000 +++ lprng-3.8.A/src/common/stty.c 2009-09-22 15:24:19.000000000 +1000 @@ -758,8 +758,12 @@ #endif #ifdef TABDLY {"TAB0", TAB0, TABDLY}, +#ifdef TAB1 {"TAB1", TAB1, TABDLY}, +#endif +#ifdef TAB2 {"TAB2", TAB2, TABDLY}, +#endif {"TAB3", TAB3, TABDLY}, #endif #ifdef BSDLY debian/patches/10_lpd_conf_n.patch0000644000000000000000000000253411532526724014252 0ustar Author: Description: Describes lpd_listen_port Closes: #492684 Index: lprng-3.8.A/man/lpd.conf.n =================================================================== --- lprng-3.8.A.orig/man/lpd.conf.n 2009-09-22 15:42:43.000000000 +1000 +++ lprng-3.8.A/man/lpd.conf.n 2009-09-22 15:50:04.000000000 +1000 @@ -376,8 +376,13 @@ If the backwards_compatible flag is set, only 3 digit numbers will be used. .TP +\fBlpd_listen_port\fR (default: off) [ipaddr%]port +The port that \fBlpd\fR binds to. If the parameter is set to off then +\fBlpd\fR does not listen to any TCP port. See \fBlpd_port\fR for +details of the format of the argument. +.TP \fBlpd_port\fR (default: \fIprinter\fR) [ipaddr%]port -The port that \fBlpd\fR binds to, and that \fBlpr\fR and +The port that \fBlpr\fR and the other client programs send their requests to. The specification has the format ipaddr%port. If the IP address is specified then a bind to only this address and @@ -498,7 +503,7 @@ See PRINTCAP LOOKUP for details. .TP \fBperms_path\fR -(default: /etc/lpd.perms:/usr/etc/lpd.perms:/var/spool/lpd/lpd.perms.%h) +(default: /etc/lpd.perms:/usr/etc/lpd.perms: /var/spool/lpd/lpd.perms.%h) The location of the printer permissions database. If a file or filter does not exist, it is skipped. The first file or filter that exists and is readable will be used. debian/patches/lpd_conf_manwarnings0000644000000000000000000000211611532547464014743 0ustar Description: Minor lpd.conf manpage fixes to stop man complaining Author: Craig Small Last-Update: 2011-02-28 --- a/man/lpd.conf.n +++ b/man/lpd.conf.n @@ -481,7 +481,7 @@ originate from ports in the range 721-731. .TP \fBpass_env\fR -(default: "LANG,LC_CTYPE,LC_NUMERIC,LC_TIME,LC_COLLATE,LC_MONETARY,LC_MESSAGES,LC_PAPER,LC_NAME,LC_ADDRESS,LC_TELEPHONE,LC_MEASUREMENT,LC_IDENTIFICATION,LC_ALL") +(default: "LANG,LC_CTYPE,LC_NUMERIC,LC_TIME,LC_COLLATE,LC_MONETARY, LC_MESSAGES,LC_PAPER,LC_NAME,LC_ADDRESS,LC_TELEPHONE,LC_MEASUREMENT, LC_IDENTIFICATION,LC_ALL") Client programs such as LPR, LPC, etc., will pass these environment variables to any filter programs they start. .TP @@ -505,7 +505,7 @@ See PRINTCAP LOOKUP for details. .TP \fBperms_path\fR -(default: /etc/lpd.perms:/usr/etc/lpd.perms:/var/spool/lpd/lpd.perms.%h) +(default: /etc/lpd.perms:/usr/etc/lpd.perms: /var/spool/lpd/lpd.perms.%h) The location of the printer permissions database. If a file or filter does not exist, it is skipped. The first file or filter that exists and is readable will be used. debian/patches/portable_maxpathlen0000644000000000000000000000167611765310334014606 0ustar Description: Define MAXPATHLEN for Hurd-i386 lprng currently FTBFS on hurd-i386, because MAXPATHLEN is not defined for GNU/Hurd. POSIX says it is optional when there is no hard limit. The inlined patch below defines that value to 4096 for GNU. Since lprng does not seen to be the Debian default, cups is, this small patch can be used to make lprng available until all cups tests are OK for Hurd. Author: Svante Signell Reviewed-by: Craig Small Bug-Debian: http://bugs.debian.org/671848 --- a/src/include/portable.h +++ b/src/include/portable.h @@ -152,6 +152,12 @@ #endif /*************************************************************************/ +#if defined(__GNU__) +# define IS_GNU OSVERSION +# define MAXPATHLEN 4096 +#endif + +/*************************************************************************/ #if defined(__convex__) /* Convex OS 11.0 - from w_stef */ # define IS_CONVEX OSVERSION debian/lpd.conf-debian0000644000000000000000000000016611532526724012046 0ustar # LPRng for Debian GNU/Linux # /etc/lprng/lpd.conf # See lpd.conf(5) and /usr/share/doc/lprng/examples/lpd.conf.gz # debian/rules0000755000000000000000000000247211765322250010256 0ustar #!/usr/bin/make -f DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH) %: dh $@ autogen-files := debian/lprng.init debian/lprng.if-up override_dh_auto_configure: # Required to stop timestamp skew touch configure.in && touch aclocal.m4 && touch configure ./configure $(confflags) \ --prefix=/usr \ --sysconfdir=/etc \ --with-config_subdir=lprng \ --with-filterdir=\$${prefix}/lib/${DEB_HOST_MULTIARCH}/lprng/filters \ --with-lockfile=/var/run/lprng/lpd \ --with-unix_socket_path=/var/run/lprng/socket \ --with-openssl-lib="/usr/lib /usr/lib/${DEB_HOST_MULTIARCH}" \ --enable-kerberos_checks --enable-kerberos \ --with-groupid=lp \ --disable-remote \ --enable-lpd.conf.local override_dh_auto_install: $(autogen-files) # Add here commands to install the package into debian/lprng. dh_auto_install -- POSTINSTALL=NO DESTDIR=$(CURDIR)/debian/lprng SAMPLESUFFIX="" install -m 644 conf/lpd.perms $(CURDIR)/debian/lprng/etc/lprng install -m 644 debian/lpd.conf-debian $(CURDIR)/debian/lprng/etc/lprng/lpd.conf chmod 644 $(CURDIR)/debian/lprng/etc/lprng/lpd.conf # Remove sample printcap rm $(CURDIR)/debian/lprng/etc/printcap override_dh_auto_clean: rm -f $(autogen-files) dh_auto_clean debian/%: debian/%.in sed -e 's/$${DEB_HOST_MULTIARCH}/$(DEB_HOST_MULTIARCH)/g' $< > $@ debian/compat0000644000000000000000000000000211765311665010377 0ustar 9 debian/NEWS0000644000000000000000000000126311532526724007676 0ustar lprng (3.8.A-2.1) unstable; urgency=low Programs based on the gtk library (which includes a lot of popular programs in Debian) have lost the ability to print to lpr/lprng. A way to work around this problem of gtk+2.0, please use: + for a one-user setup, include an entry in the file .gtkrc-2.0 in your home directory with the line: gtk-print-backends = "file,lpr" + for a system-wide setup, include the same line in the file /etc/gtk-2.0/gtkrc It may happen that your setup will be broken again if GTK 3.0 doesn't read the gtk-2.0 files or don't provide an appropriate upgrade path. -- Rogério Brito Mon, 18 May 2009 21:36:28 -0300 debian/config0000644000000000000000000000070311532526724010365 0ustar #!/bin/sh set -e # source debconf library. . /usr/share/debconf/confmodule # lpq, lprm lpr setuid? db_input low lprng/setuid_tools || true db_go # Check for default file, if it is there then set the debconf value default_start_lpd="true" if [ -f /etc/default/lprng ]; then grep -q 'START_LPD=yes' /etc/default/lprng || default_start_lpd="false" db_set lprng/start_lpd $default_start_lpd fi db_input medium lprng/start_lpd || true db_go debian/preinst0000644000000000000000000000301211532526724010600 0ustar #! /bin/sh # preinst script for LPRng # # see: dh_installdeb(1) set -e # summary of how this script can be called: # * `install' # * `install' # * `upgrade' # * `abort-upgrade' # Source the debconf library. . /usr/share/debconf/confmodule check_configfile_locations() { # Check to see if we have both old *AND* new config files Bug #66570 if [ -f /etc/lprng/lpd.conf ] && [ -f /etc/lpd.conf ]; then db_input high lprng/twolpd_conf fi if [ -f /etc/lprng/lpd.perms ] && [ -f /etc/lpd.perms ]; then db_input high lprng/twolpd_perms fi # Check to see if new config directory is here if [ \! -d /etc/lprng ] ; then mkdir -p /etc/lprng if [ \! -f /etc/lprng/lpd.conf ] && [ -f /etc/lpd.conf ]; then cp /etc/lpd.conf /etc/lprng/lpd.conf rm -f /etc/lpd.conf fi if [ \! -f /etc/lprng/lpd.perms ] && [ -f /etc/lpd.perms ]; then cp /etc/lpd.perms /etc/lprng/lpd.perms rm -f /etc/lpd.perms fi fi db_stop } # We only need to worry about old configuration files if the old # version (either installed or just config files is older than if dpkg --compare-versions "$2" lt 3.6.16-1; then check_configfile_locations fi case "$1" in install|upgrade|abort-upgrade) ;; *) echo "preinst called with unknown argument \`$1'" >&2 exit 0 ;; esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# debian/examples0000644000000000000000000000003311765323366010737 0ustar conf/printcap src/lpd.conf debian/po/0000755000000000000000000000000011532526724007613 5ustar debian/po/bugreport.cgi?msg=5;filename=ja.po;att=1;bug=4632490000644000000000000000000001076511532526724020476 0ustar # # Translators, if you are not familiar with the PO format, gettext # documentation is worth reading, especially sections dedicated to # this format, e.g. by running: # info -n '(gettext)PO Files' # info -n '(gettext)Header Entry' # # Some information specific to po-debconf are available at # /usr/share/doc/po-debconf/README-trans # or http://www.debian.org/intl/l10n/po-debconf/README-trans # # Developers do not need to manually edit POT or PO files. # # msgid "" msgstr "" "Project-Id-Version: lprng 3.8.A~rc2-1\n" "Report-Msgid-Bugs-To: csmall@debian.org\n" "POT-Creation-Date: 2006-08-01 21:12+1000\n" "PO-Revision-Date: 2008-01-30 21:26+0900\n" "Last-Translator: Hideki Yamane (Debian-JP) \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: note #. Description #: ../templates:1001 msgid "There are two lpd.conf files" msgstr "lpd.conf ファイルが2つあります" #. Type: note #. Description #: ../templates:1001 msgid "" "You have a lpd.conf in the old location (/etc/lpd.conf) and the new location " "(/etc/lprng/lpd.conf). From lprng version 3.6.16-1 this file should be only " "in /etc/lprng, please check both files and remove /etc/lpd.conf" msgstr "" "lpd.conf が古い場所 (/etc/lpd.conf) と新しい場所 (/etc/lprng/lpd.conf) にあり" "ます。lprng ではバージョン 3.6.16-1 からこのファイルは /etc/lprng だけに置くよ" "うにしないといけません。両方のファイルを確認した上で /etc/lpd.conf を削除して" "ください。" #. Type: note #. Description #: ../templates:2001 msgid "There are two lpd.perms files" msgstr "lpd.perms ファイルが2つあります。" #. Type: note #. Description #: ../templates:2001 msgid "" "You have a lpd.perms in the old location (/etc/lpd.perms) and the new " "location (/etc/lprng/lpd.perms). Since lprng version 3.6.16-1 this file " "should be only in /etc/lprng, please check both files and remove /etc/lpd." "perms" msgstr "" "lpd.perms が古い場所 (/etc/lpd.perms) と新しい場所 (/etc/lprng/lpd.perms) に" "あります。バージョン 3.6.16-1 の lprng からは、このファイルは /etc/lprng だけ" "に置くようにしないといけません。両方のファイルを確認した上で /etc/lpd.perms " "を削除してください。" #. Type: boolean #. Description #: ../templates:3001 msgid "Make lpr, lprm and lpq setuid root?" msgstr "lpr, lprm, lpq を root に setuid しますか?" #. Type: boolean #. Description #: ../templates:3001 msgid "" "For full RFC1179 compliance you need to make these programs setuid root. " "This is mainly so they can create a socket with a low port number. The low " "port number may be important if you have network printers or have adjusted /" "etc/lprng/lpd.perms to restrict access to non-privledged ports. For the " "typical printer connected locally to parallel port (and many other) scenario " "you can leave these programs non setuid root." msgstr "" "RFC1179 に完全に適合するためには、これらのプログラムを root に setuid する必" "要があります。これは 1024 以下のポート番号でこれらのプログラムがソケットを作" "れるようにするのが主な理由です。ネットワークプリンタや非特権ポートへのアクセ" "スを制限するために /etc/lprng/lpd.perms を調整している場合は、1024 以下のポー" "ト番号が重要かもしれません。特にローカルのパラレルポート (他多数) にプリンタ" "を接続している場合、プログラムをroot に setuid しなくても構いません。" #. Type: boolean #. Description #: ../templates:4001 msgid "Start lpd (Printer Daemon) at boot?" msgstr "システム起動時に lpd (プリンタデーモン) を立ち上げますか?" #. Type: boolean #. Description #: ../templates:4001 msgid "" "Some people for various reasons do not want to start lpd. Refusing this " "option means lpd will not start. Unless you know why you want lpd not to " "start, just accept the default." msgstr "" "様々な理由で lpd を起動したくない人がいます。この選択を拒否すると lpd は起動" "しません。lpd を起動したい理由が思いつかない場合、単に「はい」を選んでくださ" "い。" debian/po/fr.po0000644000000000000000000001047711532526724010573 0ustar # translation of fr.po to French # # Translators, if you are not familiar with the PO format, gettext # documentation is worth reading, especially sections dedicated to # this format, e.g. by running: # info -n '(gettext)PO Files' # info -n '(gettext)Header Entry' # # Some information specific to po-debconf are available at # /usr/share/doc/po-debconf/README-trans # or http://www.debian.org/intl/l10n/po-debconf/README-trans # # Developers do not need to manually edit POT or PO files. # Christian Perrier , 2005. # msgid "" msgstr "" "Project-Id-Version: fr\n" "Report-Msgid-Bugs-To: csmall@debian.org\n" "POT-Creation-Date: 2006-08-01 21:12+1000\n" "PO-Revision-Date: 2005-11-03 17:44+0100\n" "Last-Translator: Christian Perrier \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-15\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.10.2\n" #. Type: note #. Description #: ../templates:1001 msgid "There are two lpd.conf files" msgstr "Deux fichiers lpd.conf ont t trouvs" #. Type: note #. Description #: ../templates:1001 msgid "" "You have a lpd.conf in the old location (/etc/lpd.conf) and the new location " "(/etc/lprng/lpd.conf). From lprng version 3.6.16-1 this file should be only " "in /etc/lprng, please check both files and remove /etc/lpd.conf" msgstr "" "Un fichier lpd.conf a t trouv l'ancien emplacement (dans /etc) et un " "autre au nouvel emplacement (/etc/lprng). Depuis la version 3.6.16-1 de " "lprng, le fichier utilis est celui de /etc/lprng: veuillez donc vrifier " "le contenu des deux fichiers, puis effacer /etc/lpd.conf." #. Type: note #. Description #: ../templates:2001 msgid "There are two lpd.perms files" msgstr "Deux fichiers lpd.perms ont t trouvs" #. Type: note #. Description #: ../templates:2001 msgid "" "You have a lpd.perms in the old location (/etc/lpd.perms) and the new " "location (/etc/lprng/lpd.perms). Since lprng version 3.6.16-1 this file " "should be only in /etc/lprng, please check both files and remove /etc/lpd." "perms" msgstr "" "Un fichier lpd.perms a t trouv l'ancien emplacement (dans /etc) et un " "autre au nouvel emplacement (/etc/lprng). Depuis la version 3.6.16-1 de " "lprng, le fichier utilis est celui de /etc/lprng: veuillez donc vrifier " "le contenu des deux fichiers, puis effacer /etc/lpd.perms." #. Type: boolean #. Description #: ../templates:3001 msgid "Make lpr, lprm and lpq setuid root?" msgstr "Lpr, lprm et lpq doivent-ils tre setuid root?" #. Type: boolean #. Description #: ../templates:3001 msgid "" "For full RFC1179 compliance you need to make these programs setuid root. " "This is mainly so they can create a socket with a low port number. The low " "port number may be important if you have network printers or have adjusted /" "etc/lprng/lpd.perms to restrict access to non-privledged ports. For the " "typical printer connected locally to parallel port (and many other) scenario " "you can leave these programs non setuid root." msgstr "" "Pour un respect complet de la RFC1179, ces programmes doivent s'excuter " "avec les privilges du super-utilisateur. C'est pour l'essentiel ncessaire " " la cration d'un socket sur un port de numro infrieur 1024. Cela " "peut tre important si vous utilisez des imprimantes en rseau ou si vous " "avez modifi /etc/lprng/lpd.perms pour restreindre l'accs aux ports non " "privilgis. Dans le cas d'une imprimante classiquement connecte sur le " "port parallle (et beaucoup d'autres cas), il n'est pas indispensable que " "ces programmes s'excutent avec les privilges du super-utilisateur." #. Type: boolean #. Description #: ../templates:4001 msgid "Start lpd (Printer Daemon) at boot?" msgstr "Faut-il lancer lpd (gestionnaire d'imprimantes) au dmarrage?" #. Type: boolean #. Description #: ../templates:4001 msgid "" "Some people for various reasons do not want to start lpd. Refusing this " "option means lpd will not start. Unless you know why you want lpd not to " "start, just accept the default." msgstr "" "Certains administrateurs, pour des raisons diverses, prfrent viter de " "lancer lpd. En refusant ici, lpd ne dmarrera pas. Vous devriez accepter " "moins d'avoir une raison solide pour ne pas vouloir dmarrer lpd." debian/po/fi.po0000644000000000000000000000666311532526724010564 0ustar msgid "" msgstr "" "Project-Id-Version: lprng\n" "Report-Msgid-Bugs-To: csmall@debian.org\n" "POT-Creation-Date: 2006-08-01 21:12+1000\n" "PO-Revision-Date: \n" "Last-Translator: Esko Arajärvi \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Finnish\n" "X-Poedit-Country: FINLAND\n" #. Type: note #. Description #: ../templates:1001 msgid "There are two lpd.conf files" msgstr "Tiedostosta lpd.conf on kaksi versiota" #. Type: note #. Description #: ../templates:1001 msgid "You have a lpd.conf in the old location (/etc/lpd.conf) and the new location (/etc/lprng/lpd.conf). From lprng version 3.6.16-1 this file should be only in /etc/lprng, please check both files and remove /etc/lpd.conf" msgstr "Tiedosto lpd.conf on sekä vanhassa sijainnissa (/etc/lpd.conf) että uudessa sijainnissa (/etc/lprng/lpd.conf). Versiosta 3.6.16-1 alkaen tiedoston tulisi olla vain hakemistossa /etc/lprng. Tarkista molemmat tiedostot ja poista /etc/lpd.conf." #. Type: note #. Description #: ../templates:2001 msgid "There are two lpd.perms files" msgstr "Tiedostosta lpd.perms on kaksi versiota " #. Type: note #. Description #: ../templates:2001 msgid "You have a lpd.perms in the old location (/etc/lpd.perms) and the new location (/etc/lprng/lpd.perms). Since lprng version 3.6.16-1 this file should be only in /etc/lprng, please check both files and remove /etc/lpd.perms" msgstr "Tiedosto lpd.perms on sekä vanhassa sijainnissa (/etc/lpd.perms) että uudessa sijainnissa (/etc/lprng/lpd.perms). Versiosta 3.6.16-1 alkaen tiedoston tulisi olla vain hakemistossa /etc/lprng. Tarkista molemmat tiedostot ja poista /etc/lpd.perms." #. Type: boolean #. Description #: ../templates:3001 msgid "Make lpr, lprm and lpq setuid root?" msgstr "Asennetaanko lpr, lprm ja lpq asetuksella setuid root?" #. Type: boolean #. Description #: ../templates:3001 msgid "For full RFC1179 compliance you need to make these programs setuid root. This is mainly so they can create a socket with a low port number. The low port number may be important if you have network printers or have adjusted /etc/lprng/lpd.perms to restrict access to non-privledged ports. For the typical printer connected locally to parallel port (and many other) scenario you can leave these programs non setuid root." msgstr "Täyttääkseen RFC1179:n ehdot täysin näitä ohjelmia täytyy ajaa pääkäyttäjäoikeuksilla. Tällöin ne voivat luoda pistokkeen pienellä porttinumerolla. Pieni porttinumero voi olla tärkeä, jos käytössä on verkkotulostimia tai tiedostossa /etc/lprng/lpd.perms on rajoitettu pääsyä tavallisiin portteihin. Tyypillisten rinnakkaisporttiin yhdistettyjen tulostimien (ja monien muiden) kanssa ohjelmia ei tarvitse asentaa tällä asetuksella." #. Type: boolean #. Description #: ../templates:4001 msgid "Start lpd (Printer Daemon) at boot?" msgstr "Käynnistetäänkö lpd (tulostustaustaohjelma) järjestelmän käynnistyessä?" #. Type: boolean #. Description #: ../templates:4001 msgid "Some people for various reasons do not want to start lpd. Refusing this option means lpd will not start. Unless you know why you want lpd not to start, just accept the default." msgstr "Erilaisista syistä johtuen ohjelmaa lpd ei aina haluta käynnistää. Jos et valitse tätä lpd ei käynnisty. Jos et tiedä miksei lpd saisi käynnistyä, voit valita oletuksen." debian/po/ru.po0000644000000000000000000001114611532526724010604 0ustar # translation of ru.po to Russian # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Yuri Kozlov , 2008. msgid "" msgstr "" "Project-Id-Version: ru\n" "Report-Msgid-Bugs-To: csmall@debian.org\n" "POT-Creation-Date: 2006-08-01 21:12+1000\n" "PO-Revision-Date: 2008-08-09 22:57+0400\n" "Last-Translator: Yuri Kozlov \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" "10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. Type: note #. Description #: ../templates:1001 msgid "There are two lpd.conf files" msgstr "Обнаружено два файла lpd.conf" #. Type: note #. Description #: ../templates:1001 msgid "" "You have a lpd.conf in the old location (/etc/lpd.conf) and the new location " "(/etc/lprng/lpd.conf). From lprng version 3.6.16-1 this file should be only " "in /etc/lprng, please check both files and remove /etc/lpd.conf" msgstr "" "В системе обнаружен старый файл lpd.conf (/etc/lpd.conf), а также новый файл " "(/etc/lprng/lpd.conf). В lprng, начиная с версии 3.6.16-1, этот файл должен " "быть только в каталоге /etc/lprng, проверьте оба файла и удалите /etc/lpd." "conf" #. Type: note #. Description #: ../templates:2001 msgid "There are two lpd.perms files" msgstr "Обнаружено два файла lpd.perms" #. Type: note #. Description #: ../templates:2001 msgid "" "You have a lpd.perms in the old location (/etc/lpd.perms) and the new " "location (/etc/lprng/lpd.perms). Since lprng version 3.6.16-1 this file " "should be only in /etc/lprng, please check both files and remove /etc/lpd." "perms" msgstr "" "В системе обнаружен старый файл (/etc/lpd.perms), а также новый файл (/etc/" "lprng/lpd.perms). В lprng, начиная с версии 3.6.16-1, этот файл должен быть " "только в каталоге /etc/lprng, проверьте оба файла и удалите /etc/lpd.perms" #. Type: boolean #. Description #: ../templates:3001 msgid "Make lpr, lprm and lpq setuid root?" msgstr "Установить setuid-бит на lpr, lprm и lpq и принадлежность root?" #. Type: boolean #. Description #: ../templates:3001 msgid "" "For full RFC1179 compliance you need to make these programs setuid root. " "This is mainly so they can create a socket with a low port number. The low " "port number may be important if you have network printers or have adjusted /" "etc/lprng/lpd.perms to restrict access to non-privledged ports. For the " "typical printer connected locally to parallel port (and many other) scenario " "you can leave these programs non setuid root." msgstr "" "Для полного соответствия RFC1179 вам нужно установить на эти программы " "setuid-бит и они должны принадлежать root. В основном, это нужно для того, " "чтобы они могли создать сокет с минимальным номером порта. Минимальный номер " "порта важен, если это сетевые принтеры и у вас есть настроенный файл /etc/" "lprng/lpd.perms для ограничения доступа к непривилегированным портам. Для " "обычного принтер, подключённого к локальному порту, можно не устанавливать " "setuid-бит." #. Type: boolean #. Description #: ../templates:4001 msgid "Start lpd (Printer Daemon) at boot?" msgstr "Запускать lpd (служба печати) при включении компьютера?" #. Type: boolean #. Description #: ../templates:4001 msgid "" "Some people for various reasons do not want to start lpd. Refusing this " "option means lpd will not start. Unless you know why you want lpd not to " "start, just accept the default." msgstr "" "Некоторые люди по различным причинам не хотят запускать lpd. Чтобы lpd не " "запускался, ответьте отрицательно. Если причин для отказа от запуска lpd у " "вас нет, согласитесь с действием по умолчанию." debian/po/cs.po0000644000000000000000000000774311532526724010573 0ustar # # Translators, if you are not familiar with the PO format, gettext # documentation is worth reading, especially sections dedicated to # this format, e.g. by running: # info -n '(gettext)PO Files' # info -n '(gettext)Header Entry' # # Some information specific to po-debconf are available at # /usr/share/doc/po-debconf/README-trans # or http://www.debian.org/intl/l10n/po-debconf/README-trans # # Developers do not need to manually edit POT or PO files. # msgid "" msgstr "" "Project-Id-Version: lprng\n" "Report-Msgid-Bugs-To: csmall@debian.org\n" "POT-Creation-Date: 2006-08-01 21:12+1000\n" "PO-Revision-Date: 2009-06-28 17:31+0200\n" "Last-Translator: Jan Outrata \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: note #. Description #: ../templates:1001 msgid "There are two lpd.conf files" msgstr "Existují dva soubory lpd.conf" #. Type: note #. Description #: ../templates:1001 msgid "" "You have a lpd.conf in the old location (/etc/lpd.conf) and the new location " "(/etc/lprng/lpd.conf). From lprng version 3.6.16-1 this file should be only " "in /etc/lprng, please check both files and remove /etc/lpd.conf" msgstr "" "Máte lpd.conf na starém místě (/etc/lpd.conf) i na novém místě (/etc/lprng/" "lpd.conf). Od lprng verze 3.6.16-1 by tento soubor měl být jen v /etc/lprng, " "zkontrolujte prosím oba soubory a odstraňte /etc/lpd.conf" #. Type: note #. Description #: ../templates:2001 msgid "There are two lpd.perms files" msgstr "Existují dva soubory lpd.perms" #. Type: note #. Description #: ../templates:2001 msgid "" "You have a lpd.perms in the old location (/etc/lpd.perms) and the new " "location (/etc/lprng/lpd.perms). Since lprng version 3.6.16-1 this file " "should be only in /etc/lprng, please check both files and remove /etc/lpd." "perms" msgstr "" "Máte lpd.perms na starém místě (/etc/lpd.perms) i na novém místě (/etc/lprng/" "lpd.perms). Od lprng verze 3.6.16-1 by tento soubor měl být jen v /etc/" "lprng, zkontrolujte prosím oba soubory a odstraňte /etc/lpd.perms" #. Type: boolean #. Description #: ../templates:3001 msgid "Make lpr, lprm and lpq setuid root?" msgstr "Mají mít lpr, lprm a lpq nastavený SUID bit?" #. Type: boolean #. Description #: ../templates:3001 msgid "" "For full RFC1179 compliance you need to make these programs setuid root. " "This is mainly so they can create a socket with a low port number. The low " "port number may be important if you have network printers or have adjusted /" "etc/lprng/lpd.perms to restrict access to non-privledged ports. For the " "typical printer connected locally to parallel port (and many other) scenario " "you can leave these programs non setuid root." msgstr "" "Pro plné vyhovění normě RFC1179 musí mít tyto programy nastavený SUID bit. " "Je to hlavně z důvodu možnosti vytvořit socket s nízkým číslem portu. Nízké " "číslo portu může být důležité, pokud máte síťové tiskárny nebo máte " "upravený /etc/lprng/lpd.perms s omezením přístupu k neprivilegovaným portům. " "Pro typický případ tiskárny připojené lokálně k paralelnímu portu (a mnoha " "dalším) tyto programy nastavený SUID bit mít nemusí." #. Type: boolean #. Description #: ../templates:4001 msgid "Start lpd (Printer Daemon) at boot?" msgstr "Startovat lpd (Printer Daemon - Démon tiskárny) při spuštění systému?" #. Type: boolean #. Description #: ../templates:4001 msgid "" "Some people for various reasons do not want to start lpd. Refusing this " "option means lpd will not start. Unless you know why you want lpd not to " "start, just accept the default." msgstr "" "Někteří lidé nechtějí z různých důvodů lpd startovat. Zamítnutí této volby " "znamená, že se lpd nebude spouštět. Pokud nevíte, proč byste nechtěli lpd " "spouštět, jednoduše přijměte výchozí nastavení." debian/po/sv.po0000644000000000000000000001000011532526724010572 0ustar # translation of lprng_3.8.A-1_sv.po to Swedish # Translators, if you are not familiar with the PO format, gettext # documentation is worth reading, especially sections dedicated to # this format, e.g. by running: # info -n '(gettext)PO Files' # info -n '(gettext)Header Entry' # Some information specific to po-debconf are available at # /usr/share/doc/po-debconf/README-trans # or http://www.debian.org/intl/l10n/po-debconf/README-trans # Developers do not need to manually edit POT or PO files. # # Martin gren , 2008. msgid "" msgstr "" "Project-Id-Version: lprng_3.8.A-1_sv\n" "Report-Msgid-Bugs-To: csmall@debian.org\n" "POT-Creation-Date: 2006-08-01 21:12+1000\n" "PO-Revision-Date: 2008-07-23 20:21+0200\n" "Last-Translator: Martin gren \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. Type: note #. Description #: ../templates:1001 msgid "There are two lpd.conf files" msgstr "Det finns tv lpd.conf-filer" #. Type: note #. Description #: ../templates:1001 msgid "" "You have a lpd.conf in the old location (/etc/lpd.conf) and the new location " "(/etc/lprng/lpd.conf). From lprng version 3.6.16-1 this file should be only " "in /etc/lprng, please check both files and remove /etc/lpd.conf" msgstr "" "Du har lpd.conf p den gamla platsen (/etc/lpd.conf) och den nya platsen (/" "etc/lprng/lpd.conf.) Sedan version 3.6.16-1 av lprng ska denna fil endast " "finnas i /etc/lprng. Kontrollera drfr bda filerna och ta bort /etc/lpd." "conf" #. Type: note #. Description #: ../templates:2001 msgid "There are two lpd.perms files" msgstr "Det finns tv lpd.perms-filer" #. Type: note #. Description #: ../templates:2001 msgid "" "You have a lpd.perms in the old location (/etc/lpd.perms) and the new " "location (/etc/lprng/lpd.perms). Since lprng version 3.6.16-1 this file " "should be only in /etc/lprng, please check both files and remove /etc/lpd." "perms" msgstr "" "Du har lpd.perms p den ldre platsen (/etc/lpd.perms) och den nya platsen (/" "etc/lprng/lpd.perms.) Sedan version 3.6.16-1 av lprng ska denna fil endast " "finnas i /etc/lprng. Kontrollera drfr bda filerna och ta bort /etc/lpd." "perms" #. Type: boolean #. Description #: ../templates:3001 msgid "Make lpr, lprm and lpq setuid root?" msgstr "Gr lpr, lprm och lpq setuid root?" #. Type: boolean #. Description #: ../templates:3001 msgid "" "For full RFC1179 compliance you need to make these programs setuid root. " "This is mainly so they can create a socket with a low port number. The low " "port number may be important if you have network printers or have adjusted /" "etc/lprng/lpd.perms to restrict access to non-privledged ports. For the " "typical printer connected locally to parallel port (and many other) scenario " "you can leave these programs non setuid root." msgstr "" "Fr fullstndig enighet med RFC1179 mste du gra dessa program setuid root. " "Detta r frmst fr att de skall kunna skapa en socket med lgt portnummer. " "Det lga portnumret kan vara viktigt om du har ntverksskrivare eller har " "anpassat /etc/lprng/lpd.perms fr att begrnsa tilltrde till icke-" "priviligerade portar. Fr den typiska skrivaren ansluten lokalt till " "parallellporten (och mnga andra scenarion) kan du lmna dessa program utan " "setuid root." #. Type: boolean #. Description #: ../templates:4001 msgid "Start lpd (Printer Daemon) at boot?" msgstr "Starta lpd (utskriftserver-demonen) vid boot?" #. Type: boolean #. Description #: ../templates:4001 msgid "" "Some people for various reasons do not want to start lpd. Refusing this " "option means lpd will not start. Unless you know why you want lpd not to " "start, just accept the default." msgstr "" "Somliga personer vljer av olika skl att inte starta lpd. Att inte vlja " "start hr betyder att lpd inte startas. Det rekommenderas att vlja " "standardinstllningen." debian/po/da.po0000644000000000000000000001007011532526724010535 0ustar # translation of lprng_3.8.25-1_templates.po to Danish # # Translators, if you are not familiar with the PO format, gettext # documentation is worth reading, especially sections dedicated to # this format, e.g. by running: # info -n '(gettext)PO Files' # info -n '(gettext)Header Entry' # Some information specific to po-debconf are available at # /usr/share/doc/po-debconf/README-trans # or http://www.debian.org/intl/l10n/po-debconf/README-trans# # Developers do not need to manually edit POT or PO files. # Claus Hindsgaul , 2004, 2005. # msgid "" msgstr "" "Project-Id-Version: lprng_3.8.25-1_templates\n" "Report-Msgid-Bugs-To: csmall@debian.org\n" "POT-Creation-Date: 2006-08-01 21:12+1000\n" "PO-Revision-Date: 2005-12-15 11:19+0100\n" "Last-Translator: Claus Hindsgaul \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.10.2\n" #. Type: note #. Description #: ../templates:1001 msgid "There are two lpd.conf files" msgstr "Der er to lpd.conf-filer" #. Type: note #. Description #: ../templates:1001 msgid "" "You have a lpd.conf in the old location (/etc/lpd.conf) and the new location " "(/etc/lprng/lpd.conf). From lprng version 3.6.16-1 this file should be only " "in /etc/lprng, please check both files and remove /etc/lpd.conf" msgstr "" "Du har både en lpd.conf på den gamle placering (/etc/lpd.conf) og den nye (/" "etc/lprng/lpd.conf). Siden version 3.6.16-1 af lprng skal denne fil kun " "ligge under /etc/lprng. Tjek venligst begge filerne og fjern /etc/lpd.conf" #. Type: note #. Description #: ../templates:2001 msgid "There are two lpd.perms files" msgstr "Der er to lpd.perms-filer" #. Type: note #. Description #: ../templates:2001 msgid "" "You have a lpd.perms in the old location (/etc/lpd.perms) and the new " "location (/etc/lprng/lpd.perms). Since lprng version 3.6.16-1 this file " "should be only in /etc/lprng, please check both files and remove /etc/lpd." "perms" msgstr "" "Der ligger både en lpd.conf på den gamle placering (/etc/lpd.perms), og den " "nye (/etc/lprng/lpd.perms). Siden version 3.6.16-1 af lprng skal denne fil " "kun ligge under /etc/lprng. Tjek venligst begge filerne og fjern /etc/lpd." "perms" #. Type: boolean #. Description #: ../templates:3001 msgid "Make lpr, lprm and lpq setuid root?" msgstr "Gør lpr, lprm og lpq 'setuid root'?" #. Type: boolean #. Description #: ../templates:3001 msgid "" "For full RFC1179 compliance you need to make these programs setuid root. " "This is mainly so they can create a socket with a low port number. The low " "port number may be important if you have network printers or have adjusted /" "etc/lprng/lpd.perms to restrict access to non-privledged ports. For the " "typical printer connected locally to parallel port (and many other) scenario " "you can leave these programs non setuid root." msgstr "" "For at overholde RFC1179 fuldstændigt skal disse programmer gøres 'setuid " "root'. Det gøres hovedsageligt for at de kan oprette en sokkel med et lavt " "portnummer. Det lave portnummer kan være vigtigt hvis du har netværks-" "printere eller har indstillet /etc/lprng/lpd.perms til at begrænse adgangen " "til ikke-priviligerede porte. For de mest typiske scenarier, hvor f.eks. en " "printer er forbundet lokalt til den parallelle port kan du sagtens undlade " "at gøre disse programmer 'setuid root'." #. Type: boolean #. Description #: ../templates:4001 msgid "Start lpd (Printer Daemon) at boot?" msgstr "Start lpd (printerdæmonen) under opstarten?" #. Type: boolean #. Description #: ../templates:4001 msgid "" "Some people for various reasons do not want to start lpd. Refusing this " "option means lpd will not start. Unless you know why you want lpd not to " "start, just accept the default." msgstr "" "Af forskellige grunde er der nogen, der ikke ønsker at starte lpd. Hvis du " "afviser her, vil lpd ikke starte. Medmindre du har en god grund til ikke at " "starte lpd, bør du blot acceptere standardsvaret." debian/po/pt.po0000644000000000000000000000733611532526724010607 0ustar # Portuguese translation for lprng's debconf messages # Copyright (C) 2007 Miguel Figueiredo # This file is distributed under the same license as the lprng package. # Miguel Figueiredo , 2007. # msgid "" msgstr "" "Project-Id-Version: lprng 3.8.28dfsg.1-1\n" "Report-Msgid-Bugs-To: csmall@debian.org\n" "POT-Creation-Date: 2006-08-01 21:12+1000\n" "PO-Revision-Date: 2007-03-06 20:54+0000\n" "Last-Translator: Miguel Figueiredo \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: note #. Description #: ../templates:1001 msgid "There are two lpd.conf files" msgstr "Existem dois ficheiros lpd.conf" #. Type: note #. Description #: ../templates:1001 msgid "" "You have a lpd.conf in the old location (/etc/lpd.conf) and the new location " "(/etc/lprng/lpd.conf). From lprng version 3.6.16-1 this file should be only " "in /etc/lprng, please check both files and remove /etc/lpd.conf" msgstr "" "Você tem um lpd.conf no antigo local (/etc/lpf.conf) e no novo local " "(/etc/lprng/lpd.conf). A partir da versão 3.6.16-1 do lprng este ficheiro " "deve estar apenas em /etc/lprng, por favor verifique ambos os ficheiros e " "remova o /etc/lpd.conf." #. Type: note #. Description #: ../templates:2001 msgid "There are two lpd.perms files" msgstr "Existem dois ficheiros lpd.perms" #. Type: note #. Description #: ../templates:2001 msgid "" "You have a lpd.perms in the old location (/etc/lpd.perms) and the new " "location (/etc/lprng/lpd.perms). Since lprng version 3.6.16-1 this file " "should be only in /etc/lprng, please check both files and remove /etc/lpd." "perms" msgstr "" "Você tem um lpd.perms no antigo local (/etc/lpf.perms) e no novo local " "(/etc/lprng/lpd.perms). A partir da versão 3.6.16-1 do lprng este ficheiro " "deve estar apenas em /etc/lprng, por favor verifique ambos os ficheiros e " "remova o /etc/lpd.perms" #. Type: boolean #. Description #: ../templates:3001 msgid "Make lpr, lprm and lpq setuid root?" msgstr "Fazer o lpr, lprm e lpq utilizar setuid root?" #. Type: boolean #. Description #: ../templates:3001 msgid "" "For full RFC1179 compliance you need to make these programs setuid root. " "This is mainly so they can create a socket with a low port number. The low " "port number may be important if you have network printers or have adjusted /" "etc/lprng/lpd.perms to restrict access to non-privledged ports. For the " "typical printer connected locally to parallel port (and many other) scenario " "you can leave these programs non setuid root." msgstr "" "Para estar em total conformidade com o RFC1179 você tem que deixar que estes " "programas utilizem setuid root. Isto é principalmente para que possam criar " "um socket com um número baixo de porto. O número baixo de porto é importante " "se tiver impressoras de rede ou se ajustou o /etc/lpnrg/lpd.perms para " "restringir o acesso a portos não privilegiados. Para o cenário da típica " "impressora ligada localmente à porta paralela (e muitas outras) pode deixar " "estes programas sem utilizarem o setuid root." #. Type: boolean #. Description #: ../templates:4001 msgid "Start lpd (Printer Daemon) at boot?" msgstr "Iniciar o (Daemon de Impressão) lpd no arranque?" #. Type: boolean #. Description #: ../templates:4001 msgid "" "Some people for various reasons do not want to start lpd. Refusing this " "option means lpd will not start. Unless you know why you want lpd not to " "start, just accept the default." msgstr "" "Algumas pessoas por várias razões não querem iniciar o lpd. Recusar esta " "opção significa que o lpd não irá iniciar. A menos que saiba porque quer " "que o lpd não inicie, por omissão aceite." debian/po/templates.pot0000644000000000000000000000447411532526724012346 0ustar # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: csmall@debian.org\n" "POT-Creation-Date: 2006-08-01 21:12+1000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" #. Type: note #. Description #: ../templates:1001 msgid "There are two lpd.conf files" msgstr "" #. Type: note #. Description #: ../templates:1001 msgid "" "You have a lpd.conf in the old location (/etc/lpd.conf) and the new location " "(/etc/lprng/lpd.conf). From lprng version 3.6.16-1 this file should be only " "in /etc/lprng, please check both files and remove /etc/lpd.conf" msgstr "" #. Type: note #. Description #: ../templates:2001 msgid "There are two lpd.perms files" msgstr "" #. Type: note #. Description #: ../templates:2001 msgid "" "You have a lpd.perms in the old location (/etc/lpd.perms) and the new " "location (/etc/lprng/lpd.perms). Since lprng version 3.6.16-1 this file " "should be only in /etc/lprng, please check both files and remove /etc/lpd." "perms" msgstr "" #. Type: boolean #. Description #: ../templates:3001 msgid "Make lpr, lprm and lpq setuid root?" msgstr "" #. Type: boolean #. Description #: ../templates:3001 msgid "" "For full RFC1179 compliance you need to make these programs setuid root. " "This is mainly so they can create a socket with a low port number. The low " "port number may be important if you have network printers or have adjusted /" "etc/lprng/lpd.perms to restrict access to non-privledged ports. For the " "typical printer connected locally to parallel port (and many other) scenario " "you can leave these programs non setuid root." msgstr "" #. Type: boolean #. Description #: ../templates:4001 msgid "Start lpd (Printer Daemon) at boot?" msgstr "" #. Type: boolean #. Description #: ../templates:4001 msgid "" "Some people for various reasons do not want to start lpd. Refusing this " "option means lpd will not start. Unless you know why you want lpd not to " "start, just accept the default." msgstr "" debian/po/nl.po0000644000000000000000000001050711532526724010567 0ustar # translation of lprng 3.8.28-4_templates.po to Dutch # This file is distributed under the same license as the lprng package. # # Translators, if you are not familiar with the PO format, gettext # documentation is worth reading, especially sections dedicated to # this format, e.g. by running: # info -n '(gettext)PO Files' # info -n '(gettext)Header Entry' # # Some information specific to po-debconf are available at # /usr/share/doc/po-debconf/README-trans # or http://www.debian.org/intl/l10n/po-debconf/README-trans # # Developers do not need to manually edit POT or PO files. # # Luk Claes , 2004 # Kurt De Bree , 2006 # This is an unofficial translation # msgid "" msgstr "" "Project-Id-Version: lprng 3.8.28-4\n" "Report-Msgid-Bugs-To: csmall@debian.org\n" "POT-Creation-Date: 2006-08-01 21:12+1000\n" "PO-Revision-Date: 2006-07-05 09:28+0100\n" "Last-Translator: Kurt De Bree \n" "Language-Team: Debian l10n Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=iso-8859-15\n" "Content-Transfer-Encoding: 8bit\n" #. Type: note #. Description #: ../templates:1001 msgid "There are two lpd.conf files" msgstr "Er zijn twee lpd.conf-bestanden" #. Type: note #. Description #: ../templates:1001 msgid "" "You have a lpd.conf in the old location (/etc/lpd.conf) and the new location " "(/etc/lprng/lpd.conf). From lprng version 3.6.16-1 this file should be only " "in /etc/lprng, please check both files and remove /etc/lpd.conf" msgstr "" "U hebt een lpd.conf in de oude locatie (/etc/lpd.conf) en de nieuwe locatie " "(/etc/lprng/lpd.conf). Sinds lprng versie 3.6-16-1 dient dit bestand enkel " "in /etc/lprng aanwezig te zijn; gelieve beide bestanden te controleren en /" "etc/lpd.conf te verwijderen." #. Type: note #. Description #: ../templates:2001 msgid "There are two lpd.perms files" msgstr "Er zijn twee lpd.perms-bestanden" #. Type: note #. Description #: ../templates:2001 msgid "" "You have a lpd.perms in the old location (/etc/lpd.perms) and the new " "location (/etc/lprng/lpd.perms). Since lprng version 3.6.16-1 this file " "should be only in /etc/lprng, please check both files and remove /etc/lpd." "perms" msgstr "" "U hebt een lpd.perms in de oude locatie (/etc/lpd.perms) en de nieuwe " "locatie (/etc/lprng/lpd.perms). Sinds lprng versie 3.6-16-1 dient dit " "bestand enkel in /etc/lprng aanwezig te zijn; gelieve beide bestanden te " "controleren en /etc/lpd.perms te verwijderen." #. Type: boolean #. Description #: ../templates:3001 msgid "Make lpr, lprm and lpq setuid root?" msgstr "Wilt u lpr, lprm en lpq setuid root maken?" #. Type: boolean #. Description #: ../templates:3001 msgid "" "For full RFC1179 compliance you need to make these programs setuid root. " "This is mainly so they can create a socket with a low port number. The low " "port number may be important if you have network printers or have adjusted /" "etc/lprng/lpd.perms to restrict access to non-privledged ports. For the " "typical printer connected locally to parallel port (and many other) scenario " "you can leave these programs non setuid root." msgstr "" "Om RFC1179 volledig te volgen dient u deze programma's setuid root te maken. " "Dit is hoofdzakelijk omdat er dan een socket met een laag poortnummer kan " "worden aangemaakt. Het lage poortnummer kan belangrijk zijn als u " "netwerkprinters heeft of /etc/lprng/lpd.perms heeft aangepast om toegang te " "beperken tot niet-geprivilegeerde poorten. Voor het typische scenario (en " "vele anderen) waarin de printer is verbonden met de parallelle poort kunt u " "deze programma's niet-setuid root laten." #. Type: boolean #. Description #: ../templates:4001 msgid "Start lpd (Printer Daemon) at boot?" msgstr "Wilt u lpd activeren bij het opstarten van het systeem?" #. Type: boolean #. Description #: ../templates:4001 msgid "" "Some people for various reasons do not want to start lpd. Refusing this " "option means lpd will not start. Unless you know why you want lpd not to " "start, just accept the default." msgstr "" "Sommige mensen willen om verschillende redenen de printer achtergronddienst " "'lpd' niet starten. Deze optie weigeren betekent dat lpd niet zal starten. " "Tenzij u weet waarom lpd niet te starten, aanvaardt u best de standaard " "keuze." debian/po/ja.po0000644000000000000000000001063611532526724010553 0ustar # # Translators, if you are not familiar with the PO format, gettext # documentation is worth reading, especially sections dedicated to # this format, e.g. by running: # info -n '(gettext)PO Files' # info -n '(gettext)Header Entry' # # Some information specific to po-debconf are available at # /usr/share/doc/po-debconf/README-trans # or http://www.debian.org/intl/l10n/po-debconf/README-trans # # Developers do not need to manually edit POT or PO files. # # msgid "" msgstr "" "Project-Id-Version: lprng 3.8.A~rc2-1\n" "Report-Msgid-Bugs-To: csmall@debian.org\n" "POT-Creation-Date: 2006-08-01 21:12+1000\n" "PO-Revision-Date: 2008-01-30 21:26+0900\n" "Last-Translator: Hideki Yamane (Debian-JP) \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: note #. Description #: ../templates:1001 msgid "There are two lpd.conf files" msgstr "lpd.conf ファイルが2つあります" #. Type: note #. Description #: ../templates:1001 msgid "" "You have a lpd.conf in the old location (/etc/lpd.conf) and the new location " "(/etc/lprng/lpd.conf). From lprng version 3.6.16-1 this file should be only " "in /etc/lprng, please check both files and remove /etc/lpd.conf" msgstr "" "lpd.conf が古い場所 (/etc/lpd.conf) と新しい場所 (/etc/lprng/lpd.conf) にあり" "ます。lprng ではバージョン 3.6.16-1 からこのファイルは /etc/lprng だけに置く" "ようにしないといけません。両方のファイルを確認した上で /etc/lpd.conf を削除し" "てください。" #. Type: note #. Description #: ../templates:2001 msgid "There are two lpd.perms files" msgstr "lpd.perms ファイルが2つあります。" #. Type: note #. Description #: ../templates:2001 msgid "" "You have a lpd.perms in the old location (/etc/lpd.perms) and the new " "location (/etc/lprng/lpd.perms). Since lprng version 3.6.16-1 this file " "should be only in /etc/lprng, please check both files and remove /etc/lpd." "perms" msgstr "" "lpd.perms が古い場所 (/etc/lpd.perms) と新しい場所 (/etc/lprng/lpd.perms) に" "あります。バージョン 3.6.16-1 の lprng からは、このファイルは /etc/lprng だけ" "に置くようにしないといけません。両方のファイルを確認した上で /etc/lpd.perms " "を削除してください。" #. Type: boolean #. Description #: ../templates:3001 msgid "Make lpr, lprm and lpq setuid root?" msgstr "lpr, lprm, lpq を root に setuid しますか?" #. Type: boolean #. Description #: ../templates:3001 msgid "" "For full RFC1179 compliance you need to make these programs setuid root. " "This is mainly so they can create a socket with a low port number. The low " "port number may be important if you have network printers or have adjusted /" "etc/lprng/lpd.perms to restrict access to non-privledged ports. For the " "typical printer connected locally to parallel port (and many other) scenario " "you can leave these programs non setuid root." msgstr "" "RFC1179 に完全に適合するためには、これらのプログラムを root に setuid する必" "要があります。これは 1024 以下のポート番号でこれらのプログラムがソケットを作" "れるようにするのが主な理由です。ネットワークプリンタや非特権ポートへのアクセ" "スを制限するために /etc/lprng/lpd.perms を調整している場合は、1024 以下のポー" "ト番号が重要かもしれません。特にローカルのパラレルポート (他多数) にプリンタ" "を接続している場合、プログラムをroot に setuid しなくても構いません。" #. Type: boolean #. Description #: ../templates:4001 msgid "Start lpd (Printer Daemon) at boot?" msgstr "システム起動時に lpd (プリンタデーモン) を立ち上げますか?" #. Type: boolean #. Description #: ../templates:4001 msgid "" "Some people for various reasons do not want to start lpd. Refusing this " "option means lpd will not start. Unless you know why you want lpd not to " "start, just accept the default." msgstr "" "様々な理由で lpd を起動したくない人がいます。この選択を拒否すると lpd は起動" "しません。lpd を起動したい理由が思いつかない場合、単に「はい」を選んでくださ" "い。" debian/po/de.po0000644000000000000000000001034011532526724010541 0ustar # translation of lprng_3.8.28-4_de.po to German # # Translators, if you are not familiar with the PO format, gettext # documentation is worth reading, especially sections dedicated to # this format, e.g. by running: # info -n '(gettext)PO Files' # info -n '(gettext)Header Entry' # Some information specific to po-debconf are available at # /usr/share/doc/po-debconf/README-trans # or http://www.debian.org/intl/l10n/po-debconf/README-trans# # Developers do not need to manually edit POT or PO files. # Erik Schanze , 2004. # Erik Schanze , 2006. # msgid "" msgstr "" "Project-Id-Version: lprng_3.8.28-4_de\n" "Report-Msgid-Bugs-To: csmall@debian.org\n" "POT-Creation-Date: 2006-08-01 21:12+1000\n" "PO-Revision-Date: 2006-01-03 21:58+0100\n" "Last-Translator: Erik Schanze \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.10.2\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. Type: note #. Description #: ../templates:1001 msgid "There are two lpd.conf files" msgstr "Es gibt die Datei lpd.conf doppelt" #. Type: note #. Description #: ../templates:1001 msgid "" "You have a lpd.conf in the old location (/etc/lpd.conf) and the new location " "(/etc/lprng/lpd.conf). From lprng version 3.6.16-1 this file should be only " "in /etc/lprng, please check both files and remove /etc/lpd.conf" msgstr "" "Sie haben eine Datei lpd.conf an der alten Stelle (/etc/lpd.conf) und an der " "neuen Stelle (/etc/lprng/lpd.conf). Seit der Version 3.6.16-1 von lprng " "sollte diese Datei nur noch im Verzeichnis /etc/lprng liegen. Überprüfen Sie " "bitte beide Dateien und löschen Sie /etc/lpd.conf." #. Type: note #. Description #: ../templates:2001 msgid "There are two lpd.perms files" msgstr "Es gibt die Datei lpd.perms doppelt" #. Type: note #. Description #: ../templates:2001 msgid "" "You have a lpd.perms in the old location (/etc/lpd.perms) and the new " "location (/etc/lprng/lpd.perms). Since lprng version 3.6.16-1 this file " "should be only in /etc/lprng, please check both files and remove /etc/lpd." "perms" msgstr "" "Sie haben eine Datei lpd.perms an der alten Stelle (/etc/lpd.perms) und an " "der neuen Stelle (/etc/lprng/lpd.perms). Seit der Version 3.6.16-1 von lprng " "sollte diese Datei nur noch im Verzeichnis /etc/lprng liegen. Überprüfen Sie " "bitte beide Dateien und löschen Sie /etc/lpd.perms." #. Type: boolean #. Description #: ../templates:3001 msgid "Make lpr, lprm and lpq setuid root?" msgstr "lpr, lprm und lpq mit root-Rechten betreiben?" #. Type: boolean #. Description #: ../templates:3001 msgid "" "For full RFC1179 compliance you need to make these programs setuid root. " "This is mainly so they can create a socket with a low port number. The low " "port number may be important if you have network printers or have adjusted /" "etc/lprng/lpd.perms to restrict access to non-privledged ports. For the " "typical printer connected locally to parallel port (and many other) scenario " "you can leave these programs non setuid root." msgstr "" "Zur vollen Übereinstimmung mit RFC1179 müssen diese Programme mit root-" "Rechten laufen. Hauptsächlich damit diese einen Socket mit einer geringen " "Portnummer anlegen können. Niedrige Portnummern können wichtig sein, wenn " "Sie einen Netzwerkdrucker betreiben oder den Zugang über hohe Ports in der " "Datei /etc/lprng/lpd.perms beschränkt haben. Für einen normalen Drucker am " "Parallelport und in vielen anderen Fällen brauchen diese Programme keine " "root-Rechte." #. Type: boolean #. Description #: ../templates:4001 msgid "Start lpd (Printer Daemon) at boot?" msgstr "lpd (Druckerdienst) beim Booten starten?" #. Type: boolean #. Description #: ../templates:4001 msgid "" "Some people for various reasons do not want to start lpd. Refusing this " "option means lpd will not start. Unless you know why you want lpd not to " "start, just accept the default." msgstr "" "Es gibt verschiedene Gründe, lpd nicht beim Booten zu starten. Wenn Sie hier " "ablehnen, wird lpd nicht starten. Wählen Sie die Standardeinstellung, außer " "Sie wissen, warum Sie lpd nicht starten wollen." debian/po/POTFILES.in0000644000000000000000000000004411532526724011366 0ustar [type: gettext/rfc822deb] templates debian/po/it.po0000644000000000000000000000736611532526724010603 0ustar # Italian translation of po-debconf templates for lprng. # Copyright (c) 2005 Software in the Public Interest # This file is distributed under the same license as the lprng package. # Luca Monducci, 2004, 2005 # msgid "" msgstr "" "Project-Id-Version: lprng 3.8.28\n" "Report-Msgid-Bugs-To: csmall@debian.org\n" "POT-Creation-Date: 2006-08-01 21:12+1000\n" "PO-Revision-Date: 2005-12-18 11:54+0100\n" "Last-Translator: Luca Monducci \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: note #. Description #: ../templates:1001 msgid "There are two lpd.conf files" msgstr "Esistono due file lpd.conf" #. Type: note #. Description #: ../templates:1001 msgid "" "You have a lpd.conf in the old location (/etc/lpd.conf) and the new location " "(/etc/lprng/lpd.conf). From lprng version 3.6.16-1 this file should be only " "in /etc/lprng, please check both files and remove /etc/lpd.conf" msgstr "" "Un file lpd.conf è presente sia nella vecchia posizione (/etc/lpd.conf) che " "nella nuova (/etc/lprng/lpd.conf). Dalla versione 3.6.16-1 di lprng questo " "file deve essere presente solo in /etc/lprng, controllare entrambi i file e " "rimuovere /etc/lpd.conf" #. Type: note #. Description #: ../templates:2001 msgid "There are two lpd.perms files" msgstr "Esistono due file lpd.perms" #. Type: note #. Description #: ../templates:2001 msgid "" "You have a lpd.perms in the old location (/etc/lpd.perms) and the new " "location (/etc/lprng/lpd.perms). Since lprng version 3.6.16-1 this file " "should be only in /etc/lprng, please check both files and remove /etc/lpd." "perms" msgstr "" "Un file lpd.perms è presente sia nella vecchia posizione (/etc/lpd.perms) " "che nella nuova (/etc/lprng/lpd.perms). Dalla versione 3.6.16-1 di lprng " "questo file deve essere presente solo in /etc/lprng, controllare entrambi i " "file e rimuovere /etc/lpd.perms" #. Type: boolean #. Description #: ../templates:3001 msgid "Make lpr, lprm and lpq setuid root?" msgstr "Usare lpr, lprm e lpq con il setuid root?" #. Type: boolean #. Description #: ../templates:3001 msgid "" "For full RFC1179 compliance you need to make these programs setuid root. " "This is mainly so they can create a socket with a low port number. The low " "port number may be important if you have network printers or have adjusted /" "etc/lprng/lpd.perms to restrict access to non-privledged ports. For the " "typical printer connected locally to parallel port (and many other) scenario " "you can leave these programs non setuid root." msgstr "" "Per il rispetto completo della RFC1179 questi programmi devono usare il " "setuid root, questo serve essenzialmente per poter creare un socket con " "numero di porta basso. Il numero di porta può essere importante nel caso si " "abbia una stampante di rete o nel caso che modificando /etc/lprng/lpd.perms " "si sia vietato l'accesso alle porte non-privilegiate. Per il classico " "scenario (e in molti altri casi) di una stampante locale collegata con un " "cavo parellelo si può lasciare questi programmi senza il setuid root." #. Type: boolean #. Description #: ../templates:4001 msgid "Start lpd (Printer Daemon) at boot?" msgstr "Attivare lpd (demone di stampa) all'avvio?" #. Type: boolean #. Description #: ../templates:4001 msgid "" "Some people for various reasons do not want to start lpd. Refusing this " "option means lpd will not start. Unless you know why you want lpd not to " "start, just accept the default." msgstr "" "Alcuni amministratori, per varie ragioni, preferiscono evitare l'attivazione " "di lpd. Rifiutanto questa domanda lpd non verrà attivato. Se non si conosce " "un motivo per non volere lpd accettare la risposta predefinita." debian/po/vi.po0000644000000000000000000001007311532526724010572 0ustar # Vietnamese Translation for lprng. # Copyright © 2008 Free Software Foundation, Inc. # Clytie Siddall , 2005-2008. # msgid "" msgstr "" "Project-Id-Version: lprng 3.8.A-1.1\n" "Report-Msgid-Bugs-To: csmall@debian.org\n" "POT-Creation-Date: 2006-08-01 21:12+1000\n" "PO-Revision-Date: 2008-09-24 21:53+0930\n" "Last-Translator: Clytie Siddall \n" "Language-Team: Vietnamese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: LocFactoryEditor 1.7b3\n" #. Type: note #. Description #: ../templates:1001 msgid "There are two lpd.conf files" msgstr "Có hai tập tin «lpd.conf» rồi." #. Type: note #. Description #: ../templates:1001 msgid "You have a lpd.conf in the old location (/etc/lpd.conf) and the new location (/etc/lprng/lpd.conf). From lprng version 3.6.16-1 this file should be only in /etc/lprng, please check both files and remove /etc/lpd.conf" msgstr "Bạn có một tập tin cấu hình « lpd.conf » ở vị trí cũ (« /etc/lpd.conf ») và cũng ở vị trí mới (« /etc/lprng/lpd.conf »). Kể từ lprng phiên bản 3.6.16-1, tập tin này nên nằm chỉ trong « /etc/lprng »: xin hãy kiểm tra cả hai tập tin này và gỡ bỏ « /etc/lpd.conf »." #. Type: note #. Description #: ../templates:2001 msgid "There are two lpd.perms files" msgstr "Có hai tập tin « lpd.perms »" #. Type: note #. Description #: ../templates:2001 msgid "You have a lpd.perms in the old location (/etc/lpd.perms) and the new location (/etc/lprng/lpd.perms). Since lprng version 3.6.16-1 this file should be only in /etc/lprng, please check both files and remove /etc/lpd.perms" msgstr "Có một tập tin « lpd.perms » ở vị trí cũ (/etc/lpd.perms) và ở vị trí mới (/etc/lprng/lpd.perms). Kể từ lprng phiên bản 3.6.16-1, tập tin này nên nằm chỉ trong thư mục « /etc/lprng »: xin hãy kiểm tra cả hai tập tin này và gỡ bỏ « /etc/lpd.perms »." #. Type: boolean #. Description #: ../templates:3001 msgid "Make lpr, lprm and lpq setuid root?" msgstr "Đặt setuid root cho lpr, lprm và lpq không?" #. Type: boolean #. Description #: ../templates:3001 msgid "For full RFC1179 compliance you need to make these programs setuid root. This is mainly so they can create a socket with a low port number. The low port number may be important if you have network printers or have adjusted /etc/lprng/lpd.perms to restrict access to non-privledged ports. For the typical printer connected locally to parallel port (and many other) scenario you can leave these programs non setuid root." msgstr "Để tuân theo RFC1179 hoàn thành, bạn cần phải đặt setuid root cho những chương trình này. Thiết lập này phần lớn để có quyền tạo một ổ cổng với một số thứ tự cổng thấp. Số thứ tự cổng thấp có thể quan trọng nếu bạn có máy in chạy qua mạng hoặc đã điều chỉnh tập tin « /etc/lprng/lpd.perms » để hạn chế truy cập thành những cổng không cần quyền đặc biệt. Đối với kịch bản bình thường có máy in được kết nối cục bộ đến cổng song song (và nhiều kịch bản khác), cũng có thể để lại các trình này không có setuid root." #. Type: boolean #. Description #: ../templates:4001 msgid "Start lpd (Printer Daemon) at boot?" msgstr "Khởi chạy trình nền in lpd khi khởi động máy không?" #. Type: boolean #. Description #: ../templates:4001 msgid "Some people for various reasons do not want to start lpd. Refusing this option means lpd will not start. Unless you know why you want lpd not to start, just accept the default." msgstr "Một số người nào đó, vì nhiều lý do khác nhau, không muốn khởi chạy trình nền in lpd. Từ chối tùy chọn này có nghĩa là trình lpd sẽ không khởi chạy. Nếu không muốn ngăn cản lpd khởi chạy, hãy chấp nhận tùy chọn mặc định." debian/po/es.po0000644000000000000000000001141411532526724010563 0ustar # lprng po-debconf translation to spanish # Copyright (C) 2006 Software in the Public Interest, SPI Inc. # This file is distributed under the same license as the lprng package. # # Changes: # - Initial translation # Javier Fernndez-Sanguino, December 2006 # - Revision # Ricardo Mones # Fernandezo Cerezal # # # Traductores, si no conoce el formato PO, merece la pena leer la # documentacin de gettext, especialmente las secciones dedicadas a este # formato, por ejemplo ejecutando: # info -n '(gettext)PO Files' # info -n '(gettext)Header Entry' # # Equipo de traduccin al espaol, por favor lean antes de traducir # los siguientes documentos: # # - El proyecto de traduccin de Debian al espaol # http://www.debian.org/intl/spanish/ # especialmente las notas y normas de traduccin en # http://www.debian.org/intl/spanish/notas # # - La gua de traduccin de po's de debconf: # /usr/share/doc/po-debconf/README-trans # o http://www.debian.org/intl/l10n/po-debconf/README-trans # # Si tiene dudas o consultas sobre esta traduccin consulte con el ltimo # traductor (campo Last-Translator) y ponga en copia a la lista de # traduccin de Debian al espaol () # msgid "" msgstr "" "Project-Id-Version: lprng 3.8.28dfsg.1-1\n" "Report-Msgid-Bugs-To: csmall@debian.org\n" "POT-Creation-Date: 2006-08-01 21:12+1000\n" "PO-Revision-Date: 2007-03-17 21:28+0100\n" "Last-Translator: Javier Fernndez-Sanguino \n" "Language-Team: Debian Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-15\n" "Content-Transfer-Encoding: 8bit\n" #. Type: note #. Description #: ../templates:1001 msgid "There are two lpd.conf files" msgstr "Hay dos ficheros lpd.conf" #. Type: note #. Description #: ../templates:1001 msgid "" "You have a lpd.conf in the old location (/etc/lpd.conf) and the new location " "(/etc/lprng/lpd.conf). From lprng version 3.6.16-1 this file should be only " "in /etc/lprng, please check both files and remove /etc/lpd.conf" msgstr "Tiene un fichero lpd.conf tanto en la antigua ubicacin (/etc/lpd.conf) como en la nueva (/etc/lprng/lpd.conf). A partir de la versin 3.6.16-1 de lprng este fichero slo debera estar en /etc/lprng. Compruebe ambos ficheros y elimine /etc/lpd.conf." #. Type: note #. Description #: ../templates:2001 msgid "There are two lpd.perms files" msgstr "Hay dos ficheros lpd.perms" #. Type: note #. Description #: ../templates:2001 msgid "" "You have a lpd.perms in the old location (/etc/lpd.perms) and the new " "location (/etc/lprng/lpd.perms). Since lprng version 3.6.16-1 this file " "should be only in /etc/lprng, please check both files and remove /etc/lpd." "perms" msgstr "Tiene un fichero lpd.perms tanto en la antigua ubicacin (/etc/lpd.perms) como en la nueva (/etc/lprng/lpd.perms). A partir de la versin 3.6.16-1 de lprng este fichero slo debera estar en /etc/lprng. Compruebe ambos ficheros y elimine /etc/lpd.perms." #. Type: boolean #. Description #: ../templates:3001 msgid "Make lpr, lprm and lpq setuid root?" msgstr "Desea hacer que lpr, lprm y lpq se instalen con setuid root?" #. Type: boolean #. Description #: ../templates:3001 msgid "" "For full RFC1179 compliance you need to make these programs setuid root. " "This is mainly so they can create a socket with a low port number. The low " "port number may be important if you have network printers or have adjusted /" "etc/lprng/lpd.perms to restrict access to non-privledged ports. For the " "typical printer connected locally to parallel port (and many other) scenario " "you can leave these programs non setuid root." msgstr "Para cumplir completamente el estndar RFC1179 debe instalar estos programas con setuid root. Esto es necesario para que puedan crear un socket en un nmero de puerto bajo. Utilizar un nmero de puerto bajo es importante si tiene impresoras de red o si ha configurado /etc/lprng/lpd.perms para restringir el acceso a puertos no privilegiados. En el caso de la tpica impresora conectada localmente al puerto paralelo (y para muchos otros) puede hacer que estos programas no se instalen con setuid root." #. Type: boolean #. Description #: ../templates:4001 msgid "Start lpd (Printer Daemon) at boot?" msgstr "Desea arrancar lpd (Demonio de impresora) en el inicio del sistema?" #. Type: boolean #. Description #: ../templates:4001 msgid "" "Some people for various reasons do not want to start lpd. Refusing this " "option means lpd will not start. Unless you know why you want lpd not to " "start, just accept the default." msgstr "Algunas personas no desean, por distintos motivos, que se arranque lpd. Lpd no se arrancar si rechaza esta opcin. Elija el valor predeterminado a no ser que sepa por qu no quiere arrancar lpd." debian/po/pt_BR.po0000644000000000000000000000764111532526724011171 0ustar # lprng Brazilian Portuguese translation # Copyright (C) 2008 lprng's PACKAGE COPYRIGHT HOLDER # This file is distributed under the same license as the lprng package. # André Luís Lopes , 2007. # Eder L. Marques (frolic) , 2008. # msgid "" msgstr "" "Project-Id-Version: lprng\n" "Report-Msgid-Bugs-To: csmall@debian.org\n" "POT-Creation-Date: 2006-08-01 21:12+1000\n" "PO-Revision-Date: 2008-08-20 11:20-0300\n" "Last-Translator: Eder L. Marques (frolic) \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "pt_BR utf-8\n" #. Type: note #. Description #: ../templates:1001 msgid "There are two lpd.conf files" msgstr "Existem dois arquivos lpd.conf" #. Type: note #. Description #: ../templates:1001 msgid "" "You have a lpd.conf in the old location (/etc/lpd.conf) and the new location " "(/etc/lprng/lpd.conf). From lprng version 3.6.16-1 this file should be only " "in /etc/lprng, please check both files and remove /etc/lpd.conf" msgstr "" "Você tem um arquivo lpd.conf em uma localização antiga (/etc/lpd.conf) e na " "nova localização (/etc/lprng/lpd.conf). A partir da versão 3.6.16-1 este " "arquivo deveria estar somente em /etc/lprng. Por favor, verifique ambos os " "arquivos e remova o /etc/lpd.conf." #. Type: note #. Description #: ../templates:2001 msgid "There are two lpd.perms files" msgstr "Existem dois arquivos lpd.perms" #. Type: note #. Description #: ../templates:2001 msgid "" "You have a lpd.perms in the old location (/etc/lpd.perms) and the new " "location (/etc/lprng/lpd.perms). Since lprng version 3.6.16-1 this file " "should be only in /etc/lprng, please check both files and remove /etc/lpd." "perms" msgstr "" "Você tem um arquivo lpd.perms em uma localização antiga (/etc/lpd.perms) e " "na nova localização (/etc/lprng/lpd.perms). A partir da versão 3.6.16-1 este " "arquivo deveria estar somente em /etc/lprng. Por favor, verifique ambos os " "arquivos e remova o /etc/lpd.perms." #. Type: boolean #. Description #: ../templates:3001 msgid "Make lpr, lprm and lpq setuid root?" msgstr "Tornar o lpr, lprm e lpq setuid root?" #. Type: boolean #. Description #: ../templates:3001 msgid "" "For full RFC1179 compliance you need to make these programs setuid root. " "This is mainly so they can create a socket with a low port number. The low " "port number may be important if you have network printers or have adjusted /" "etc/lprng/lpd.perms to restrict access to non-privledged ports. For the " "typical printer connected locally to parallel port (and many other) scenario " "you can leave these programs non setuid root." msgstr "" "Para compatibilidade total com a RFC1179 você precisa tornar esses programas " "setuid root. Isto se deve principalmente a eles poderem criar um socket com " "um número de porta baixo. O número de porta baixo pode ser importante caso " "você possua impressoras de rede ou tenha ajustado o arquivo /etc/lprng/lpd." "perms para restringir o acesso a portas não privilegiadas. Para o típico " "cenário da impressora conectada localmente à porta paralela (e muitos " "outros) você pode manter esses programas sem o bit setuid root habilitado." #. Type: boolean #. Description #: ../templates:4001 msgid "Start lpd (Printer Daemon) at boot?" msgstr "Iniciar o lpd (Daemon de Impressão) na inicialização da máquina?" #. Type: boolean #. Description #: ../templates:4001 msgid "" "Some people for various reasons do not want to start lpd. Refusing this " "option means lpd will not start. Unless you know why you want lpd not to " "start, just accept the default." msgstr "" "Algumas pessoas por várias razões não desejam iniciar o lpd. Recusando esta " "opção significa que o lpd não irá iniciar. A menos que você saiba por que " "quer que o lpd não inicie, apenas aceite o padrão." debian/po/gl.po0000644000000000000000000000727511532526724010570 0ustar # Galician translation of lprng's debconf templates # This file is distributed under the same license as the lprng package. # Jacobo Tarrio , 2008. # msgid "" msgstr "" "Project-Id-Version: lprng\n" "Report-Msgid-Bugs-To: csmall@debian.org\n" "POT-Creation-Date: 2006-08-01 21:12+1000\n" "PO-Revision-Date: 2007-01-01 13:32+0100\n" "Last-Translator: Jacobo Tarrio \n" "Language-Team: Galician \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: note #. Description #: ../templates:1001 msgid "There are two lpd.conf files" msgstr "Hai dous ficheiros lpd.conf" #. Type: note #. Description #: ../templates:1001 msgid "" "You have a lpd.conf in the old location (/etc/lpd.conf) and the new location " "(/etc/lprng/lpd.conf). From lprng version 3.6.16-1 this file should be only " "in /etc/lprng, please check both files and remove /etc/lpd.conf" msgstr "" "Ten un ficheiro lpd.conf na ubicación antiga (/etc/lpd.conf) e na ubicación " "nova (/etc/lprng/lpd.conf). A partires de lprng versión 3.6.16-1, este " "ficheiro só debería estar en /etc/lprng; comprobe os dous ficheiros e " "elimine /etc/lpd.conf" #. Type: note #. Description #: ../templates:2001 msgid "There are two lpd.perms files" msgstr "Hai dous ficheiros lpd.perms" #. Type: note #. Description #: ../templates:2001 msgid "" "You have a lpd.perms in the old location (/etc/lpd.perms) and the new " "location (/etc/lprng/lpd.perms). Since lprng version 3.6.16-1 this file " "should be only in /etc/lprng, please check both files and remove /etc/lpd." "perms" msgstr "" "Ten un ficheiro lpd.perms na ubicación antiga (/etc/lpd.perms) e na " "ubicación nova (/etc/lprng/lpd.perms). A partires de lprng versión 3.6.16-1, " "este ficheiro só debería estar en /etc/lprng; comprobe os dous ficheiros e " "elimine /etc/lpd.perms" #. Type: boolean #. Description #: ../templates:3001 msgid "Make lpr, lprm and lpq setuid root?" msgstr "¿Quere darlle privilexios de administrador a lpr, lprm e lpq?" #. Type: boolean #. Description #: ../templates:3001 msgid "" "For full RFC1179 compliance you need to make these programs setuid root. " "This is mainly so they can create a socket with a low port number. The low " "port number may be important if you have network printers or have adjusted /" "etc/lprng/lpd.perms to restrict access to non-privledged ports. For the " "typical printer connected locally to parallel port (and many other) scenario " "you can leave these programs non setuid root." msgstr "" "Para seguir completamente a especificación RFC1179 ten que lle dar " "privilexios de administrador a estes programas. Isto é así principalmente " "para que poidan crear un socket cun número de porto baixo. O número de porto " "baixo pode ser importante se ten impresoras de rede ou axustou o ficheiro /" "etc/lprng/lpd.perms para restrinxir o acceso aos portos non privilexiados. " "Para o escenario da típica impresora conectada localmente ao porto paralelo " "(e moitos outros), pode deixar estes programas sen privilexios de " "administrador." #. Type: boolean #. Description #: ../templates:4001 msgid "Start lpd (Printer Daemon) at boot?" msgstr "¿Iniciar lpd (servizo de impresión) co ordenador?" #. Type: boolean #. Description #: ../templates:4001 msgid "" "Some people for various reasons do not want to start lpd. Refusing this " "option means lpd will not start. Unless you know why you want lpd not to " "start, just accept the default." msgstr "" "Hai xente que, por varios motivos, non quere iniciar lpd. Se rexeita esta " "opción, lpd non se ha iniciar. A menos que saiba por que quere que non se " "inicie lpd, acepte o valor por defecto." debian/cron.daily0000644000000000000000000000237611532526724011172 0ustar #!/bin/sh # # source: # $Source: /var/cvs/hosts/quoininc/smoke/etc/cron.daily/lprng,v $ # # revision: # @(#) $Id: lprng,v 1.1 1998/01/11 02:19:10 jplejacq Exp $ # # copyright: # Copyright (C) 1997 Jean Pierre LeJacq # # description: # Host configuration of cron daily program for lprng. # # Reports warnings or errors using the syslog facility. If there # are no errors, removes junk files older than a day. test -x /usr/sbin/checkpc || exit 0 test -e /etc/printcap || exit 0 # filter defining what errors to look for: CS_WARN="Warning" CS_ERROR="lp\: Need to fix" CS_DENY="${CS_WARN}|${CS_ERROR}" # filter defining which errors you'll accept: CS_LOCK_OWN="Warning - owner/group of ./var/lock. are 0/0, not 7/7" CS_LOCK_PERM="Warning - permissions of ./var/lock. are 041777, not 042700" CS_MISS_LOCKFILE="Warning - LPD Lockfile .* does not exist!" CS_ALLOW="${CS_LOCK_OWN}|${CS_LOCK_PERM}|$CS_MISS_LOCKFILE" # main: if [ -x /usr/sbin/checkpc ] then /usr/sbin/checkpc | grep -E "${CS_DENY}" | grep -q -v -E "${CS_ALLOW}" ; RV=$? if [ "$RV" = "0" ] then /usr/bin/logger -p "lpr.err" -t "lpd" "cron.daily found errors, run checkpc for details." else /usr/sbin/checkpc -r -A 1D fi fi exit 0 debian/lprng.init.in0000644000000000000000000000731311765321207011612 0ustar #! /bin/sh ### BEGIN INIT INFO # Provides: lprng # Required-Start: $network $remote_fs $syslog # Required-Stop: $network $remote_fs $syslog # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: Start lpd to allow printing # Description: lpd is the print daemon required for lpr to work properly. # It is basically a server that arbitrates print jobs to printer(s). ### END INIT INFO # Return values acc. to LSB for all commands but status: # 0 - success # 1 - misc error # 2 - invalid or excess args # 3 - unimplemented feature (e.g. reload) # 4 - insufficient privilege # 5 - program not installed # 6 - program not configured # # Note that starting an already running service, stopping # or restarting a not-running service as well as the restart # with force-reload (in case signalling is not supported) are # considered a success. PATH=/sbin:/usr/sbin:/bin:/usr/bin DESC="LPRng printer spooler" NAME=lprng DAEMON=/usr/sbin/lpd CONFIGDIR=/etc/lprng PRINTCAP=/etc/printcap LPDPRINTCAP=/etc/lprng/printcap SCRIPTNAME=/etc/init.d/$NAME # Check for printcap file, if there isn't one, there is no need to start test -f $PRINTCAP || test -f $LPDPRINTCAP || exit 0 # Do not start if there is no lpd or the lib dir is not there test -f $DAEMON || test -d /usr/lib/${DEB_HOST_MULTIARCH}/lprng || exit 5 # Work out what port we are running on LPD_PORT=$(sed '/^[[:space:]]*lpd_port/!d; s/.*[=#]\(.*\)/\1/; q' $CONFIGDIR/lpd.conf) if [ -z $LPD_PORT ] then LPD_PORT=515 fi # Check lpd.conf for lockfile LOCKFILE=$(sed '/^[[:space:]]*lockfile/!d; s/.*[=#]\(.*\)/\1/; q' $CONFIGDIR/lpd.conf) if [ -z $LOCKFILE ] then LOCKFILE=/var/run/lprng/lpd fi PIDFILE=$LOCKFILE.$LPD_PORT # Load the VERBOSE setting and other rcS variables . /lib/init/vars.sh # Source LSB script . /lib/lsb/init-functions if [ -r /etc/default/lprng ]; then . /etc/default/lprng fi initialise() { # Description # Runs checkpc and also checks we have the run directory RUNDIR=$(dirname ${PIDFILE}) [ ! -d ${RUNDIR} ] && mkdir -p ${RUNDIR} checkpc -f > /dev/null || true } cleanup() # description: # Removes all lock and control files on this host. { rm -f "${PIDFILE}" for dir in $(find /var/spool/lpd/* -type d -print) do rm -f ${dir}/lock.pr rm -f ${dir}/control.pr rm -f ${dir}/unspooler.pr done } case "$1" in start) if [ "$START_LPD" != "yes" ]; then [ "$VERBOSE" != no ] && log_warning_msg "Not starting LPRng - edit /etc/default/lprng and change START_LPD to be yes." exit 0 fi [ "$VERBOSE" != no ] && log_daemon_msg "Starting $DESC" lpd initialise if start-stop-daemon --start --quiet --pidfile "${PIDFILE}" \ --exec $DAEMON ; then [ "$VERBOSE" != no ] && log_end_msg 0 else [ "$VERBOSE" != no ] && log_end_msg 1 exit 1 fi ;; stop) [ "$VERBOSE" != no ] && log_daemon_msg "Stopping $DESC" lpd if start-stop-daemon --stop --oknodo --quiet --pidfile "${PIDFILE}" ; then cleanup [ "$VERBOSE" != no ] && log_end_msg 0 else [ "$VERBOSE" != no ] && log_end_msg 1 exit 1 fi ;; status) status_of_proc "$DAEMON" "$NAME" && exit 0 || exit $? ;; reload) [ "$VERBOSE" != no ] && log_daemon_msg "Reloading $DESC configuration files..." if start-stop-daemon --stop --signal 1 --quiet --pidfile \ "${PIDFILE}" --oknodo ; then [ "$VERBOSE" != no ] && log_end_msg 0 else [ "$VERBOSE" != no ] && log_end_msg 1 exit 1 fi ;; restart|force-reload) [ "$VERBOSE" != no ] && log_daemon_msg "Restarting $DESC" lpd start-stop-daemon --stop --quiet --pidfile "${PIDFILE}" sleep 1 initialise start-stop-daemon --start --quiet --pidfile "${PIDFILE}" \ --exec $DAEMON [ "$VERBOSE" != no ] && log_end_msg 0 ;; *) echo "Usage: $SCRIPTNAME {start|stop|status|restart|force-reload}" >&2 exit 1 ;; esac : debian/templates0000644000000000000000000000263311532526724011122 0ustar Template: lprng/twolpd_conf Type: note _Description: There are two lpd.conf files You have a lpd.conf in the old location (/etc/lpd.conf) and the new location (/etc/lprng/lpd.conf). From lprng version 3.6.16-1 this file should be only in /etc/lprng, please check both files and remove /etc/lpd.conf Template: lprng/twolpd_perms Type: note _Description: There are two lpd.perms files You have a lpd.perms in the old location (/etc/lpd.perms) and the new location (/etc/lprng/lpd.perms). Since lprng version 3.6.16-1 this file should be only in /etc/lprng, please check both files and remove /etc/lpd.perms Template: lprng/setuid_tools Type: boolean Default: false _Description: Make lpr, lprm and lpq setuid root? For full RFC1179 compliance you need to make these programs setuid root. This is mainly so they can create a socket with a low port number. The low port number may be important if you have network printers or have adjusted /etc/lprng/lpd.perms to restrict access to non-privledged ports. For the typical printer connected locally to parallel port (and many other) scenario you can leave these programs non setuid root. Template: lprng/start_lpd Type: boolean Default: true _Description: Start lpd (Printer Daemon) at boot? Some people for various reasons do not want to start lpd. Refusing this option means lpd will not start. Unless you know why you want lpd not to start, just accept the default. debian/changelog0000644000000000000000000007231311765323463011060 0ustar lprng (3.8.B-2) unstable; urgency=low * Compilies on hurd-i386 Closes: #671848 * Added note about needed modules Closes: #659999 * Added support for "status" action to init script from Peter Eisentraut Closes: #651459 * Updated to debhelper compat 9 * Updated to Debian standard 3.9.3 * Patched source to compile with harden flags * Fixed configure flags to find openssl libs * filters moved to multiarch location * Added lpd.conf example Closes: #618482 -- Craig Small Mon, 11 Jun 2012 18:06:30 +1000 lprng (3.8.B-1) unstable; urgency=low * New upstream release * Changed source format to 3.0 (quilt) * Updated to standards version 3.9.1 * Minor fixes to lpd.conf manpage -- Craig Small Mon, 28 Feb 2011 09:25:20 +1100 lprng (3.8.A-3) unstable; urgency=low * Corrected patch for kfreebsd Closes: #537857 * postinst checks for symlink on printcap Closes: #544986 * Documented lpd_listen_port in lpd.conf man page Closes: #492684 * Maintainer upload Closes: #544991 * Changed rules file for new debhelper * Changed from dpatch to quilt for patching * Fixed symlinks for 2 filter man pages -- Craig Small Tue, 22 Sep 2009 15:34:35 +1000 lprng (3.8.A-2.2) unstable; urgency=low * Non-maintainer upload. * Corrected runlevel settings in init.d script header, and add postinst code to recover installations affected by this bug (Closes: #541233). * Fixed build problem on kfreebsd (Closes: #537857). Patch from Petr Salinger. * Updated debconf translations for Brazilian Portuguese from Eder L. Marques (Closes: 511890). * Updated debconf translation for Czech from Jan Outrata (Closes: #534967) -- Petter Reinholdtsen Fri, 4 Sep 2009 10:24:59 +0200 lprng (3.8.A-2.1) unstable; urgency=low * Non-maintainer upload. * The ''fix other packages breaking us'' release: + work around bug 489765 (and similars) by documenting it in the news file. * debian/control: + include misc-depends on the package, as we use debhelper. + upgrade standards version to 3.8.1 (no changes needed). * debian/config: + include set -e in the config script. * debian/README: + include information regarding printing with GTK 2. -- Rogério Brito Wed, 20 May 2009 12:28:46 -0300 lprng (3.8.A-2) unstable; urgency=low * Added debconf translations: - Finnish. Closes: #496233 - Vietnamese Closes: #500026 * Removed old ja.po download file * Updated standards version -- Craig Small Mon, 13 Oct 2008 08:27:50 +1100 lprng (3.8.A-1.1) unstable; urgency=low * Non-maintainer upload to fix pending l10n issues. * Use "$syslog" in Required-Start for LSB headers in the init script. Avoids failures when the syslog daemon is not syslog. Closes: #495696 * Debconf translations: - Galician. Closes: #484142 - Japanese. Closes: #491041 - Swedish. Closes: #492098 - Russian. Closes: #494474 -- Christian Perrier Fri, 22 Aug 2008 07:16:16 +0200 lprng (3.8.A-1) unstable; urgency=low * New upstream release * Moved debconf include in preinst Closes: #474813 * if-up script uses correct path for invole-rc.d Closes: #463578 * init.d file uses sed instead of grep and cut Closes: #474295 -- Craig Small Wed, 07 May 2008 18:47:20 +1000 lprng (3.8.A~rc4-3) unstable; urgency=low * Put initialise back in and created function to create run directory -- Craig Small Mon, 31 Mar 2008 10:09:15 +1100 lprng (3.8.A~rc4-2) unstable; urgency=low * Removed initialise from init.d script in restart step * Control now has a homepage, finally. -- Craig Small Mon, 31 Mar 2008 08:48:04 +1100 lprng (3.8.A~rc4-1) unstable; urgency=low * New upstream release * Note added that the logfile needs to be created Closes: #458003 * Kerberos patch reverted so krb5 works again Closes: #462741 * Removed mention of spooldir in postinst Closes: #462605 * Note about no remote connecitons Closes: #466964 * Sample configu files don't have a suffix Closes: #467030 * Updated to debhelper 6 Closes: #467031 * Updated to standards version 3.7.4 * Updated Japanese debian/po file Closes: #463249 * Build-depends on openssl Closes: #469459 * Removed sample files introduced in rc2 -- Craig Small Wed, 19 Mar 2008 08:43:09 +1100 lprng (3.8.A~rc2-1) unstable; urgency=low * New upstream release * Depends on libwrap0-dev not libwrap-dev Closes: #436315 * init.d cleans correct lockfiles Closes: #418169 * Daily cron check will exit if no /etc/printcap Closes: #457451, #318391 * ifup.d script restarts lprng Closes: #144399 * Added Spanish po-debconf translation Closes: #415283 * Added Portuguese po-debconf translation Closes: #413776 * Spool directory not shipped/deleted (checkpc makes it) Closes: #409907 -- Craig Small Thu, 24 Jan 2008 21:38:08 +1100 lprng (3.8.28dfsg.1-1) unstable; urgency=low * Removed RFC 1179 Closes: 393395 * Init script changed to handle RAMRUN option Closes: #390687 * Updated Japanese po-debconf file Closes: #392167 -- Craig Small Wed, 25 Oct 2006 14:47:02 +1000 lprng (3.8.28-6) unstable; urgency=low * init.d returns ok if stop is run but lpd is already dead * Rolling back 10_linelist_closefd patch makes lpd print Closes: #381512 -- Craig Small Sun, 6 Aug 2006 07:48:22 +1000 lprng (3.8.28-5) unstable; urgency=low * close fds before LDAP sockets Closes: #360788 * Check configuration file location only with old prev versions * preinst has POSIX checks Closes: #358628 * lp.1 optios->options Closes: #368482 * README and lpd.conf.8 mention unix_socket_path Closes: #311774 * Updated nl.po Closes: #377249 * Standards version 3.7.2 -- Craig Small Tue, 18 Jul 2006 11:11:02 +1000 lprng (3.8.28-4) unstable; urgency=low * init.d script checks for /usr/lib/lprng Closes: #356054 * debhelper v5 * Standards version to 3.6.2 * Depends on debconf-2.0 too Closes: #332011 * Added debconf-updatepo to Clean target Closes: #337268 * Updated German po file Closes: #345851 * Updated French po file Closes: #337301 * Updated Swedish PO file Closes: #338873 * Updated Danish PO file Closes: #343441 * Updated Italian PO file Closes: #343867 * Remove /etc/default/lprng on purge Closes: #327530 * Uses lsb init.d -- Craig Small Sun, 12 Mar 2006 11:07:00 +1100 lprng (3.8.28-3.0.1) unstable; urgency=low * Binary-only non-maintainer upload for i386; no source changes. * Rebuild with libssl0.9.8 -- Debian/i386 Build Daemon Wed, 12 Oct 2005 00:47:44 -0700 lprng (3.8.28-3) unstable; urgency=low * Added Vietnamese translation Closes: #312602 * Added Italian translation Closes: #287752 * Compilies on gcc4 and AMD Closes: #287521 * Since->From in templates Closes: #312603 -- Craig Small Fri, 26 Aug 2005 14:17:00 +1000 lprng (3.8.28-2) unstable; urgency=high * Fixed insecure lprng_certs directory Closes: #286391 Above bug is a security fix -- Craig Small Thu, 23 Dec 2004 14:33:21 +1100 lprng (3.8.28-1) unstable; urgency=low * New upstream release * Updated German debconf po Closes: #281134 * Updated Dutch debconf po Closes: #277762 * Added Czech debconf po Closes: #261791 * Check for spool directory in postinst Closes: #218319 -- Craig Small Thu, 18 Nov 2004 15:43:33 +1100 lprng (3.8.27-1) unstable; urgency=low * New upstream release Upstream fixed busy loop Closes: #245274 * Added Japanese po file Closes: #243264 -- Craig Small Wed, 26 May 2004 13:45:37 +1000 lprng (3.8.26-1) unstable; urgency=low * New upstream version IPP socket disabled Closes: #231587 * Now uses dpatch for patch management * Added Dutch debconf translation Closes: #216935 * Added Danish debconf translation Closes: #236490 -- Craig Small Wed, 24 Mar 2004 10:01:55 +1100 lprng (3.8.25-1) unstable; urgency=low * New upstream release * Upgraded to standards version 3.6.1 * Upgraded watch file to version 2 * Updated pt_BR po file Closes: #219849 * Added Dutch debian po files Closes: #219635 -- Craig Small Fri, 6 Feb 2004 21:31:18 +1100 lprng (3.8.22-2) unstable; urgency=low * Added files line to deb-doc Closes: #210681 -- Craig Small Sat, 13 Sep 2003 20:39:12 +1000 lprng (3.8.22-1) unstable; urgency=low * New upstream release - Upstream accepted most of the patches, yay * Closes: #205528: chown with ':' not with '.' in postinst * Closes: #189045: checks with dpkg-statoverride before changing spool directory permissions. * Closes: #206342: Updated French debconf templates translation * Closes: #207975: Included updated Brazilian Portuguese (pt_BR) debconf template translations -- Craig Small Fri, 12 Sep 2003 20:22:14 +1000 lprng (3.8.21-3) unstable; urgency=low * Fixed gettext brokeness that put stuff in wierd directories Closes: #204530 -- Craig Small Fri, 8 Aug 2003 13:17:51 +1000 lprng (3.8.21-2) unstable; urgency=low * Updated libtool Closes: #201936, #201624 * Patched OF filter problem Closes: #200850 * Changed template so that it doesn't use yes and no Closes: #201248 -- Craig Small Mon, 21 Jul 2003 07:02:01 +1000 lprng (3.8.21-1) unstable; urgency=low * New upstream source * Remove RFC1179 because of license issues Closes: #199812 * Removed KRB5_PROTOTYPE Closes: #200588 * Put in krb5 deprecated function workaround Closes: #200618 * Removed log() function, its not used anywhere Closes: #200621 * Fixed the config script so it checks for /etc/default files closes: #135356 * Fixed checkpc man page to remove -c flag Closes: #139565 * Debconf templates now use po-debconf * Fixed typo in debconf template Closes: #186131 * My thanks to Kalle for the Kerberos patches * link liblpr with libkrb5 and libssl Closes: #195992 -- Craig Small Thu, 10 Jul 2003 11:21:47 +1000 lprng (3.8.20-4) unstable; urgency=high * Removed unsecure create of /tmp/before SECURITY BUG Closes: #188366 -- Craig Small Thu, 10 Apr 2003 21:13:56 +1000 lprng (3.8.20-3) unstable; urgency=medium * Fixed stupid flag type problem (causes crash on 64-bit): Closes: #183137 -- Craig Small Mon, 3 Mar 2003 09:00:58 +1100 lprng (3.8.20-2) unstable; urgency=low * Added libssl-dev to Build-Depends * Updated config.* using the rules Closes: #181859 -- Craig Small Fri, 21 Feb 2003 21:21:07 +1100 lprng (3.8.20-1) unstable; urgency=low * New upstream release - This should hopefully fix all those done_jobs problems -- Craig Small Thu, 13 Feb 2003 21:47:22 +1100 lprng (3.8.15-2) unstable; urgency=low * Forced done_jobs to 0, doesnt fix #159632 but at least works by default * Added note in README.Debian about the evils of done_jobs * Added Kerberos 5 support, hope it doesn't break anything Closes: #166558 * Ship an empty never changing /etc/lprng/lpd.conf, instead of reqiring users to remerge the change with every new upstream version (Thankyou Andreas) Closes: #147304, #120257 -- Craig Small Sun, 27 Oct 2002 09:24:49 +1100 lprng (3.8.15-1) unstable; urgency=low * New upstream source + fixes race condition on remove done jobs. + man page fixes -- Craig Small Tue, 13 Aug 2002 18:13:05 +1000 lprng (3.8.12-5) unstable; urgency=low * Added t to printcap in postinst Closes: #147641, #149718, #149719 -- Craig Small Wed, 12 Jun 2002 10:10:39 +1000 lprng (3.8.12-4) unstable; urgency=low * Put /etc/lprng/printcap symlink in if nothing exists already Closes: #147641 -- Craig Small Mon, 3 Jun 2002 09:30:01 +1000 lprng (3.8.12-3) unstable; urgency=low * Disabled tcpwrappers Closes: #146511 * Removed dh_testversion to stop it complaining during build. -- Craig Small Thu, 16 May 2002 21:55:53 +1000 lprng (3.8.12-2) unstable; urgency=low * Updated config.sub and config.guess again Closes: #146322 -- Craig Small Thu, 9 May 2002 12:54:23 +1000 lprng (3.8.12-1) unstable; urgency=low * New upstream source - libwrap linked Closes: #140033 - lprng 3.8.11 was withdrawn * Fixed ldconfig post(inst|rm) so lintian (should) stops complaining -- Craig Small Mon, 6 May 2002 12:59:22 +1000 lprng (3.8.10-1) unstable; urgency=low * New upstream version - checkpc behaves itself with print filters Closes: #141090 - as and ae options fixed in man page Closes: #137249 -- Craig Small Mon, 8 Apr 2002 09:25:12 +1000 lprng (3.8.9-1) unstable; urgency=low * New upstream source -- Craig Small Sun, 10 Mar 2002 08:35:36 +1100 lprng (3.8.8-2) unstable; urgency=low * Fixed lpq -a problem, thanks luca! Closes: #129786 -- Craig Small Mon, 4 Mar 2002 09:18:25 +1100 lprng (3.8.8-1) unstable; urgency=low * New upstream version - local printer name should stay same Closes: #130608, #113707 * Added new French template Closes: #132389 * check for statoverrides -- Craig Small Sat, 9 Feb 2002 16:40:31 +1100 lprng (3.8.4-2) unstable; urgency=low * Changed permissions of /var/run/lprng so non-root can get to it Closes: #129162,#129295 -- Craig Small Tue, 15 Jan 2002 08:43:23 +1100 lprng (3.8.4-1) unstable; urgency=low * New upstream version - Now allows Unix socket access /var/run/lprng/socket - Also can shut down tcp/ip access using lpd_port = 0 - t1: file 'hfA877', age 24.57 hours > 24.00 hours maximum Closes: #125843 * cron job now ignores missing pid file Closes: #127882 * init script now has quiet cron Closes: #124284 -- Craig Small Sat, 12 Jan 2002 16:53:55 +1100 lprng (3.8.2-1) unstable; urgency=low * New upstream version - New document about printing cookbook * Debconf question about do you want to start lpd. Closes: #57778, #85290, #115574 * No longer have a printcap, but there is one in examples. Closes: #71050, #108655 -- Craig Small Wed, 5 Dec 2001 09:37:51 +1100 lprng (3.8.1-1) unstable; urgency=high * New upstream source - setuid SECURITY BUG fixed Closes: #120133 * checkpc no longer talks about bogus Warning - calling Check_file for messages Closes: #118152 -- Craig Small Thu, 29 Nov 2001 08:10:20 +1100 lprng (3.8.0-1) unstable; urgency=low * New upstream source * changed pid filename from printer to 515 Closes: #115235 * Deleted liblpr.a and liblpr.la. They were installed for some reason? -- Craig Small Wed, 17 Oct 2001 08:45:41 +1000 lprng (3.7.7-2) unstable; urgency=low * Updated config.guess and config.sub Closes: #114709 -- Craig Small Sun, 7 Oct 2001 21:54:09 +1000 lprng (3.7.7-1) unstable; urgency=low * New upstream version - direct flag works, Closes: #97273 - group option works, Closes: #85548 - checkpc doesn't stuff filters permissions up Closes: #92608, #100086, #100717, #106191 - doco fixed up, Closes: #97271, #86394, #108668 - Uses right defaults for printer port, Closes: #105387 - Direct was a Flag, Closes: #88180 * Escape init.d file for funny characters Closes: #107095 * Conflicts with cupsys-bsd Closes: #107219 * Fixed paths in lpd.conf.5 Closes: #110888 * Now have lpd.conf.local Closes:#82393 * init.d start has oknodo Closes: #113966 -- Craig Small Thu, 6 Sep 2001 12:53:04 +1000 lprng (3.7.4-5) unstable; urgency=high * Added procps to build-depends Closes: #100795 * Fixed getrlimit problem Closes: #95989 * init.d works for lpd_ports Closes: #97272 * Fixed up README.Debian Closes: #99404 * Hopefully stopped dinstal from complaining Closes: #94672 -- Craig Small Thu, 21 Jun 2001 08:51:39 +1000 lprng (3.7.4-4) unstable; urgency=high * updated config.* for parisc people Closes: #94215 * Added pt_BR language to templates, Closes: #92840 * Added a patch to fix netmask selection -- Craig Small Fri, 20 Apr 2001 13:07:58 +1000 lprng (3.7.4-3) unstable; urgency=high * Added a death to all lpd in postinst hopefully Closes: #88173, #74564 * Also #85075, #85267 * Debconf has German templates. Closes: #82856 * Swedish too Closes: #83611 * and French Closes: #83786 * cron.daily will not complain if checkpc is not there Closes: #83073, #84276 * cron.daily has better error messages Closes: #85869 * No longer uses suidregister, hope I don't mess it up!! -- Craig Small Sun, 11 Mar 2001 16:26:54 +1100 lprng (3.7.4-2) unstable; urgency=high * small patch to stop evil segfaults on alpha Closes: #82476, #82711 * fix so it compiles on alpha Closes: #81707 -- Craig Small Sat, 20 Jan 2001 15:10:07 +1100 lprng (3.7.4-1) unstable; urgency=low * New upstream release * Split documents out to lprng-doc again. -- Craig Small Thu, 4 Jan 2001 11:12:02 +1100 lprng (3.7.3-1) unstable; urgency=low * New upstream source - checks for inet_ntop Closes: #74390 * copyright file fixed -- Craig Small Wed, 27 Dec 2000 18:08:43 +1100 lprng (3.7.2-1) unstable; urgency=low * New upstream source * Upstream recalled this version before Debian release -- Craig Small Fri, 22 Dec 2000 10:46:20 +1100 lprng (3.6.26-1) unstable; urgency=high * New upstream source * SECURITY FIX for gettext NLSPATH security bug * IPv6 stuff removed, Closes: #74390 -- Craig Small Mon, 16 Oct 2000 10:43:07 +1100 lprng (3.6.24-3) unstable; urgency=high * SECURITY FIX for syslog buffer overflow -- Craig Small Thu, 5 Oct 2000 10:10:47 +1100 lprng (3.6.24-2) unstable; urgency=medium * Check for suidregsiter Closes: #69796, #69876, #69877, #69917 -- Craig Small Thu, 24 Aug 2000 08:36:46 +1000 lprng (3.6.24-1) unstable; urgency=medium * New upstream version * Actually released it, closing 3.6.22 bugs Closes: #67512, #67363 -- Craig Small Mon, 21 Aug 2000 11:50:16 +1000 lprng (3.6.22-1) unstable; urgency=medium * New upstream source * Removed dependancy on suidmanager Closes: #67512 * CPU overload problem fixed Closes: #67363 * NEVER RELEASED -- Craig Small Wed, 9 Aug 2000 11:18:31 +1000 lprng (3.6.20-1) unstable; urgency=medium * New upstream version * - Fixes checkpc Closes: #66777, #66597 * Default config now longer allows remotes to print Closes: #67135 This is a security bug!! * Now has the html docs back in, thanks joeyh. * no need for lprng-doc * lpq, lprm and lpr can now be non setuid root. Asked by debconf. * README talks about force_localhost Closes: #64868 -- Craig Small Mon, 10 Jul 2000 10:30:19 +1000 lprng (3.6.18-2) unstable; urgency=low * Removed references to lpd.conf in /etc/init.d file Closes: #66568 * Check and warn if we have old and new config file locations Closes: #66570 * Removed debug crud (fff) out of cron.daily Closes: #66613, #66741 -- Craig Small Mon, 3 Jul 2000 20:49:19 +1000 lprng (3.6.18-1) unstable; urgency=low * New upstream version * Fixed build dependencies (HELLO ROMAN!!) Closes: #66358 * Put correct path for checkpc in cron file Closes: #66363, #66471, #66356 * Fixed moronic shell stuffup on my part in preinst Closes: #66407, #66400 * preinst now deletes old config file locations -- Craig Small Thu, 29 Jun 2000 22:12:59 +1000 lprng (3.6.16-1) unstable; urgency=low * New upstream version * Config files found in /etc/lprng -- Craig Small Tue, 20 Jun 2000 09:19:04 +1000 lprng (3.6.14-1) unstable; urgency=low * New upstream version - not released -- Craig Small Wed, 7 Jun 2000 20:09:48 +1000 lprng (3.6.12-6) frozen unstable; urgency=medium * IMPORTANT Fixed lprm forwarding bug Closes: #64614 * Fixes preinst s-s-d problem Closes: #62487, #57098 * Remove /var/spool/lpd on purge Closes: #59548 * Change path to lpd in lpd.8 Closes: #58341 * lpr.1 no longer refers to itself Closes: #60598 -- Craig Small Mon, 29 May 2000 09:25:23 +1000 lprng (3.6.12-5) frozen unstable; urgency=medium * IMPORTANT BUG IN PPC : Removed kerberos from configure.in Closes: #57565 -- Craig Small Fri, 11 Feb 2000 09:58:27 +1100 lprng (3.6.12-4) frozen unstable; urgency=low * Check for lpd.conf before grepping it RC BUG Closes: #55934 -- Craig Small Thu, 3 Feb 2000 16:01:07 +1100 lprng (3.6.12-3) frozen unstable; urgency=low * Fixed kill children routine using patch from Patrick * lpq doesn't segfault Closes: #51164 * Check for a file in preinst so it doesnt die -- Craig Small Wed, 12 Jan 2000 12:15:15 +1100 lprng (3.6.12-2) unstable; urgency=low * Added more stty speeds Closes: #50335 * Fixed init.d script so it doesn't reference exec Closes: #45857, #50709, #51824 * Check for /usr/share/doc/lprng not /usr/doc/lprng, Closes #49025 -- Craig Small Fri, 3 Dec 1999 15:37:19 +1100 lprng (3.6.12-1) unstable; urgency=high * New upstream release with SECURITY FIXES -- Craig Small Tue, 2 Nov 1999 12:55:50 +1100 lprng (3.6.11-1) unstable; urgency=low * New upstream source * Complains about invalid printer name Closes: #44649 * Fixed bashism in postinst Closes: #47527 -- Craig Small Mon, 25 Oct 1999 10:02:35 +1000 lprng (3.6.10-2) unstable; urgency=low * Fixed postinst Closes: #46239 * Fixed copyright file, it uses Artistic not GPL -- Craig Small Thu, 30 Sep 1999 09:41:14 +1000 lprng (3.6.10-1) unstable; urgency=low * New upstream version * Attempt to kill old lpd Closes: #44017, #44064 * Deleted useless README.Debian Closes: #43946 * Fixed postinst for wierd spool files Closes: #44494 * init.d goes looking for the pid file Closes: #44953 * init.d runs checkpc -f Closes: #44954 * Made Joey's build life easier Closes: #44626 * lpc manpage now in section 8 Closes: #43922 -- Craig Small Mon, 13 Sep 1999 15:21:53 +1000 lprng (3.6.8-3) unstable; urgency=medium * Fixed spool permission problem Closes: #43925, #44091, #44108 -- Craig Small Sun, 5 Sep 1999 18:25:07 +1000 lprng (3.6.8-2) unstable; urgency=medium * Fixed /usr/etc problem Closes: #43870 -- Craig Small Wed, 1 Sep 1999 11:00:29 +1000 lprng (3.6.8-1) unstable; urgency=low * New upstream version Closes: #36649 * Added some suggested scripts Closes: #16959 * lpc moved to /usr/sbin Closes: #43027 * init.d scripts cd to / Closes: #42068 * lpr.1 man page fixed Closes: #35764 -- Craig Small Tue, 31 Aug 1999 13:29:03 +1000 lprng (3.6.2-2) unstable; urgency=low * Moved /var/run/lpd.printer to /var/run/lprng/lpd.printer Closes: #41185 * Fixed init.d to use correct pid file Closes: #41186 #41246 -- Craig Small Tue, 13 Jul 1999 13:02:11 +1000 lprng (3.6.2-1) unstable; urgency=low * New maintainer * New Upstream Version Closes: #36649 * Fixed init.d script Closes: #20577 * No ugly prompting in postinst Closes: #12577 * lpd.perms manpage fixed Closes: #31892 * lpd.8 manpage has proper path Closes: #32418 * No bashisms in postinst Closes: #32788 #26519 * init.d checks for /usr/doc/lprng as well Closes: #35283 * package now uses setuidregister Closes: #36765 * lpr now prints mime stuff (woo!) Closes: #26707 * init.d script has a path Closes: #19691 * LPR HOWTO moved to docs Closes: #30008 * No annoying postinst stop Closes: #21407 #32906 * Security fix for lpd.perms -- Craig Small Fri, 9 Jul 1999 13:01:51 +1000 lprng (3.5.3-0.1) unstable; urgency=low * New upstream version -- Robert Woodcock Fri, 19 Feb 1999 20:20:42 -0800 lprng (3.5.2-1.3) frozen unstable; urgency=low * Fix the fix of lpd.perms :( (Bug #32628). (This only changes 5 lines in the default configuration file; thanks to Eric for the patch) -- Vincent Renardias Sat, 30 Jan 1999 21:03:51 +0100 lprng (3.5.2-1.2) frozen unstable; urgency=low * NMU to fix my previous NMU :( * s/DEFAUT/DEFAULT/ in /etc/lpd.perms (Bug #32527). -- Vincent Renardias Thu, 28 Jan 1999 18:25:19 +0100 lprng (3.5.2-1.1) frozen unstable; urgency=low * NMU: Fix critical bug #23682 (changed lpd.perms). Fix critical bug #31889 (swaped 2 lines in postinst). -- Vincent Renardias Sun, 24 Jan 1999 05:18:42 +0100 lprng (3.5.2-1) unstable; urgency=low * new upstream version -- Sven Rudolph Sun, 9 Aug 1998 11:49:02 +0200 lprng (3.4.2-5) frozen unstable; urgency=low * debian/conffiles: added /etc/filter.{pcl,ps} -- Sven Rudolph Wed, 10 Jun 1998 14:29:04 +0200 lprng (3.4.2-4) frozen unstable; urgency=low * debian/control: added Conflicts: apsfilter (<<4.9.1-10) -- Sven Rudolph Wed, 13 May 1998 19:48:48 +0200 lprng (3.4.2-3) frozen unstable; urgency=low * debian/rules: move lpc to /usr/sbin/ (Fixes: 21202) -- Sven Rudolph Thu, 16 Apr 1998 17:04:07 +0200 lprng (3.4.2-2) frozen unstable; urgency=low * debian/rc: make messages policy-conforming (Fixes: #20489) -- Sven Rudolph Mon, 13 Apr 1998 16:18:37 +0200 lprng (3.4.2-1) unstable; urgency=low * new upstream version * debian/rules: remove monitor.1 manual page (Fixes: #8690) moved printcap,filter.* to debian/ install postrm (Fixes: #14727) * debian/rc: add restart and force-reload targets -- Sven Rudolph Tue, 3 Mar 1998 00:34:20 +0100 lprng (3.4.1-1) unstable; urgency=low * new upstream version (fixes #11015, #8690) * debian/rc: stop) add --oknodo (#12533, #10724) * debian/rules: install filter.* files again (#15180) * fixes #15960 (Cannot unpack source) * src/common/vars.c: set filter_ld_path empty (#15117, probably #9826) -- Sven Rudolph Mon, 5 Jan 1998 22:04:42 +0100 lprng (3.2.6-2) unstable; urgency=low * man/printcap.5: fixed an inconsistency (#11015) * linked against libc6 (#11459, and possibly #10581 and #10555) -- Sven Rudolph Mon, 4 Aug 1997 17:37:08 +0200 lprng (3.2.6-1) unstable; urgency=low * new upstream version -- Sven Rudolph Sun, 8 Jun 1997 22:57:30 +0200 lprng (3.2.5-1) unstable; urgency=low * new upstream version * debian/rc: adapted console messages to standard (#8505) added `reload' rule (#8609) * debian/rules: upstream log is called changelog (#9616) * src/common/default.c; lpd.conf: pr=/usr/bin/pr (#10029) -- Sven Rudolph Wed, 14 May 1997 22:35:02 +0200 lprng (3.2.1-1) unstable; urgency=low * new upstream version -- Sven Rudolph Tue, 25 Mar 1997 00:04:03 +0100 lprng (3.1.8-1) experimental; urgency=low * new upstream version -- Sven Rudolph Thu, 20 Feb 1997 12:51:11 +0100 lprng (3.1.7-2) experimental; urgency=low * install lpd, lpf etc in /usr/sbin -- Sven Rudolph Wed, 19 Feb 1997 15:18:09 +0100 lprng (3.1.7-1) experimental; urgency=low * new upstream version * src/LPR/lpr_cpyfiles.c: removed the patch for recognising Windows Postscript files as text * debian.rc: moved to debian/rc * src/common/default.c, lpd.conf: check_for_nonprintable no -- Sven Rudolph Wed, 19 Feb 1997 00:26:56 +0100 lprng (2.4.2-1) unstable; urgency=low * new upstream version * new upstream version * src/LPR/lpr_cpyfiles.c: recognize Windows-generated PostScript as text * src/common/termclear.c: corrects conflicting definitions of tgetstr -- Sven Rudolph Thu, 7 Nov 1996 22:35:24 +0100 lprng (2.3.12-3) unstable stable; urgency=high * moved to unstable and stable * replaces lpr which has security problems -- Sven Rudolph Mon, 7 Oct 1996 19:10:48 +0200 lprng (2.3.12-2) experimental; urgency=low * (debian/control): install conffiles * (debian/control): added Provides: lpr Suggests: magicfilter Conflicts: lpr Replaces: lpr -- Sven Rudolph Thu, 26 Sep 1996 17:34:18 +0200 lprng (2.3.12-1) experimental; urgency=low * added minimal printcap * run daemon as lp * install daemon and admin programs in /usr/sbin * Initial release. -- Sven Rudolph Tue, 17 Sep 1996 23:32:15 +0200 Local variables: mode: debian-changelog End: debian/prerm0000644000000000000000000000211011532526724010237 0ustar #!/bin/sh # prerm script for lprng # # see: dh_installdeb(1) set -e # summary of how this script can be called: # * `remove' # * `upgrade' # * `failed-upgrade' # * `remove' `in-favour' # * `deconfigure' `in-favour' # `removing' # # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package case "$1" in upgrade|remove) if [ -x "/etc/init.d/lprng" ]; then if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then invoke-rc.d lprng stop else /etc/init.d/lprng stop fi fi ;; deconfigure|failed-upgrade) ;; *) echo "prerm called with unknown argument \`$1'" >&2 exit 1 ;; esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# exit 0 debian/postrm0000644000000000000000000000227711532526724010454 0ustar #! /bin/sh # postrm script for LPRng # # see: dh_installdeb(1) set -e # summary of how this script can be called: # * `remove' # * `purge' # * `upgrade' # * `failed-upgrade' # * `abort-install' # * `abort-install' # * `abort-upgrade' # * `disappear' overwrit>r> # for details, see /usr/doc/packaging-manual/ case "$1" in purge) if [ -d /var/spool/lpd ]; then rm -rf /var/spool/lpd ; fi if [ -d /etc/lprng ]; then rm -rf /etc/lprng ; fi if [ -f /etc/default/lprng ]; then rm -f /etc/default/lprng ; fi ;; remove) ;; upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) # update the menu system # if [ -x /usr/bin/update-menus ]; then update-menus; fi ;; *) echo "postrm called with unknown argument \`$1'" >&2 exit 0 esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# exit 0 debian/postinst0000644000000000000000000000525711532526724011014 0ustar #! /bin/sh # postinst script for lprng # # see: dh_installdeb(1) set -e # Source the debconf library. . /usr/share/debconf/confmodule update_defaults() { db_get lprng/start_lpd if [ "$RET" = "true" ]; then START_LPD="yes" else START_LPD="no" fi cat > /etc/default/lprng <&2 "dsetperms: Requires four arguments" return 1 fi if ! dpkg-statoverride --list "$4" > /dev/null 2>&1 ; then chown "$1":"$2" "$4" || return 1 chmod "$3" "$4" || return 1 else return 0 fi } case "$1" in install|upgrade) ;; configure) # Create directories for pid file install -d -m 0775 -o root -g lp /var/run/lprng # Check result of tools being setuid db_get lprng/setuid_tools if [ "$RET" = "true" ]; then dsetperms root root 4755 /usr/bin/lpr dsetperms root root 4755 /usr/bin/lprm dsetperms root root 4755 /usr/bin/lpq else dsetperms root root 0755 /usr/bin/lpr dsetperms root root 0755 /usr/bin/lprm dsetperms root root 0755 /usr/bin/lpq fi # Only make the symlink if nothing is there already Bug: #147641 # Check for both a real file and a dangling symlink #544986 if [ ! -e /etc/lprng/printcap ] && [ ! -L /etc/lprng/printcap ] ; then (cd /etc/lprng ; ln -s ../printcap . ) fi # Remove sample files form /etc/lprng shouldnever been there [ -e /etc/lprng/lpd.perms.sample ] && rm /etc/lprng/lpd.perms.sample [ -e /etc/lprng/lpd.conf.sample ] && rm /etc/lprng/lpd.conf.sample update_defaults ;; abort-upgrade) ;; *) echo "postinst called with unknown argument \`$1'" >&2 exit 0 ;; esac # Those using dependency based boot sequencing with sysv-rc and installing # lprng before version 3.8.A-2.2 would miss the runlevel 4 symlink. # Recover from this. if [ "$1" = "configure" ] && dpkg --compare-versions "$2" le "3.8.A-2.2" \ && [ -f /etc/rc2.d/[SK][0-9][0-9]lprng ] && [ -f /etc/rc4.d/K[0-9][0-9]lprng ] then update-rc.d -f lprng remove fi # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# # Urgh, LPPng's lpd seems to be not closing all the file descriptors # which makes debconf hang, tell debconf to go away db_stop # vim:et:sw=4:ts=4: debian/docs0000644000000000000000000000005011532526724010043 0ustar CONTRIBUTORS README README.SSL.SECURITY debian/watch0000644000000000000000000000015311532526724010225 0ustar # watch file for LPRng # version=2 ftp://ftp.lprng.com/pub/LPRng/LPRng/LPRng-(.*)\.tgz \ debian uupdate debian/printcap0000644000000000000000000000110011532526724010730 0ustar # /etc/printcap: printer capability database. See printcap(5). # You can use the filter entries df, tf, cf, gf etc. for # your own filters. See the printcap(5) manual page for further # details. lp|Generic dot-matrix printer entry :lp=/dev/lp1 :sd=/var/spool/lpd/lp :af=/var/log/lp-acct :lf=/var/log/lp-errs :pl#66 :pw#80 :pc#150 :mx#0 :sh # rlp|Remote printer entry # :lp= # :rm=remotehost # :rp=remoteprinter # :sd=/var/spool/lpd/remote # :mx#0 # :sh debian/lprng.if-up.in0000644000000000000000000000133011765321304011656 0ustar #!/bin/sh # Configuration directory CONFIGDIR=/etc/lprng # Bail if the interface is the loopback [ "$IFACE" != "lo" ] || exit 0 # Bail if not using resolvconf [ -x /sbin/resolvconf ] && exit 0 # Bail if the daemon doesn't exist or doc dir is gone [ -x /usr/sbin/lpd ] || [ -d /usr/lib/${DEB_HOST_MULTIARCH}/lprng ] || exit 0 # Work out the pid file LPD_PORT=$(grep "^[[:space:]]*lpd_port" $CONFIGDIR/lpd.conf | cut -d "=" -f 2) if [ -z $LPD_PORT ] then LPD_PORT=515 fi LOCKFILE=$(grep "^[[:space:]]*lockfile" $CONFIGDIR/lpd.conf | cut -d "=" -f 2) if [ -z $LOCKFILE ] then LOCKFILE=/var/run/lprng/lpd fi PIDFILE=$LOCKFILE.$LPD_PORT # Bail if not pidfile [ -f $PIDFILE ] || exit 0 /usr/sbin/invoke-rc.d lprng restart debian/copyright0000644000000000000000000001041411532540356011125 0ustar Format: http://dep.debian.net/deps/dep5/ Upstream-Name: LPRng Source: http://lprng.sourceforge.net/ License: GPL-2+ with OpenSSL exception Files: * Copyright: 1986-2001 Patrick Powell License: GPL-2+ with OpenSSL exception or Artistic Files: debian/* Copyright: Craig Small License: GPL-2+ with OpenSSL exception Files: src/common/md5.c Copyright: 1993 Colin Plumb 2007 Bernhard R. Link License: public-domain Not copyright is claimed. This code is in the public domain; do with it what you wish. Files: src/common/merge.c Copyright: 1998-2003 Patrick Powell 1992,1993 Regents of the University of California License: GPL-2+ with OpenSSL exception or Artistic, and BSD Files: src/common/proctitle.c Copyright: 1998-2003 Patick Powell 1983,1995-200 Eric P. Allman 1988, 1993 Regents of Univrsity of California License: GPL-2+ with OpenSSL exception or Artistic, and BSD License: GPL-2+ with OpenSSL exception This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. . In addition, as a special exception, the author of this program gives permission to link the code of its release with the OpenSSL project's "OpenSSL" library (or with modified versions of it that use the same license as the "OpenSSL" library), and distribute the linked executables. You must obey the GNU General Public License in all respects for all of the code used other than "OpenSSL". If you modify this file, you may extend this exception to your version of the file, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. . You should have received a copy of the GNU General Public License along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA . On Debian systems, the full text of the GNU General Public License version 2 can be found in the file `/usr/share/common-licenses/GPL-2'. License: Artistic This program is free software; you can redistribute it and/or modify it under the terms of the "Artistic License" which comes with Debian. . THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. . On Debian systems, the complete text of the Artistic License can be found in "/usr/share/common-licenses/Artistic". License: BSD Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the University nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. debian/mime0000644000000000000000000000004511532526724010046 0ustar */*; false; print=lpr %s; priority=0 debian/source/0000755000000000000000000000000011765314235010475 5ustar debian/source/format0000644000000000000000000000001411532527206011677 0ustar 3.0 (quilt)