pconsole (1.0-8) debian-dir only changes

Summary

 debian/README.Debian                   |   19 +++++
 debian/README.source                   |   58 +++++++++++++++
 debian/changelog                       |  123 +++++++++++++++++++++++++++++++++
 debian/compat                          |    1 
 debian/config                          |   15 ++++
 debian/control                         |   22 +++++
 debian/copyright                       |   19 +++++
 debian/dirs                            |    1 
 debian/docs                            |    2 
 debian/menu                            |    2 
 debian/patches/adapt-install-path.diff |   28 +++++++
 debian/patches/fix-bashism-530158.diff |   15 ++++
 debian/patches/fix-typo-ctlr.diff      |   24 ++++++
 debian/patches/series                  |    3 
 debian/pconsole.1                      |   50 +++++++++++++
 debian/po/POTFILES.in                  |    1 
 debian/po/cs.po                        |   69 ++++++++++++++++++
 debian/po/de.po                        |   63 ++++++++++++++++
 debian/po/es.po                        |   89 +++++++++++++++++++++++
 debian/po/eu.po                        |   63 ++++++++++++++++
 debian/po/fi.po                        |   57 +++++++++++++++
 debian/po/fr.po                        |   71 +++++++++++++++++++
 debian/po/gl.po                        |   59 +++++++++++++++
 debian/po/it.po                        |   61 ++++++++++++++++
 debian/po/ja.po                        |   60 ++++++++++++++++
 debian/po/nl.po                        |   62 ++++++++++++++++
 debian/po/pt.po                        |   62 ++++++++++++++++
 debian/po/pt_BR.po                     |   63 ++++++++++++++++
 debian/po/ru.po                        |   64 +++++++++++++++++
 debian/po/sv.po                        |   70 ++++++++++++++++++
 debian/po/templates.pot                |   54 ++++++++++++++
 debian/po/vi.po                        |   64 +++++++++++++++++
 debian/postinst                        |   32 ++++++++
 debian/postrm                          |   28 +++++++
 debian/rules                           |  111 +++++++++++++++++++++++++++++
 debian/source/format                   |    1 
 debian/templates                       |   15 ++++
 debian/watch                           |    2 
 38 files changed, 1603 insertions(+)

    
download this patch

Patch contents

--- pconsole-1.0.orig/debian/postrm
+++ pconsole-1.0/debian/postrm
@@ -0,0 +1,28 @@
+#!/bin/sh -e
+
+set -e
+
+# Use debconf.
+if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then
+	. /usr/share/debconf/confmodule
+fi
+
+case "$1" in
+       purge)
+        if [ -e /usr/share/debconf/confmodule ]; then
+                db_purge
+        fi
+        ;;
+
+       remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
+        ;;
+
+    *)
+        echo "postrm called with unknown argument \`$1'" >&2
+        exit 1
+
+esac
+
+#DEBHELPER#
+
+exit 0
--- pconsole-1.0.orig/debian/README.source
+++ pconsole-1.0/debian/README.source
@@ -0,0 +1,58 @@
+This package uses quilt to manage all modifications to the upstream
+source.  Changes are stored in the source package as diffs in
+debian/patches and applied during the build.
+
+To configure quilt to use debian/patches instead of patches, you want
+either to export QUILT_PATCHES=debian/patches in your environment
+or use this snippet in your ~/.quiltrc:
+
+    for where in ./ ../ ../../ ../../../ ../../../../ ../../../../../; do
+        if [ -e ${where}debian/rules -a -d ${where}debian/patches ]; then
+                export QUILT_PATCHES=debian/patches
+                break
+        fi
+    done
+
+To get the fully patched source after unpacking the source package, cd to
+the root level of the source package and run:
+
+    quilt push -a
+
+The last patch listed in debian/patches/series will become the current
+patch.
+
+To add a new set of changes, first run quilt push -a, and then run:
+
+    quilt new <patch>
+
+where <patch> is a descriptive name for the patch, used as the filename in
+debian/patches.  Then, for every file that will be modified by this patch,
+run:
+
+    quilt add <file>
+
+before editing those files.  You must tell quilt with quilt add what files
+will be part of the patch before making changes or quilt will not work
+properly.  After editing the files, run:
+
+    quilt refresh
+
+to save the results as a patch.
+
+Alternately, if you already have an external patch and you just want to
+add it to the build system, run quilt push -a and then:
+
+    quilt import -P <patch> /path/to/patch
+    quilt push -a
+
+(add -p 0 to quilt import if needed). <patch> as above is the filename to
+use in debian/patches.  The last quilt push -a will apply the patch to
+make sure it works properly.
+
+To remove an existing patch from the list of patches that will be applied,
+run:
+
+    quilt delete <patch>
+
+You may need to run quilt pop -a to unapply patches first before running
+this command.
--- pconsole-1.0.orig/debian/config
+++ pconsole-1.0/debian/config
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+set -e
+
+# Source debconf library.
+. /usr/share/debconf/confmodule
+
+db_version 2.0
+
+db_input medium pconsole/setuid || true
+
+db_go
+
+exit 0
+
--- pconsole-1.0.orig/debian/compat
+++ pconsole-1.0/debian/compat
@@ -0,0 +1 @@
+7
--- pconsole-1.0.orig/debian/watch
+++ pconsole-1.0/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://www.heiho.net/pconsole/ pconsole-(\d+.*).tar.gz
--- pconsole-1.0.orig/debian/changelog
+++ pconsole-1.0/debian/changelog
@@ -0,0 +1,123 @@
+pconsole (1.0-8) unstable; urgency=low
+
+  * New maintainer (Closes: #575514)
+  * Bumped standards version to 3.8.4
+    - Added Homepage field
+  * Clarified debian/copyright (added correct GPL version numbers)
+  * Added watch file (fixes lintian warning debian-watch-file-is-missing)
+  * Added debian/source/format
+  * Moved to quilt patch management
+    - Added necessary build dependencies
+    - Added README.source from /usr/share/doc/quilt/
+    - Imported Makefile and configure patches from 1.0-7.3 diff.gz
+  * Replaced config.sub and config.guess from 1.0-7.3 diff.gz by copying
+    it from /usr/share/misc/ while building
+    - Changed conditional copying of config.{guess,sub} in clean target to
+      unconditional copying in configure target.
+    - Build-Depend on autotools-dev
+  * Fixed bashism in example script (Closes: #530158)
+  * Added Vcs-* headers
+  * Added a hint to /usr/share/doc/pconsole/README.gz to the SEE ALSO
+    section of the man page pconsole(1) (Closes: #518210)
+  * Fix typo Ctlr -> Ctrl in main program
+
+ -- Axel Beckert <abe@debian.org>  Fri, 02 Apr 2010 00:42:40 +0200
+
+pconsole (1.0-7.3) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Add ${misc:Depends} to binary package dependencies to
+    properly cope with dependencies triggerred by debhelper
+  * Use "set -e" in config script
+  * Bump debhelper compatibility to 7. As a result, replace
+    "dh_clean -k" calls by dh_prep
+  * Fix pending l10n issues. Debconf translations:
+    - Japanese (Hideki Yamane (Debian-JP)).  Closes: #512983
+    - Spanish (# traductor (campo Last-Translator) y ponga en copia a la
+      lista de Fernando González de Requena).  Closes: #514888
+    - Italian (Luca Monducci).  Closes: #550531
+
+ -- Christian Perrier <bubulle@debian.org>  Tue, 20 Oct 2009 21:47:48 +0200
+
+pconsole (1.0-7.2) unstable; urgency=low
+
+  * Non-maintainer upload to fix pending l10n bugs.
+  * Typo correction in debconf templates. Translations unfuzzied.
+    Closes: #456211
+  * Debconf translations:
+    - Dutch. Closes: #418392
+    - Brazilian Portuguese. Closes: #471724
+    - Galician. Closes: #480037
+    - Basque. Closes: #480123
+    - Russian. Closes: #480260
+    - Finnish. Closes: #480264
+  * [Lintian] Fix menu entry to use "Applications/Shells"
+  * [Lintian] Add copyright information to debian/copyright
+  * [Lintian] Do not include an empty usr/sbin directory
+
+ -- Christian Perrier <bubulle@debian.org>  Tue, 06 May 2008 19:28:16 +0200
+
+pconsole (1.0-7.1) unstable; urgency=low
+
+  * Non-maintainer upload to fix pending l10n bugs.
+  * Debconf translations:
+    - Portuguese. Closes: #396604, #396605
+    - German. Closes: #409680
+
+ -- Christian Perrier <bubulle@debian.org>  Tue, 13 Feb 2007 22:54:30 +0100
+
+pconsole (1.0-7) unstable; urgency=low
+
+  * Added conditional to postrm to avoid calling debconf when it is not
+    installed. Thanks to B. Allombert (Closes: #388676).
+  * Standards updated to 3.7.2. No changes needed.
+  * Added binary-indep target as per lintian.
+  * Redone the binary-indep part under debian/rules to actually work
+    (Closes: #395752)
+
+  [Translations update]
+  * vi.po (Closes: #316702)
+  * cs.po (Closes: #319375)
+  * sv.po (Closes: #334427)
+
+ -- Jesus Climent <jesus.climent@hispalinux.es>  Tue, 31 Oct 2006 23:23:56 +0200
+
+pconsole (1.0-6) unstable; urgency=low
+
+  * Added debconf-2.0 dependency.
+
+ -- Jesus Climent <jesus.climent@hispalinux.es>  Fri,  5 Aug 2005 12:30:30 +0000
+
+pconsole (1.0-5) unstable; urgency=low
+
+  * Deleted some useless dependencies. Thanks to Santiago Vila 
+    (Closes: #288802)
+
+ -- Jesus Climent <jesus.climent@hispalinux.es>  Sat, 22 Jan 2005 12:23:55 +0000
+
+pconsole (1.0-4) unstable; urgency=low
+
+  * Duh! Changing the rules file from scratch introduces new bugs. FTBFS
+    hopefully solved (Closes: #236969).
+
+ -- Jesus Climent <jesus.climent@hispalinux.es>  Tue,  9 Mar 2004 05:26:16 +0000
+
+pconsole (1.0-3) unstable; urgency=low
+
+  * Fixed man page (Closes: #216494).
+  * Updated French translation (Closes: #213809).
+
+ -- Jesus Climent <jesus.climent@hispalinux.es>  Tue,  2 Mar 2004 19:27:02 +0000
+
+pconsole (1.0-2) unstable; urgency=low
+
+  * Fixed typo (Closes: #212014)
+  * Debconf gettextized (Closes: #213808)
+
+ -- Jesus Climent <jesus.climent@hispalinux.es>  Tue, 14 Oct 2003 14:35:33 +0300
+
+pconsole (1.0-1) unstable; urgency=low
+
+  * Initial release (Closes: #204555)
+
+ -- Jesus Climent <jesus.climent@hispalinux.es>  Sun, 29 Sep 2002 21:48:07 +0300
--- pconsole-1.0.orig/debian/postinst
+++ pconsole-1.0/debian/postinst
@@ -0,0 +1,32 @@
+#!/bin/sh -e
+
+# Use debconf.
+. /usr/share/debconf/confmodule
+
+# nothing to do in here if we aren't called with configure
+if [ "$1" != configure ]; then
+        exit 0
+fi
+
+[ -e /usr/share/debconf/confmodule ] && {
+        db_get pconsole/setuid
+        setuid="$RET"
+}
+
+if [ ! -x /usr/sbin/dpkg-statoverride ] || \
+     ! dpkg-statoverride --list /usr/bin/pconsole >/dev/null ; then
+        if [ "$setuid" = "true" ] ; then
+                chmod 4755 /usr/bin/pconsole
+        elif [ "$setuid" = "false" ] ; then
+                chmod 0755 /usr/bin/pconsole
+        fi
+fi
+
+db_go || true
+db_stop
+
+#DEBHELPER#
+
+exit 0
+
+
--- pconsole-1.0.orig/debian/copyright
+++ pconsole-1.0/debian/copyright
@@ -0,0 +1,19 @@
+This package was debianized by Jesus Climent jesus.climent@hispalinux.es on
+Sun, 29 Sep 2002 21:48:07 +0300.
+
+It was downloaded from http://www.heiho.net/pconsole/index.html
+
+Upstream Author: Walter de Jong <walter@heiho.net>
+
+Copyright © 2001 Walter de Jong <walter@heiho.net>
+
+License:
+
+    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.
+
+The GNU General Public License version 2 can be found in
+/usr/share/common-licenses/GPL-2
+
--- pconsole-1.0.orig/debian/menu
+++ pconsole-1.0/debian/menu
@@ -0,0 +1,2 @@
+?package(pconsole):needs="X11" section="Applications/Shells" \
+  title="Cluster Shell (pconsole)" command="/usr/bin/pconsole"
--- pconsole-1.0.orig/debian/templates
+++ pconsole-1.0/debian/templates
@@ -0,0 +1,15 @@
+Template: pconsole/setuid
+Type: boolean
+Default: false
+_Description: Do you want /usr/bin/pconsole to be installed SUID root?
+ You are strongly encouraged to leave pconsole without the SUID bit on.
+ .
+ If you are using a multiuser system, setting the SUID bit on pconsole will
+ be a major risk for a breach, since normal users will be able to attach
+ their consoles to a root PTY/TTY and send commands as root.
+ .
+ However, on a single-user system, setting the SUID bit might be a good
+ idea to avoid logging as root user.
+ .
+ If in doubt, you should install it without SUID. If it causes problems
+ you can change your mind later by running: dpkg-reconfigure pconsole
--- pconsole-1.0.orig/debian/pconsole.1
+++ pconsole-1.0/debian/pconsole.1
@@ -0,0 +1,50 @@
+.TH PCONSOLE 1
+.SH NAME
+pconsole \- parallel console shell for administering clusters.
+.SH SYNOPSIS
+.B pconsole
+.SH DESCRIPTION
+.B pconsole
+allows you to connect to each node of your cluster simultaneously,
+and you can type your administrative commands in a specialized window that
+\'multiplies\' the input to each of the connections you have opened.
+.BR pconsole
+is best run from within X Windows, although it is possible to
+employ it without X (in console mode) as well.
+.PP
+You need to install
+.BR pconsole
+on only 1 machine in the cluster, this would
+usually be your central administrative node.
+.SH OPTIONS
+.BR pconsole
+need to be executed with superuser permissions, and enters in interactive mode
+let you attach other devices so that all the commands sent to the console mode
+of
+.BR pconsole
+are sent to the devices. This allows you to parallelize the execution of the
+same command in various machines at a time.
+.PP
+.BR pconsole
+has two working modes:
+.TP
+.B command mode
+From this mode
+.BR pconsole
+can attach and dettach devices, list the attached devices at a time, connect
+to sending mode where you can send commands to the attached devices, and quit.
+To enter in command mode, use
+.BR CTRL\-A
+from sending mode.
+.TP
+.B sending mode
+The mode where the commands sent to it are sent to the devices attached.
+To enter this mode use
+.BR CTRL\-D
+or use the console command.
+.SH SEE ALSO
+.BR /usr/share/doc/pconsole/README.gz
+.BR xterm(1)
+.SH AUTHOR
+This manual page was written by Jesus Climent <jesus.climent@hispalinux.es>,
+for the Debian GNU/Linux system (but may be used by others).
--- pconsole-1.0.orig/debian/docs
+++ pconsole-1.0/debian/docs
@@ -0,0 +1,2 @@
+README
+README.pconsole
--- pconsole-1.0.orig/debian/control
+++ pconsole-1.0/debian/control
@@ -0,0 +1,22 @@
+Source: pconsole
+Section: utils
+Priority: optional
+Maintainer: Axel Beckert <abe@debian.org>
+Standards-Version: 3.8.4
+Build-Depends: debhelper (>= 7), po-debconf, quilt, autotools-dev
+Homepage: http://www.heiho.net/pconsole/
+Vcs-Git: git://git.noone.org/pconsole-debian.git
+Vcs-Browser: http://git.noone.org/?p=pconsole-debian.git
+
+Package: pconsole
+Architecture: any
+Depends: ${misc:Depends}, ${shlibs:Depends}, debconf | debconf-2.0
+Description: parallel console shell for administering clusters
+ pconsole allows you to connect to each node of your cluster simultaneously,
+ and you can type your administrative commands in a specialized window that
+ 'multiplies' the input to each of the connections you have opened.
+ pconsole is best run from within X Windows, although it is possible to
+ employ it without X (in console mode) as well.
+ You need to install pconsole on only 1 machine in the cluster, this would
+ usually be your central administrative node.
+ 
--- pconsole-1.0.orig/debian/README.Debian
+++ pconsole-1.0/debian/README.Debian
@@ -0,0 +1,19 @@
+pconsole for Debian
+----------------------
+
+pconsole is the perfect companion for administering clusters, or for making
+modifications/upgrades in several (similar) systems at the same time.
+
+Several graphical terminals (xterm, for example) can be opened and attached
+to pconsole, using the interactive interface provided, and send the same 
+command at once to all the terminals.
+
+The interactive interface provides options for attaching/detaching the terms,
+hiding passwords, ... By selecting a terminal (that is, unfocusing the 
+pconsole terminal) one can send specific commands to specific terminals, to
+resolve conflicts, por example.
+
+pconsole.sh is provided as an example for launching and attaching several 
+terminal emulators under pconsole. Mind you, is a bash script.
+
+Jesus Climent <jesus.climent@hispalinux.es>, Sun, 29 Sep 2002 21:48:07 +0300
--- pconsole-1.0.orig/debian/dirs
+++ pconsole-1.0/debian/dirs
@@ -0,0 +1 @@
+usr/bin
--- pconsole-1.0.orig/debian/rules
+++ pconsole-1.0/debian/rules
@@ -0,0 +1,111 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# GNU copyright 1997 to 1999 by Joey Hess.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+package=pconsole
+
+# These are used for cross-compiling and for saving the configure script
+# from having to guess our platform (since we know it already)
+DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
+DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
+
+
+CFLAGS = -Wall -g
+
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+	CFLAGS += -O0
+else
+	CFLAGS += -O2
+endif
+ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
+	INSTALL_PROGRAM += -s
+endif
+
+include /usr/share/quilt/quilt.make
+
+configure: $(QUILT_STAMPFN)
+	cp -p /usr/share/misc/config.guess /usr/share/misc/config.sub .
+
+config.status: configure
+	dh_testdir
+	# Add here commands to configure the package.
+	CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr 
+
+
+build: build-indep build-stamp
+
+build-stamp:  config.status
+	dh_testdir
+
+	# Add here commands to compile the package.
+	$(MAKE)
+	#/usr/bin/docbook-to-man debian/pconsole.sgml > pconsole.1
+
+	touch build-stamp
+
+clean: unpatch
+	dh_testdir
+	dh_testroot
+	rm -f build build-stamp build-indep-stamp
+	rm -f `find . -name "*~"`
+	rm -rf debian/pconsole debian/files* core debian/substvars
+	rm -f config.log config.status config.cache config.guess config.sub
+
+	# Add here commands to clean up after the build process.
+	-$(MAKE) mrproper
+
+	dh_clean 
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_prep
+	dh_installdirs
+
+	# Add here commands to install the package into debian/pconsole.
+	$(MAKE) install prefix=$(CURDIR)/debian/pconsole/usr
+	install -d $(CURDIR)/debian/pconsole/usr/share/doc/$(package)/examples/
+	mv $(CURDIR)/debian/pconsole/usr/bin/pconsole.sh $(CURDIR)/debian/pconsole/usr/bin/ssh.sh $(CURDIR)/debian/pconsole/usr/share/doc/$(package)/examples/
+
+# Build architecture-independent files here.
+
+debian/po/templates.pot: debian/templates
+	debconf-updatepo
+	
+build-indep: build-indep-stamp
+build-indep-stamp: debian/po/templates.pot
+	touch build-indep-stamp
+
+binary-indep: binary-indep-stamp
+binary-indep-stamp: build-indep 
+	touch binary-indep-stamp
+
+# Build architecture-dependent files here.
+binary-arch: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs ChangeLog README.pconsole
+	dh_installdocs
+	dh_installexamples
+#	dh_install
+	dh_installmenu
+	dh_installdebconf	
+#	dh_installlogrotate
+	dh_installman debian/pconsole.1
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_makeshlibs
+	dh_installdeb
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install 
--- pconsole-1.0.orig/debian/patches/adapt-install-path.diff
+++ pconsole-1.0/debian/patches/adapt-install-path.diff
@@ -0,0 +1,28 @@
+Use /usr as prefix path.
+
+Index: pconsole-1.0/Makefile
+===================================================================
+--- pconsole-1.0.orig/Makefile	2010-04-02 01:32:35.000000000 +0200
++++ pconsole-1.0/Makefile	2010-04-02 01:32:42.000000000 +0200
+@@ -20,7 +20,7 @@
+ #	pconsole Makefile.in	WJ101
+ #
+ 
+-prefix = .
++prefix = /usr
+ exec_prefix = ${prefix}
+ bindir = ${exec_prefix}/bin
+ 
+Index: pconsole-1.0/configure
+===================================================================
+--- pconsole-1.0.orig/configure	2010-04-02 01:32:35.000000000 +0200
++++ pconsole-1.0/configure	2010-04-02 01:32:42.000000000 +0200
+@@ -9,7 +9,7 @@
+ 
+ # Defaults:
+ ac_help=
+-ac_default_prefix=/usr/local
++ac_default_prefix=/usr
+ # Any additions from configure.in:
+ 
+ # Initialize some variables set by options.
--- pconsole-1.0.orig/debian/patches/series
+++ pconsole-1.0/debian/patches/series
@@ -0,0 +1,3 @@
+adapt-install-path.diff
+fix-bashism-530158.diff
+fix-typo-ctlr.diff
--- pconsole-1.0.orig/debian/patches/fix-typo-ctlr.diff
+++ pconsole-1.0/debian/patches/fix-typo-ctlr.diff
@@ -0,0 +1,24 @@
+Fixes typo Ctlr -> Ctrl.
+
+Index: pconsole-1.0/pconsole.c
+===================================================================
+--- pconsole-1.0.orig/pconsole.c	2010-04-02 02:33:01.000000000 +0200
++++ pconsole-1.0/pconsole.c	2010-04-02 02:37:05.000000000 +0200
+@@ -77,7 +77,7 @@
+ 	flags &= ~FLAGS_CMD_MODE;
+ 
+ 	printf("\n"
+-		"Press <Ctlr-A> for command mode\n"
++		"Press <Ctrl-A> for command mode\n"
+ 		"> ");
+ 	fflush(stdout);
+ 	terminal_mode(TERMINAL_RAW);
+@@ -92,7 +92,7 @@
+ 		command_mode();										/* start in command mode */
+ 	else {
+ 		printf("\n"
+-			"Press <Ctlr-A> for command mode\n"
++			"Press <Ctrl-A> for command mode\n"
+ 			"> ");
+ 		fflush(stdout);
+ 		terminal_mode(TERMINAL_RAW);
--- pconsole-1.0.orig/debian/patches/fix-bashism-530158.diff
+++ pconsole-1.0/debian/patches/fix-bashism-530158.diff
@@ -0,0 +1,15 @@
+Fix bashism in pconsole.sh example script (Closes: #530158)
+
+Index: pconsole-1.0/pconsole.sh.in
+===================================================================
+--- pconsole-1.0.orig/pconsole.sh.in	2001-04-09 10:59:48.000000000 +0200
++++ pconsole-1.0/pconsole.sh.in	2010-04-02 02:10:57.000000000 +0200
+@@ -66,7 +66,7 @@
+ #	What it does is get the tty that has the parent pid equal to the pid of
+ #	the xterm we launched
+ #
+-function get_tty {
++get_tty() {
+ 	if [ ! -z "${DEBUG}" ]
+ 	then
+ 		set -x
--- pconsole-1.0.orig/debian/source/format
+++ pconsole-1.0/debian/source/format
@@ -0,0 +1 @@
+1.0
--- pconsole-1.0.orig/debian/po/ru.po
+++ pconsole-1.0/debian/po/ru.po
@@ -0,0 +1,64 @@
+# 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 <kozlov.y@gmail.com>, 2008.
+msgid ""
+msgstr ""
+"Project-Id-Version: pconsole new\n"
+"Report-Msgid-Bugs-To: pconsole@packages.debian.org\n"
+"POT-Creation-Date: 2008-05-06 19:30+0200\n"
+"PO-Revision-Date: 2008-05-09 10:35+0400\n"
+"Last-Translator: Yuri Kozlov <kozlov.y@gmail.com>\n"
+"Language-Team: Russian <debian-l10n-russian@lists.debian.org>\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: boolean
+#. Description
+#: ../templates:1001
+msgid "Do you want /usr/bin/pconsole to be installed SUID root?"
+msgstr "Установить на /usr/bin/pconsole SUID-бит?"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid "You are strongly encouraged to leave pconsole without the SUID bit on."
+msgstr "Настоятельно не рекомендуется устанавливать на pconsole SUID-бит."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"If you are using a multiuser system, setting the SUID bit on pconsole will "
+"be a major risk for a breach, since normal users will be able to attach "
+"their consoles to a root PTY/TTY and send commands as root."
+msgstr ""
+"Если у вас многопользовательская система, установка SUID-бита на pconsole "
+"приведёт к появление проблем с безопасностью, так как обычные пользователи "
+"смогут подключать свои консоли к суперпользовательской PTY/TTY и отправлять "
+"команды от имени суперпользователя."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"However, on a single-user system, setting the SUID bit might be a good idea "
+"to avoid logging as root user."
+msgstr ""
+"Однако, на однопользовательской системе установка SUID-бита упростит работу, "
+"так как не нужно будет регистрироваться с правами суперпользователя."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"If in doubt, you should install it without SUID. If it causes problems you "
+"can change your mind later by running: dpkg-reconfigure pconsole"
+msgstr ""
+"Если не знаете что делать, не устанавливайте SUID-бит. В случае проблем, вы "
+"можете изменить настройку с помощью команды dpkg-reconfigure pconsole"
--- pconsole-1.0.orig/debian/po/sv.po
+++ pconsole-1.0/debian/po/sv.po
@@ -0,0 +1,70 @@
+# 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.
+# , fuzzy
+#
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: pconsole 1.0-6\n"
+"Report-Msgid-Bugs-To: pconsole@packages.debian.org\n"
+"POT-Creation-Date: 2008-05-06 19:30+0200\n"
+"PO-Revision-Date: 2005-10-17 22:26+0100\n"
+"Last-Translator: Daniel Nylander <po@danielnylander.se>\n"
+"Language-Team: Swedish <sv@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=iso-8859-1\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Language: swe\n"
+"X-Poedit-Country: swed\n"
+"X-Poedit-SourceCharset: iso-8859-1\n"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid "Do you want /usr/bin/pconsole to be installed SUID root?"
+msgstr "Vill du att /usr/bin/pconsole ska installeras SUID root?"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid "You are strongly encouraged to leave pconsole without the SUID bit on."
+msgstr "Det rekommenderas starkt att du lämnar pconsole utan SUID-biten satt."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"If you are using a multiuser system, setting the SUID bit on pconsole will "
+"be a major risk for a breach, since normal users will be able to attach "
+"their consoles to a root PTY/TTY and send commands as root."
+msgstr ""
+"Om du använder ett multi-användarsystem kan pconsole utgöra en säkerhetsrisk "
+"om pconsole har installerats med SUID-biten satt eftersom användare kan "
+"koppla upp sin konsoller till en root PTY/TTY och skicka kommandon som root."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"However, on a single-user system, setting the SUID bit might be a good idea "
+"to avoid logging as root user."
+msgstr ""
+"Men på ett enanvändarsystem kan SUID-bit vara en bra ide att sätta för att "
+"förhindra loggning som root-användaren."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"If in doubt, you should install it without SUID. If it causes problems you "
+"can change your mind later by running: dpkg-reconfigure pconsole"
+msgstr ""
+"Om du är osäker bör du installera den utan SUID. Om det skapar problem och "
+"du ändrar dig senare kan du köra: 'dpkg-reconfigure pconsole'"
--- pconsole-1.0.orig/debian/po/cs.po
+++ pconsole-1.0/debian/po/cs.po
@@ -0,0 +1,69 @@
+#
+#    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: pconsole\n"
+"Report-Msgid-Bugs-To: pconsole@packages.debian.org\n"
+"POT-Creation-Date: 2008-05-06 19:30+0200\n"
+"PO-Revision-Date: 2005-07-21 17:21+0200\n"
+"Last-Translator: Katarina Machalkova <bubli@bubli.org>\n"
+"Language-Team: Czech <debian-l10n-czech@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=ISO-8859-2\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid "Do you want /usr/bin/pconsole to be installed SUID root?"
+msgstr "Chcete nainstalovat /usr/bin/pconsole s nastaveným SUID bitem?"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid "You are strongly encouraged to leave pconsole without the SUID bit on."
+msgstr "Opravdu doporuèujeme nechat pconsole bez nastaveného SUID bitu."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"If you are using a multiuser system, setting the SUID bit on pconsole will "
+"be a major risk for a breach, since normal users will be able to attach "
+"their consoles to a root PTY/TTY and send commands as root."
+msgstr ""
+"Pokud máte víceu¾ivatelský systém, nastavení SUID bitu na pconsole bude "
+"záva¾né bezpeènostní riziko, proto¾e bì¾ný u¾ivatel si bude moci pøipojit "
+"svoji konzoli k rootovskému PTY/TTY a vykonávat pøíkazy jako root."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"However, on a single-user system, setting the SUID bit might be a good idea "
+"to avoid logging as root user."
+msgstr ""
+"V jednou¾ivatelském systému ale mù¾e být nastavení SUID bitu u¾iteèné, "
+"abyste se nemuseli pøihla¹ovat jako root."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"If in doubt, you should install it without SUID. If it causes problems you "
+"can change your mind later by running: dpkg-reconfigure pconsole"
+msgstr ""
+"Nejste-li si jisti, mìli byste instalovat bez nastaveného SUID bitu. Pokud "
+"to bude zpùsobovat problémy, mù¾ete to pozdìji zmìnit spu¹tìním: dpkg-"
+"reconfigure pconsole."
--- pconsole-1.0.orig/debian/po/pt_BR.po
+++ pconsole-1.0/debian/po/pt_BR.po
@@ -0,0 +1,63 @@
+# pconsole Brazilian Portuguese translation 
+# Copyright (C) 2008 THE pconsole's COPYRIGHT HOLDER
+# This file is distributed under the same license as the pconsole package.
+# Marcelo Jorge Vieira (metal) <metal@alucinados.com>, 2008.
+# 
+msgid ""
+msgstr ""
+"Project-Id-Version: pconsole 1.0-7.1\n"
+"Report-Msgid-Bugs-To: pconsole@packages.debian.org\n"
+"POT-Creation-Date: 2008-05-06 19:30+0200\n"
+"PO-Revision-Date: 2008-03-04 14:30+0300\n"
+"Last-Translator: Marcelo Jorge Vieira (metal) <metal@alucinados.com>\n"
+"Language-Team: l10n portuguese <debian-l10n-portuguese@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid "Do you want /usr/bin/pconsole to be installed SUID root?"
+msgstr "Você deseja instalar o /usr/bin/pconsole com SUID root?"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid "You are strongly encouraged to leave pconsole without the SUID bit on."
+msgstr ""
+"Você é fortemente encorajado a deixar o pconsole sem o bit SUID ativado."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"If you are using a multiuser system, setting the SUID bit on pconsole will "
+"be a major risk for a breach, since normal users will be able to attach "
+"their consoles to a root PTY/TTY and send commands as root."
+msgstr ""
+"Se você está usando um sistema multi-usuário, setar o bit SUID no pconsole "
+"será um risco principal para uma brecha, já que os usuários normais serão "
+"capazes de anexar seus consoles a um console root PTY/TTY e enviar comandos "
+"como root."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"However, on a single-user system, setting the SUID bit might be a good idea "
+"to avoid logging as root user."
+msgstr ""
+"No entanto, em um sistema com um único usuário, setar o bit SUID pode ser "
+"uma boa idéia para evitar o 'logging' como usuário root."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"If in doubt, you should install it without SUID. If it causes problems you "
+"can change your mind later by running: dpkg-reconfigure pconsole"
+msgstr ""
+"Se estiver em dúvida, você deve instalá-lo sem SUID. Se isso causar "
+"problemas, você pode mudar de idéia depois, executando: dpkg-reconfigure "
+"pconsole"
--- pconsole-1.0.orig/debian/po/it.po
+++ pconsole-1.0/debian/po/it.po
@@ -0,0 +1,61 @@
+# Italian translation of pconsole.
+# COPYRIGHT (C) 2009 THE pconsole'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the pconsole package.
+# Luca Monducci <luca.mo@tiscali.it>, 2009.
+# 
+msgid ""
+msgstr ""
+"Project-Id-Version: pconsole 1.0 italian debconf templates\n"
+"Report-Msgid-Bugs-To: pconsole@packages.debian.org\n"
+"POT-Creation-Date: 2008-05-06 19:30+0200\n"
+"PO-Revision-Date: 2009-10-10 21:56+0200\n"
+"Last-Translator: Luca Monducci <luca.mo@tiscali.it>\n"
+"Language-Team: Italian <debian-l10n-italian@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid "Do you want /usr/bin/pconsole to be installed SUID root?"
+msgstr "Installare /usr/bin/pconsole in modalità \"SUID root\"?"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid "You are strongly encouraged to leave pconsole without the SUID bit on."
+msgstr "Si raccomanda di lasciare pconsole con il bit SUID disattivato."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"If you are using a multiuser system, setting the SUID bit on pconsole will "
+"be a major risk for a breach, since normal users will be able to attach "
+"their consoles to a root PTY/TTY and send commands as root."
+msgstr ""
+"Se il sistema ha più utenti, l'impostazione del bit SUID su pconsole espone "
+"a un grosso rischio dato che gli utenti normali potranno collegare la "
+"propria console a un PTY/TTY root e inviare comandi come root."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"However, on a single-user system, setting the SUID bit might be a good idea "
+"to avoid logging as root user."
+msgstr ""
+"Su un sistema con un solo utente, l'uso di SUID potrebbe essere una buona "
+"idea per evitare l'accesso con l'utente root."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"If in doubt, you should install it without SUID. If it causes problems you "
+"can change your mind later by running: dpkg-reconfigure pconsole"
+msgstr ""
+"In caso di dubbi, andrebbe installato senza SUID. Se questo causa problemi è "
+"possibile modificare successivamente questa impostazione eseguendo \"dpkg-"
+"reconfigure pconsole\"."
--- pconsole-1.0.orig/debian/po/gl.po
+++ pconsole-1.0/debian/po/gl.po
@@ -0,0 +1,59 @@
+# Galician translation of pconsole's debconf templates
+# This file is distributed under the same license as the pconsole package.
+# Jacobo Tarrio <jtarrio@debian.org>, 2008.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: pconsole\n"
+"Report-Msgid-Bugs-To: pconsole@packages.debian.org\n"
+"POT-Creation-Date: 2008-05-06 19:30+0200\n"
+"PO-Revision-Date: 2008-05-07 19:12+0100\n"
+"Last-Translator: Jacobo Tarrio <jtarrio@debian.org>\n"
+"Language-Team: Galician <proxecto@trasno.net>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid "Do you want /usr/bin/pconsole to be installed SUID root?"
+msgstr "¿Quere instalar /usr/bin/pconsole con SUID root?"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid "You are strongly encouraged to leave pconsole without the SUID bit on."
+msgstr "Recoméndase encarecidamente que non estableza o bit SUID de pconsole."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"If you are using a multiuser system, setting the SUID bit on pconsole will "
+"be a major risk for a breach, since normal users will be able to attach "
+"their consoles to a root PTY/TTY and send commands as root."
+msgstr ""
+"Se ten un sistema multiusuario, establecer o bit SUID de pconsole pode pór o "
+"sistema en risco, xa que os usuarios normais han poder conectar as súas "
+"consolas a un PTY/TTY dun administrador e enviar ordes coma administrador."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"However, on a single-user system, setting the SUID bit might be a good idea "
+"to avoid logging as root user."
+msgstr ""
+"Nembargantes, nun sistema dun só usuario, establecer o bit SUID pode ser "
+"unha boa idea para evitar ter que se conectar como administrador."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"If in doubt, you should install it without SUID. If it causes problems you "
+"can change your mind later by running: dpkg-reconfigure pconsole"
+msgstr ""
+"Se non está seguro, debería instalalo sen SUID. Se isto causa problemas pode "
+"cambialo máis adiante executando \"dpkg-reconfigure pconsole\"."
--- pconsole-1.0.orig/debian/po/eu.po
+++ pconsole-1.0/debian/po/eu.po
@@ -0,0 +1,63 @@
+# translation of pconsole-eu.po to Euskara
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Piarres Beobide <pi@beobide.net>, 2008.
+msgid ""
+msgstr ""
+"Project-Id-Version: pconsole-eu\n"
+"Report-Msgid-Bugs-To: pconsole@packages.debian.org\n"
+"POT-Creation-Date: 2008-05-06 19:30+0200\n"
+"PO-Revision-Date: 2008-05-08 09:54+0200\n"
+"Last-Translator: Piarres Beobide <pi@beobide.net>\n"
+"Language-Team: Euskara <debian-l10n-basque@lists.debian.org>\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"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid "Do you want /usr/bin/pconsole to be installed SUID root?"
+msgstr "/usr/bin/pconsole SUID root bezala instalatu nahi al dituzu?"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid "You are strongly encouraged to leave pconsole without the SUID bit on."
+msgstr "Gogorki gomendatzen da pconsole SUID bit-a ezarri gabe uztea."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"If you are using a multiuser system, setting the SUID bit on pconsole will "
+"be a major risk for a breach, since normal users will be able to attach "
+"their consoles to a root PTY/TTY and send commands as root."
+msgstr ""
+"Erabiltzaile-anitzeko sistema bat erabiltzen ari bazara, pconsole-n SUID bit-"
+"a ezartzea segurtasun arrisku handi bat izan daiteke erabiltzaile arruntak "
+"bere kontsola root PTY/TTY batetara eransteko eta root gisa komandoak "
+"exekutatzeko gai izango dira eta."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"However, on a single-user system, setting the SUID bit might be a good idea "
+"to avoid logging as root user."
+msgstr ""
+"Hala ere erabiltzaile bakarreko sistemetan SUID bit-a ezartzea ideia ona "
+"izan daiteke root bezala saioa ez hasteko."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"If in doubt, you should install it without SUID. If it causes problems you "
+"can change your mind later by running: dpkg-reconfigure pconsole"
+msgstr ""
+"Zalantzarik baduzu instalatu ezazu SUID gabe. Honek arazoak sortzen "
+"badizkizu beranduago zure hautapena aldatu ahal izango duzu komando honen "
+"bidez: dpkg-reconfigure pconsole"
--- pconsole-1.0.orig/debian/po/es.po
+++ pconsole-1.0/debian/po/es.po
@@ -0,0 +1,89 @@
+# pconsole po-debconf translation to Spanish.
+# Copyright (C) 2009 Software in the Public Interest, SPI Inc.
+# This file is distributed under the same license as the pconsole package.
+#
+#  Changes:
+# - Initial translation
+#       Fernando González de Requena <fgrequena@gmail.com>, 2009.
+#
+#  Traductores, si no conoce el formato PO, merece la pena leer la 
+#  documentación de gettext, especialmente las secciones dedicadas a este
+#  formato, por ejemplo ejecutando:
+#         info -n '(gettext)PO Files'
+#         info -n '(gettext)Header Entry'
+#
+# Equipo de traducción al español, por favor lean antes de traducir
+# los siguientes documentos:
+#
+# - El proyecto de traducción de Debian al español
+#   http://www.debian.org/intl/spanish/
+#   especialmente las notas y normas de traducción en
+#   http://www.debian.org/intl/spanish/notas
+#
+# - La guía de traducción 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 traducción consulte con el último
+# traductor (campo Last-Translator) y ponga en copia a la lista de
+# traducción de Debian al español (<debian-l10n-spanish@lists.debian.org>)
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: pconsole 1.0-7.2\n"
+"Report-Msgid-Bugs-To: pconsole@packages.debian.org\n"
+"POT-Creation-Date: 2008-05-06 19:30+0200\n"
+"PO-Revision-Date: 2009-02-01 12:28+0100\n"
+"Last-Translator: Fernando González de Requena <fgrequena@gmail.com>\n"
+"Language-Team: Spanish <debian-l10n-spanish@lists.debian.org>\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"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid "Do you want /usr/bin/pconsole to be installed SUID root?"
+msgstr "¿Desea instalar «/usr/bin/pconsole» con el bit «SUID» del «root» activo?"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid "You are strongly encouraged to leave pconsole without the SUID bit on."
+msgstr ""
+"Se recomienda encarecidamente no instalar pconsole con el bit «SUID» del "
+"«root» activo."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"If you are using a multiuser system, setting the SUID bit on pconsole will "
+"be a major risk for a breach, since normal users will be able to attach "
+"their consoles to a root PTY/TTY and send commands as root."
+msgstr ""
+"Si está usando un sistema multiusuario, instalar pconsole con el bit «SUID» "
+"del «root» activo supone un riesgo importante de intrusión, puesto que los "
+"usuarios normales tendrán la posibilidad de vincular sus consolas a una PTY/"
+"TTY de administrador («root») y ejecutar órdenes como administrador («root»)."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"However, on a single-user system, setting the SUID bit might be a good idea "
+"to avoid logging as root user."
+msgstr ""
+"Sin embargo, en un sistema con un único usuario, activar el bit «SUID» puede "
+"ser una buena idea para evitar entrar al sistema como administrador («root»)."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"If in doubt, you should install it without SUID. If it causes problems you "
+"can change your mind later by running: dpkg-reconfigure pconsole"
+msgstr ""
+"Si duda, debería instalarlo sin activar el bit «SUID». Si esto le causa "
+"problemas, puede cambiarlo más adelante ejecutando «dpkg-reconfigure pconsole»"
--- pconsole-1.0.orig/debian/po/fi.po
+++ pconsole-1.0/debian/po/fi.po
@@ -0,0 +1,57 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: pconsole\n"
+"Report-Msgid-Bugs-To: pconsole@packages.debian.org\n"
+"POT-Creation-Date: 2008-05-06 19:30+0200\n"
+"PO-Revision-Date: 2008-05-09 11:06+0200\n"
+"Last-Translator: Esko Arajärvi <edu@iki.fi>\n"
+"Language-Team: Finnish <debian-l10n-finnish@lists.debian.org>\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: boolean
+#. Description
+#: ../templates:1001
+msgid "Do you want /usr/bin/pconsole to be installed SUID root?"
+msgstr "Tulisiko /usr/bin/pconsole asentaa asetuksella ”SUID root”?"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid "You are strongly encouraged to leave pconsole without the SUID bit on."
+msgstr "On erittäin suositeltavaa jättää pconsolen SUID-bitti pois päältä."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"If you are using a multiuser system, setting the SUID bit on pconsole will "
+"be a major risk for a breach, since normal users will be able to attach "
+"their consoles to a root PTY/TTY and send commands as root."
+msgstr ""
+"Jos järjestelmällä on useita käyttäjiä, SUID-bitin asettaminen on suuri "
+"tietoturvariski, koska tällöin tavalliset käyttäjät voivat ottaa yhteyden "
+"pääkäyttäjän päätteeseen ja lähettää komentoja pääkäyttäjäoikeuksilla."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"However, on a single-user system, setting the SUID bit might be a good idea "
+"to avoid logging as root user."
+msgstr ""
+"Yhden käyttäjän järjestelmissä SUID-bitin asettaminen saattaa kuitenkin olla "
+"hyvä idea, koska tällöin vältetään pääkäyttäjäksi kirjautuminen."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"If in doubt, you should install it without SUID. If it causes problems you "
+"can change your mind later by running: dpkg-reconfigure pconsole"
+msgstr ""
+"Jos olet epävarma, jätä SUID-asetus pois päältä. Asetusta voidaan muuttaa "
+"myöhemmin ajamalla komento ”dpkg-reconfigure pconsole”."
--- pconsole-1.0.orig/debian/po/de.po
+++ pconsole-1.0/debian/po/de.po
@@ -0,0 +1,63 @@
+# Translation of pconsole debconf templates to German
+# Copyright (C) Helge Kreutzmann <debian@helgefjell.de>, 2007.
+# This file is distributed under the same license as the pconsole package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: pconsole 1.0-7\n"
+"Report-Msgid-Bugs-To: pconsole@packages.debian.org\n"
+"POT-Creation-Date: 2008-05-06 19:30+0200\n"
+"PO-Revision-Date: 2007-02-04 19:24+0100\n"
+"Last-Translator: Helge Kreutzmann <debian@helgefjell.de>\n"
+"Language-Team: German <debian-l10n-german@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=ISO-8859-15\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid "Do you want /usr/bin/pconsole to be installed SUID root?"
+msgstr "Soll /usr/bin/pconsole SUID-Root installiert werden?"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid "You are strongly encouraged to leave pconsole without the SUID bit on."
+msgstr ""
+"Es wird nachdrücklich empfohlen, dass Sie Pconsole ohne aktiviertes SUID-Bit "
+"lassen."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"If you are using a multiuser system, setting the SUID bit on pconsole will "
+"be a major risk for a breach, since normal users will be able to attach "
+"their consoles to a root PTY/TTY and send commands as root."
+msgstr ""
+"Falls Sie ein Mehrbenutzer-System verwenden, wird das Setzen des SUID-Bits "
+"für Pconsole ein großes Risiko für einen Sicherheitsbruch sein, da normale "
+"Benutzer in der Lage sein werden, ihre Konsolen an ein Root-PTY/TTY "
+"anzuhängen und Befehle als Root abzusetzen."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"However, on a single-user system, setting the SUID bit might be a good idea "
+"to avoid logging as root user."
+msgstr ""
+"Allerdings mag auf einem Einzelbenutzersystem es eine gute Idee sein, das "
+"SUID-Bit zu setzen, um eine Anmeldung als Root-Benutzer zu vermeiden."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"If in doubt, you should install it without SUID. If it causes problems you "
+"can change your mind later by running: dpkg-reconfigure pconsole"
+msgstr ""
+"Falls Sie in Zweifel sind, sollten Sie ohne SUID installieren. Falls es zu "
+"Problemen führt, können Sie später Ihre Meinung ändern, indem Sie »dpkg-"
+"reconfigure pconsole« ausführen."
--- pconsole-1.0.orig/debian/po/vi.po
+++ pconsole-1.0/debian/po/vi.po
@@ -0,0 +1,64 @@
+# Vietnamese translation for pconsole.
+# Copyright © 2005 Free Software Foundation, Inc.
+# Clytie Siddall <clytie@riverland.net.au>, 2005.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: pconsole 1.0-5\n"
+"Report-Msgid-Bugs-To: pconsole@packages.debian.org\n"
+"POT-Creation-Date: 2008-05-06 19:30+0200\n"
+"PO-Revision-Date: 2005-07-03 15:23+0930\n"
+"Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n"
+"Language-Team: Vietnamese <gnomevi-list@lists.sourceforge.net>\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.2.2\n"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid "Do you want /usr/bin/pconsole to be installed SUID root?"
+msgstr "Bạn có muốn cài đặt «/usr/bin/pconsole» với tư cách «SUID root» không?"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid "You are strongly encouraged to leave pconsole without the SUID bit on."
+msgstr ""
+"Khuyến khích nặng bạn không thêm bit SUID vào trình pconsole, không cài đặt "
+"pconsole với tư cách «SUID root»."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"If you are using a multiuser system, setting the SUID bit on pconsole will "
+"be a major risk for a breach, since normal users will be able to attach "
+"their consoles to a root PTY/TTY and send commands as root."
+msgstr ""
+"Nếu bạn có một hệ thống đa người dùng, lập bit SUID trên pconsole sẽ rất rủi "
+"ro bảo mật, vì người dùng bình thường sẽ có khả năng gắn bàn giao tiếp mình "
+"vào một PTY/TTY chủ rồi gởi lệnh với tư cách người chủ (root)."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"However, on a single-user system, setting the SUID bit might be a good idea "
+"to avoid logging as root user."
+msgstr ""
+"Tuy nhiên, trong một hệ thống đơn người dùng, lập bit SUID có thể là một ý "
+"kiến tốt, để tránh cần phải đăng nhập với tư cách người dùng chủ."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"If in doubt, you should install it without SUID. If it causes problems you "
+"can change your mind later by running: dpkg-reconfigure pconsole"
+msgstr ""
+"Nếu chưa chắc thì bạn nên cài đặt trình này không có SUID. Lúc sau, nếu bạn "
+"thay đổi ý kiến thì có thể cấu hình lại bằng cách chạy lệnh «dpkg-reconfigure "
+"pconsole»."
--- pconsole-1.0.orig/debian/po/fr.po
+++ pconsole-1.0/debian/po/fr.po
@@ -0,0 +1,71 @@
+#
+#    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: pconsole_1.0-3\n"
+"Report-Msgid-Bugs-To: pconsole@packages.debian.org\n"
+"POT-Creation-Date: 2008-05-06 19:30+0200\n"
+"PO-Revision-Date: 2003-09-25 09:05+0200\n"
+"Last-Translator: Michel Grentzinger <mic.grentz@online.fr>\n"
+"Language-Team: French <debian-l10n-french@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=ISO-8859-15\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid "Do you want /usr/bin/pconsole to be installed SUID root?"
+msgstr "Souhaitez-vous installer /usr/bin/pconsole « SUID root » ?"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid "You are strongly encouraged to leave pconsole without the SUID bit on."
+msgstr ""
+"Il est fortement recommandé de laisser pconsole avec le bit SUID désactivé."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"If you are using a multiuser system, setting the SUID bit on pconsole will "
+"be a major risk for a breach, since normal users will be able to attach "
+"their consoles to a root PTY/TTY and send commands as root."
+msgstr ""
+"Si vous travaillez sur un système multi-utilisateurs, l'exécution de "
+"pconsole avec les droits du super-utilisateur (« SUID root ») constitue un "
+"risque majeur, puisque des utilisateurs non privilégiés seront capables "
+"d'attacher leur console à un terminal PTY/TTY du super-utilisateur et d'y "
+"envoyer des commandes sous son identité."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"However, on a single-user system, setting the SUID bit might be a good idea "
+"to avoid logging as root user."
+msgstr ""
+"Cependant, sur un système mono-utilisateur, la mise en place du bit SUID "
+"peut être une bonne idée afin d'éviter de se connecter en tant que super-"
+"utilisateur."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"If in doubt, you should install it without SUID. If it causes problems you "
+"can change your mind later by running: dpkg-reconfigure pconsole"
+msgstr ""
+"Dans le doute, vous devriez l'installer sans le bit SUID. Si cela causait "
+"des problèmes, vous pourrez changer d'avis ultérieurement en exécutant « dpkg-"
+"reconfigure pconsole »."
--- pconsole-1.0.orig/debian/po/templates.pot
+++ pconsole-1.0/debian/po/templates.pot
@@ -0,0 +1,54 @@
+# 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 <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: pconsole@packages.debian.org\n"
+"POT-Creation-Date: 2008-05-06 19:30+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=CHARSET\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid "Do you want /usr/bin/pconsole to be installed SUID root?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid "You are strongly encouraged to leave pconsole without the SUID bit on."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"If you are using a multiuser system, setting the SUID bit on pconsole will "
+"be a major risk for a breach, since normal users will be able to attach "
+"their consoles to a root PTY/TTY and send commands as root."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"However, on a single-user system, setting the SUID bit might be a good idea "
+"to avoid logging as root user."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"If in doubt, you should install it without SUID. If it causes problems you "
+"can change your mind later by running: dpkg-reconfigure pconsole"
+msgstr ""
--- pconsole-1.0.orig/debian/po/nl.po
+++ pconsole-1.0/debian/po/nl.po
@@ -0,0 +1,62 @@
+# 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 <EMAIL@ADDRESS>, YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: pconsole\n"
+"Report-Msgid-Bugs-To: pconsole@packages.debian.org\n"
+"POT-Creation-Date: 2008-05-06 19:30+0200\n"
+"PO-Revision-Date: 2007-04-02 17:29+0100\n"
+"Last-Translator: Bart Cornelis <cobaco@skolelinux.no>\n"
+"Language-Team: debian-l10n-dutch <debian-l10n-dutch@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Language: Dutch\n"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid "Do you want /usr/bin/pconsole to be installed SUID root?"
+msgstr "Wilt u /usr/bin/pconsole installeren met de SUID-bit actief voor root?"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid "You are strongly encouraged to leave pconsole without the SUID bit on."
+msgstr "U wordt ten sterkste aangeraden om de SUID-bit niet actief te maken."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"If you are using a multiuser system, setting the SUID bit on pconsole will "
+"be a major risk for a breach, since normal users will be able to attach "
+"their consoles to a root PTY/TTY and send commands as root."
+msgstr ""
+"Als dit een systeem met meerdere gebruikers is, is het activeren van de SUID-"
+"bit op pconsole een groot beveiligingsrisico, daar normale gebruikers hun "
+"consoles dan aan een root PTY/TTY kunnen hangen om zo commando's als root te "
+"versturen."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"However, on a single-user system, setting the SUID bit might be a good idea "
+"to avoid logging as root user."
+msgstr ""
+"Op een systeem met slechts 1 gebruiker daarentegen kan het activeren van de "
+"SUID-bit een goed idee zijn, daar dit inloggen als root vermijdt. "
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"If in doubt, you should install it without SUID. If it causes problems you "
+"can change your mind later by running: dpkg-reconfigure pconsole"
+msgstr ""
+"Bij twijfel installeert u best zonder de SUID-bit te activeren. U kunt later "
+"altijd van gedachte veranderen via het commando 'dpkg-reconfigure pconsole'."
--- pconsole-1.0.orig/debian/po/ja.po
+++ pconsole-1.0/debian/po/ja.po
@@ -0,0 +1,60 @@
+# Copyright (C) 2008-2009 Jesus Climent <jesus.climent@hispalinux.es>
+# This file is distributed under the same license as the pconsole package.
+# Hideki Yamane (Debian-JP) <henrich@debian.or.jp>, 2009.
+# 
+msgid ""
+msgstr ""
+"Project-Id-Version: pconsole Jesus Climent <jesus.climent@hispalinux.es>\n"
+"Report-Msgid-Bugs-To: pconsole@packages.debian.org\n"
+"POT-Creation-Date: 2008-05-06 19:30+0200\n"
+"PO-Revision-Date: 2009-01-06 06:26+0900\n"
+"Last-Translator: Hideki Yamane (Debian-JP) <henrich@debian.or.jp>\n"
+"Language-Team: Japanese <debian-japanese@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid "Do you want /usr/bin/pconsole to be installed SUID root?"
+msgstr " /usr/bin/pconsole を root に SUID してインストールしますか?"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid "You are strongly encouraged to leave pconsole without the SUID bit on."
+msgstr ""
+"pconsole を SUID ビットを立てないままにしておくことを強くお勧めします。"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"If you are using a multiuser system, setting the SUID bit on pconsole will "
+"be a major risk for a breach, since normal users will be able to attach "
+"their consoles to a root PTY/TTY and send commands as root."
+msgstr ""
+"複数のユーザがいるシステムを使っている場合、pconsole に SUID を設定すると、一"
+"般ユーザがコンソールを root の PTY/TTY に接続して root としてコマンドを送信す"
+"ることができるので、大きなセキュリティ侵害を引き起こす可能性があります。"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"However, on a single-user system, setting the SUID bit might be a good idea "
+"to avoid logging as root user."
+msgstr ""
+"ユーザが一人しかいないシステムの場合は、root ユーザとしてログインするのを避け"
+"られるので SUID 設定するのは良い考えです。"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"If in doubt, you should install it without SUID. If it causes problems you "
+"can change your mind later by running: dpkg-reconfigure pconsole"
+msgstr ""
+"よく分からない場合は、SUID 無しでインストールしてください。これが問題になっ"
+"て、後で考えを変えた場合は以下を実行してください: dpkg-reconfigure pconsole"
--- pconsole-1.0.orig/debian/po/POTFILES.in
+++ pconsole-1.0/debian/po/POTFILES.in
@@ -0,0 +1 @@
+[type: gettext/rfc822deb] templates
--- pconsole-1.0.orig/debian/po/pt.po
+++ pconsole-1.0/debian/po/pt.po
@@ -0,0 +1,62 @@
+# Native Portuguese translation of pconsole.
+# Copyright (C) 2006 THE pconsole'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the pconsole package.
+# 2006-11-01 - Rui Branco <ruipb@debianpt.org>. (initial translation)
+#
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: pconsole 1.0-6\n"
+"Report-Msgid-Bugs-To: pconsole@packages.debian.org\n"
+"POT-Creation-Date: 2008-05-06 19:30+0200\n"
+"PO-Revision-Date: 2006-11-01 18:54+0000\n"
+"Last-Translator: Rui Branco <ruipb@debianpt.org>\n"
+"Language-Team: Native Portuguese <traduz@debianpt.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid "Do you want /usr/bin/pconsole to be installed SUID root?"
+msgstr "Deseja instalar o /usr/bin/pconsole com 'SUID root'?"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid "You are strongly encouraged to leave pconsole without the SUID bit on."
+msgstr "É-lhe fortemente aconselhado deixar o pconsole sem o bit SUID activo."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"If you are using a multiuser system, setting the SUID bit on pconsole will "
+"be a major risk for a breach, since normal users will be able to attach "
+"their consoles to a root PTY/TTY and send commands as root."
+msgstr ""
+"Se estiver a usar um sistema multi-utilizador, ao definir o bit SUID no "
+"pconsole terá um maior risco de brechas, já que os utilizadores normais "
+"serão capazes de anexar as suas consolas a uma consola root PTY/TTY e enviar "
+"comandos como root."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"However, on a single-user system, setting the SUID bit might be a good idea "
+"to avoid logging as root user."
+msgstr ""
+"No entanto num sistema de utilizador único, definir o bit SUID pode ser uma "
+"boa ideia para evitar o logging como utilizador root"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"If in doubt, you should install it without SUID. If it causes problems you "
+"can change your mind later by running: dpkg-reconfigure pconsole"
+msgstr ""
+"Se estiver na dúvida, deverá instalá-lo sem SUID. Se lhe causar problemas "
+"pode decidir pelo contrário mais tarde e correr: dpkg-reconfigure pconsole"