--- mumble-1.2.3-87-gf7d8711.orig/debian/mumble.gconf-defaults +++ mumble-1.2.3-87-gf7d8711/debian/mumble.gconf-defaults @@ -0,0 +1,3 @@ +/desktop/gnome/url-handlers/mumble/command "mumble %s" +/desktop/gnome/url-handlers/mumble/needs_terminal false +/desktop/gnome/url-handlers/mumble/enabled true --- mumble-1.2.3-87-gf7d8711.orig/debian/mumble.menu +++ mumble-1.2.3-87-gf7d8711/debian/mumble.menu @@ -0,0 +1,4 @@ +?package(mumble):needs="X11" section="Applications/Network/Communication"\ + title="Mumble"\ + description="Mumble voice chat client."\ + command="/usr/bin/mumble" icon="/usr/share/pixmaps/mumble.xpm" --- mumble-1.2.3-87-gf7d8711.orig/debian/mumble-server.default +++ mumble-1.2.3-87-gf7d8711/debian/mumble-server.default @@ -0,0 +1,13 @@ +# 0 = don't start, 1 = start +MURMUR_DAEMON_START=1 + +# 0 = don't use capabilities, 1 = start process as root and drop to non-privileged user +# If started as root, mumble will keep the CAP_NET_ADMIN privilege and drop +# all others. This allows it to set high-priority TOS on outgoing IP packets. +MURMUR_USE_CAPABILITIES=0 + +# This controls how many file descriptors the murmur process can open. +# As a rule of thumb, you should have about 20 descriptors per virtaul +# server and one for each client. So 30 servers with 20 clients each would +# need at least 720 descriptors (30 * 4 + 30 * 20). +# MURMUR_LIMIT_NOFILE=65536 --- mumble-1.2.3-87-gf7d8711.orig/debian/mumble-server.dirs +++ mumble-1.2.3-87-gf7d8711/debian/mumble-server.dirs @@ -0,0 +1 @@ +var/log/mumble-server --- mumble-1.2.3-87-gf7d8711.orig/debian/mumble-server.preinst +++ mumble-1.2.3-87-gf7d8711/debian/mumble-server.preinst @@ -0,0 +1,17 @@ +#! /bin/sh +# preinst script for mumble-server + +set -e + +if [ -f /etc/mumble-server/mumble-server.ini ] ; then + if [ ! -f /etc/mumble-server.ini ] ; then + echo "Moving /etc/mumble-server/mumble-server.ini to /etc/mumble-server.ini.." + mv /etc/mumble-server/mumble-server.ini /etc/mumble-server.ini + rmdir --ignore-fail-on-non-empty /etc/mumble-server/ + echo "Done." + fi +fi + +#DEBHELPER# + +exit 0 --- mumble-1.2.3-87-gf7d8711.orig/debian/rules +++ mumble-1.2.3-87-gf7d8711/debian/rules @@ -0,0 +1,126 @@ +#!/usr/bin/make -f + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +include /usr/share/quilt/quilt.make + +MAKEFILE = $(firstword $(MAKEFILE_LIST)) +SOURCE_DIR = $(dir $(MAKEFILE)).. +VERSION := $(shell dpkg-parsechangelog -l$(dir $(MAKEFILE))changelog | sed -ne 's/^Version: \(.*\)-.*/\1/p') +MUMBLE_DEB_VERSION := $(shell dpkg-parsechangelog -l$(dir $(MAKEFILE))changelog | sed -ne 's/^Version: \(.*\).*/\1/p') + +export DH_OPTIONS + +configure: configure-stamp +configure-stamp: patch + echo $(DEB_BUILD_ARCH) + dh_testdir + qmake-qt4 -recursive main.pro \ + CONFIG*=release \ + CONFIG*=symbols \ + CONFIG*=no-embed-qt-translations \ + CONFIG*=packaged \ + DEFINES*=NO_UPDATE_CHECK \ + DEFINES*=PLUGIN_PATH=/usr/lib/mumble \ + DEFINES*=MUMBLE_VERSION=$(MUMBLE_DEB_VERSION) \ + DEFINES*=HAVE_LIMITS_H \ + DEFINES*=HAVE_ENDIAN_H + touch configure-stamp + +build: build-arch build-indep + +build-arch: build-arch-stamp + +build-arch-stamp: configure-stamp + $(MAKE) release +ifeq ($(DEB_BUILD_ARCH), amd64) + (cd overlay_gl && touch overlay.c && $(MAKE) clean && $(MAKE) release DESTDIR_ADD=-32 CFLAGS_ADD=-m32 LFLAGS_ADD=-m32 && $(MAKE) clean) +endif + touch $@ + +build-indep: build-indep-stamp + +build-indep-stamp: + slice2html -I/usr/share/Ice-3.4.1/slice -I/usr/share/slice -I/usr/share/Ice/slice src/murmur/Murmur.ice --output-dir Ice + touch $@ + +clean: unpatch + dh_testdir + dh_testroot + rm -f build-arch-stamp build-indep-stamp configure-stamp + [ ! -f Makefile ] || $(MAKE) distclean + # Remove files from previous builds. + [ ! -d gendoc ] || rm -rf Ice + rm -rf release debug + [ ! -d release-32 ] || rm -rf release-32 + rm -f $(CURDIR)/debian/mumble-server.logrotate $(CURDIR)/mumble-server.init + debconf-updatepo + dh_clean + +install: install-indep install-arch + +install-indep: + dh_testdir + dh_testroot + dh_clean -k -i + dh_installdirs -i + dh_install -i + # Install and rename web scripts + install -m 0755 -D ./scripts/weblist.pl $(CURDIR)/debian/mumble-server-web/usr/share/mumble-server-web/www/weblist.cgi + +install-arch: + dh_testdir + dh_testroot + dh_clean -k -s + dh_installdirs -s + dh_install -s + # Add Debian files. + install -m 0755 ./scripts/murmur.init $(CURDIR)/debian/mumble-server.init + install -m 0755 ./scripts/murmur.logrotate $(CURDIR)/debian/mumble-server.logrotate + # install mumble files that need to be renamed. + install -m 0644 -D ./scripts/murmur.conf $(CURDIR)/debian/mumble-server/etc/dbus-1/system.d/mumble-server.conf + install -m 0644 -D ./scripts/murmur.ini.system $(CURDIR)/debian/mumble-server/etc/mumble-server.ini + # Also install an menu icon for mumble-11x. + install -m 0644 -D ./icons/mumble.xpm $(CURDIR)/debian/mumble-11x/usr/share/pixmaps/mumble11x.xpm +ifeq ($(DEB_BUILD_ARCH), amd64) + install -m 0755 -d $(CURDIR)/debian/mumble/usr/lib32/mumble + cp -dp ./release-32/libmumble.so* $(CURDIR)/debian/mumble/usr/lib32/mumble/ +endif + +binary-common: + dh_testdir + dh_testroot + dh_installchangelogs CHANGES + dh_installdocs + dh_installmenu + dh_installinit -- defaults 95 + dh_installman + dh_installlogrotate + dh_installdebconf + dh_installexamples + dh_link + dh_gconf + dh_icons + dh_strip --dbg-package=mumble-dbg + dh_compress + dh_fixperms + dh_perl $(CURDIR)/debian/mumble-server-web/usr/lib/cgi-bin/mumble-server + dh_installdeb + dh_shlibdeps -Xlib32/mumble/ + dh_gencontrol + dh_md5sums + dh_builddeb + +binary-indep: build-indep install-indep + $(MAKE) -f debian/rules DH_OPTIONS=-i binary-common + +binary-arch: build-arch install-arch + $(MAKE) -f debian/rules DH_OPTIONS=-s binary-common + +binary: binary-indep binary-arch + +get-orig-source: + wget -O $(SOURCE_DIR)/mumble_$(VERSION).orig.tar.gz http://mumble.info/snapshot/mumble-$(VERSION).tar.gz + +.PHONY: build clean binary-indep binary-arch binary install install-indep install-arch configure --- mumble-1.2.3-87-gf7d8711.orig/debian/mumble-server.README.Debian +++ mumble-1.2.3-87-gf7d8711/debian/mumble-server.README.Debian @@ -0,0 +1,9 @@ +This package includes a system-wide installation of murmurd. If you want a +personal server running on your own user account, use the murmur-user-wrapper +script. + +If you have apache running, you can install the mumble-server-web package to +get web-accessible scripts. + +Murmur's root user is called SuperUser. To set the password for superuser, +simply dpkg-reconfigure mumble-server. --- mumble-1.2.3-87-gf7d8711.orig/debian/mumble-server-web.conf +++ mumble-1.2.3-87-gf7d8711/debian/mumble-server-web.conf @@ -0,0 +1,10 @@ +Alias /mumble-server /usr/share/mumble-server-web/www/ + + + Options FollowSymLinks ExecCGI + AllowOverride None + AddHandler cgi-script .cgi + DirectoryIndex index.php + Order allow,deny + Allow from all + --- mumble-1.2.3-87-gf7d8711.orig/debian/mumble.docs +++ mumble-1.2.3-87-gf7d8711/debian/mumble.docs @@ -0,0 +1,2 @@ +README +README.Linux --- mumble-1.2.3-87-gf7d8711.orig/debian/MurmurPHP.ini +++ mumble-1.2.3-87-gf7d8711/debian/MurmurPHP.ini @@ -0,0 +1 @@ +ice.slice=/usr/share/slice/Murmur.ice --- mumble-1.2.3-87-gf7d8711.orig/debian/mumble-server-web.links +++ mumble-1.2.3-87-gf7d8711/debian/mumble-server-web.links @@ -0,0 +1 @@ +usr/share/mumble-server-web/www/weblist.php usr/share/mumble-server-web/www/index.php --- mumble-1.2.3-87-gf7d8711.orig/debian/mumble-server-web.install +++ mumble-1.2.3-87-gf7d8711/debian/mumble-server-web.install @@ -0,0 +1,3 @@ +debian/MurmurPHP.ini etc/php5/conf.d +debian/mumble-server-web.conf etc/apache2/conf.d +scripts/weblist.php usr/share/mumble-server-web/www --- mumble-1.2.3-87-gf7d8711.orig/debian/mumble-server.templates +++ mumble-1.2.3-87-gf7d8711/debian/mumble-server.templates @@ -0,0 +1,23 @@ +Template: mumble-server/password +Type: password +_Description: Password to set on SuperUser account: + Murmur has a special account called "SuperUser" which bypasses all + privilege checks. + . + If you set a password here, the password for the "SuperUser" account will + be updated. + . + If you leave this blank, the password will not be changed. + +Template: mumble-server/start_daemon +Type: boolean +Default: true +_Description: Autostart mumble-server on server boot? + Mumble-server (murmurd) can start automatically when the server is booted. + +Template: mumble-server/use_capabilities +Type: boolean +Default: false +_Description: Allow mumble-server to use higher priority? + Mumble-server (murmurd) can use higher process and network priority to + ensure low latency audio forwarding even on highly loaded servers. --- mumble-1.2.3-87-gf7d8711.orig/debian/copyright +++ mumble-1.2.3-87-gf7d8711/debian/copyright @@ -0,0 +1,273 @@ +This package was debianized by Patrick Matthäi +on Sun, 16 Mar 2008 11:09:08 +0100. + +It was downloaded from . + + +The directory "speex" contains a copy of the needed speex source code +used in mumble. It's included in the mumble tarball, and that tarball +clones it from git://git.xiph.org/speex.git + +Upstream Author: Jean-Marc Valin + +Copyright: 2002-2008 Xiph.org Foundation + 2002-2008 Jean-Marc Valin + 2005-2007 Analog Devices Inc. + 1992-1994 Jutta Degener, Carsten Bormann + 2003-2004 Mark Borgerding + 2005 Christopher Montgomery + 2003 EpicGames + 2002 Jean-Marc Valin + 2005-2008 Commonwealth Scientific and Industrial Research + Organisation (CSIRO) + 1993, 2002, 2006 David Rowe + +License: + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the Xiph.org Foundation nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + + +The directory "celt" contains a copy of the needed CELT source code +used in mumble. It's included in the mumble tarball, and that tarball +clones it from git://git.xiph.org/celt.git + +Copyright 2001-2009 Jean-Marc Valin, Timothy B. Terriberry, + CSIRO, and other contributors + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the Xiph.org Foundation nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +CELT includes KISS FFT, which is + Copyright 2003-2004 Mark Borgerding +and a number of the source files explicitly credit + (C) 2008 Gregory Maxwell +all under the same license as CELT itself. + +celt/libcelt/floag_cast.h is + Copyright (C) 2001 Erik de Castro Lopo + + Permission to use, copy, modify, distribute, and sell this file for any + purpose is hereby granted without fee, provided that the above copyright + and this permission notice appear in all copies. No representations are + made about the suitability of this software for any purpose. It is + provided "as is" without express or implied warranty. + +celt/libcelt/celt_types.h is "take from libogg" + THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. + USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS + GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE + IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. + + THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2002 + by the Xiph.Org Foundation http://www.xiph.org/ + +The file 'COPYING' in celt is not the one references here, but the full +license is included below as Mumble itself also borrows files from the Ogg +Vorbis project. + + + +The files src/mumble/smallft.cpp and src/mumble/smallft.h are copied from the +Ogg Vorbis project. They are also licensed under the BSD(revised) license: + +Copyright 2002-2007 Xiph.org Foundation + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the Xiph.org Foundation nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + `AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION + OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + + +The directory src/bonjour contains a modified version of the Qt Bonjour +code. + + Copyright (c) 2007, Trenton Schulz + Copyright (c) 2009, Stefan Hacker + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + 3. The name of the author may not be used to endorse or promote products + derived from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED + WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO + EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; + OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + + +Part of the code in overlay_macx is based on injector code that is + Copyright (c) 2003-2009 Jonathan 'Wolf' Rentzsch: + Some rights reserved: + + +The rest of the source code is licensed as follows: + +Upstream Author: Thorvald Natvig + +Copyright: 2005 - 2009, Thorvald Natvig + 2007, Stefan Gehn + 2007, Sebastian Schlingmann + 2008 - 2009, Mikkel Krautz + 2008, Andreas Messer + 2007, Trenton Schulz + 2008-2009, Stefan Hacker + +License: + + All rights reserved. + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + - Neither the name of the Mumble Developers nor the names of its + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + + +The file src/CryptState.cpp implements OCB-AES128 (an authenticated- +encryption algorithm), which is covered by patents in the US. The patent +holder has written a patent grant for applications licensed under the GNU +Public License, but has also granted a license for Mumble: + +------------------------------------------------------------------------- +Date: Wed, 20 Feb 2008 09:33:40 -0800 (Pacific Standard Time) +From: Phillip Rogaway +To: Thorvald Natvig +Subject: Re: OCB under BSD License? + +Hi Thorvald, + +Nice to hear from you, and to hear that OCB is in Mumble. + +I am in fact planning to greatly broaden the patent grant; I just need to +check with my attorney to see what's the best way to word it. Thanks for the +excellent suggestion to include "all programs whose complete source code is +freely available". I will make sure to include this setting. I am actually +looking to go much further. + +Anyway, until I get the wording figured out and on the web +for a very general patent grant, please consider this email from me as +explicit permission to include OCB in Mumble and distribute it under under +BSD (as well as GNU GPL) on a royalty-free basis. + +Good luck, and thanks for creating your software. + +phil +------------------------------------------------------------------------- + + + +mumble-server links with ZeroC Ice, which is licensed under the GPL. ZeroC +has granted a retroactive link exception for Mumble, please see the updated +ICE_LICENSE found in ZeroC Ice 3.3.1 or newer. + + +The Debian packaging is copyrighted 2007-2009, Patrick Matthäi +and Thorvald Natvig and is licensed under the terms of +the BSD license. --- mumble-1.2.3-87-gf7d8711.orig/debian/control +++ mumble-1.2.3-87-gf7d8711/debian/control @@ -0,0 +1,76 @@ +Source: mumble +Section: sound +Priority: optional +Homepage: http://mumble.sourceforge.net/ +Maintainer: Debian VoIP Team +Uploaders: Patrick Matthäi , Thorvald Natvig +Build-Depends: quilt, debhelper (>= 7.0.8), po-debconf, libboost1.46-dev | libboost-dev (>= 1.42.0), libboost-python1.46-dev | libboost-python-dev (>= 1.42.0), libqt4-dev (>= 4.5.0), libqt4-opengl-dev (>= 4.5.0), libasound2-dev, libpulse-dev [!hurd-i386], libogg-dev, libspeex-dev, libspeexdsp-dev, , libsndfile1-dev, libssl-dev, libzeroc-ice34-dev | libzeroc-ice33-dev | libzeroc-ice32-dev | libzeroc-ice-dev, ice34-translators | ice33-translators | ice32-translators | ice-translators, ice34-slice | ice33-slice | ice32-slice | ice-slice, libg15daemon-client-dev, libspeechd-dev, protobuf-compiler, libprotobuf-dev, libavahi-compat-libdnssd-dev, libxi-dev, libcap-dev [!kfreebsd-i386 !kfreebsd-amd64], libc6-dev-i386 [amd64], gcc-multilib [amd64] +Standards-Version: 3.9.1 +Vcs-Svn: svn://svn.debian.org/pkg-voip/mumble/trunk/ +Vcs-Browser: http://svn.debian.org/wsvn/pkg-voip/mumble/?op=log + +Package: mumble +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, libqt4-sql-sqlite, lsb-release +Recommends: speech-dispatcher +Suggests: mumble-server, mumble-11x +Description: Low latency VoIP client + Mumble is a low-latency, high quality voice chat program for gaming. It + features noise suppression, automatic gain control and low latency audio + with support for multiple audio standards. Mumble includes an in-game + overlay compatible with most open-source and commercial 3D applications. + Mumble is just a client and uses a non-standard protocol. You will need + a dedicated server to talk to other users. Server functionality is + provided by the package "mumble-server". + +Package: mumble-11x +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, libqt4-sql-sqlite, lsb-release, mumble (= ${binary:Version}) +Description: Low latency VoIP client (1.1.x) + Mumble is a low-latency, high quality voice chat program for gaming. It + features noise suppression, automatic gain control and low latency audio + with support for multiple audio standards. Mumble includes an in-game + overlay compatible with most open-source and commercial 3D applications. + Mumble is just a client and uses a non-standard protocol. You will need + a dedicated server to talk to other users. Server functionality is + provided by the package "mumble-server". + . + This is the 1.1.x compatible client for Mumble, used to connect to older + servers. + +Package: mumble-server +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, adduser, dbus, libqt4-sql-sqlite +Suggests: mumble-server-web, mumble-django +Description: Low latency VoIP server + Murmur is the VoIP server component for Mumble. Murmur is installed + in a system-wide fashion, but can also be run by individual users. + Each murmur process supports multiple virtual servers, each with their + own user base and channel list. Administration of murmur is done through + D-Bus. Example scripts which register new users and list connected users + through a web page are can be found in the package 'mumble-server-web'. + +Package: mumble-dbg +Section: debug +Architecture: any +Depends: ${misc:Depends}, mumble (= ${binary:Version}) | mumble-server (= ${binary:Version}) +Priority: extra +Description: Low latency VoIP client (debugging symbols) + Mumble is a low-latency, high quality voice chat program for gaming. It + features noise suppression, automatic gain control and low latency audio + with support for multiple audio standards. Mumble includes an in-game + overlay compatible with most open-source and commercial 3D applications. + Mumble is just a client and uses a non-standard protocol. You will need + a dedicated server to talk to other users. Server functionality is + provided by the package "mumble-server". + . + This package contains the debugging symbols for the 'mumble' and + 'mumble-server' packages. + +Package: mumble-server-web +Architecture: all +Depends: ${misc:Depends}, ${perl:Depends}, mumble-server (>= ${binary:Version}), apache2, postfix | mail-transport-agent, libnet-dbus-perl, libcgi-session-perl, libhtml-template-perl, php-zeroc-ice, ice34-translators | ice33-translators | ice32-translators | ice-translators, ice34-slice | ice33-slice | ice32-slice | ice-slice +Description: Web scripts for mumble-server + Murmur (in the package mumble-server) is the VoIP server component for + Mumble. This package contains web scripts for registering users, uploading + custom textures and showing a list of currently connected users. --- mumble-1.2.3-87-gf7d8711.orig/debian/compat +++ mumble-1.2.3-87-gf7d8711/debian/compat @@ -0,0 +1 @@ +5 --- mumble-1.2.3-87-gf7d8711.orig/debian/mumble-server-web.postinst +++ mumble-1.2.3-87-gf7d8711/debian/mumble-server-web.postinst @@ -0,0 +1,35 @@ +#! /bin/sh +# postinst script for mumble-server-web + +set -e + +# summary of how this script can be called: +# * `configure' +# * `abort-upgrade' +# * `abort-remove' `in-favour' +# +# * `abort-remove' +# * `abort-deconfigure' `in-favour' +# `removing' +# +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + +case "$1" in + configure) + # Restart apache2 to load new config + invoke-rc.d --quiet apache2 reload + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +#DEBHELPER# + +exit 0 --- mumble-1.2.3-87-gf7d8711.orig/debian/mumble-server-web.README.Debian +++ mumble-1.2.3-87-gf7d8711/debian/mumble-server-web.README.Debian @@ -0,0 +1,3 @@ +If you have got Apache running, you can get a server list on: + + http://localhost/mumble-server/ --- mumble-1.2.3-87-gf7d8711.orig/debian/mumble.install +++ mumble-1.2.3-87-gf7d8711/debian/mumble.install @@ -0,0 +1,9 @@ +release/mumble usr/bin/ +release/libmumble.so* usr/lib/mumble/ +release/libcelt0.so.?.?.? usr/lib/mumble/ +release/plugins/lib*.so usr/lib/mumble/ +icons/mumble.xpm usr/share/pixmaps/ +icons/mumble.svg usr/share/icons/hicolor/scalable/apps/ +scripts/mumble.desktop usr/share/applications/ +scripts/mumble.protocol usr/share/services/ +scripts/mumble-overlay usr/bin/ --- mumble-1.2.3-87-gf7d8711.orig/debian/changelog +++ mumble-1.2.3-87-gf7d8711/debian/changelog @@ -0,0 +1,653 @@ +mumble (1.2.3-87-gf7d8711-1~ppa1~karmic1) karmic; urgency=low + + * PPA Upload of 1.2.3-87-gf7d8711 for Ubuntu karmic + + -- Thorvald Natvig Sat, 02 Apr 2011 15:46:32 -0700 + +mumble (1.2.3-2) unstable; urgency=low + + * Prefer libboost1.46-dev to libboost-dev. + Closes: #618092 + * Add patch from Conor Curran to fix PulseAudio role. + Closes: #615994 + * Add patch from Benjamin Jemlich to remove OpenGL for AudioStats dialog. + + -- Thorvald Natvig Fri, 25 Mar 2011 07:45:13 +0100 + +mumble (1.2.3-1) unstable; urgency=low + + [ Patrick Matthäi ] + * Do not build with non existant libpulse-dev on hurd-i386. + + [ Thorvald Natvig ] + * New upstream release. + + -- Thorvald Natvig Sat, 19 Feb 2011 22:58:58 +0100 + +mumble (1.2.3~rc3-2) unstable; urgency=low + + * Add Ice 3.4 as valid option. + + -- Thorvald Natvig Mon, 14 Feb 2011 04:17:23 +0100 + +mumble (1.2.3~rc3-1) unstable; urgency=low + + [ Thorvald Natvig ] + * New upstream release. + * Add dependency on Ice slice files when building. + * Add fix from Felix Geyer to work around non-existant mumble-server.ini + on upgrades. + Closes: #610608 + + [ Patrick Matthäi ] + * Merge 1.1.4-4+lenny2 and 1.2.2-6 changelog. + + -- Thorvald Natvig Mon, 14 Feb 2011 03:36:18 +0100 + +mumble (1.2.2-6) unstable; urgency=high + + * Delete /var/lib/mumble-server on purge. + * Do not make /etc/mumble-server.ini world readable. + Closes: #609919 + + -- Patrick Matthäi Thu, 13 Jan 2011 21:29:40 +0100 + +mumble (1.2.2-5) unstable; urgency=low + + * Update fuzzy spanish debconf translation. Thanks to Omar Campagne Polaino. + Closes: #590442 + * Downgrade mumble-11x from recommends to suggests. + Closes: #599661 + * Update Basque translation from Dooteo. + Closes: #600203 + * Add Norwegian translation from Bjørn Steensrud. + Closes: #600277 + * Add Italian translation from Vincenzo Campanella. + Closes: #600440 + * Bump Standards-Version to 3.9.1 (no changes needed). + + -- Patrick Matthäi Sun, 17 Oct 2010 14:41:34 +0200 + +mumble (1.2.2-4) unstable; urgency=high + + * Fix failure with SQLite with very long 'like' matches. + Closes: #587713 + + -- Thorvald Natvig Mon, 12 Jul 2010 15:11:24 +0200 + +mumble (1.2.2-3) unstable; urgency=high + + * Remove trailing slash from the mumble-server-web alias. + * Fix README.Debian from mumble-server-web. + * Add ExecCGI and a cgi-script handler to the mumble-server-web config. + Without it, the weblist.cgi code is not executed and directly shown to the + client. Raising urgency to medium. + * Include every mumble plugin from release/plugins. + * Add danish translation from Joe Dalton. + Closes: #587798 + * Bump Standards-Version to 3.9.0 (no changes needed). + + -- Patrick Matthäi Thu, 08 Jul 2010 18:06:23 +0200 + +mumble (1.2.2-2) unstable; urgency=low + + [ Thorvald Natvig ] + * Add patch to compile on kfreebsd + * Remove path to Router.ice as the path is not stable. + Closes: #573699 + * Remove README.source ("we use quilt"), as patches are included in + format 3.0 (quilt). + + [ Patrick Matthäi ] + * Update vietnamese translation from Clytie Siddall. + Closes: #569281 + * Do not build depend on quilt. + * Add 0002-spelling-error.patch, which fixes a spelling error. + * Add missing blank line to debian/NEWS. + + -- Patrick Matthäi Sat, 13 Mar 2010 11:47:09 +0100 + +mumble (1.2.2-1) unstable; urgency=low + + * New upstream release. + * Remove DM-Upload-Allowed, all uploaders are now DD. (Yay!) + * Fix my email address in Uploaders: + * Move mumble-server's Recommends: of mumble-server-web to Suggests: and + remove the Suggests: of mumble. + * Remove cgi config in mumble-server-web.conf as we no longer ship cgi + files. + + -- Thorvald Natvig Tue, 09 Feb 2010 17:55:13 +0100 + +mumble (1.2.2~201002071401-4ab478-1) experimental; urgency=low + + [ Patrick Matthäi ] + * Bump Standards-Version to 3.8.4 (no changes needed). + + [ Debian l10n ] + * Updated french translation from Steve Petruzzello. + Closes: #567913 + + [ Launchpad Translation ] + * Hungarian translation from SPeck. + + [ Thorvald Natvig ] + * Updated po files. + * New upstream release. + + -- Thorvald Natvig Sun, 07 Feb 2010 15:02:19 +0100 + +mumble (1.2.1-3) unstable; urgency=low + + [ Thorvald Natvig ] + * Remove 'ulimit -r' support from defaults and initscript; it's bash-only. + * Remove debconf for emailfrom, it's been deprecated in the 1.2.x series. + * Add debconf for use_capabilities; it is needed on servers with load. + * Add support for upcoming libcelt0-0. + + [ Patrick Matthäi ] + * Change my odd email address in po/de.po. + * Build depend on libcap-dev instead of libcap2-dev. + + [ Debian l10n ] + * Updated swedish translation from Martin Bagge. + Closes: #564780 + * Updated finnish translation from Esko Arajärvi. + Closes: #564744 + * Updated russian translation from Yuri Kozlov. + Closes: #564737 + * Updated german translation from Thomas Mueller. + Closes: #564932 + * Updated Japanese translation from Masayuki Hamasaki. + * Updated portuguese translation from Américo Monteiro. + Closes: #565612 + * Updated czech translation from Miroslav Kure. + Closes: #565880 + + -- Thorvald Natvig Tue, 19 Jan 2010 19:10:04 +0100 + +mumble (1.2.1-2) unstable; urgency=low + + * Fix upgrade failure when upgrading mumble-server directly from 1.1.x + to 1.2.1 + + -- Thorvald Natvig Sat, 09 Jan 2010 19:28:50 +0100 + +mumble (1.2.1-1) unstable; urgency=low + + * New upstream release. + * Now detects ipv6only properly. + Closes: #563365 + + -- Thorvald Natvig Thu, 07 Jan 2010 23:57:54 +0100 + +mumble (1.2.0-1) unstable; urgency=low + + * New upstream release. + + -- Thorvald Natvig Thu, 10 Dec 2009 20:29:29 +0100 + +mumble (1.2.0~beta2-1) unstable; urgency=low + + [ Thorvald Natvig ] + * New upstream release. + * Add celt dependency to binary package; celt is dynamically loaded, + so isn't picked up by dh_shlibdeps. + * Add patch to include all directly used libraries. + Closes: #555758 + * Update mumble-server.postinst to ignore dbus restart errors. + (Thanks, Leo!) + + [ Patrick Matthäi ] + * Convert package to the 3.0 (quilt) format. + * Rebuild against the new protobuf version. + Closes: #556561 + + -- Thorvald Natvig Tue, 01 Dec 2009 22:23:56 +0100 + +mumble (1.2.0~beta1-1) unstable; urgency=low + + [ Patrick Matthäi ] + * Do not build with missing libcap2-dev on kfreebsd-*. + * Merge 1.1.8-3 and 1.1.8-4 changelog. + * Merge remaining changes from the 1.1.8 branch. + * Also install the menu icon for the mumble-11x package. + * Extend the long description of the mumble-11x package. Thanks lintian. + + [ Thorvald Natvig ] + * New upstream beta release. + * Update get-orig-source. + * Update dependencies. + * Let the qmake script find the celt/speex libraries on its own. + + -- Thorvald Natvig Wed, 11 Nov 2009 23:33:38 +0100 + +mumble (1.2.0~200910141302-8af721-1) experimental; urgency=low + + [ Thorvald Natvig ] + * New upstream release. + * Add a NEWS; this version is incompatible with 1.1.8. + * Use bundled CELT version for now. + + [ Patrick Matthäi ] + * Suggest mumble-django at the mumble-server package. + + -- Thorvald Natvig Wed, 14 Oct 2009 16:27:29 +0200 + +mumble (1.2.0~200909111826-402695-1) experimental; urgency=low + + [ Patrick Matthäi ] + * Drop quilt, we do not have any patches applied. + * Bump Standards-Version to 3.8.3 (no changes needed). + + [ Michael Ziegler ] + * Change Alias for mumble-server-web from /mumble/ to /mumble-server/. + + [ Thorvald Natvig ] + * New upstream tarball. + * Update section in menu entries. + * Install new, upstream .svg icon and remove deprecated .pngs. + * Update mumble-server postrm and postinst to remove /var/lib/mumble-server + even if deluser isn't found. Fixes piuparts uninstall failure. + * Multiline depends, build-depends. + * Update PHP settings to depend on ice33-slice and include the Glacier2 + slice files. + + -- Thorvald Natvig Fri, 11 Sep 2009 20:27:03 +0200 + +mumble (1.2.0~200908081144-c7cffd-1) experimental; urgency=low + + [ Thorvald Natvig ] + * Remove dh_desktop + * Upstream fixes for positional audio in server. + * Update various dependencies. + * Update mumble-server-web to not include deprecated web registration. + * New mumble-11x package with the compatibility client. + + [ Patrick Matthäi ] + * New upstream git snapshot of the upcoming 1.2.0 release. + * Merge 1.1.8-2~bpo50+1 changelog. + * Replace my old email address in debian/copyright. + + -- Patrick Matthäi Sat, 08 Aug 2009 10:32:11 +0200 + +mumble (1.2.0~200907301646-b5b94c-1) experimental; urgency=low + + [ Patrick Matthäi ] + * Merge 1.1.8-1~bpo50+1 changelog. + * Bump Standards-Version to 3.8.2 (no changes needed). + + [ Thorvald Natvig ] + * Update for upcoming release 1.2.0 + + -- Thorvald Natvig Thu, 30 Jul 2009 17:23:30 +0200 + +mumble (1.1.8-4) unstable; urgency=low + + * Do not build with missing libcap2-dev on kfreebsd-*. + * Add debian/README.source. + * Add mumble-server doc-base. + + -- Patrick Matthäi Sun, 01 Nov 2009 14:13:56 +0100 + +mumble (1.1.8-3) unstable; urgency=low + + * Backport ALSA and PulseAudio modules from 1.2.0 git, makes them work with + modern releases of these sound systems. + * Standards-version 3.8.3 + * Remove dh_desktop + + -- Thorvald Natvig Sun, 16 Aug 2009 17:52:43 +0200 + +mumble (1.1.8-2~bpo50+1) lenny-backports; urgency=low + + * Rebuild for lenny-backports. + - Adjust build dependencies: We need the libzeroc-ice32 packages to avoid + a FTBFS. + + -- Patrick Matthäi Tue, 04 Aug 2009 18:29:39 +0200 + +mumble (1.1.8-2) unstable; urgency=low + + [ Thorvald Natvig ] + * Add --oknodo to logrotate script. (Closes: #520639) + + [ Patrick Matthäi ] + * Change my email address. + + -- Patrick Matthäi Wed, 22 Apr 2009 15:02:08 +0200 + +mumble (1.1.8-1~bpo50+1) lenny-backports; urgency=low + + * Rebuild for lenny-backports. + + -- Patrick Matthäi Mon, 6 Apr 2009 18:35:50 +0200 + +mumble (1.1.8-1) unstable; urgency=low + + [ Patrick Matthäi ] + * Fix override disparity. Set section of mumble-dbg to devel. + * Drop all patches (merged upstream). + * Bump Standards-Version to 3.8.1 (no changes needed). + + [ Thorvald Natvig ] + * New upstream release. + * New overlay library doesn't use private ELF symbols anymore. + * Update defaults file to match new init-script options. + * Move mumble-dbg to section debug. + + -- Patrick Matthäi Sun, 22 Mar 2009 16:21:58 +0100 + +mumble (1.1.7-3) unstable; urgency=low + + [ Patrick Matthäi ] + * Fix basque translation: Do not translate the username. + Closes: #515031 + + [ Thorvald Natvig ] + * Run qmake recursively, to be forward compatible with qmake from Qt 4.5.0. + + -- Patrick Matthäi Wed, 18 Feb 2009 18:12:09 +0200 + +mumble (1.1.7-2) unstable; urgency=low + + [ Thorvald Natvig ] + * Add workaround for threading bug in ALSA. + * Add 32-bit overlay library on amd64. + * Add documentation for the Ice interface to mumble-server. + + -- Patrick Matthäi Wed, 18 Feb 2009 17:56:28 +0200 + +mumble (1.1.7-1) unstable; urgency=low + + [ Patrick Matthäi ] + * Add a mumble-dbg package, which contains the debugging symbols of mumble + and mumble-server. + * Move swedish translation debian/sv.po to debian/po/sv.po. + This was a bad error of mine. + * Remove debian/patches and dpatch, everything has been merged by upstream. + + [ Thorvald Natvig ] + * New upstream release. + Closes: #513119 + * Added Spanish translation from Álvaro M. Recio + * Synchronized copyright + + -- Patrick Matthäi Wed, 4 Feb 2009 10:32:16 +0200 + +mumble (1.1.6-5) unstable; urgency=low + + * Correct old webscript URL paths in mumble-server-web.README.Debian. + * Fix copyright-with-old-dh-make-debian-copyright. + Thanks lintian. + * Pass -xglibc-private to dpkg-shlibdeps. This avoids an unsatisfied + dependency on glibc-private with glibc >= 2.8, because mumble uses private + symbols of glibc for the overlay feature. + + -- Patrick Matthäi Thu, 8 Jan 2009 19:45:09 +0200 + +mumble (1.1.6-4) unstable; urgency=low + + [ Patrick Matthäi ] + * Do not use the "X$FOO" != "X" notation in mumble-server.{postinst,config}. + This notation is just in the unquoted version needed. + * Merged changelog from the 1.1.4-4+lenny1 release. + * Add missing ${misc:Depends}. Thanks lintian. + + [ Debian l10n ] + * Swedish translation from Martin Bagge . + Closes: #506594 + + -- Patrick Matthäi Sat, 13 Dec 2008 12:59:18 +0200 + +mumble (1.1.6-3) unstable; urgency=low + + * Added 01-ftbfs_arm_qreal.dpatch. This patch fixes a FTBFS on arm{el} where + qreal is not double. + - Include dpatch. + * Added needed ice33-translators | ice32-translators | ice-translators + dependencies to mumble-server-web. + + -- Patrick Matthäi Fri, 3 Oct 2008 18:45:33 +0200 + +mumble (1.1.6-2) unstable; urgency=low + + * Added DEFINES+=HAVE_LIMITS_H DEFINES+=HAVE_ENDIAN_H to debian/rules. Now + it should build on s390 and ia64. + + -- Patrick Matthäi Fri, 19 Sep 2008 21:35:35 +0200 + +mumble (1.1.6-1) unstable; urgency=low + + [ Thorvald Natvig ] + * New upstream release. + - Includes various minor bugfixes. + + -- Patrick Matthäi Sat, 13 Sep 2008 13:06:36 +0200 + +mumble (1.1.5-1) unstable; urgency=low + + [ Thorvald Natvig ] + * New upstream release. + * Added ZeroC ICE dependencies. + * mumble-server-web now includes PHP setup, which necessitates setting + the global ice.slice PHP variable. This will have to persist until + the zeroc-ice-php package adds support for profiles. + * Japanese translation from + Masayuki Hamasaki . + * Create a apache config file and put the web files under + /usr/share/mumble-server-web + * Remove the restart of hald, as we no longer use it. + * Default to starting mumble-server. + + [ Patrick Matthäi ] + * Do not install var/www/mumble-server/index.php with executable rights. + Thanks lintian. + * Changed preferred postfix depend to exim4 at the mumble-server-web package. + Closes: #495852 + + -- Patrick Matthäi Sat, 6 Sep 2008 15:27:57 +0200 + +mumble (1.1.4-4+lenny2) stable-proposed-updates; urgency=high + + * Change my email address from the deprecated web.de to the debian.de one. + * Delete /var/lib/mumble-server on purge. + * Do not make /etc/mumble-server.ini world readable. + Closes: #609919 + + -- Patrick Matthäi Sun, 16 Jan 2011 19:30:19 +0100 + +mumble (1.1.4-4+lenny1) testing-proposed-updates; urgency=low + + * Add missing dependency on hal to the mumble package and failover to "true" + if invoke-rc.d should fail. + Closes: #502748 + + -- Patrick Matthäi Sun, 19 Oct 2008 17:15:56 +0200 + +mumble (1.1.4-4) unstable; urgency=low + + [ Thorvald Natvig ] + * Add README and README.Linux to mumble.docs + * Revert to asking for server password, as you currently can't change + the password once it's set. + + -- Patrick Matthäi Fri, 15 Aug 2008 14:53:19 +0200 + +mumble (1.1.4-3) unstable; urgency=low + + [ Thorvald Natvig ] + * Fix ownership of /var/run/mumble-server so the pid file can be written. + + [ Patrick Matthäi ] + * Add my forgotten signature in the 1.1.4-1 changelog, it was confusing. + * Only ask for the serverpassword if no previous one has been set. + * Set priority of the mumble-server/password question to medium instead of + high. + * Ordered the parameters of install in debian/rules, it looks now more + clean. + + -- Patrick Matthäi Tue, 22 Jul 2008 21:51:43 +0200 + +mumble (1.1.4-2) unstable; urgency=medium + + [ Patrick Matthäi ] + * Added missing Language-Team field in the german debconf translation. + * Replaced initial template values in french debconf translation. + * Replaced inline perl in mumble-server.config with shell scripting. + * Removed libcgi-perl depend at mumble-server-web, it is not needed. + Closes: #485010 + * Bumped Standards-Version to 3.8.0 (no changes needed). + + [ Thorvald Natvig ] + * Add mumble-server-web.README.Debian and move the information on the + web scripts there. + + -- Patrick Matthäi Mon, 19 May 2008 17:38:05 +0100 + +mumble (1.1.4-1) unstable; urgency=low + + [ Patrick Matthäi ] + * New upstream release. + - Removed dpatch and all patches. They are merged in upstream. + - Define the Plugin Path and added liblink plugin for mumble. + - Renamed murmur-wrapper to murmur-user-wrapper and use murmur.ini now as + example file. + - Use the new -readsupw option instead of -supw for mumble-server. + - Adjusted debian/copyright. + * Changed destination of /etc/mumble-server/mumble-server.ini to + /etc/mumble-server.ini. So on it is in sync now with the Ubuntu packaging + and we can use mumble-server.{init,logrotate} from the upstream source. + * Moved mumble-server from Recommends to Suggests at the mumble package. + * Added libspeechd-dev build depend and speech-dispatcher recommend. + * Added libqt4-opengl-dev build dependency. + * Removed suggesting of festival. + * The packaging itself is now BSD licensed. + * Removed debconf depend. It will be added with ${misc:Depends}. + * Handle /etc/mumble-server.ini and /etc/dbus-1/system.d/mumble-server.conf + about conffile instead of ucf. + * Changed priority of mumble-server/password from medium to high. It is + highly recommend to set a password for the SuperUser account. + + [ Debian l10n ] + * Czech translation from Miroslav Kure . + Closes: #480302 + * Russian translation from Yuri Kozlov . + Closes: #480623 + + [ Thorvald Natvig ] + * Add libqt4-sql-sqlite dependency for mumble-server. + * Rename murmur-wrapper to murmur-user-wrapper in README.Debian + * Adjusted '-readsupw'. + * Don't manually remove files under /etc in postrm as that's handled by + conffiles. + * Add myself as Co-Maintainer. + * Remove all unneeded dependencies from Build-Depends. + + -- Patrick Matthäi Tue, 13 May 2008 10:32:13 +0100 + +mumble (1.1.4-0ubuntu1~slicer) hardy; urgency=low + + * New upstream version. + * murmur-wrapper renamed to murmur-user-wrapper. + * Build-Depends and Recommends for Speech Dispatcher added, festival + removed. + * Link plugin added for positional audio. + * Audio-system detection is handled at runtime, so no need to suggest + PulseAudio/ALSA anymore. + * Synced translations from debian's pkg-voip team. + + -- Thorvald Natvig Fri, 09 May 2008 01:30:00 +0200 + +mumble (1.1.3-4) unstable; urgency=low + + [ Patrick Matthäi ] + * Added DM-Upload-Allowed control field. + * Added build depend libglu1-mesa-dev. + * Clean up on purge /var/lib/mumble-server/.config complete. + * Removed the sed hack from debian/rules. It is fixed in qmake now. + * Removed some whitespaces at EOL and newlines at EOF. + * Some clean target fixes. + + [ Debian l10n ] + * French translation from Steve Petruzzello . + Closes: #477777 + * Galician translation from Jacobo Tarrio . + Closes: #478061 + * Finnish translation from Esko Arajärvi . + Closes: #478182 + * Vietnamese translation from Clytie Siddall . + Closes: #478222 + * Euskara translation from Piarres Beobide . + Closes: #478678 + + -- Patrick Matthäi Mon, 5 May 2008 09:40:02 +0100 + +mumble (1.1.3-3) unstable; urgency=low + + * Call do_configuration() in mumble-server.postinst after the function has + been declared. Shame on me, I did not test it with bash and dash. + Thanks for reporting Jan Hauke Rahm. + Closes: #476554 + * Added portuguese debconf translation. Thanks to Américo Monteiro. + Closes: #476472 + * Delete the mumble-server group and system account only, if it is available + on the system on purge time. + * Remove on purge time also /etc/dbus-1/system.d/murmur.conf and + /etc/mumble-server/mumble-server.ini if they exist. + + -- Patrick Matthäi Fri, 18 Apr 2008 18:00:00 +0100 + +mumble (1.1.3-2) unstable; urgency=low + + * Added dirty workaround which removes some extra slashes generated from the + newest Qt4.4-rc1 framework. + Closes: #476307 + * Added missing depend on libqt4-sql-sqlite for mumble. It will not be added + through ${shlibs:Depends} since Qt4.4-rc1. + Closes: #476308 + * Added missing build-depends. + + -- Patrick Matthäi Tue, 16 Apr 2008 18:31:07 +0100 + +mumble (1.1.3-0ubuntu2) hardy; urgency=low + + * Make mumble-server depend on dbus. (LP: #202672) + * Avoid crash when renaming tree objects (patch from upstream SVN). + * Remove a warning when installing (missing --no-create-home). + + -- Thorvald Natvig Sat, 22 Mar 2008 01:25:00 +0200 + +mumble (1.1.3-1) unstable; urgency=low + + * Initial release. + Closes: #429988 + + -- Patrick Matthäi Sun, 16 Mar 2008 11:09:08 +0100 + +mumble (1.1.3-0ubuntu1) hardy; urgency=low + + * New upstream version, which fixes a few crashbugs. + * Licensing issues worked out, package is now BSD licensed (same as + source). + * Mumble-specific changes to Speex are now in upstream Speex, and + this version includes all changes necessary to mumble to unbundle + Speex. Once Speex 1.2beta4 or 1.2 final is out, unbundling can be + completed. + * Changed to use PulseAudio as default audio device, as it's the + new default in Hardy. + * Moved the perl cgi scripts for mumble-server into a separate package, + which means mumble-server doesn't depend on httpd and + mail-transport-agent. Those dependencies were also missing from + mumble-server. + * Updated packaging to adhere to "Debian Developer's Reference - + Best Packaging Practices." + * Closes the request to update to 1.1.3 (LP: #194836) + + -- Thorvald Natvig Sat, 23 Feb 2008 19:00:00 +0200 + +mumble (1.1.2-0ubuntu1) hardy; urgency=low + + * Packaging for inclusion in ubuntu universe (LP: #129081) + + -- Thorvald Natvig Mon, 03 Dec 2007 10:40:00 +0200 --- mumble-1.2.3-87-gf7d8711.orig/debian/mumble-server-web.dirs +++ mumble-1.2.3-87-gf7d8711/debian/mumble-server-web.dirs @@ -0,0 +1 @@ +usr/share/mumble-server-web/www --- mumble-1.2.3-87-gf7d8711.orig/debian/mumble-server.docs +++ mumble-1.2.3-87-gf7d8711/debian/mumble-server.docs @@ -0,0 +1,2 @@ +README +Ice/ --- mumble-1.2.3-87-gf7d8711.orig/debian/mumble-server.install +++ mumble-1.2.3-87-gf7d8711/debian/mumble-server.install @@ -0,0 +1,3 @@ +release/murmurd usr/sbin/ +scripts/murmur-user-wrapper usr/bin/ +src/murmur/Murmur.ice usr/share/slice --- mumble-1.2.3-87-gf7d8711.orig/debian/mumble-server.postinst +++ mumble-1.2.3-87-gf7d8711/debian/mumble-server.postinst @@ -0,0 +1,95 @@ +#! /bin/sh +# postinst script for mumble-server + +set -e + +. /usr/share/debconf/confmodule + +# summary of how this script can be called: +# * `configure' +# * `abort-upgrade' +# * `abort-remove' `in-favour' +# +# * `abort-remove' +# * `abort-deconfigure' `in-favour' +# `removing' +# +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + +case "$1" in + configure) + # Add user and permanent directories + adduser --system --quiet --home /var/lib/mumble-server --group mumble-server + [ -d /var/lib/mumble-server ] || mkdir /var/lib/mumble-server + chmod 0750 /var/log/mumble-server + chmod 0750 /var/lib/mumble-server + chown mumble-server:adm /var/log/mumble-server + chown mumble-server:mumble-server /var/lib/mumble-server + if [ -f /etc/mumble-server.ini ]; then + chmod 0640 /etc/mumble-server.ini + chown root:mumble-server /etc/mumble-server.ini + fi + # Workaround for when this was in .dirs + [ -d /var/run/mumble-server ] && chown mumble-server:adm /var/run/mumble-server + + # Ensure the file we put in /etc/dbus-1/system.d is loaded + # or mumble-server will fail to bind to dbus. + invoke-rc.d --quiet dbus force-reload || true + + # Update /etc/default file based on config + if [ -f /etc/default/mumble-server ] ; then + db_get mumble-server/start_daemon + if [ "$RET" = "true" ] ; then + DAEMON_START=1 + else + DAEMON_START=0 + fi + if grep -E ^MURMUR_DAEMON_START= /etc/default/mumble-server > /dev/null; then + perl -pi -w -e "s/^MURMUR_DAEMON_START=.+$/MURMUR_DAEMON_START=$DAEMON_START/g" /etc/default/mumble-server + else + echo "MURMUR_DAEMON_START=$DAEMON_START" >> /etc/default/mumble-server + fi + + db_get mumble-server/use_capabilities + if [ "$RET" = "true" ] ; then + USE_CAPABILITIES=1 + else + USE_CAPABILITIES=0 + fi + if grep -E ^MURMUR_USE_CAPABILITIES= /etc/default/mumble-server > /dev/null; then + perl -pi -w -e "s/^MURMUR_USE_CAPABILITIES=.+$/MURMUR_USE_CAPABILITIES=$USE_CAPABILITIES/g" /etc/default/mumble-server + else + echo "MURMUR_USE_CAPABILITIES=$USE_CAPABILITIES" >> /etc/default/mumble-server + fi + else + echo "/etc/default/mumble-server not found, configuration failed." >&2 + fi + + # Update SuperUser password based on config. + # When set, clear it from config as it can't be queried and the user is + # likely to update it outside of debconf. + db_get mumble-server/password + if [ "$RET" != "" ] ; then + echo $RET | su mumble-server -s /bin/sh -c "/usr/sbin/murmurd -ini /etc/mumble-server.ini -readsupw" + if [ $? = 0 ] ; then + db_set mumble-server/password "" + else + echo "Failed to set SuperUser password." >&2 + fi + fi + db_stop + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +#DEBHELPER# + +exit 0 --- mumble-1.2.3-87-gf7d8711.orig/debian/mumble-server.config +++ mumble-1.2.3-87-gf7d8711/debian/mumble-server.config @@ -0,0 +1,33 @@ +#! /bin/sh + +set -e + +. /usr/share/debconf/confmodule + +if [ -f /etc/default/mumble-server ] ; then + MURMUR_DAEMON_START=0 + MURMUR_USE_CAPABILITIES=0 + . /etc/default/mumble-server + + if [ "$MURMUR_DAEMON_START" = "1" ] ; then + db_set mumble-server/start_daemon true + else + db_set mumble-server/start_daemon false + fi + + if [ "$MURMUR_USE_CAPABILITIES" = "1" ] ; then + db_set mumble-server/use_capabilities true + else + db_set mumble-server/use_capabilities false + fi +fi + +db_input medium mumble-server/start_daemon || true +db_input medium mumble-server/use_capabilities || true +db_input medium mumble-server/password || true + +db_go + +#DEBHELPER# + +exit 0 --- mumble-1.2.3-87-gf7d8711.orig/debian/mumble-server.manpages +++ mumble-1.2.3-87-gf7d8711/debian/mumble-server.manpages @@ -0,0 +1,2 @@ +man/murmurd.1 +man/murmur-user-wrapper.1 --- mumble-1.2.3-87-gf7d8711.orig/debian/mumble-server.postrm +++ mumble-1.2.3-87-gf7d8711/debian/mumble-server.postrm @@ -0,0 +1,50 @@ +#! /bin/sh + +set -e + +# summary of how this script can be called: +# * `remove' +# * `purge' +# * `upgrade' +# * `failed-upgrade' +# * `abort-install' +# * `abort-install' +# * `abort-upgrade' +# * `disappear' +# +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + + +case "$1" in + purge) + [ -f /var/log/mumble-server/mumble-server.log ] && rm -f /var/log/mumble-server/mumble-server.log* + [ -d /var/lib/mumble-server ] && rm -rf /var/lib/mumble-server + [ -f /var/run/mumble-server/mumble-server.pid ] && rm -f /var/run/mumble-server/mumble-server.pid + [ -d /var/run/mumble-server ] && rmdir --ignore-fail-on-non-empty /var/run/mumble-server + + if [ -x "$(command -v deluser)" ] ; then + if getent passwd|grep -q ^mumble-server: ; then + deluser --quiet --system mumble-server > /dev/null || true + fi + if getent group|grep -q ^mumble-server: ; then + deluser --quiet --system --group --only-if-empty mumble-server > /dev/null || true + fi + else + echo >&2 "not removing 'mumble-server' system account because deluser command was not found." + [ -d /var/lib/mumble-server ] && rmdir /var/lib/mumble-server + fi + ;; + + remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) + ;; + + *) + echo "postrm called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +#DEBHELPER# + +exit 0 --- mumble-1.2.3-87-gf7d8711.orig/debian/watch +++ mumble-1.2.3-87-gf7d8711/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://sf.net/mumble/mumble-(.*)\.tar\.gz --- mumble-1.2.3-87-gf7d8711.orig/debian/mumble-server.examples +++ mumble-1.2.3-87-gf7d8711/debian/mumble-server.examples @@ -0,0 +1,3 @@ +scripts/murmur.ini +scripts/dbusauth.pl +scripts/icedemo.php --- mumble-1.2.3-87-gf7d8711.orig/debian/mumble.manpages +++ mumble-1.2.3-87-gf7d8711/debian/mumble.manpages @@ -0,0 +1,2 @@ +man/mumble.1 +man/mumble-overlay.1 --- mumble-1.2.3-87-gf7d8711.orig/debian/NEWS +++ mumble-1.2.3-87-gf7d8711/debian/NEWS @@ -0,0 +1,10 @@ +mumble (1.2.0~200910141302-8af721-1) experimental; urgency=low + + The 1.2.0 series uses a new protocol, which makes it incompatible with 1.1.8 + and earlier version. If you wish to connect to an older server, there is a + separate mumble-11x package with a backward compatible client (mumble11x). + There is no backward-compatible server, so if you upgrade the server connecting + clients must be running 1.2.0 or newer. + + -- Thorvald Natvig Fri, 02 Oct 2009 15:35:54 +0200 + --- mumble-1.2.3-87-gf7d8711.orig/debian/mumble-11x.manpages +++ mumble-1.2.3-87-gf7d8711/debian/mumble-11x.manpages @@ -0,0 +1 @@ +man/mumble11x.1 --- mumble-1.2.3-87-gf7d8711.orig/debian/mumble-server.doc-base +++ mumble-1.2.3-87-gf7d8711/debian/mumble-server.doc-base @@ -0,0 +1,9 @@ +Document: mumble-server +Title: Slice API Documentation +Author: Thorvald Natvig +Abstract: Information and control of the murmur server +Section: Sound + +Format: HTML +Index: /usr/share/doc/mumble-server/Ice/index.html +Files: /usr/share/doc/mumble-server/Ice/Murmur/*.html --- mumble-1.2.3-87-gf7d8711.orig/debian/mumble-11x.install +++ mumble-1.2.3-87-gf7d8711/debian/mumble-11x.install @@ -0,0 +1 @@ +release/mumble11x usr/bin/ --- mumble-1.2.3-87-gf7d8711.orig/debian/mumble-11x.menu +++ mumble-1.2.3-87-gf7d8711/debian/mumble-11x.menu @@ -0,0 +1,4 @@ +?package(mumble-11x):needs="X11" section="Applications/Network/Communication"\ + title="Mumble (1.1.x)"\ + description="Mumble voice chat client."\ + command="/usr/bin/mumble11x" icon="/usr/share/pixmaps/mumble11x.xpm" --- mumble-1.2.3-87-gf7d8711.orig/debian/po/de.po +++ mumble-1.2.3-87-gf7d8711/debian/po/de.po @@ -0,0 +1,84 @@ +# Translation of po-debconf template to German +# Copyright (C) 2008 by Patrick Matthäi +# This file is distributed under the same license as the mumble package. +# +# Patrick Matthäi , 2008. +# Thomas Mueller , 2010. +msgid "" +msgstr "" +"Project-Id-Version: 1.1.4-2\n" +"Report-Msgid-Bugs-To: mumble@packages.debian.org\n" +"POT-Creation-Date: 2010-01-11 16:52+0100\n" +"PO-Revision-Date: 2010-01-12 21:48+0100\n" +"Last-Translator: Thomas Mueller \n" +"Language-Team: German \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Lokalize 1.0\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "Password to set on SuperUser account:" +msgstr "Passwort für den Benutzer »SuperUser«:" + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "" +"Murmur has a special account called \"SuperUser\" which bypasses all " +"privilege checks." +msgstr "" +"Murmur hat einen besonderen Benutzer, der »SuperUser« heißt, der alle " +"Rechteprüfungen umgeht." + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "" +"If you set a password here, the password for the \"SuperUser\" account will " +"be updated." +msgstr "" +"Falls Sie ein Passwort hier eingeben, wird das Passwort für den Benutzer " +"»SuperUser« neu gesetzt." + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "If you leave this blank, the password will not be changed." +msgstr "Falls Sie dieses Feld leer lassen, wird das Passwort nicht geändert." + +#. Type: boolean +#. Description +#: ../mumble-server.templates:2001 +msgid "Autostart mumble-server on server boot?" +msgstr "Mumble-Server beim Booten automatisch starten?" + +#. Type: boolean +#. Description +#: ../mumble-server.templates:2001 +msgid "" +"Mumble-server (murmurd) can start automatically when the server is booted." +msgstr "" +"Der Mumble-Server (murmurd) kann automatisch gestartet werden, wenn der " +"Server neu gestartet wird." + +#. Type: boolean +#. Description +#: ../mumble-server.templates:3001 +msgid "Allow mumble-server to use higher priority?" +msgstr "Soll dem Mumble-Server erlaubt werden eine höhere Priorität zu nutzen?" + +#. Type: boolean +#. Description +#: ../mumble-server.templates:3001 +msgid "" +"Mumble-server (murmurd) can use higher process and network priority to " +"ensure low latency audio forwarding even on highly loaded servers." +msgstr "" +"Der Mumble-Server (murmurd) kann eine höhere Prozess- und Netzwerkpriorität " +"nutzen, um sicherzustellen, dass selbst bei hoher Last auf den Servern die " +"Audiosignale mit niedriger Latenz weitergeleitet werden." --- mumble-1.2.3-87-gf7d8711.orig/debian/po/pt.po +++ mumble-1.2.3-87-gf7d8711/debian/po/pt.po @@ -0,0 +1,103 @@ +# translation of mumble debconf to Portuguese +# Copyright (C) 2008 the mumble's copyright holder +# This file is distributed under the same license as the mumble package. +# +# Américo Monteiro , 2008, 2010. +msgid "" +msgstr "" +"Project-Id-Version: mumble 1.2.1-3\n" +"Report-Msgid-Bugs-To: mumble@packages.debian.org\n" +"POT-Creation-Date: 2010-01-11 16:52+0100\n" +"PO-Revision-Date: 2010-01-17 12:03+0000\n" +"Last-Translator: Américo Monteiro \n" +"Language-Team: Portuguese \n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Lokalize 1.0\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "Password to set on SuperUser account:" +msgstr "Palavra-passe a definir na conta SuperUser:" + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "" +"Murmur has a special account called \"SuperUser\" which bypasses all " +"privilege checks." +msgstr "" +"O murmur possui uma conta especial chamada \"SuperUser\" a qual ultrapassa " +"todas as verificações de privilégios." + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "" +"If you set a password here, the password for the \"SuperUser\" account will " +"be updated." +msgstr "" +"Se você definir aqui uma palavra-passe, a palavra-passe para a conta " +"\"SuperUser\" será actualizada." + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "If you leave this blank, the password will not be changed." +msgstr "Se você deixar isto vazio, a palavra-passe não será alterada." + +#. Type: boolean +#. Description +#: ../mumble-server.templates:2001 +msgid "Autostart mumble-server on server boot?" +msgstr "Arrancar automaticamente o mumble-server no arranque do servidor?" + +#. Type: boolean +#. Description +#: ../mumble-server.templates:2001 +msgid "" +"Mumble-server (murmurd) can start automatically when the server is booted." +msgstr "" +"O mumble-server (murmurd) pode ser arrancado automaticamente durante o " +"arranque do servidor." + +#. Type: boolean +#. Description +#: ../mumble-server.templates:3001 +msgid "Allow mumble-server to use higher priority?" +msgstr "Permitir ao mumble-server usar prioridade mais alta?" + +#. Type: boolean +#. Description +#: ../mumble-server.templates:3001 +msgid "" +"Mumble-server (murmurd) can use higher process and network priority to " +"ensure low latency audio forwarding even on highly loaded servers." +msgstr "" +"O mumble-server (murmurd) pode usar prioridade de processo e rede mais alta " +"para assegurar o envio de áudio de baixa latência mesmo em servidores muito " +"carregados." + +#~ msgid "Email address to send registration emails from:" +#~ msgstr "Endereço de email para utilizar para o envio de emails de registo:" + +#~ msgid "" +#~ "Murmur comes with a web-based registration script, which will send an " +#~ "authentication code to the user by email before registration can be " +#~ "completed." +#~ msgstr "" +#~ "O murmur vem com um script de registos baseado em web, o qual irá enviar " +#~ "um código de autenticação para o utilizador por email, antes que cada " +#~ "registo possa ser completado." + +#~ msgid "" +#~ "Set this to the email address you wish such authentication emails to come " +#~ "from. If you set it blank, registration will be disabled." +#~ msgstr "" +#~ "Configure isto para o endereço de email que deseja que os tais emails de " +#~ "autenticação venham de (From:). Se você deixar em branco, os registos " +#~ "serão desactivados." --- mumble-1.2.3-87-gf7d8711.orig/debian/po/fi.po +++ mumble-1.2.3-87-gf7d8711/debian/po/fi.po @@ -0,0 +1,81 @@ +# Esko Arajärvi , 2010. +msgid "" +msgstr "" +"Project-Id-Version: mumble\n" +"Report-Msgid-Bugs-To: mumble@packages.debian.org\n" +"POT-Creation-Date: 2010-01-11 16:52+0100\n" +"PO-Revision-Date: 2010-01-11 20:47+0200\n" +"Last-Translator: Esko Arajärvi \n" +"Language-Team: Finnish \n" +"Language: fi\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" +"X-Generator: Lokalize 1.0\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "Password to set on SuperUser account:" +msgstr "SuperUser-tunnuksen salasana:" + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "" +"Murmur has a special account called \"SuperUser\" which bypasses all " +"privilege checks." +msgstr "" +"Murmurissa on erityistunnus nimeltä ”SuperUser”, joka ohittaa kaikki " +"oikeustarkistukset." + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "" +"If you set a password here, the password for the \"SuperUser\" account will " +"be updated." +msgstr "" +"Jos syötät tähän kenttään salasanan, tunnuksen SuperUser salasana " +"päivitetään." + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "If you leave this blank, the password will not be changed." +msgstr "Jos jätät kentän tyhjäksi, salasanaa ei vaihdeta." + +#. Type: boolean +#. Description +#: ../mumble-server.templates:2001 +msgid "Autostart mumble-server on server boot?" +msgstr "Tulisiko mumble-server käynnistää automaattisesti?" + +#. Type: boolean +#. Description +#: ../mumble-server.templates:2001 +msgid "" +"Mumble-server (murmurd) can start automatically when the server is booted." +msgstr "" +"Mumble-server-palvelin (prosessi murmurd) voidaan käynnistää " +"automaattisesti, kun palvelin käynnistetään." + +#. Type: boolean +#. Description +#: ../mumble-server.templates:3001 +msgid "Allow mumble-server to use higher priority?" +msgstr "Ajetaanko mumble-serveriä korkeammalla prioriteetillä?" + +#. Type: boolean +#. Description +#: ../mumble-server.templates:3001 +msgid "" +"Mumble-server (murmurd) can use higher process and network priority to " +"ensure low latency audio forwarding even on highly loaded servers." +msgstr "" +"Mumble-server-palvelinta (prosessi murmurd) voidaan ajaa korkeammalla " +"prosessi- ja verkkoprioriteetilla pienen latenssin varmistamiseksi äänen " +"välityksessä kuormitetuillakin palvelimilla." --- mumble-1.2.3-87-gf7d8711.orig/debian/po/eu.po +++ mumble-1.2.3-87-gf7d8711/debian/po/eu.po @@ -0,0 +1,83 @@ +# translation of mumble_1.2.2-4.1_eu.po to Basque +# Copyright (C) 2010 +# This file is distributed under the same license as the mumble package. +# +# Piarres Beobide , 2008. +# Iñaki Larrañaga Murgoitio , 2010. +msgid "" +msgstr "" +"Project-Id-Version: mumble_1.2.2-4.1_eu\n" +"Report-Msgid-Bugs-To: mumble@packages.debian.org\n" +"POT-Creation-Date: 2010-01-11 16:52+0100\n" +"PO-Revision-Date: 2010-10-14 18:08+0200\n" +"Last-Translator: Iñaki Larrañaga Murgoitio \n" +"Language-Team: Basque \n" +"Language: \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=2; plural=(n != 1);\n" + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "Password to set on SuperUser account:" +msgstr "Pasahitza 'SuperUser' kontuari ezartzeko:" + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "" +"Murmur has a special account called \"SuperUser\" which bypasses all " +"privilege checks." +msgstr "" +"Murmur-ek segurtasun egiaztapen guztiak saltatzen dituen \"SuperUser\" " +"deituriko kontu berezi bat du." + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "" +"If you set a password here, the password for the \"SuperUser\" account will " +"be updated." +msgstr "" +"Pasahitza hemen ezartzen baduzu \"SuperUser\"en pasahitza eguneratu egingo " +"da." + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "If you leave this blank, the password will not be changed." +msgstr "Hutsik uzten baduzu, pasahitza ez da aldatuko." + +#. Type: boolean +#. Description +#: ../mumble-server.templates:2001 +msgid "Autostart mumble-server on server boot?" +msgstr "Automatikoki abiarazi 'mumble-server' zerbitzaria abioan?" + +#. Type: boolean +#. Description +#: ../mumble-server.templates:2001 +msgid "" +"Mumble-server (murmurd) can start automatically when the server is booted." +msgstr "" +"Mumble-server (murmurd) automatikoki exekuta daiteke zerbitzaria abiaraztean." + +#. Type: boolean +#. Description +#: ../mumble-server.templates:3001 +msgid "Allow mumble-server to use higher priority?" +msgstr "Baimendu 'mumble-server'-ek lehentasun handiagoa erabiltzea?" + +#. Type: boolean +#. Description +#: ../mumble-server.templates:3001 +msgid "" +"Mumble-server (murmurd) can use higher process and network priority to " +"ensure low latency audio forwarding even on highly loaded servers." +msgstr "" +"Mumble-server (murmurd) prozesu eta sareko lehentasun handiagoa erabil " +"dezake audioaren igorpena latentzia baxukoa izatea ziurtatzeko nahiz eta " +"zerbitzariak oso kargatuta egon." --- mumble-1.2.3-87-gf7d8711.orig/debian/po/ja.po +++ mumble-1.2.3-87-gf7d8711/debian/po/ja.po @@ -0,0 +1,73 @@ +# Japanese translation for the mumble-server package. +# Copyright (C) 2008 by Masayuki Hamasaki +# This file is distributed under the same license as the mumble package. +# +# Masayuki Hamasaki , 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: 1.2.1-3\n" +"Report-Msgid-Bugs-To: mumble@packages.debian.org\n" +"POT-Creation-Date: 2010-01-11 16:52+0100\n" +"PO-Revision-Date: 2010-01-13 13:27+900\n" +"Last-Translator: Masayuki Hamasaki \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "Password to set on SuperUser account:" +msgstr "SuperUserアカウントのパスワード:" + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "" +"Murmur has a special account called \"SuperUser\" which bypasses all " +"privilege checks." +msgstr "Murmurには\"SuperUser\"と呼ばれる特権アカウントが存在します" + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "" +"If you set a password here, the password for the \"SuperUser\" account will " +"be updated." +msgstr "パスワードを設定すると、\"SuperUser\"のアカウントが更新されます" + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "If you leave this blank, the password will not be changed." +msgstr "ここを空にすると、パスワードは変更されません" + +#. Type: boolean +#. Description +#: ../mumble-server.templates:2001 +msgid "Autostart mumble-server on server boot?" +msgstr "起動時に自動的にmumble-serverを開始しますか?" + +#. Type: boolean +#. Description +#: ../mumble-server.templates:2001 +msgid "" +"Mumble-server (murmurd) can start automatically when the server is booted." +msgstr "Mumble-Server (murmurd) は起動時に自動的に開始することができます" + +#. Type: boolean +#. Description +#: ../mumble-server.templates:3001 +msgid "Allow mumble-server to use higher priority?" +msgstr "起動時に自動的にmumble-serverを開始しますか?" + +#. Type: boolean +#. Description +#: ../mumble-server.templates:3001 +msgid "" +"Mumble-server (murmurd) can use higher process and network priority to " +"ensure low latency audio forwarding even on highly loaded servers." +msgstr "" +"高負荷時でも音声の転送を低レイテンシーで行うために、Mumble-server (murmurd) は" +"プロセスとネットワークを高い優先度で使用することができます" --- mumble-1.2.3-87-gf7d8711.orig/debian/po/it.po +++ mumble-1.2.3-87-gf7d8711/debian/po/it.po @@ -0,0 +1,82 @@ +# ITALIAN TRANSLATION OF MUMBLE'S PO-DEBCONF FILE. +# COPYRIGHT (C) 2010 THE MUMBLE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the mumble package. +# +# Vincenzo Campanella , 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: mumble\n" +"Report-Msgid-Bugs-To: mumble@packages.debian.org\n" +"POT-Creation-Date: 2010-01-11 16:52+0100\n" +"PO-Revision-Date: 2010-10-14 20:09+0200\n" +"Last-Translator: Vincenzo Campanella \n" +"Language-Team: Italian \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "Password to set on SuperUser account:" +msgstr "Password dell'account SuperUser:" + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "" +"Murmur has a special account called \"SuperUser\" which bypasses all " +"privilege checks." +msgstr "" +"Murmur possiede un account speciale, «SuperUser», che evita tutti i " +"controlli dei permessi." + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "" +"If you set a password here, the password for the \"SuperUser\" account will " +"be updated." +msgstr "" +"Se s'imposta qui una password, la password dell'account «SuperUser» verrà " +"aggiornata." + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "If you leave this blank, the password will not be changed." +msgstr "Se si lascia il campo vuoto, la password non verrà modificata." + +#. Type: boolean +#. Description +#: ../mumble-server.templates:2001 +msgid "Autostart mumble-server on server boot?" +msgstr "Eseguire automaticamente mumble-server all'avvio?" + +#. Type: boolean +#. Description +#: ../mumble-server.templates:2001 +msgid "" +"Mumble-server (murmurd) can start automatically when the server is booted." +msgstr "" +"Mumble-server (murmurd) può essere eseguito automaticamente all'avvio del " +"server." + +#. Type: boolean +#. Description +#: ../mumble-server.templates:3001 +msgid "Allow mumble-server to use higher priority?" +msgstr "Consentire a mumble-server di utilizzare priorità più alta?" + +#. Type: boolean +#. Description +#: ../mumble-server.templates:3001 +msgid "" +"Mumble-server (murmurd) can use higher process and network priority to " +"ensure low latency audio forwarding even on highly loaded servers." +msgstr "" +"Mumble-server (murmurd) può utilizzare una priorità di processo e di rete " +"più alta, al fine di assicurare una bassa latenza dell'audio inoltrato anche " +"su server molto occupati." --- mumble-1.2.3-87-gf7d8711.orig/debian/po/templates.pot +++ mumble-1.2.3-87-gf7d8711/debian/po/templates.pot @@ -0,0 +1,72 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: mumble@packages.debian.org\n" +"POT-Creation-Date: 2010-01-11 16:52+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "Password to set on SuperUser account:" +msgstr "" + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "" +"Murmur has a special account called \"SuperUser\" which bypasses all " +"privilege checks." +msgstr "" + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "" +"If you set a password here, the password for the \"SuperUser\" account will " +"be updated." +msgstr "" + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "If you leave this blank, the password will not be changed." +msgstr "" + +#. Type: boolean +#. Description +#: ../mumble-server.templates:2001 +msgid "Autostart mumble-server on server boot?" +msgstr "" + +#. Type: boolean +#. Description +#: ../mumble-server.templates:2001 +msgid "" +"Mumble-server (murmurd) can start automatically when the server is booted." +msgstr "" + +#. Type: boolean +#. Description +#: ../mumble-server.templates:3001 +msgid "Allow mumble-server to use higher priority?" +msgstr "" + +#. Type: boolean +#. Description +#: ../mumble-server.templates:3001 +msgid "" +"Mumble-server (murmurd) can use higher process and network priority to " +"ensure low latency audio forwarding even on highly loaded servers." +msgstr "" --- mumble-1.2.3-87-gf7d8711.orig/debian/po/ru.po +++ mumble-1.2.3-87-gf7d8711/debian/po/ru.po @@ -0,0 +1,85 @@ +# translation of ru.po to Russian +# Copyright (C) 2008 +# This file is distributed under the same license as the mumble package. +# +# Yuri Kozlov , 2008. +# Yuri Kozlov , 2010. +msgid "" +msgstr "" +"Project-Id-Version: mumble 1.2.1-3\n" +"Report-Msgid-Bugs-To: mumble@packages.debian.org\n" +"POT-Creation-Date: 2010-01-11 16:52+0100\n" +"PO-Revision-Date: 2010-01-11 20:40+0300\n" +"Last-Translator: Yuri Kozlov \n" +"Language-Team: Russian \n" +"Language: ru\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: password +#. Description +#: ../mumble-server.templates:1001 +msgid "Password to set on SuperUser account:" +msgstr "Пароль для учётной записи SuperUser:" + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "" +"Murmur has a special account called \"SuperUser\" which bypasses all " +"privilege checks." +msgstr "" +"В Murmur есть специальная учётная запись с именем \"SuperUser\", на которую " +"не действуют никакие проверки и ограничения." + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "" +"If you set a password here, the password for the \"SuperUser\" account will " +"be updated." +msgstr "" +"Если вы введёте здесь пароль, то он заменит имеющийся пароль для учётной " +"записи \"SuperUser\"." + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "If you leave this blank, the password will not be changed." +msgstr "Если вы оставите поле пустым, то пароль изменён не будет." + +#. Type: boolean +#. Description +#: ../mumble-server.templates:2001 +msgid "Autostart mumble-server on server boot?" +msgstr "Запускать mumble-server при включении компьютера?" + +#. Type: boolean +#. Description +#: ../mumble-server.templates:2001 +msgid "" +"Mumble-server (murmurd) can start automatically when the server is booted." +msgstr "" +"Mumble-server (murmurd) может запускаться автоматически при включении " +"компьютера." + +#. Type: boolean +#. Description +#: ../mumble-server.templates:3001 +msgid "Allow mumble-server to use higher priority?" +msgstr "Позволять работать mumble-server с более высоким приоритетом?" + +#. Type: boolean +#. Description +#: ../mumble-server.templates:3001 +msgid "" +"Mumble-server (murmurd) can use higher process and network priority to " +"ensure low latency audio forwarding even on highly loaded servers." +msgstr "" +"Сервер Mumble-server (murmurd) можно запустить с более высоким приоритетом " +"для процесса и сети, что позволяет сократить задержку при передаче " +"аудиоинформации даже на сильно нагруженных серверах." --- mumble-1.2.3-87-gf7d8711.orig/debian/po/vi.po +++ mumble-1.2.3-87-gf7d8711/debian/po/vi.po @@ -0,0 +1,82 @@ +# Vietnamese translation for Mumble. +# Copyright © 2010 Free Software Foundation, Inc. +# Clytie Siddall , 2008-2010. +# +msgid "" +msgstr "" +"Project-Id-Version: mumble 1.2.1-3\n" +"Report-Msgid-Bugs-To: mumble@packages.debian.org\n" +"POT-Creation-Date: 2010-01-11 16:52+0100\n" +"PO-Revision-Date: 2010-02-11 18:40+0930\n" +"Last-Translator: Clytie Siddall \n" +"Language-Team: Vietnamese \n" +"Language: vi\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.8\n" + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "Password to set on SuperUser account:" +msgstr "Mật khẩu cần đặt vào tài khoản Siêu Người Dùng:" + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "" +"Murmur has a special account called \"SuperUser\" which bypasses all " +"privilege checks." +msgstr "" +"Murmur có một tài khoản đặc biệt được gọi là « SuperUser « (siêu người dùng) " +"mà đi qua mọi việc kiểm tra quyền truy cập." + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "" +"If you set a password here, the password for the \"SuperUser\" account will " +"be updated." +msgstr "" +"Đặt mật khẩu ở đây thì mật khẩu của tài khoản « SuperUser » cũng được cập " +"nhật." + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "If you leave this blank, the password will not be changed." +msgstr "Bỏ trống trường này thì mật khẩu không thay đổi." + +#. Type: boolean +#. Description +#: ../mumble-server.templates:2001 +msgid "Autostart mumble-server on server boot?" +msgstr "Tự động khởi chạy trình phục vụ Mumble vào lúc khởi động máy phục vụ ?" + +#. Type: boolean +#. Description +#: ../mumble-server.templates:2001 +msgid "" +"Mumble-server (murmurd) can start automatically when the server is booted." +msgstr "" +"Trình phục vụ Mumble (murmurd) có khả năng tự động khởi chạy khi máy phục vụ " +"khởi động." + +#. Type: boolean +#. Description +#: ../mumble-server.templates:3001 +msgid "Allow mumble-server to use higher priority?" +msgstr "Cho phép trình phục vụ Mumble đặt mức ưu tiên cao hơn ?" + +#. Type: boolean +#. Description +#: ../mumble-server.templates:3001 +msgid "" +"Mumble-server (murmurd) can use higher process and network priority to " +"ensure low latency audio forwarding even on highly loaded servers." +msgstr "" +"Trình phục vụ Mumble (murmurd) có khả năng sử dụng mức ưu tiên cao hơn chạy " +"tiến trình và mạng nhằm đảm bảo rằng âm thanh chuyển tiếp hơi nhanh, ngay cả " +"trên máy phục vụ rất bận." --- mumble-1.2.3-87-gf7d8711.orig/debian/po/gl.po +++ mumble-1.2.3-87-gf7d8711/debian/po/gl.po @@ -0,0 +1,97 @@ +# Galician translation of mumble's debconf templates +# This file is distributed under the same license as the mumble package. +# Jacobo Tarrio , 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: mumble\n" +"Report-Msgid-Bugs-To: mumble@packages.debian.org\n" +"POT-Creation-Date: 2010-01-11 16:52+0100\n" +"PO-Revision-Date: 2008-04-26 18:47+0100\n" +"Last-Translator: Jacobo Tarrio \n" +"Language-Team: Galician \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "Password to set on SuperUser account:" +msgstr "Contrasinal para a conta de SuperUser:" + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "" +"Murmur has a special account called \"SuperUser\" which bypasses all " +"privilege checks." +msgstr "" +"Murmur ten unha conta especial chamada \"SuperUser\" ao que non se aplican " +"as comprobacións de privilexios." + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "" +"If you set a password here, the password for the \"SuperUser\" account will " +"be updated." +msgstr "" +"Se escribe aquí un contrasinal, hase actualizar o contrasinal da conta " +"\"SuperUser\"." + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "If you leave this blank, the password will not be changed." +msgstr "Se deixa isto baleiro, non se ha cambiar o contrasinal." + +#. Type: boolean +#. Description +#: ../mumble-server.templates:2001 +msgid "Autostart mumble-server on server boot?" +msgstr "¿Iniciar mumble-server ao arrincar o servidor?" + +#. Type: boolean +#. Description +#: ../mumble-server.templates:2001 +msgid "" +"Mumble-server (murmurd) can start automatically when the server is booted." +msgstr "" +"Mumble-server (murmurd) pódese iniciar automaticamente ao arrincar o " +"servidor." + +#. Type: boolean +#. Description +#: ../mumble-server.templates:3001 +#, fuzzy +#| msgid "Autostart mumble-server on server boot?" +msgid "Allow mumble-server to use higher priority?" +msgstr "¿Iniciar mumble-server ao arrincar o servidor?" + +#. Type: boolean +#. Description +#: ../mumble-server.templates:3001 +msgid "" +"Mumble-server (murmurd) can use higher process and network priority to " +"ensure low latency audio forwarding even on highly loaded servers." +msgstr "" + +#~ msgid "Email address to send registration emails from:" +#~ msgstr "Enderezo de email desde o que enviar emails de rexistro:" + +#~ msgid "" +#~ "Murmur comes with a web-based registration script, which will send an " +#~ "authentication code to the user by email before registration can be " +#~ "completed." +#~ msgstr "" +#~ "Murmur ten un script de rexistro baseado en web que ha enviar un código " +#~ "de autenticación ao usuario por email para poder completar o rexistro." + +#~ msgid "" +#~ "Set this to the email address you wish such authentication emails to come " +#~ "from. If you set it blank, registration will be disabled." +#~ msgstr "" +#~ "Escriba aquí o enderezo de email desde o que deban proceder esas mensaxes " +#~ "de autenticación. Se o deixa baleiro, hase desactivar o rexistro." --- mumble-1.2.3-87-gf7d8711.orig/debian/po/sv.po +++ mumble-1.2.3-87-gf7d8711/debian/po/sv.po @@ -0,0 +1,100 @@ +# Translation of mumble debconf template to Swedish +# Copyright (C) 2010 Martin Bagge +# This file is distributed under the same license as the mumble package. +# +# Martin Bagge , 2008, 2010 +msgid "" +msgstr "" +"Project-Id-Version: mumble\n" +"Report-Msgid-Bugs-To: mumble@packages.debian.org\n" +"POT-Creation-Date: 2010-01-11 16:52+0100\n" +"PO-Revision-Date: 2010-01-11 21:39+0100\n" +"Last-Translator: Martin Bagge \n" +"Language-Team: swedish \n" +"Language: \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" +"X-Poedit-Language: Swedish\n" +"X-Poedit-Country: Sweden\n" + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "Password to set on SuperUser account:" +msgstr "Lösenord för användaren \"SuperUser\":" + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "" +"Murmur has a special account called \"SuperUser\" which bypasses all " +"privilege checks." +msgstr "" +"Murmur har ett speciellt konto kallat \"SuperUser\" som kringgår alla " +"säkerhetskontroller." + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "" +"If you set a password here, the password for the \"SuperUser\" account will " +"be updated." +msgstr "" +"Om du sätter ett lösenord här kommer lösenordet för \"SuperUser\" att ändras." + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "If you leave this blank, the password will not be changed." +msgstr "Lämnar du å andra sidan fältet tomt kommer lösenordet inte att ändras." + +#. Type: boolean +#. Description +#: ../mumble-server.templates:2001 +msgid "Autostart mumble-server on server boot?" +msgstr "Ska mumble-server startas som en del av uppstartsprocessen?" + +#. Type: boolean +#. Description +#: ../mumble-server.templates:2001 +msgid "" +"Mumble-server (murmurd) can start automatically when the server is booted." +msgstr "Mumble-server (murmurd) kan startas automatiskt när servern startas." + +#. Type: boolean +#. Description +#: ../mumble-server.templates:3001 +msgid "Allow mumble-server to use higher priority?" +msgstr "Ska mumble-server tillåtas högre prioritet?" + +#. Type: boolean +#. Description +#: ../mumble-server.templates:3001 +msgid "" +"Mumble-server (murmurd) can use higher process and network priority to " +"ensure low latency audio forwarding even on highly loaded servers." +msgstr "" +"Mumble-server (murmurd) kan använder en högre prioriterad nätverksprocess " +"för att garantera vidareförmedling av ljud med låg latens även på servrar " +"som har hög belastning i övrigt." + +#~ msgid "Email address to send registration emails from:" +#~ msgstr "E-post-adress som registrerings-e-posten skickas från:" + +#~ msgid "" +#~ "Murmur comes with a web-based registration script, which will send an " +#~ "authentication code to the user by email before registration can be " +#~ "completed." +#~ msgstr "" +#~ "Murmur levereras med ett webbaserat registrerings-skript som skickar en " +#~ "identifieringskod till användaren med e-post innan registreringen kan " +#~ "slutföras." + +#~ msgid "" +#~ "Set this to the email address you wish such authentication emails to come " +#~ "from. If you set it blank, registration will be disabled." +#~ msgstr "" +#~ "Ange den e-post-adress som ska vara avsändare på identifierings-e-post-" +#~ "meddelandena, lämnas fältet blankt kommer registreringen stängas av." --- mumble-1.2.3-87-gf7d8711.orig/debian/po/POTFILES.in +++ mumble-1.2.3-87-gf7d8711/debian/po/POTFILES.in @@ -0,0 +1 @@ +[type: gettext/rfc822deb] mumble-server.templates --- mumble-1.2.3-87-gf7d8711.orig/debian/po/cs.po +++ mumble-1.2.3-87-gf7d8711/debian/po/cs.po @@ -0,0 +1,95 @@ +# Czech translation of mumble debconf messages. +# Copyright (C) 2008 +# This file is distributed under the same license as the mumble package. +# Miroslav Kure , 2008, 2010 +# +msgid "" +msgstr "" +"Project-Id-Version: mumble\n" +"Report-Msgid-Bugs-To: mumble@packages.debian.org\n" +"POT-Creation-Date: 2010-01-11 16:52+0100\n" +"PO-Revision-Date: 2010-01-19 11:47+0100\n" +"Last-Translator: Miroslav Kure \n" +"Language-Team: Czech \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "Password to set on SuperUser account:" +msgstr "Heslo pro účet SuperUser:" + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "" +"Murmur has a special account called \"SuperUser\" which bypasses all " +"privilege checks." +msgstr "" +"Murmur má speciální účet nazvaný „SuperUser“, který obchází veškeré " +"bezpečnostní kontroly." + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "" +"If you set a password here, the password for the \"SuperUser\" account will " +"be updated." +msgstr "Zadáte-li zde něco, heslo účtu „SuperUser“ se aktualizuje." + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "If you leave this blank, the password will not be changed." +msgstr "Ponecháte-li prázdné, heslo se nezmění." + +#. Type: boolean +#. Description +#: ../mumble-server.templates:2001 +msgid "Autostart mumble-server on server boot?" +msgstr "Spouštět mumble-server automaticky při zavádění systému?" + +#. Type: boolean +#. Description +#: ../mumble-server.templates:2001 +msgid "" +"Mumble-server (murmurd) can start automatically when the server is booted." +msgstr "" +"Mumble-server (murmurd) se může spouštět automaticky při zavádění systému." + +#. Type: boolean +#. Description +#: ../mumble-server.templates:3001 +msgid "Allow mumble-server to use higher priority?" +msgstr "Povolit mumble-serveru používat vyšší prioritu?" + +#. Type: boolean +#. Description +#: ../mumble-server.templates:3001 +msgid "" +"Mumble-server (murmurd) can use higher process and network priority to " +"ensure low latency audio forwarding even on highly loaded servers." +msgstr "" +"Mumble-server (murmurd) může využívat vyšší prioritu procesu k zajištění " +"nízkých latencí při odesílání audia i na velmi zatížených serverech." + +#~ msgid "Email address to send registration emails from:" +#~ msgstr "Emailová adresa, ze které se mají posílat registrační emaily:" + +#~ msgid "" +#~ "Murmur comes with a web-based registration script, which will send an " +#~ "authentication code to the user by email before registration can be " +#~ "completed." +#~ msgstr "" +#~ "Murmur obsahuje webový registrační skript, který před dokončením " +#~ "registrace zašle uživateli emailem autentizační kód." + +#~ msgid "" +#~ "Set this to the email address you wish such authentication emails to come " +#~ "from. If you set it blank, registration will be disabled." +#~ msgstr "" +#~ "Zadejte zde emailovou adresu, ze které mají tyto autentizační emaily " +#~ "přicházet. Ponecháte-li prázdné, registrace bude zakázána." --- mumble-1.2.3-87-gf7d8711.orig/debian/po/es.po +++ mumble-1.2.3-87-gf7d8711/debian/po/es.po @@ -0,0 +1,129 @@ +# mumble po-debconf translation to Spanish +# Copyright (C) 2010 Software in the Public Interest +# This file is distributed under the same license as the mumble package. +# +# Changes: +# - Initial translation +# Álvaro M. Recio +# +# - Updates +# Omar Campagne , 2010 +# +# 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 +# +msgid "" +msgstr "" +"Project-Id-Version: mumble\n" +"Report-Msgid-Bugs-To: mumble@packages.debian.org\n" +"POT-Creation-Date: 2010-01-11 16:52+0100\n" +"PO-Revision-Date: 2010-07-25 17:25+0200\n" +"Last-Translator: Omar Campagne \n" +"Language-Team: Debian l10n Spanish \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2009-02-03 18:56+0000\n" +"X-Generator: Launchpad (build Unknown)\n" + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "Password to set on SuperUser account:" +msgstr "Contraseña a utilizar para la cuenta «SuperUser»:" + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "" +"Murmur has a special account called \"SuperUser\" which bypasses all " +"privilege checks." +msgstr "" +"Murmur posee una cuenta especial llamada «SuperUser» para la que no se hacen " +"ninguna de las comprobaciones de nivel de privilegios." + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "" +"If you set a password here, the password for the \"SuperUser\" account will " +"be updated." +msgstr "" +"Se actualizará la contraseña de la cuenta «SuperUser» si se define una " +"contraseña aquí." + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "If you leave this blank, the password will not be changed." +msgstr "La contraseña no se modificará si deja este valor en blanco." + +#. Type: boolean +#. Description +#: ../mumble-server.templates:2001 +msgid "Autostart mumble-server on server boot?" +msgstr "¿Desea iniciar automáticamente mumble-server al arrancar el servidor?" + +#. Type: boolean +#. Description +#: ../mumble-server.templates:2001 +msgid "" +"Mumble-server (murmurd) can start automatically when the server is booted." +msgstr "" +"Mumble-server («murmurd») se puede iniciar automáticamente al arrancar el " +"servidor." + +#. Type: boolean +#. Description +#: ../mumble-server.templates:3001 +msgid "Allow mumble-server to use higher priority?" +msgstr "¿Desea permitir que mumble-server use una prioridad más alta?" + +#. Type: boolean +#. Description +#: ../mumble-server.templates:3001 +msgid "" +"Mumble-server (murmurd) can use higher process and network priority to " +"ensure low latency audio forwarding even on highly loaded servers." +msgstr "" +"Mumble-server («murmurd») puede usar una prioridad de proceso y de red más " +"alta de forma que pueda garantizar una latencia baja al reenviar audio " +"incluso en servidores que tengan mucha carga." + +#~ msgid "Email address to send registration emails from:" +#~ msgstr "" +#~ "Dirección de correo electrónico desde la que enviar los correos de " +#~ "registro:" + +#~ msgid "" +#~ "Murmur comes with a web-based registration script, which will send an " +#~ "authentication code to the user by email before registration can be " +#~ "completed." +#~ msgstr "" +#~ "Murmur incluye un guión para el registro basado en web, que enviará por " +#~ "correo al usuario un código de autenticación para que pueda completar el " +#~ "registro." + +#~ msgid "" +#~ "Set this to the email address you wish such authentication emails to come " +#~ "from. If you set it blank, registration will be disabled." +#~ msgstr "" +#~ "Escriba aquí la dirección de correo electrónico desde la que desea que se " +#~ "envíen estos mensajes. Si deja esto en blanco, se desactivarán los " +#~ "registros." --- mumble-1.2.3-87-gf7d8711.orig/debian/po/fr.po +++ mumble-1.2.3-87-gf7d8711/debian/po/fr.po @@ -0,0 +1,102 @@ +# French translation of mumble debconf templates +# +# Copyright (C) 2010 Debian French l10n Team +# This file is distributed under the same license as the mumble package. +# Translator: +# Steve Petruzzello , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: 1.1.4-2\n" +"Report-Msgid-Bugs-To: mumble@packages.debian.org\n" +"POT-Creation-Date: 2010-01-11 16:52+0100\n" +"PO-Revision-Date: 2008-05-19 17:34+0100\n" +"Last-Translator: Steve Petruzzello \n" +"Language-Team: French \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "Password to set on SuperUser account:" +msgstr "Mot de passe du superutilisateur :" + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "" +"Murmur has a special account called \"SuperUser\" which bypasses all " +"privilege checks." +msgstr "" +"Murmur utilise un compte spécial appelé « SuperUser » qui contourne toutes " +"les vérifications usuelles de privilèges." + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "" +"If you set a password here, the password for the \"SuperUser\" account will " +"be updated." +msgstr "Le mot de passe indiqué ici sera affecté au compte « SuperUser »." + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "If you leave this blank, the password will not be changed." +msgstr "Si vous laissez ce champ vide, le mot de passe ne sera pas modifié." + +#. Type: boolean +#. Description +#: ../mumble-server.templates:2001 +msgid "Autostart mumble-server on server boot?" +msgstr "" +"Faut-il démarrer automatiquement mumble-server au lancement de la machine ?" + +#. Type: boolean +#. Description +#: ../mumble-server.templates:2001 +msgid "" +"Mumble-server (murmurd) can start automatically when the server is booted." +msgstr "" +"Le démon de mumble (murmurd) peut être démarré automatiquement lors du " +"lancement de la machine." + +#. Type: boolean +#. Description +#: ../mumble-server.templates:3001 +msgid "Allow mumble-server to use higher priority?" +msgstr "Faut-il autoriser mumble-server à utiliser une priorité élevée ?" + +#. Type: boolean +#. Description +#: ../mumble-server.templates:3001 +msgid "" +"Mumble-server (murmurd) can use higher process and network priority to " +"ensure low latency audio forwarding even on highly loaded servers." +msgstr "" +"Le démon de mumble-server (murmurd) peut utiliser une priorité de processus " +"et de réseau plus élevée afin d'assurer une latence de transfert audio basse " +"même sur des serveurs fortement chargés." + +#~ msgid "Email address to send registration emails from:" +#~ msgstr "Adresse de courriel utilisée pour envoyer les souscriptions :" + +#~ msgid "" +#~ "Murmur comes with a web-based registration script, which will send an " +#~ "authentication code to the user by email before registration can be " +#~ "completed." +#~ msgstr "" +#~ "Murmur est livré avec un script d'enregistrement qui enverra par courriel " +#~ "un code d'authentification à l'utilisateur, ce qui permet de terminer " +#~ "l'enregistrement." + +#~ msgid "" +#~ "Set this to the email address you wish such authentication emails to come " +#~ "from. If you set it blank, registration will be disabled." +#~ msgstr "" +#~ "Veuillez indiquer l'adresse électronique qui émettra les messages " +#~ "d'authentification. Si ce champ est laissé vide, l'enregistrement sera " +#~ "désactivée." --- mumble-1.2.3-87-gf7d8711.orig/debian/po/da.po +++ mumble-1.2.3-87-gf7d8711/debian/po/da.po @@ -0,0 +1,78 @@ +# Danish translation mumble. +# Copyright (c) 2010 mumble & nedenstående oversættere. +# This file is distributed under the same license as the mumble package. +# Joe Hansen , 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: mumble\n" +"Report-Msgid-Bugs-To: mumble@packages.debian.org\n" +"POT-Creation-Date: 2010-01-11 16:52+0100\n" +"PO-Revision-Date: 2010-07-01 17:34+0000\n" +"Last-Translator: Joe Hansen \n" +"Language-Team: Danish \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "Password to set on SuperUser account:" +msgstr "Adgangskode der skal sættes på kontoen SuperUser:" + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "" +"Murmur has a special account called \"SuperUser\" which bypasses all " +"privilege checks." +msgstr "" +"Murmur har en speciel konto kaldt »SuperUser« som forbigår alle " +"privilegietjek." + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "" +"If you set a password here, the password for the \"SuperUser\" account will " +"be updated." +msgstr "" +"Hvis du angiver en adgangskode her, vil adgangskoden for kontoen »SuperUser« " +"blive opdateret." + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "If you leave this blank, the password will not be changed." +msgstr "Hvis du efterlader den tom, vil adgangskoden ikke blive ændret." + +#. Type: boolean +#. Description +#: ../mumble-server.templates:2001 +msgid "Autostart mumble-server on server boot?" +msgstr "Autostart mumble-server ved serveropstart?" + +#. Type: boolean +#. Description +#: ../mumble-server.templates:2001 +msgid "" +"Mumble-server (murmurd) can start automatically when the server is booted." +msgstr "Mumble-server (murmurd) kan starte automatisk når serveren startes op." + +#. Type: boolean +#. Description +#: ../mumble-server.templates:3001 +msgid "Allow mumble-server to use higher priority?" +msgstr "Tillad mumble-server at bruge højere prioritet?" + +#. Type: boolean +#. Description +#: ../mumble-server.templates:3001 +msgid "" +"Mumble-server (murmurd) can use higher process and network priority to " +"ensure low latency audio forwarding even on highly loaded servers." +msgstr "" +"Mumble-server (murmurd) kan bruge højere proces- og netværksprioritet for at " +"sikre lav videresendelse af latenslyd på selv højt belastede servere." --- mumble-1.2.3-87-gf7d8711.orig/debian/po/hu.po +++ mumble-1.2.3-87-gf7d8711/debian/po/hu.po @@ -0,0 +1,100 @@ +# Hungarian translation for mumble +# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 +# This file is distributed under the same license as the mumble package. +# FIRST AUTHOR , 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: mumble\n" +"Report-Msgid-Bugs-To: mumble@packages.debian.org\n" +"POT-Creation-Date: 2010-01-11 16:52+0100\n" +"PO-Revision-Date: 2010-01-22 23:21+0000\n" +"Last-Translator: SPeck \n" +"Language-Team: Hungarian \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2010-02-03 13:28+0000\n" +"X-Generator: Launchpad (build Unknown)\n" + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "Password to set on SuperUser account:" +msgstr "Jelszó beállítás a rendszergazda hozzáféréshez" + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "" +"Murmur has a special account called \"SuperUser\" which bypasses all " +"privilege checks." +msgstr "" +"Murmur vagy egy speciális hozzáférése amit \"Rendszergazdának\" hívnak amely " +"végigmegy minden biztonsági ellenőrzésen" + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "" +"If you set a password here, the password for the \"SuperUser\" account will " +"be updated." +msgstr "" +"Ha itt beállítod a jelszót, a jelszó a \"Rendszergazda\"-hoz tartozó jelszó " +"fog frissíteni" + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "If you leave this blank, the password will not be changed." +msgstr "Ha üresen elhagyod ezt az ablakot, a jelszó nem fog megváltozni." + +#. Type: boolean +#. Description +#: ../mumble-server.templates:2001 +msgid "Autostart mumble-server on server boot?" +msgstr "Mumble server automatikus indítása rendszerindításnál?" + +#. Type: boolean +#. Description +#: ../mumble-server.templates:2001 +msgid "" +"Mumble-server (murmurd) can start automatically when the server is booted." +msgstr "" +"A Mumble-server (murmurd) automatikusan nem indul el ha a szerverrel " +"bebootolsz." + +#. Type: boolean +#. Description +#: ../mumble-server.templates:3001 +#, fuzzy +#| msgid "Autostart mumble-server on server boot?" +msgid "Allow mumble-server to use higher priority?" +msgstr "Mumble server automatikus indítása rendszerindításnál?" + +#. Type: boolean +#. Description +#: ../mumble-server.templates:3001 +msgid "" +"Mumble-server (murmurd) can use higher process and network priority to " +"ensure low latency audio forwarding even on highly loaded servers." +msgstr "" + +#~ msgid "Email address to send registration emails from:" +#~ msgstr "Email cím amelyről a regisztrál emaileket szeretnéd küldeni" + +#~ msgid "" +#~ "Murmur comes with a web-based registration script, which will send an " +#~ "authentication code to the user by email before registration can be " +#~ "completed." +#~ msgstr "" +#~ "Murmur web alapú regisztrációs scriptet tartalmaz, amely érvényesítő " +#~ "kódot fog küldeni a felhasználó email címére" + +#~ msgid "" +#~ "Set this to the email address you wish such authentication emails to come " +#~ "from. If you set it blank, registration will be disabled." +#~ msgstr "" +#~ "Állítsa be ezt az email címet, amennyiben erről akar küldeni értesítő " +#~ "emaileket. Ha üresen hagyod a regisztráció ki lessz kapcsolva" --- mumble-1.2.3-87-gf7d8711.orig/debian/po/nb.po +++ mumble-1.2.3-87-gf7d8711/debian/po/nb.po @@ -0,0 +1,80 @@ +# Copyright (C) 2010 +# This file is distributed under the same license as the mumble package. +# +# Bjørn Steensrud , 2010. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: mumble@packages.debian.org\n" +"POT-Creation-Date: 2010-01-11 16:52+0100\n" +"PO-Revision-Date: 2010-10-15 14:25+0200\n" +"Last-Translator: Bjørn Steensrud \n" +"Language-Team: Norwegian Bokmål \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Lokalize 1.0\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "Password to set on SuperUser account:" +msgstr "Passord som skal settes på superbruker-kontoen" + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "" +"Murmur has a special account called \"SuperUser\" which bypasses all " +"privilege checks." +msgstr "" +"Murmur har en spesiell konto som heter «SuperUser» som utelater alle " +"privilegiekontroller." + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "" +"If you set a password here, the password for the \"SuperUser\" account will " +"be updated." +msgstr "" +"Hvis du oppgir et passord her, så blir passordet på «SuperUser»-kontoen " +"oppdatert." + +#. Type: password +#. Description +#: ../mumble-server.templates:1001 +msgid "If you leave this blank, the password will not be changed." +msgstr "Hvis du lar det stå tomt, så blir passordet ikke endret." + +#. Type: boolean +#. Description +#: ../mumble-server.templates:2001 +msgid "Autostart mumble-server on server boot?" +msgstr "Skal mumble-tjeneren startes automatisk ved tjeneroppstart?" + +#. Type: boolean +#. Description +#: ../mumble-server.templates:2001 +msgid "" +"Mumble-server (murmurd) can start automatically when the server is booted." +msgstr "" +"Mumble-tjeneren (murmurd) kan starte automatisk når tjeneren startes opp." + +#. Type: boolean +#. Description +#: ../mumble-server.templates:3001 +msgid "Allow mumble-server to use higher priority?" +msgstr "Tillat mumble-tjener å bruke høyere prioritet?" + +#. Type: boolean +#. Description +#: ../mumble-server.templates:3001 +msgid "" +"Mumble-server (murmurd) can use higher process and network priority to " +"ensure low latency audio forwarding even on highly loaded servers." +msgstr "" +"Mumble-tjeneren (murmurd) kan bruke høyere prosess- og nettverksprioritet " +"for å sikre lydframsending med lav latenstid selv på tjenere med tung last." --- mumble-1.2.3-87-gf7d8711.orig/debian/backports/lucid +++ mumble-1.2.3-87-gf7d8711/debian/backports/lucid @@ -0,0 +1,40 @@ +#! /usr/bin/perl +# +# Hook for automatic backports. +# +# Target dist: Ubuntu Lucid + +use warnings; +use strict; +use Carp; + +open(F, "debian/control") or croak; +my $first = 1; +my $file; +my $field = ''; +while() { + chomp(); + if (/^(\S+):/) { + $field = $1; + } + if ($first) { + $file .= $_; + $first = 0; + } elsif (/^$/) { + $file .= "\n"; + } elsif ($field eq 'Description' || /^[^ ]/ || /^$/) { + $file .= "\n" . $_; + } else { + $file .= $_; + } +} +close(F); + +$file .= "\n"; + +$file =~ s/(\nBuild-Depends: [^\n]+)exim4/\1postfix/g; +$file =~ s/(\nDepends: [^\n]+)exim4/\1postfix/g; + +open(F, ">debian/control") or croak; +print F $file; +close(F); --- mumble-1.2.3-87-gf7d8711.orig/debian/backports/jaunty +++ mumble-1.2.3-87-gf7d8711/debian/backports/jaunty @@ -0,0 +1,78 @@ +#! /usr/bin/perl +# +# Hook for automatic backports. +# +# Target dist: Ubuntu Jaunty + +use warnings; +use strict; +use Carp; + +open(F, "debian/control") or croak; +my $first = 1; +my $file; +my $field = ''; +while() { + chomp(); + if (/^(\S+):/) { + $field = $1; + } + if ($first) { + $file .= $_; + $first = 0; + } elsif (/^$/) { + $file .= "\n"; + } elsif ($field eq 'Description' || /^[^ ]/ || /^$/) { + $file .= "\n" . $_; + } else { + $file .= $_; + } +} +close(F); + +$file .= "\n"; + +$file =~ s/(\nBuild-Depends: )/\1quilt, /g; +$file =~ s/(\nBuild-Depends: [^\n]+)exim4/\1postfix/g; +$file =~ s/(\nBuild-Depends: [^\n]+)quilt[^\)]+\)/\1quilt/g; +$file =~ s/(\nBuild-Depends: [^\n]+)libcelt-dev[^\)]+\)/\1/g; +$file =~ s/(\nBuild-Depends: [^\n]+)libboost-dev[^\)]+\)/\1libboost1.37-dev/g; +$file =~ s/(\nBuild-Depends: [^\n]+)libboost-python-dev[^\)]+\)/\1libboost-python1.37-dev/g; +$file =~ s/(\nDepends: [^\n]+)exim4/\1postfix/g; +$file =~ s/(\nDepends: [^\n]+)libcelt0 [^,]+,/\1/g; + +open(F, ">debian/control") or croak; +print F $file; +close(F); + +$file = ''; +open(F, "debian/mumble.install") or croak; +while () { + $file .= $_; +} +close(F); + +$file =~ s/(\n#)/\n/g; + +open(F, ">debian/mumble.install") or croak; +print F $file; +close(F); + +$file = ''; +open(F, "debian/rules") or croak; +while () { + $file .= $_; +} +close(F); + +$file =~ s/#QUILT //g; +$file =~ s/share\/Ice-3.3.1/share/g; + +open(F, ">debian/rules") or croak; +print F $file; +close(F); + +open(F, ">debian/source/format") or croak; +print F "1.0\n"; +close(F); + --- mumble-1.2.3-87-gf7d8711.orig/debian/backports/maverick +++ mumble-1.2.3-87-gf7d8711/debian/backports/maverick @@ -0,0 +1,40 @@ +#! /usr/bin/perl +# +# Hook for automatic backports. +# +# Target dist: Ubuntu Maverick + +use warnings; +use strict; +use Carp; + +open(F, "debian/control") or croak; +my $first = 1; +my $file; +my $field = ''; +while() { + chomp(); + if (/^(\S+):/) { + $field = $1; + } + if ($first) { + $file .= $_; + $first = 0; + } elsif (/^$/) { + $file .= "\n"; + } elsif ($field eq 'Description' || /^[^ ]/ || /^$/) { + $file .= "\n" . $_; + } else { + $file .= $_; + } +} +close(F); + +$file .= "\n"; + +$file =~ s/(\nBuild-Depends: [^\n]+)exim4/\1postfix/g; +$file =~ s/(\nDepends: [^\n]+)exim4/\1postfix/g; + +open(F, ">debian/control") or croak; +print F $file; +close(F); --- mumble-1.2.3-87-gf7d8711.orig/debian/backports/karmic +++ mumble-1.2.3-87-gf7d8711/debian/backports/karmic @@ -0,0 +1,74 @@ +#! /usr/bin/perl +# +# Hook for automatic backports. +# +# Target dist: Ubuntu Karmic + +use warnings; +use strict; +use Carp; + +open(F, "debian/control") or croak; +my $first = 1; +my $file; +my $field = ''; +while() { + chomp(); + if (/^(\S+):/) { + $field = $1; + } + if ($first) { + $file .= $_; + $first = 0; + } elsif (/^$/) { + $file .= "\n"; + } elsif ($field eq 'Description' || /^[^ ]/ || /^$/) { + $file .= "\n" . $_; + } else { + $file .= $_; + } +} +close(F); + +$file .= "\n"; + +$file =~ s/(\nBuild-Depends: )/\1quilt, /g; +$file =~ s/(\nBuild-Depends: [^\n]+)exim4/\1postfix/g; +$file =~ s/(\nBuild-Depends: [^\n]+)libcelt-dev[^\)]+\)/\1/g; +$file =~ s/(\nDepends: [^\n]+)exim4/\1postfix/g; +$file =~ s/(\nDepends: [^\n]+)libcelt0 [^,]+,/\1/g; + +open(F, ">debian/control") or croak; +print F $file; +close(F); + +$file = ''; +open(F, "debian/mumble.install") or croak; +while () { + $file .= $_; +} +close(F); + +$file =~ s/(\n#)/\n/g; + +open(F, ">debian/mumble.install") or croak; +print F $file; +close(F); + +$file = ''; +open(F, "debian/rules") or croak; +while () { + $file .= $_; +} +close(F); + +$file =~ s/#QUILT //g; +$file =~ s/share\/Ice-3.3.1/share/g; + +open(F, ">debian/rules") or croak; +print F $file; +close(F); + +open(F, ">debian/source/format") or croak; +print F "1.0\n"; +close(F); --- mumble-1.2.3-87-gf7d8711.orig/debian/backports/intrepid +++ mumble-1.2.3-87-gf7d8711/debian/backports/intrepid @@ -0,0 +1,16 @@ +#! /bin/bash +# +# Hook for automatic backports. +# +# Target dist: Ubuntu Intrepid Ibex + +sed -i -e 's#^\(Depends:.*\)exim4\(.*\)$#\1postfix\2#' debian/control +sed -i -e 's#^Build-Depends:.*$#Build-Depends: debhelper, po-debconf, quilt, libboost-dev, libqt4-dev, libssl-dev, libzeroc-ice33-dev | libzeroc-ice32-dev | libzeroc-ice-dev , ice33-translators | ice32-translators | ice-translators, libcap2-dev, protobuf-compiler, libprotobuf-dev, libavahi-compat-libdnssd-dev #' debian/control + +sed -i -e 's#CONFIG.=no-bundled-celt#CONFIG*=no-client#' debian/rules +sed -i -e 's#CONFIG.=symbols##' debian/rules + +perl -pi -e 'BEGIN{undef $/;} s/\nifeq \(.+?\nendif/\n/smg' debian/rules + +perl -pi -e 'BEGIN{undef $/;} s/Package: mumble\nArchitecture: any/Package: mumble\nArchitecture: none/smg' debian/control +perl -pi -e 'BEGIN{undef $/;} s/Package: mumble-dbg.+?Architecture: any/Package: mumble-dbg\nArchitecture: none/smg' debian/control --- mumble-1.2.3-87-gf7d8711.orig/debian/backports/lenny +++ mumble-1.2.3-87-gf7d8711/debian/backports/lenny @@ -0,0 +1,55 @@ +#! /usr/bin/perl +# +# Hook for automatic backports. +# +# Target dist: Debian Lenny + +use warnings; +use strict; +use Carp; + +open(F, "debian/control") or croak; +my $first = 1; +my $file; +my $field = ''; +while() { + chomp(); + if (/^(\S+):/) { + $field = $1; + } + if ($first) { + $file .= $_; + $first = 0; + } elsif (/^$/) { + $file .= "\n"; + } elsif ($field eq 'Description' || /^[^ ]/ || /^$/) { + $file .= "\n" . $_; + } else { + $file .= $_; + } +} +close(F); + +$file .= "\n"; + +$file =~ s/\nBuild-Depends: [^\n]+/\nBuild-Depends: debhelper (>= 5.0.51~), po-debconf, libboost-dev, libqt4-dev, libssl-dev, libzeroc-ice32-dev, ice32-translators, protobuf-compiler, libprotobuf-dev, libcap-dev/g; +$file =~ s/Package: mumble(-11x|)\nArchitecture: any/Package: mumble$1\nArchitecture: none/g; + +open(F, ">debian/control") or croak; +print F $file; +close(F); + +$file = ''; +open(F, "debian/rules") or croak; +while () { + $file .= $_; +} +close(F); + +$file =~ s/CONFIG.=no-bundled-speex/CONFIG*=no-client/; +$file =~ s/\nifeq \(.+?\nendif/\n/smg; + +open(F, ">debian/rules") or croak; +print F $file; +close(F); + --- mumble-1.2.3-87-gf7d8711.orig/debian/source/format +++ mumble-1.2.3-87-gf7d8711/debian/source/format @@ -0,0 +1 @@ +1.0