--- lyskom-server-2.1.2.orig/debian/lyskom-server.postrm
+++ lyskom-server-2.1.2/debian/lyskom-server.postrm
@@ -0,0 +1,69 @@
+#! /bin/sh -e
+# postrm script for lyskom-server
+
+# The server was stopped in the prerm, so we are safe to fool around with
+# the files as we want here.
+
+# Remove run-time files if removing or purging
+if test "$1" = "purge" -o "$1" = "remove"; then
+  # Remove log directory and files
+  if test -d /var/log/lyskom-server; then
+    echo 'Removing log files.'
+    rm -f /var/log/lyskom-server/server-log
+    rm -f /var/log/lyskom-server/lyskomd-log
+    rm -f /var/log/lyskom-server/memory-usage
+    rmdir /var/log/lyskom-server || echo 'Could not remove /var/log/lyskom-server'
+  fi
+
+  # Remove state directory and files
+  if test -d /var/run/lyskom-server; then
+    echo 'Removing state files.'
+    rm -f /var/run/lyskom-server/pid
+    rm -f /var/run/lyskom-server/status
+    rmdir /var/run/lyskom-server || echo 'Could not remove /var/run/lyskom-server'
+  fi
+fi
+
+# Remove database and user if purging
+if test "$1" = "purge"; then
+  # Remove database directory and files
+  if test -d /var/lib/lyskom-server; then
+    echo 'Removing LysKOM database.'
+    rm -f /var/lib/lyskom-server/lyskomd-data
+    rm -f /var/lib/lyskom-server/lyskomd-backup
+    rm -f /var/lib/lyskom-server/lyskomd-backup-prev
+    rm -f /var/lib/lyskom-server/lyskomd-lock
+    rm -f /var/lib/lyskom-server/lyskomd-texts
+    rm -f /var/lib/lyskom-server/lyskomd-texts-backup
+    rm -f /var/lib/lyskom-server/run
+    rm -rf /var/lib/lyskom-server/lyskomd
+    rm -rf /var/lib/lyskom-server/lyskomd.cores
+    rmdir /var/lib/lyskom-server || echo 'Could not remove /var/lib/lyskom-server'
+  fi
+
+  # Remove 'lyskom' user
+  userexist=1
+  getent passwd lyskom > /dev/null || userexist=0
+  if [ "$userexist" = "1" ]; then
+    # User did exist
+    if [ -x /usr/sbin/deluser ]; then
+        # Deluser is installed
+    	echo 'Removing lyskom user.'
+        deluser lyskom || echo 'Could not remove lyskom user'
+    fi
+  fi
+fi
+
+# Move config file back if downgrading
+if test "$1" = "upgrade"; then
+  if dpkg --compare-versions "$2" lt 2.1.0-1; then
+    # If new configuration file exists, and old does not, move it
+    if test -e /etc/lyskom-server/lyskomd.conf -a ! -e /etc/lyskom/server/config; then
+      echo 'Renaming /etc/lyskom-server/lyskomd.conf to config (old name)' 1>&2
+      mv -f /etc/lyskom-server/lyskomd.conf /etc/lyskom-server/config
+    fi
+  fi
+fi
+
+# Run anything debhelper wants us to run
+#DEBHELPER#
--- lyskom-server-2.1.2.orig/debian/lyskom-server.NEWS
+++ lyskom-server-2.1.2/debian/lyskom-server.NEWS
@@ -0,0 +1,7 @@
+lyskom-server (2.1.2-1) unstable; urgency=low
+
+  * The name of the configuration file has changed to
+    /etc/lyskom-server/lyskomd.conf
+  * All binaries have been moved to /usr/sbin
+
+ -- Peter Krefting <peterk@debian.org>  Sat, 27 Sep 2003 16:45:00 +0100
--- lyskom-server-2.1.2.orig/debian/control
+++ lyskom-server-2.1.2/debian/control
@@ -0,0 +1,27 @@
+Source: lyskom-server
+Section: net
+Priority: extra
+Maintainer: Peter Krefting <peterk@debian.org>
+Build-Depends: debhelper (>= 5.0), bison, flex, po-debconf, autotools-dev
+Standards-Version: 3.8.2
+Homepage: http://www.lysator.liu.se/lyskom/lyskom-server/
+Vcs-Git: git://git.debian.org/users/peterk/lyskom-server.git
+Vcs-Browser: http://git.debian.org/?p=users/peterk/lyskom-server.git
+
+Package: lyskom-server
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}, debconf | debconf-2.0, adduser
+Suggests: lyskom-elisp-client | lyskom-tty-client
+Homepage: http://www.lysator.liu.se/lyskom/lyskom-server/
+Description: Server for the LysKOM conference system
+ LysKOM has a lot in common with netnews, but LysKOM is
+ intended for local discussions (instead of worldwide).
+ LysKOM consists of a server process and several client
+ programs. The server process maintains a data base of
+ persons, conferences and articles. The clients connect to
+ the server and let the users browse the database for
+ unread articles.
+ .
+ LysKOM is much faster than netnews - almost as fast as irc
+ or ICQ! - but like in netnews the articles are saved so
+ that you don't have to be logged in to receive the news.
--- lyskom-server-2.1.2.orig/debian/lyskom-server.config
+++ lyskom-server-2.1.2/debian/lyskom-server.config
@@ -0,0 +1,8 @@
+#!/bin/sh -e
+
+# Source debconf library.
+. /usr/share/debconf/confmodule
+
+# Select initial database language.
+db_input medium lyskom-server/language || true
+db_go
--- lyskom-server-2.1.2.orig/debian/lyskom-server.cron.d
+++ lyskom-server-2.1.2/debian/lyskom-server.cron.d
@@ -0,0 +1,7 @@
+# /etc/cron.d/lyskom-server: crontab entries for the lyskom-server package
+
+# Not activated by default, to make sure server administrator logs in
+# manually and changes administrator password first. To activate, please
+# remove the comment signs from the following line.
+# 0,10,20,30,40,50 * * * * root test -x /usr/sbin/updateLysKOM && su lyskom -c /usr/sbin/updateLysKOM
+
--- lyskom-server-2.1.2.orig/debian/compat
+++ lyskom-server-2.1.2/debian/compat
@@ -0,0 +1 @@
+5
--- lyskom-server-2.1.2.orig/debian/etc_default_lyskom-server
+++ lyskom-server-2.1.2/debian/etc_default_lyskom-server
@@ -0,0 +1,6 @@
+# By default, automatic start is disabled. To start automatically on boot,
+# change the following line from NO to YES. Please note that startup is
+# actually handled via /etc/cron.d/lyskom-server, this scripts only signals
+# that start is wanted.
+
+startonboot="NO"
--- lyskom-server-2.1.2.orig/debian/lyskom-server.postinst
+++ lyskom-server-2.1.2/debian/lyskom-server.postinst
@@ -0,0 +1,64 @@
+#! /bin/sh -e
+# postinst script for lyskom-server
+#
+# see: dh_installdeb(1)
+
+# Add the user 'lyskom' to run the server
+userexist=1
+getent passwd lyskom > /dev/null || userexist=0
+if test "$userexist" = "0"; then
+  # User did not exist
+  adduser --system --no-create-home --home /dev/null --shell /bin/sh lyskom || echo 'Unable to create user "lyskom"'
+fi
+
+# Install default database if none exists
+if test "$1" = "configure"; then
+  if test ! -e /var/lib/lyskom-server/lyskomd-data; then
+    if test ! -d /var/lib/lyskom-server; then
+      mkdir -p /var/lib/lyskom-server || echo 'Unable to create /var/lib/lyskom-server directory'
+    fi
+
+    # Source debconf library.
+    . /usr/share/debconf/confmodule || echo 'Error communicating with debconf'
+
+    # Get selected database language
+    db_get lyskom-server/language || echo 'Error communicating with debconf'
+    if test "$RET" = "Swedish"; then
+      # Sanity check
+      if test -e /usr/share/lyskom-server/default/lyskomd-data; then
+        cp -f /usr/share/lyskom-server/default/lyskomd-data /var/lib/lyskom-server/lyskomd-data
+      else
+        echo 'Unable to locate default database in /usr/share/lyskom-server/default'
+      fi
+    else
+      # Sanity check
+      if test -e /usr/share/lyskom-server/default/lyskomd-data-en; then
+        cp -f /usr/share/lyskom-server/default/lyskomd-data-en /var/lib/lyskom-server/lyskomd-data
+      else
+        echo 'Unable to locate default database in /usr/share/lyskom-server/default'
+      fi
+    fi
+    # Sanity check
+    if test -e /usr/share/lyskom-server/default/lyskomd-texts; then
+      cp -f /usr/share/lyskom-server/default/lyskomd-texts /var/lib/lyskom-server/lyskomd-texts
+    else
+      echo 'Unable to locate default database in /usr/share/lyskom-server/default'
+    fi
+  fi
+
+  # Set database to be owned by the 'lyskom' user
+  chown lyskom:nogroup /var/lib/lyskom-server
+  chown lyskom:nogroup /var/lib/lyskom-server/lyskomd-data
+  chown lyskom:nogroup /var/lib/lyskom-server/lyskomd-texts
+
+  # Set log directory to be owned by the 'lyskom' user
+  chown lyskom:nogroup /var/log/lyskom-server
+
+  # Set pid directory to be owned by the 'lyskom' user
+  chown lyskom:nogroup /var/run/lyskom-server
+fi
+
+# Do anything debhelper wants to do
+#DEBHELPER#
+
+exit 0
--- lyskom-server-2.1.2.orig/debian/komrunning.8
+++ lyskom-server-2.1.2/debian/komrunning.8
@@ -0,0 +1,75 @@
+.\"                                      Hey, EMACS: -*- nroff -*-
+.\" First parameter, NAME, should be all caps
+.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
+.\" other parameters are allowed: see man(7), man(1)
+.TH KOMRUNNING 8 "2001-10-10" LysKOM
+.\" Please adjust this date whenever revising the manpage.
+.\"
+.\" Some roff macros, for reference:
+.\" .nh        disable hyphenation
+.\" .hy        enable hyphenation
+.\" .ad l      left justify
+.\" .ad b      justify to both left and right margins
+.\" .nf        disable filling
+.\" .fi        enable filling
+.\" .br        insert line break
+.\" .sp <n>    insert n+1 empty lines
+.\" for manpage-specific macros, see man(7)
+.SH NAME
+KOMMRUNNING \- program to control if the LysKOM server is running
+.SH SYNOPSIS
+.B komrunning
+.RI [ "-c config-file" "] [" -v | -V "] [" start | stop ]
+.SH DESCRIPTION
+This manual page documents briefly the
+.B kommrunning
+command.
+This manual page was written for the Debian GNU/Linux distribution
+because the original program does not have a manual page.
+Instead, it has documentation in the GNU Info format; see below.
+.PP
+.I komrunning
+controls the state of the LysKOM server, together with the
+.B updateLysKOM
+program, which is run via cron.
+.SH OPTIONS
+.BR komrunning ,
+when invoked with no arguments, reports whether
+.I lyskomd
+is currently running or not, and whether it should be running or not.
+.B komrunning start
+attempts to start
+.IR lyskomd .
+.B komrunning stop
+attempts to stop lyskomd, and it will not return until the server has
+saved its database and exited.
+.PP
+.I komrunning
+uses the same configuration file as
+.IR lyskomd .
+You can use
+.I \-c config-file
+to override the compiled-in default.
+Note, however, that this option is not passed along to
+.I updateLysKOM
+if
+.I komrunning
+invokes it, so the option should be used with extreme caution.
+.PP
+.B \-v
+and
+.B \-V
+causes
+.I komrunning
+to report its version number and exit.
+.SH SEE ALSO
+.BR dbck (8),
+.BR lyskomd (8),
+.BR updateLysKOM (8).
+.PP
+The program is documented fully by
+.IR "lyskomd Reference Manual" ,
+available via the Info system.
+.SH AUTHOR
+This manual page was written by Peter Krefting <peterk@debian.org>,
+for the Debian GNU/Linux system (but may be used by others).
--- lyskom-server-2.1.2.orig/debian/lyskom-server.copyright
+++ lyskom-server-2.1.2/debian/lyskom-server.copyright
@@ -0,0 +1,27 @@
+Package: lyskom-server
+Obtained from: ftp://ftp.lysator.liu.se/pub/lyskom/server
+Packaged for Debian by: Peter Krefting <peterk@debian.org>
+
+Copyright (C) 1991-2003 Lysator Academic Computer Association.
+The LysKOM server was written by Lars Aronsson, Thomas Bellman, David Byers,
+Per Cederqvist, Pär Emanuelsson, Peter Eriksson, Linus Tolke, Inge Wallin,
+Lars Willför et.al. Please the AUTHORS file for more information.
+
+   LysKOM 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 1, or (at your
+   option) any later version.
+
+   LysKOM 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 LysKOM. If not, write to Lysator, c/o ISY, Linköping
+   University, SE-581 83 Linköping, SWEDEN, or the Free Software
+   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+   02110-1301, USA.
+
+On Debian GNU/Linux systems, the complete text of the GNU General
+Public License can be found in "/usr/share/common-licenses/GPL".
--- lyskom-server-2.1.2.orig/debian/lyskom-server.manpages
+++ lyskom-server-2.1.2/debian/lyskom-server.manpages
@@ -0,0 +1 @@
+debian/komrunning.8
--- lyskom-server-2.1.2.orig/debian/rules
+++ lyskom-server-2.1.2/debian/rules
@@ -0,0 +1,91 @@
+#!/usr/bin/make -f
+# Debhelper rules for lyskom-server.
+# Based on templates copyright 1997-1999 Joey Hess.
+# Edited in 2001-2009 by Peter Krefting <peterk@debian.org>
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+	CFLAGS += -O0
+else
+	CFLAGS += -O2
+endif
+
+configure: configure-stamp
+configure-stamp:
+	dh_testdir
+	./configure --prefix=/usr --exec-prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --sysconfdir=/etc/lyskom-server --localstatedir=/var/lib/lyskom-server --enable-ipv6
+	touch configure-stamp
+
+build: configure-stamp build-stamp
+build-stamp:
+	dh_testdir
+	$(MAKE)
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp configure-stamp
+	[ ! -f Makefile ] || $(MAKE) -C db-crypt distclean
+	[ ! -f Makefile ] || $(MAKE) distclean
+	-test -r /usr/share/misc/config.sub && \
+	  cp -f /usr/share/misc/config.sub config.sub
+	-test -r /usr/share/misc/config.guess && \
+	  cp -f /usr/share/misc/config.guess config.guess
+	-test -r /usr/share/misc/config.sub && \
+	  cp -f /usr/share/misc/config.sub src/libraries/liboop/config.sub
+	-test -r /usr/share/misc/config.guess && \
+	  cp -f /usr/share/misc/config.guess src/libraries/liboop/config.guess
+	dh_clean
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
+	DESTDIR=$(CURDIR)/debian/lyskom-server $(MAKE) install prefix=$(CURDIR)/debian/lyskom-server
+else
+	DESTDIR=$(CURDIR)/debian/lyskom-server STRIPPROG=/bin/true $(MAKE) install prefix=$(CURDIR)/debian/lyskom-server
+endif
+	cp -p db-crypt/db/lyskomd-data       debian/lyskom-server/usr/share/lyskom-server/default/
+	cp -p db-crypt/db/lyskomd-data-en    debian/lyskom-server/usr/share/lyskom-server/default/
+	cp -p db-crypt/db/lyskomd-texts      debian/lyskom-server/usr/share/lyskom-server/default/
+	cp -p ChangeLog.1                    debian/lyskom-server/usr/share/doc/lyskom-server/changelog.1
+	install -m644 debian/etc_default_lyskom-server debian/lyskom-server/etc/default/lyskom-server
+	# Bug#214742:
+	-rm -f debian/lyskom-server/usr/share/info/dir \
+	       debian/lyskom-server/usr/share/info/dir.old
+
+# Build architecture-independent files here.
+binary-indep: build install
+# We have nothing to do by default.
+
+# Build architecture-dependent files here.
+binary-arch: build install
+	dh_testdir
+	dh_testroot
+	dh_installdebconf	
+	dh_installdocs
+	dh_installexamples
+	dh_installmenu
+	dh_installlogrotate
+	dh_installcron
+	dh_installman
+	dh_installinfo
+	dh_installinit
+	dh_installchangelogs ChangeLog
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure
--- lyskom-server-2.1.2.orig/debian/lyskom-server.dirs
+++ lyskom-server-2.1.2/debian/lyskom-server.dirs
@@ -0,0 +1,7 @@
+etc/default
+usr/sbin
+usr/share/doc/lyskom-server
+usr/share/lyskom-server/default
+var/log/lyskom-server
+var/lib/lyskom-server
+var/run/lyskom-server
--- lyskom-server-2.1.2.orig/debian/changelog
+++ lyskom-server-2.1.2/debian/changelog
@@ -0,0 +1,176 @@
+lyskom-server (2.1.2-11) unstable; urgency=low
+
+  * Added Japanese and Russian translations of Debconf templates.
+   (Closes: Bug#559387, #560714)
+  * Fix syntax error and remove more generated files in postrm script.
+   (Closes: Bug#559742)
+
+ -- Peter Krefting <peterk@debian.org>  Tue, 19 Jan 2010 22:00:00 +0100
+
+lyskom-server (2.1.2-10) unstable; urgency=low
+
+  * Also update the second copies config.guess and config.sub.
+   (Closes: Bug#537070)
+
+ -- Peter Krefting <peterk@debian.org>  Wed, 15 Jul 2009 07:15:00 +0100
+
+lyskom-server (2.1.2-9) unstable; urgency=low
+
+  * Always use current config.guess and config.sub when building.
+   (Closes: Bug#536259)
+  * Updated init.d script to create /var/run/lyskom-server if it does not
+    already exist and not to fail if /etc/default/lyskom-server has been
+    removed.
+
+ -- Peter Krefting <peterk@debian.org>  Sat, 11 Jul 2009 16:15:00 +0100
+
+lyskom-server (2.1.2-8) unstable; urgency=low
+
+  * Merge fixes from Ubuntu:
+    - debian/rules: Fix bashism, and remove .gz suffix as the files
+      in question are not yet compressed.
+   (Closes: Bug#459184)
+
+ -- Peter Karlsson <peterk@debian.org>  Sat, 05 Jan 2008 16:15:00 +0100
+
+lyskom-server (2.1.2-7) unstable; urgency=low
+
+  * Added Portuguese translation of Debconf templates.
+   (Closes: Bug#433040)
+  * Added support for DEB_BUILD_OPTIONS.
+
+ -- Peter Karlsson <peterk@debian.org>  Thu, 23 Aug 2007 12:45:00 +0100
+
+lyskom-server (2.1.2-6.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Only run deluser if it's available in lyskom-server.postrm (Closes:
+    #431528).
+
+ -- Mario Iseli <mario@debian.org>  Wed, 08 Aug 2007 14:51:56 +0200
+
+lyskom-server (2.1.2-6) unstable; urgency=low
+
+  * Modernize debhelper usage and updated to latest policy.
+  * Added Spanish translation of Debconf templates.
+   (Closes: Bug#419223)
+  * Updated init.d script to include LSB info block.
+
+ -- Peter Karlsson <peterk@debian.org>  Sat, 19 May 2007 22:30:00 +0100
+
+lyskom-server (2.1.2-5) unstable; urgency=low
+
+  * Modified debconf dependency to also list debconf-2.0).
+   (Closes: Bug#332014)
+  * Updated config.sub and config.guess.
+   (Closes: Bug#333592)
+
+ -- Peter Karlsson <peterk@debian.org>  Tue, 18 Oct 2005 19:30:00 +0100
+
+lyskom-server (2.1.2-4) unstable; urgency=low
+
+  * Added Vietnamese translation of Debconf templates.
+   (Closes: Bug#312642)
+  * Fixed various lintian errors and warnings.
+
+ -- Peter Karlsson <peterk@debian.org>  Sun, 31 Jul 2005 21:20:00 +0100
+
+lyskom-server (2.1.2-3) unstable; urgency=low
+
+  * Added Czech translation of Debconf templates.
+   (Closes: Bug#289283)
+
+ -- Peter Karlsson <peterk@debian.org>  Mon, 10 Jan 2005 18:00:00 +0100
+
+lyskom-server (2.1.2-2) unstable; urgency=low
+
+  * Remove redundant set of info control files
+   (Closes: Bug#214742)
+
+ -- Peter Karlsson <peterk@debian.org>  Fri, 17 Oct 2003 21:45:00 +0100
+
+lyskom-server (2.1.2-1) unstable; urgency=low
+
+  * New upstream release:
+   - IPv6 support.
+   - Idle clients are now disconnected.
+   - Avoid reusing text, person and conference numbers after a crash.
+   - Protocol changes and extensions.
+   - Configuration file name has changed to /etc/lyskom-server/lyskomd.conf
+    (For more information, see upstream NEWS file)
+  * Changed location of some binaries to match new upstream locations.
+  * Added Dutch translation of Debconf templates.
+   (Closes: Bug#210815)
+
+ -- Peter Karlsson <peterk@debian.org>  Sat, 27 Sep 2003 16:45:00 +0100
+
+lyskom-server (2.0.7-3) unstable; urgency=medium
+
+  * Added Brazilian Portuguese and French translation of Debconf templates.
+   (Closes: Bug#198364, #200360)
+  * Removed annoying use of a debconf note and put the relevant information
+    in the README.Debian file instead.
+
+ -- Peter Karlsson <peterk@debian.org>  Sun, 13 Jul 2003 14:30:00 +0100
+
+lyskom-server (2.0.7-2) unstable; urgency=medium
+
+  * Applied upstream patch to protect against denial of service problem
+    found by Calle Dybedahl.
+  * Converted Debconf templates to use PO format for translations.
+
+ -- Peter Karlsson <peterk@debian.org>  Mon, 26 May 2003 18:15:00 +0100
+
+lyskom-server (2.0.7-1) unstable; urgency=low
+
+  * New upstream release:
+   - Broadcasts a message if server fails to save the database.
+   - Enhanced documentation.
+   - Various bugfixes.
+    (For more information, see upstream NEWS file)
+
+ -- Peter Karlsson <peterk@debian.org>  Tue,  5 Nov 2002 21:20:00 +0100
+
+lyskom-server (2.0.6-1woody1) stable-security; urgency=high
+
+  * Non-maintainer upload by the Security Team
+  * Apply upstream patch to fix denial of service
+    (lyskom-server-2.0.7-find-next-text-DoS.patch)
+
+ -- Matt Zimmerman <mdz@debian.org>  Tue, 13 May 2003 23:53:17 -0400
+
+lyskom-server (2.0.6-1) unstable; urgency=low
+
+  * New upstream release:
+   - New and modified aux-items.
+   - Enhanced documentation.
+   - Various bugfixes (Closes: Bug#130406).
+    (For more information, see upstream NEWS file)
+
+ -- peter karlsson <peterk@debian.org>  Tue, 02 Apr 2002 19:00:00 +0100
+
+lyskom-server (2.0.5-3) unstable; urgency=low
+
+  * Added German debconf templates, thanks to Sebastian Feltel.
+   (Closes: Bug#118045)
+  * Removed unnecessary debconf note that would probably just annoy people
+    installing many packages at once.
+  * Fixed /etc/cron.d/lyskom-server file so that the updateLysKOM will
+    actually be run (but it is still deactivated by default).
+  * Fixed spelling error in the Swedish templates.
+
+ -- peter karlsson <peterk@debian.org>  Fri, 09 Nov 2001 19:15:00 +0100
+
+lyskom-server (2.0.5-2) unstable; urgency=low
+
+  * Moved configuration out of init script to /etc/default/lyskom-server
+    to comply with Debian policy.
+
+ -- peter karlsson <peterk@debian.org>  Wed, 31 Oct 2001 21:30:00 +0100
+
+lyskom-server (2.0.5-1) unstable; urgency=low
+
+  * Initial Release.
+   (Closes: ITP #114231)
+
+ -- peter karlsson <peterk@debian.org>  Thu, 11 Oct 2001 23:15:00 +0200
--- lyskom-server-2.1.2.orig/debian/lyskom-server.init.d
+++ lyskom-server-2.1.2/debian/lyskom-server.init.d
@@ -0,0 +1,63 @@
+#! /bin/sh
+#
+# /etc/init.d/lyskom-server: start and stop the LysKOM server
+# See below for information on how to enable.
+#
+### BEGIN INIT INFO
+# Provides:          lyskom-server
+# Required-Start:    $syslog, $network, $time
+# Required-Stop:     $syslog, $network, $time
+# Should-Start:      $local_fs
+# Should-Stop:       $local_fs
+# Default-Start:     2 3 4 5
+# Default-Stop:      0 1 6
+# Short-Description: Start and stop the LysKOM server
+# Description:       Used to start and stop the LysKOM server.
+#                    Automatic start is by default disabled, edit
+#                    /etc/default/lyskom-server to enable automatic
+#                    start through this script.
+### END INIT INFO
+
+PATH=/sbin:/bin:/usr/sbin:/usr/bin
+
+if [ -f  /etc/default/lyskom-server ]; then
+  . /etc/default/lyskom-server
+fi
+
+test -x /usr/sbin/komrunning || exit 0
+
+case "$1" in
+  start)
+    if test "$startonboot" = "NO"; then
+      echo "Automatic start of the LysKOM server from /etc/init.d is disabled."
+    else
+      sh $0 force-start
+    fi
+    ;;
+
+  force-start)
+    echo -n "Signalling start of LysKOM server"
+    mkdir -p /var/run/lyskom-server
+    /usr/sbin/komrunning start
+    echo "."
+    ;;
+
+  stop)
+    echo -n "Stopping LysKOM server"
+    /usr/sbin/komrunning stop
+    rm -f /var/run/lyskom-server/pid
+    rm -f /var/run/lyskom-server/status
+    echo "."
+    ;;
+
+  restart|force-reload)
+    sh $0 stop
+    sh $0 force-start
+    ;;
+
+  *)
+    echo "Usage: /etc/init.d/lyskom-server {start|force-start|stop|restart}"
+    ;;
+esac
+
+exit 0
--- lyskom-server-2.1.2.orig/debian/lyskom-server.logrotate
+++ lyskom-server-2.1.2/debian/lyskom-server.logrotate
@@ -0,0 +1,9 @@
+/var/log/lyskom-server/server-log {
+	rotate 4
+	weekly
+	delaycompress
+	compress
+	nocreate
+	missingok
+	notifempty
+}
--- lyskom-server-2.1.2.orig/debian/lyskom-server.docs
+++ lyskom-server-2.1.2/debian/lyskom-server.docs
@@ -0,0 +1,4 @@
+NEWS
+README
+TODO
+doc/IDEAS
--- lyskom-server-2.1.2.orig/debian/lyskom-server.info
+++ lyskom-server-2.1.2/debian/lyskom-server.info
@@ -0,0 +1,11 @@
+doc/protocol-a.info
+doc/lyskomd.info-1
+doc/lyskomd.info-2
+doc/protocol-a.info-1
+doc/protocol-a.info-2
+doc/protocol-a.info-3
+doc/protocol-a.info-4
+doc/protocol-a.info-5
+doc/protocol-a.info-6
+doc/protocol-a.info-7
+doc/lyskomd.info
--- lyskom-server-2.1.2.orig/debian/lyskom-server.preinst
+++ lyskom-server-2.1.2/debian/lyskom-server.preinst
@@ -0,0 +1,19 @@
+#! /bin/sh -e
+# preinst script for lyskom-server
+
+# Versions up to 2.0 used "config" as its configuration file, whereas
+# 2.1 uses "lyskomd.conf"
+
+case "$1" in
+  upgrade|install)
+    if dpkg --compare-versions "$2" le "2.1.0-1"; then
+      # If old configuration file exists, and new does not, move it
+      if test -e /etc/lyskom-server/config -a ! -e /etc/lyskom/server/lyskomd.conf; then
+        echo 'Renaming /etc/lyskom-server/config to lyskomd.conf' 1>&2
+        mv -f /etc/lyskom-server/config /etc/lyskom-server/lyskomd.conf
+      fi
+    fi
+  ;;
+esac
+
+#DEBHELPER#
--- lyskom-server-2.1.2.orig/debian/lyskom-server.README.Debian
+++ lyskom-server-2.1.2/debian/lyskom-server.README.Debian
@@ -0,0 +1,14 @@
+LysKOM server for Debian
+------------------------
+
+Please note that the default paths for a number of the included files have
+been moved compared to what is documented in the LysKOM manual. All paths
+have been modified to comply with the FHS. Please see the configuration file
+/etc/lyskom-server/lyskomd.conf for a list of moved files.
+
+Also note that the server is not automatically started after install or on
+boot, since the administrator account is initalized with a default password
+of "gazonk" on the initial install. You will need to manually activate the
+server in the files /etc/cron.d/lyskom-server and /etc/default/lyskom-server
+
+ -- Peter Krefting <peterk@debian.org>
--- lyskom-server-2.1.2.orig/debian/lyskom-server.templates
+++ lyskom-server-2.1.2/debian/lyskom-server.templates
@@ -0,0 +1,14 @@
+Template: lyskom-server/language
+Type: select
+_Choices: English, Swedish
+# Do not translate this field. You may change the default value to
+# one of the allowed values, however: "English" or "Swedish".
+_Default: English
+_Description: Select the language of the initial database:
+ The LysKOM server comes with two pre-defined databases, one with English
+ names for conferences and the administrator account, and one in Swedish.
+ Please select the one you want to install on your machine.
+ .
+ The database is only installed once, and when you have installed it you
+ cannot switch. You can, of course, rename the conferences and accounts if
+ you wish.
--- lyskom-server-2.1.2.orig/debian/po/ru.po
+++ lyskom-server-2.1.2/debian/po/ru.po
@@ -0,0 +1,63 @@
+# translation of lyskom-server_2.1.2-10_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 <yuray@komyakino.ru>, 2009.
+msgid ""
+msgstr ""
+"Project-Id-Version: lyskom-server 2.1.2-10\n"
+"Report-Msgid-Bugs-To: peterk@debian.org\n"
+"POT-Creation-Date: 2007-05-19 22:49+0100\n"
+"PO-Revision-Date: 2009-11-30 19:19+0300\n"
+"Last-Translator: Yuri Kozlov <yuray@komyakino.ru>\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: select
+#. Choices
+#: ../lyskom-server.templates:1001
+msgid "English, Swedish"
+msgstr "английский, шведский"
+
+#. Type: select
+#. Default
+#. Do not translate this field. You may change the default value to
+#. one of the allowed values, however: "English" or "Swedish".
+#: ../lyskom-server.templates:1002
+msgid "English"
+msgstr "English"
+
+#. Type: select
+#. Description
+#: ../lyskom-server.templates:1003
+msgid "Select the language of the initial database:"
+msgstr "Язык первоначальной базы данных:"
+
+#. Type: select
+#. Description
+#: ../lyskom-server.templates:1003
+msgid ""
+"The LysKOM server comes with two pre-defined databases, one with English "
+"names for conferences and the administrator account, and one in Swedish. "
+"Please select the one you want to install on your machine."
+msgstr ""
+"Сервер LysKOM содержит две уже настроенные базы данных: с английскими "
+"именами конференций и учётной записью администратора и с шведскими. "
+"Укажите, какую из них вы хотите установить на данную машину."
+
+#. Type: select
+#. Description
+#: ../lyskom-server.templates:1003
+msgid ""
+"The database is only installed once, and when you have installed it you "
+"cannot switch. You can, of course, rename the conferences and accounts if "
+"you wish."
+msgstr ""
+"База данных выбирается только один раз, и после установки этот выбор нельзя "
+"изменить. Конечно же, вы можете переименовать названия конференций и "
+"учётных записей как захотите."
+
--- lyskom-server-2.1.2.orig/debian/po/templates.pot
+++ lyskom-server-2.1.2/debian/po/templates.pot
@@ -0,0 +1,55 @@
+# 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: peterk@debian.org\n"
+"POT-Creation-Date: 2007-05-19 22:49+0100\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: select
+#. Choices
+#: ../lyskom-server.templates:1001
+msgid "English, Swedish"
+msgstr ""
+
+#. Type: select
+#. Default
+#. Do not translate this field. You may change the default value to
+#. one of the allowed values, however: "English" or "Swedish".
+#: ../lyskom-server.templates:1002
+msgid "English"
+msgstr ""
+
+#. Type: select
+#. Description
+#: ../lyskom-server.templates:1003
+msgid "Select the language of the initial database:"
+msgstr ""
+
+#. Type: select
+#. Description
+#: ../lyskom-server.templates:1003
+msgid ""
+"The LysKOM server comes with two pre-defined databases, one with English "
+"names for conferences and the administrator account, and one in Swedish. "
+"Please select the one you want to install on your machine."
+msgstr ""
+
+#. Type: select
+#. Description
+#: ../lyskom-server.templates:1003
+msgid ""
+"The database is only installed once, and when you have installed it you "
+"cannot switch. You can, of course, rename the conferences and accounts if "
+"you wish."
+msgstr ""
--- lyskom-server-2.1.2.orig/debian/po/es.po
+++ lyskom-server-2.1.2/debian/po/es.po
@@ -0,0 +1,83 @@
+# Translation of lyskom-server_2.1.2-5_es.po to Spanish
+# Copyright (C) 2007 THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the lyskom-server package.
+#
+#  Traductores, si no conocen 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>)
+#
+# Enrique Matias Sanchez (aka Quique) <cronopios@gmail.com>, 2007.
+msgid ""
+msgstr ""
+"Project-Id-Version: lyskom-server_2.1.2-5_es\n"
+"Report-Msgid-Bugs-To: peterk@debian.org\n"
+"POT-Creation-Date: 2007-05-19 22:49+0100\n"
+"PO-Revision-Date: 2007-03-19 19:00+0100\n"
+"Last-Translator: Enrique Matias Sanchez (aka Quique) <cronopios@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: select
+#. Choices
+#: ../lyskom-server.templates:1001
+msgid "English, Swedish"
+msgstr "Inglés, Sueco"
+
+#. Type: select
+#. Default
+#. Do not translate this field. You may change the default value to
+#. one of the allowed values, however: "English" or "Swedish".
+#: ../lyskom-server.templates:1002
+msgid "English"
+msgstr "English"
+
+#. Type: select
+#. Description
+#: ../lyskom-server.templates:1003
+msgid "Select the language of the initial database:"
+msgstr "Elija el idioma de la base de datos inicial:"
+
+#. Type: select
+#. Description
+#: ../lyskom-server.templates:1003
+msgid ""
+"The LysKOM server comes with two pre-defined databases, one with English "
+"names for conferences and the administrator account, and one in Swedish. "
+"Please select the one you want to install on your machine."
+msgstr ""
+"El servidor LysKOM viene provisto de dos bases de datos predefinidas. Una "
+"tiene los nombres de las conferencias y la cuenta del administrador en "
+"inglés, y la otra en sueco. Elija la que desee instalar en su máquina."
+
+#. Type: select
+#. Description
+#: ../lyskom-server.templates:1003
+msgid ""
+"The database is only installed once, and when you have installed it you "
+"cannot switch. You can, of course, rename the conferences and accounts if "
+"you wish."
+msgstr ""
+"La base de datos sólo se instala una vez, y no podrá cambiarla una vez "
+"instalada. Por supuesto, puede cambiar si lo desea el nombre de las "
+"conferencias y cuentas. "
--- lyskom-server-2.1.2.orig/debian/po/nl.po
+++ lyskom-server-2.1.2/debian/po/nl.po
@@ -0,0 +1,68 @@
+#
+#    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: lyskom-server 2.0.7-3\n"
+"Report-Msgid-Bugs-To: peterk@debian.org\n"
+"POT-Creation-Date: 2007-05-19 22:49+0100\n"
+"PO-Revision-Date: 2003-09-12 23:41+0100\n"
+"Last-Translator: Tim Vandermeersch <qber66@skolelinux.no>\n"
+"Language-Team: dutch <debian-l10n-dutch@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=iso-8859-1\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: select
+#. Choices
+#: ../lyskom-server.templates:1001
+msgid "English, Swedish"
+msgstr "Engels, Zweeds"
+
+#. Type: select
+#. Default
+#. Do not translate this field. You may change the default value to
+#. one of the allowed values, however: "English" or "Swedish".
+#: ../lyskom-server.templates:1002
+msgid "English"
+msgstr "Engels"
+
+#. Type: select
+#. Description
+#: ../lyskom-server.templates:1003
+msgid "Select the language of the initial database:"
+msgstr "Selecteer de taal van de begin database:"
+
+#. Type: select
+#. Description
+#: ../lyskom-server.templates:1003
+msgid ""
+"The LysKOM server comes with two pre-defined databases, one with English "
+"names for conferences and the administrator account, and one in Swedish. "
+"Please select the one you want to install on your machine."
+msgstr ""
+"De LysKOM server komt met twee vooraf gedefinieerde databases, een met "
+"Engelse namen voor conferenties en de administratie account, en een in het "
+"Zweeds. Selecteer dewelke u wilt installeren op uw machine."
+
+#. Type: select
+#. Description
+#: ../lyskom-server.templates:1003
+msgid ""
+"The database is only installed once, and when you have installed it you "
+"cannot switch. You can, of course, rename the conferences and accounts if "
+"you wish."
+msgstr ""
+"De database wordt slechts eenmaal genstalleerd, en als ze genstalleerd is "
+"kan u niet meer veranderen. U kan wel de conferenties en accounts hernoemen "
+"als u dit wenst."
--- lyskom-server-2.1.2.orig/debian/po/ja.po
+++ lyskom-server-2.1.2/debian/po/ja.po
@@ -0,0 +1,59 @@
+# Copyright (C) 2009 Peter Krefting <peterk@debian.org>
+# This file is distributed under the same license as lyskom-server package.
+# Hideki Yamane (Debian-JP) <henrich@debian.or.jp>, 2009.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: lyskom-server 2.1.2-10\n"
+"Report-Msgid-Bugs-To: peterk@debian.org\n"
+"POT-Creation-Date: 2007-05-19 22:49+0100\n"
+"PO-Revision-Date: 2009-11-11 14:32+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: select
+#. Choices
+#: ../lyskom-server.templates:1001
+msgid "English, Swedish"
+msgstr "英語, スウェーデン語"
+
+#. Type: select
+#. Default
+#. Do not translate this field. You may change the default value to
+#. one of the allowed values, however: "English" or "Swedish".
+#: ../lyskom-server.templates:1002
+msgid "English"
+msgstr "English"
+
+#. Type: select
+#. Description
+#: ../lyskom-server.templates:1003
+msgid "Select the language of the initial database:"
+msgstr "初期データベースの言語を選んでください:"
+
+#. Type: select
+#. Description
+#: ../lyskom-server.templates:1003
+msgid ""
+"The LysKOM server comes with two pre-defined databases, one with English "
+"names for conferences and the administrator account, and one in Swedish. "
+"Please select the one you want to install on your machine."
+msgstr ""
+"LysKOM サーバは二つの定義済みデータベースから成ります。一つは会議名と管理者"
+"アカウント名が英語のもの、そしてもう一つがスウェーデン語のものです。マシンに"
+"インストールしたい方を選んでください。"
+
+#. Type: select
+#. Description
+#: ../lyskom-server.templates:1003
+msgid ""
+"The database is only installed once, and when you have installed it you "
+"cannot switch. You can, of course, rename the conferences and accounts if "
+"you wish."
+msgstr ""
+"データベースは一度だけインストールされ、インストールしたら変更できません。"
+"もちろん、お望みなら会議名とアカウント名を変更することはできます。"
+
--- lyskom-server-2.1.2.orig/debian/po/de.po
+++ lyskom-server-2.1.2/debian/po/de.po
@@ -0,0 +1,99 @@
+#
+#    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: lyskom-server 2.0.7\n"
+"Report-Msgid-Bugs-To: peterk@debian.org\n"
+"POT-Creation-Date: 2007-05-19 22:49+0100\n"
+"PO-Revision-Date: 2002-11-02 12:45+0100\n"
+"Last-Translator: Sebastian Feltel <sebastian@feltel.de>\n"
+"Language-Team: German <de@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=ISO-8859-1\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: select
+#. Choices
+#: ../lyskom-server.templates:1001
+msgid "English, Swedish"
+msgstr "Englisch, Schwedisch"
+
+#. Type: select
+#. Default
+#. Do not translate this field. You may change the default value to
+#. one of the allowed values, however: "English" or "Swedish".
+#: ../lyskom-server.templates:1002
+msgid "English"
+msgstr "English"
+
+#. Type: select
+#. Description
+#: ../lyskom-server.templates:1003
+msgid "Select the language of the initial database:"
+msgstr "Whlen Sie die Sprache der Anfangsdatenbank:"
+
+#. Type: select
+#. Description
+#: ../lyskom-server.templates:1003
+msgid ""
+"The LysKOM server comes with two pre-defined databases, one with English "
+"names for conferences and the administrator account, and one in Swedish. "
+"Please select the one you want to install on your machine."
+msgstr ""
+"Der LysKOM-Server wird mit zwei vordefinierten Datenbanken, einer mit "
+"englischen Namen fr Konferenzen und den Administrator-Account und einer "
+"Schwedischsprachigen installiert. Bitte whlen Sie eine Datenbank zur "
+"Installation aus."
+
+#. Type: select
+#. Description
+#: ../lyskom-server.templates:1003
+msgid ""
+"The database is only installed once, and when you have installed it you "
+"cannot switch. You can, of course, rename the conferences and accounts if "
+"you wish."
+msgstr ""
+"Die Datenbank wird nur einmal installiert. Wenn die Datenbank installiert "
+"ist knnen Sie nicht zu einer anderen wechseln. Sie knnen natrlich, wenn "
+"Sie mchten, die Konferenzen und den Administrator-Account umbenennen."
+
+#~ msgid "Not enabled by default"
+#~ msgstr "Standardmig nicht aktiviert"
+
+#~ msgid ""
+#~ "Please note that the initial LysKOM database contains a default "
+#~ "administrator account called \"Administrator (for) LysKOM\" with the "
+#~ "password \"gazonk\". To ensure no-one logs in before you are ready, the "
+#~ "server is not started automatically on the first install."
+#~ msgstr ""
+#~ "Bitte achten Sie darauf, das die anfngliche LysKOM-Datenbank einen "
+#~ "Standard-Administrator-Account \"Administrator (for) LysKOM\" mit dem "
+#~ "Kennwort \"gazonk\" enthlt. Um sicherzustellen, das sich niemand "
+#~ "anmeldet bevor alles fertiggestellt ist wird der Server nach der "
+#~ "Installation nicht automatisch gestartet."
+
+#~ msgid ""
+#~ "Please activiate the server manually by running updateLysKOM, log in "
+#~ "using the admininstrator account and change the password. Then activate "
+#~ "the cron entry in the /etc/cron.d/lyskom-server file, and if you wish the "
+#~ "server to start on boot, the /etc/default/lyskom-server file. If you do "
+#~ "not wish to start the server automatically on every boot, you need to run "
+#~ "updateLysKOM manually after each reboot."
+#~ msgstr ""
+#~ "Bitte aktivieren Sie den Server manuell. Starten Sie dazu udateLysKOM, "
+#~ "melden Sie sich als Administrator an und ndern Sie das Kennwort. "
+#~ "Aktivieren Sie danach die cron-Datei /etc/init.d/lyskom-server und die "
+#~ "Startdatei /etc/default/lyskom-server. Wenn Sie den LysKOM-Server nicht "
+#~ "automatisch starten lassen wollen, dann mssen Sie nach jedem "
+#~ "Rechnerstart updateLysKOM ausfhren."
--- lyskom-server-2.1.2.orig/debian/po/pt.po
+++ lyskom-server-2.1.2/debian/po/pt.po
@@ -0,0 +1,62 @@
+# translation of lyskom-server to Portuguese
+# Copyright (C) 2007 Américo Monteiro
+# This file is distributed under the same license as the lyskom-server package.
+#
+# Américo Monteiro <a_monteiro@netcabo.pt>, 2007.
+msgid ""
+msgstr ""
+"Project-Id-Version: lyskom-server_2.1.2-6_templates\n"
+"Report-Msgid-Bugs-To: peterk@debian.org\n"
+"POT-Creation-Date: 2007-05-19 22:49+0100\n"
+"PO-Revision-Date: 2007-07-13 18:54+0100\n"
+"Last-Translator: Américo Monteiro <a_monteiro@netcabo.pt>\n"
+"Language-Team: Portuguese <traduz@debianpt.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: select
+#. Choices
+#: ../lyskom-server.templates:1001
+msgid "English, Swedish"
+msgstr "Inglês, Sueco"
+
+#. Type: select
+#. Default
+#. Do not translate this field. You may change the default value to
+#. one of the allowed values, however: "English" or "Swedish".
+#: ../lyskom-server.templates:1002
+msgid "English"
+msgstr "English"
+
+#. Type: select
+#. Description
+#: ../lyskom-server.templates:1003
+msgid "Select the language of the initial database:"
+msgstr "Seleccione a linguagem da base de dados inicial:"
+
+#. Type: select
+#. Description
+#: ../lyskom-server.templates:1003
+msgid ""
+"The LysKOM server comes with two pre-defined databases, one with English "
+"names for conferences and the administrator account, and one in Swedish. "
+"Please select the one you want to install on your machine."
+msgstr ""
+"Este servidor LysKOM vem com duas bases de dados pré-definidas, uma com "
+"nomes Ingleses para conferências e conta de administrador, e uma em Sueco. "
+"Por favor seleccione aquela que quer instalar na sua máquina."
+
+#. Type: select
+#. Description
+#: ../lyskom-server.templates:1003
+msgid ""
+"The database is only installed once, and when you have installed it you "
+"cannot switch. You can, of course, rename the conferences and accounts if "
+"you wish."
+msgstr ""
+"Esta base de dados é instalada apenas uma vez, e depois de instalada "
+"você não pode mudar. Você pode, claro, renomear as conferências e contas "
+"se desejar."
+
--- lyskom-server-2.1.2.orig/debian/po/pt_BR.po
+++ lyskom-server-2.1.2/debian/po/pt_BR.po
@@ -0,0 +1,98 @@
+#
+#    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: lyskom-server_2.0.7-2\n"
+"Report-Msgid-Bugs-To: peterk@debian.org\n"
+"POT-Creation-Date: 2007-05-19 22:49+0100\n"
+"PO-Revision-Date: 2003-06-21 21:04-0300\n"
+"Last-Translator: Andr Lus Lopes <andrelop@debian.org>\n"
+"Language-Team: Debian-BR Project <debian-l10n-portuguese@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=ISO-8859-1\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: select
+#. Choices
+#: ../lyskom-server.templates:1001
+msgid "English, Swedish"
+msgstr "Ingls, Sueco"
+
+#. Type: select
+#. Default
+#. Do not translate this field. You may change the default value to
+#. one of the allowed values, however: "English" or "Swedish".
+#: ../lyskom-server.templates:1002
+msgid "English"
+msgstr "English"
+
+#. Type: select
+#. Description
+#: ../lyskom-server.templates:1003
+msgid "Select the language of the initial database:"
+msgstr "Selecione o idioma da base de dados inicial:"
+
+#. Type: select
+#. Description
+#: ../lyskom-server.templates:1003
+msgid ""
+"The LysKOM server comes with two pre-defined databases, one with English "
+"names for conferences and the administrator account, and one in Swedish. "
+"Please select the one you want to install on your machine."
+msgstr ""
+"O servidor LysKOM  fornecido com duas bases de dados pr-definidas : uma "
+"com nomes em Ingls para conferncias e conta de administrador e uma em "
+"Sueco. Por favor selecione aquela que voc gostaria de instalar em seu "
+"computador."
+
+#. Type: select
+#. Description
+#: ../lyskom-server.templates:1003
+msgid ""
+"The database is only installed once, and when you have installed it you "
+"cannot switch. You can, of course, rename the conferences and accounts if "
+"you wish."
+msgstr ""
+"A base de dados  instalada somente uma nica vez e quando voc a tiver "
+"instalado voc no poder mudar. Voc pode,  claro, renomear as "
+"confernciase contas caso voc deseje."
+
+#~ msgid ""
+#~ "Please note that the initial LysKOM database contains a default "
+#~ "administrator account called \"Administrator (for) LysKOM\" with the "
+#~ "password \"gazonk\". To ensure no-one logs in before you are ready, the "
+#~ "server is not started automatically on the first install."
+#~ msgstr ""
+#~ "Por favor note que a base de dados LysKOM inicial contm uma conta de "
+#~ "administrador padro chamada \"Administrator (for) LysKOM\" com  senha "
+#~ "\"gazonk\". Para certificar-se de que ningum se autentique antes que "
+#~ "voc esteja preparado, o servidor no  iniciado automaticamente na "
+#~ "primeira instalao."
+
+#~ msgid ""
+#~ "Please activiate the server manually by running updateLysKOM, log in "
+#~ "using the admininstrator account and change the password. Then activate "
+#~ "the cron entry in the /etc/cron.d/lyskom-server file, and if you wish the "
+#~ "server to start on boot, the /etc/default/lyskom-server file. If you do "
+#~ "not wish to start the server automatically on every boot, you need to run "
+#~ "updateLysKOM manually after each reboot."
+#~ msgstr ""
+#~ "Por favor ative a servidor manualmente executando o comando updateLysKOM, "
+#~ "autentique-se usando a conte de administrador e mude a senha padro. Aps "
+#~ "isso ative a entrada de job cron no arquivo /etc/cron.d/lyskom-server e, "
+#~ "caso voc deseje que o servidor inicie na inicializao de seu "
+#~ "computador, ative o mesmo no arquivo /etc/default/lyskom-server. Caso "
+#~ "voc no deseje iniciar o servidor automaticamente em cada inicializao "
+#~ "voc precisar executar o comando updateLysKOM manualment aps cada "
+#~ "inicializao de seu computador."
--- lyskom-server-2.1.2.orig/debian/po/fr.po
+++ lyskom-server-2.1.2/debian/po/fr.po
@@ -0,0 +1,101 @@
+#
+#    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: lyskom-server 2.0.7-2\n"
+"Report-Msgid-Bugs-To: peterk@debian.org\n"
+"POT-Creation-Date: 2007-05-19 22:49+0100\n"
+"PO-Revision-Date: 2003-06-30 08:45+0200\n"
+"Last-Translator: Christian Perrier <bubulle@debian.org>\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: select
+#. Choices
+#: ../lyskom-server.templates:1001
+msgid "English, Swedish"
+msgstr "Anglais, Sudois"
+
+#. Type: select
+#. Default
+#. Do not translate this field. You may change the default value to
+#. one of the allowed values, however: "English" or "Swedish".
+#: ../lyskom-server.templates:1002
+msgid "English"
+msgstr "English"
+
+#. Type: select
+#. Description
+#: ../lyskom-server.templates:1003
+msgid "Select the language of the initial database:"
+msgstr "Veuillez choisir la langue de la base de donnes initiale:"
+
+#. Type: select
+#. Description
+#: ../lyskom-server.templates:1003
+msgid ""
+"The LysKOM server comes with two pre-defined databases, one with English "
+"names for conferences and the administrator account, and one in Swedish. "
+"Please select the one you want to install on your machine."
+msgstr ""
+"Le serveur LysKOM est fourni avec deux bases de donnes prdfinies. L'une "
+"d'entre elles comporte des noms anglais pour les confrences et le nom de "
+"l'administrateur, et l'autre des noms en sudois. Veuillez choisir celle que "
+"vous souhaitez installer sur votre systme."
+
+#. Type: select
+#. Description
+#: ../lyskom-server.templates:1003
+msgid ""
+"The database is only installed once, and when you have installed it you "
+"cannot switch. You can, of course, rename the conferences and accounts if "
+"you wish."
+msgstr ""
+"La base de donnes n'est installe qu'une fois. Une fois cette opration "
+"effectue, il n'est pas possible d'en changer. Vous pouvez bien entendu "
+"ensuite renommer les confrences et les comptes, si vous le souhaitez."
+
+#~ msgid "Not enabled by default"
+#~ msgstr "Dsactiv par dfaut"
+
+#~ msgid ""
+#~ "Please note that the initial LysKOM database contains a default "
+#~ "administrator account called \"Administrator (for) LysKOM\" with the "
+#~ "password \"gazonk\". To ensure no-one logs in before you are ready, the "
+#~ "server is not started automatically on the first install."
+#~ msgstr ""
+#~ "Veuillez noter que la base de donnes initiale du serveur LysKOM comporte "
+#~ "un compte d'administration appel Administrator (for) LysKOM, dont le "
+#~ "mot de passe est gazonk. Afin d'tre certain que personne ne puisse "
+#~ "se connecter avant que vous ne soyez prt, le serveur n'est pas dmarr "
+#~ "automatiquement  la premire installation."
+
+#~ msgid ""
+#~ "Please activiate the server manually by running updateLysKOM, log in "
+#~ "using the admininstrator account and change the password. Then activate "
+#~ "the cron entry in the /etc/cron.d/lyskom-server file, and if you wish the "
+#~ "server to start on boot, the /etc/default/lyskom-server file. If you do "
+#~ "not wish to start the server automatically on every boot, you need to run "
+#~ "updateLysKOM manually after each reboot."
+#~ msgstr ""
+#~ "Veuillez dmarrer le serveur vous-mme avec la commande updateLysKOM, "
+#~ "puis connectez-vous avec le compte d'administration et changez le mot de "
+#~ "passe. Ensuite, activez la tche de cron dans le fichier /etc/cron.d/"
+#~ "lyskom-server, puis, si vous souhaitez que le serveur soit lanc au "
+#~ "dmarrage, modifiez le fichier /etc/default/lyskom-server. Si vous ne "
+#~ "souhaitez pas lancer le serveur automatiquement  chaque dmarrage, vous "
+#~ "devrez alors utiliser la commande updateLysKOM vous-mme aprs chaque "
+#~ "redmarrage du systme."
--- lyskom-server-2.1.2.orig/debian/po/sv.po
+++ lyskom-server-2.1.2/debian/po/sv.po
@@ -0,0 +1,98 @@
+#
+#    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: lyskom-server 2.0.7\n"
+"Report-Msgid-Bugs-To: peterk@debian.org\n"
+"POT-Creation-Date: 2007-05-19 22:49+0100\n"
+"PO-Revision-Date: 2003-07-13 14:37+0100\n"
+"Last-Translator: Peter Karlsson <peterk@debian.org>\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"
+
+#. Type: select
+#. Choices
+#: ../lyskom-server.templates:1001
+msgid "English, Swedish"
+msgstr "engelska, svenska"
+
+#. Type: select
+#. Default
+#. Do not translate this field. You may change the default value to
+#. one of the allowed values, however: "English" or "Swedish".
+#: ../lyskom-server.templates:1002
+msgid "English"
+msgstr "Swedish"
+
+#. Type: select
+#. Description
+#: ../lyskom-server.templates:1003
+msgid "Select the language of the initial database:"
+msgstr "Vlj sprk fr ursprunglig databas:"
+
+#. Type: select
+#. Description
+#: ../lyskom-server.templates:1003
+msgid ""
+"The LysKOM server comes with two pre-defined databases, one with English "
+"names for conferences and the administrator account, and one in Swedish. "
+"Please select the one you want to install on your machine."
+msgstr ""
+"Med LysKOM-servern medfljer tv frdefinierade databaser, en med svenska "
+"namn p mten och administratrskontot, och en med engelska. Vlj vilken du "
+"nskar installera p din maskin."
+
+#. Type: select
+#. Description
+#: ../lyskom-server.templates:1003
+msgid ""
+"The database is only installed once, and when you have installed it you "
+"cannot switch. You can, of course, rename the conferences and accounts if "
+"you wish."
+msgstr ""
+"Databasen installeras endast en gng, och nr du vl har installerat den kan "
+"du inte byta. Dremot kan du naturligtvis byta namn p mten och konton om "
+"du s nskar."
+
+#~ msgid "Not enabled by default"
+#~ msgstr "Ej aktiverad som frval"
+
+#~ msgid ""
+#~ "Please note that the initial LysKOM database contains a default "
+#~ "administrator account called \"Administrator (for) LysKOM\" with the "
+#~ "password \"gazonk\". To ensure no-one logs in before you are ready, the "
+#~ "server is not started automatically on the first install."
+#~ msgstr ""
+#~ "Notera att den ursprungliga LysKOM-databasen innehller ett frinstllt "
+#~ "administratrskonto vid namn \"Administratr (fr) LysKOM\" med det "
+#~ "frdefinierade lsenordet \"gazonk\". Fr att skerstlla att ingen "
+#~ "loggar in innan du r redo startas inte servern automatiskt vid den "
+#~ "frsta installationen."
+
+#~ msgid ""
+#~ "Please activiate the server manually by running updateLysKOM, log in "
+#~ "using the admininstrator account and change the password. Then activate "
+#~ "the cron entry in the /etc/cron.d/lyskom-server file, and if you wish the "
+#~ "server to start on boot, the /etc/default/lyskom-server file. If you do "
+#~ "not wish to start the server automatically on every boot, you need to run "
+#~ "updateLysKOM manually after each reboot."
+#~ msgstr ""
+#~ "Aktivera servern manuellt genom att kra updateLysKOM, logga in med "
+#~ "administratrskontot och ndra lsenordet. Aktivera sedan cron-"
+#~ "instllningen i filen /etc/cron.d/lyskom-server, samt, om du nskar att "
+#~ "servern skall starta automatiskt nr systemet startar, filen /etc/default/"
+#~ "lyskom-server. Om du inte vill starta servern automatiskt vid start av "
+#~ "maskinen mste du kra updateLysKOM manuellt efter varje omstart."
--- lyskom-server-2.1.2.orig/debian/po/vi.po
+++ lyskom-server-2.1.2/debian/po/vi.po
@@ -0,0 +1,60 @@
+# Vietnamese Translation for lyskom-server.
+# Copyright © 2005 Free Software Foundation, Inc.
+# Clytie Siddall <clytie@riverland.net.au>, 2005.
+# 
+msgid ""
+msgstr ""
+"Project-Id-Version: lyskom-server 2.1.2-3\n"
+"Report-Msgid-Bugs-To: peterk@debian.org\n"
+"POT-Creation-Date: 2007-05-19 22:49+0100\n"
+"PO-Revision-Date: 2005-06-09 20:41+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"
+
+#. Type: select
+#. Choices
+#: ../lyskom-server.templates:1001
+msgid "English, Swedish"
+msgstr "Tiếng Anh, tiếng Thụy-điển"
+
+#. Type: select
+#. Default
+#. Do not translate this field. You may change the default value to
+#. one of the allowed values, however: "English" or "Swedish".
+#: ../lyskom-server.templates:1002
+msgid "English"
+msgstr "English"
+
+#. Type: select
+#. Description
+#: ../lyskom-server.templates:1003
+msgid "Select the language of the initial database:"
+msgstr "Hãy chọn ngôn ngữ của cơ sở dữ liệu ban đầu:"
+
+#. Type: select
+#. Description
+#: ../lyskom-server.templates:1003
+msgid ""
+"The LysKOM server comes with two pre-defined databases, one with English "
+"names for conferences and the administrator account, and one in Swedish. "
+"Please select the one you want to install on your machine."
+msgstr ""
+"Trình phục vụ LysKOM có sẵn hai cơ sở dữ liệu được định nghĩa trước, một "
+"điều có tên tiếng Anh cho hội thảo và tài khoản quản trị, và một điều bằng "
+"tiếng Thụy-điển. Hãy chọn điều nào bạn muốn cài đặt trên máy này."
+
+#. Type: select
+#. Description
+#: ../lyskom-server.templates:1003
+msgid ""
+"The database is only installed once, and when you have installed it you "
+"cannot switch. You can, of course, rename the conferences and accounts if "
+"you wish."
+msgstr ""
+"Chỉ có thể cài đặt cơ sở dữ liệu này một lần thôi. Không thể chuyển đổi một "
+"khi đã cài đặt. Tuy nhiên, bạn có thể thay đổi tên của hội thảo và tài khoản "
+"nếu bạn muốn."
--- lyskom-server-2.1.2.orig/debian/po/cs.po
+++ lyskom-server-2.1.2/debian/po/cs.po
@@ -0,0 +1,67 @@
+#
+#    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: lyskom-server\n"
+"Report-Msgid-Bugs-To: peterk@debian.org\n"
+"POT-Creation-Date: 2007-05-19 22:49+0100\n"
+"PO-Revision-Date: 2005-01-03 18:58+0100\n"
+"Last-Translator: Miroslav Kure <kurem@debian.cz>\n"
+"Language-Team: Czech <provoz@debian.cz>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=ISO-8859-2\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: select
+#. Choices
+#: ../lyskom-server.templates:1001
+msgid "English, Swedish"
+msgstr "anglitina, vdtina"
+
+#. Type: select
+#. Default
+#. Do not translate this field. You may change the default value to
+#. one of the allowed values, however: "English" or "Swedish".
+#: ../lyskom-server.templates:1002
+msgid "English"
+msgstr "English"
+
+#. Type: select
+#. Description
+#: ../lyskom-server.templates:1003
+msgid "Select the language of the initial database:"
+msgstr "Vyberte jazyk vodn databze:"
+
+#. Type: select
+#. Description
+#: ../lyskom-server.templates:1003
+msgid ""
+"The LysKOM server comes with two pre-defined databases, one with English "
+"names for conferences and the administrator account, and one in Swedish. "
+"Please select the one you want to install on your machine."
+msgstr ""
+"Server LysKOM je dodvn se dvma pipravenmi databzemi. Jedna obsahuje "
+"anglick nzvy konferenc a administrtorskho tu, druh vdsk. Vyberte "
+"jazyk, kter se m nainstalovat na tento pota."
+
+#. Type: select
+#. Description
+#: ../lyskom-server.templates:1003
+msgid ""
+"The database is only installed once, and when you have installed it you "
+"cannot switch. You can, of course, rename the conferences and accounts if "
+"you wish."
+msgstr ""
+"Databze se instaluje pouze jednou a po instalaci ji nemete zmnit. Pokud "
+"vak budete chtt, mete samozejm konference a ty pejmenovat."
--- lyskom-server-2.1.2.orig/debian/po/POTFILES.in
+++ lyskom-server-2.1.2/debian/po/POTFILES.in
@@ -0,0 +1 @@
+[type: gettext/rfc822deb] lyskom-server.templates
