--- gom-0.30.2.orig/debian/gom.postinst +++ gom-0.30.2/debian/gom.postinst @@ -0,0 +1,21 @@ +#!/bin/sh -e +. /usr/share/debconf/confmodule + +# Version <= 0.29.103-6 used this file, not /etc/default/gom. We just delete that silently. +no_auto_init_old=/etc/gom/NO_AUTO_INIT +if [ -e ${no_auto_init_old} ]; then + rm -f ${no_auto_init_old} +fi + +CONFFILE="/etc/default/gom" +db_get gom/auto_init || true +auto_init="${RET}" +db_get gom/valid_sound_devices || true +valid_sound_devices="${RET}" +cat <${CONFFILE} +# Generated by postinst on `date`. +auto_init="${auto_init}" +valid_sound_devices="${valid_sound_devices}" +EOF + +#DEBHELPER# --- gom-0.30.2.orig/debian/gom.menu +++ gom-0.30.2/debian/gom.menu @@ -0,0 +1,2 @@ +?package(gom): needs="text" section="Applications/Sound" title="Gom Audio Mixer" \ + command="/usr/bin/gom --interface=t" --- gom-0.30.2.orig/debian/README.Debian +++ gom-0.30.2/debian/README.Debian @@ -0,0 +1,110 @@ +This is the Debian GNU/Linux prepackaged version of gom, GOM is nOt +yet another Mixer (a generic audio mixer), put together by + +Stephan Suerken + +With 0.30.2-1, the package no longer ships hooks for modutils on +sound module load. Instead, you may add something like this + +--- +# This initializes sound mixers with gom anytime +# the "sound.o" module is loaded +post-install sound /etc/init.d/gom start >/dev/null 2>&1 +post-install snd-mixer-oss /etc/init.d/gom start >/dev/null 2>&1 +--- + +to /etc/modutils (2.4) or /etc/modprobe.d, id you really need that feature. + +All notes below might be somewhat outdated ;): + +Notes +----- + +I. Updating from <=0.29.10 + + There is no way to automatically upgrade configuration files from +gom-0.29.10 or less. + + Names and meaning of files in the gom configuration dir have changed +in 0.29.99; see the docs. In short it's: + +config files are named /conf.[default_mixer|gom|initialize]; all optional +setting files are named /. + + There is no way to automatically convert the old conf files. I +recommend to reconfigure with 'gomconfig', to manually move your old +settings files from to . +(e.g. 'mv cd mixer.cd'), and to manually remove remaining obsolete +files (especially "gomrc", "default"). + + +II. Configuration + + There are possible per-system and/or per-user configurations of gom, +as described in the man page; both are not at all mandatory, and the +user configuration is naturally left to the user anyway. + + Both normal users and root (then changing system settings) can use +the script /usr/sbin/gomconfig to completely configure gom. It only +assumes that you have a correctly installed sound driver (or, at least, +this gives it a little more sense...). + + Please try this script; there is much more help available "online" +from there. + + +III. Initialization + + Gom tries to initialize the mixers via "/etc/init.d/gom start" on two +occasions: Firstly on system bootup (i.e., in runlevel S), and +secondly every time the "sound" module is loaded (see +"/etc/modutils/gom"). + The script will exit silently if "auto_init" is set to "no" in +/etc/default/gom. The script's (and new install's) default is _NOT_ to +try initialization. + + +IV. Miscellaneous + +ALSA, and other sound drivers. + + Gom is currently a OSS only mixer, but it runs with ALSA with its oss mixer +emulation, and most likely with some other OSS-compatible non OSS drivers as +well. + + To use gom's auto initialization with such a driver you would have to +add it to the list of valid sound devices in /etc/default/gom. Please +refer to the comments in /etc/default/gom itself for details. + +System Mixer Access. + + This package (of course?) does not handle the user permissions for +certain devices of the system; thus, users who want to use gom need to +have proper access to mixer devices they want to use. In Debian, audio +device files belong the group "audio", so adding the users in question +to this group seems to be a right way to accomplish this. This, too, can +be done with "gomconfig". + +Binary naming scheme. + + Binaries of gom are called gom-{c|t|x}, with c,t,x meaning "binary has +build-in support for command line, terminal or X interface", +respectively. I decided to make a stand-alone package for the "full" +binary of gom including the X interface (as it depends not only on +xlib, but xview too). (The xview gomii is kind of "unnice" and a +little bit orphaned by the upstream author anyway.) So, the package +"gom" provides the binaries "gom-c", "gom-ct"; "gom-x" provides +"gom-ctx". The actual "gom" binary is selected via "alternatives" +(default is the "most complete" binary installed). + +# Note 0.29.99: The upstream source is planning to skip the xview interactive +# interface and with it, the compile-option to create different binary +# flavors for gom -- but use one standard gom binary with the +# mandatory command line interface and the ncurses interactive +# interface. With 0.29.99, the default is to compile that standard +# version; support for the xview interface is still there. +# Conclusion: For now, I stay with the old naming convention and +# alternatives, leaving out the (now unavailable) command line only +# "gom-c" binary. + + -- Stephan Suerken , Sun, 11 May 2008 16:17:08 +0000 --- gom-0.30.2.orig/debian/rules +++ gom-0.30.2/debian/rules @@ -0,0 +1,79 @@ +#!/usr/bin/make -f +# +# debian/rules file for gom. +# +# 1997-2006 Stephan A Suerken . +# + +# Compiler Flags +CFLAGS = -Wall -g +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +# build should always be the default target +default: build +build: build-stamp + +binary: binary-clean binary-indep binary-arch + +.PHONY: binary binary-arch binary-indep clean binary-clean + +build-stamp: + dh_testdir + ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info + make + touch $@ + +binary-indep: build + dh_testdir + dh_testroot + +binary-arch: build + dh_testdir + dh_testroot + + # This installs gom, gomconfig + man pages + $(MAKE) install prefix=$(CURDIR)/debian/gom/usr + + dh_installinit --no-restart-on-upgrade --update-rcd-params="start 99 S ." + dh_installdocs AUTHORS NEWS README + dh_installexamples -XCVS examples/* + + # ?still needed? To comply to 11.7.3 (templates) of policy. This is hacky, maybe debhelper will eventually handle it? + install -d debian/gom/usr/share/gom/ + mv debian/gom/usr/share/doc/gom/examples/default debian/gom/usr/share/gom/default + cd debian/gom/usr/share/doc/gom/examples && ln -s ../../../gom/default . + install -d -m755 debian/gom/usr/share/gom/default debian/gom/etc/gom + + dh_installdirs etc/default etc/gom + install -m644 debian/gom.default debian/gom/etc/default/gom + for f in conf.default_mixer conf.initialize mixer.default; do install -m644 debian/gom/usr/share/doc/gom/examples/default/$$f debian/gom/etc/gom/$$f; done + + dh_installmenu + dh_installchangelogs ChangeLog + dh_compress + dh_strip + dh_fixperms + dh_installdebconf + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary-clean: + dh_testdir + dh_clean + +clean: binary-clean + dh_testdir + rm -f build-stamp + + debconf-updatepo + +# upstream cleanup + [ ! -f Makefile ] || $(MAKE) distclean + -rm -f build core `find . -type f -name "*~"` --- gom-0.30.2.orig/debian/compat +++ gom-0.30.2/debian/compat @@ -0,0 +1 @@ +5 --- gom-0.30.2.orig/debian/gom.postrm +++ gom-0.30.2/debian/gom.postrm @@ -0,0 +1,16 @@ +#!/bin/sh -e +. /usr/share/debconf/confmodule + +# Purging configuration gom +if [ "$1" = "purge" ]; then + if ! rmdir /etc/gom 2>/dev/null; then + db_input critical gom/purge_etc_gom || true + db_go || true + db_get gom/purge_etc_gom || true + if [ "$RET" = true ]; then + rm -r -f /etc/gom + fi + fi +fi + +#DEBHELPER# --- gom-0.30.2.orig/debian/changelog +++ gom-0.30.2/debian/changelog @@ -0,0 +1,401 @@ +gom (0.30.2-2) unstable; urgency=low + + * Add Homepage to control. + * copyright: Also add GPL header as recommended. + * control: Cut out the "A" from my name + (fixes wrong lintian NMU warning). + * debhelper: Update compat to 5 (no changes needed). + * [svn] remove obsolete .cvsignore. + + -- Stephan Suerken Sat, 05 Jul 2008 14:44:02 +0000 + +gom (0.30.2-1) unstable; urgency=low + + * Ack NMU: Add LSB dependency header to init.d scripts (Closes: #468312). + Thanks. + * Update to standards version 3.7.3: + * Fix menu entry from "Apps/Sound" to "Applications/Sound". + * debconf: As we use it in preinstall, Pre-Depend on debconf (fixes lintian + warning). + * config: Rename to gom.config for consistency. + * copyright: Pimp style and use UTF-8 copyright sign (fixes lintian + warning). Add updated new download location. + * rules, postinst, postrm, gom.modutils: Removing support for auto-init + on module load; add note to README.Debian. + Fixes: "Either update or remove mixer initialisation on module", + thanks to Lucas Nussbaum (Closes: #408243). + Also fixes the big install warning not to use update-modules ;). + * New upstream 0.30.2 (some updates to outdated docs only). + + -- Stephan Suerken Sun, 11 May 2008 17:30:42 +0000 + +gom (0.30.1-4.1) unstable; urgency=low + + * Non-maintainer upload to solve release goal. + * Add LSB dependency header to init.d scripts (Closes: #468312). + + -- Petter Reinholdtsen Mon, 31 Mar 2008 00:23:49 +0200 + +gom (0.30.1-4) unstable; urgency=low + + * Remove build run cruft from svn. + * Add pt_BR debconf translation; thanks to "Eder L. Marques". + (Closes: #447149) + + -- Stephan A Suerken Sun, 13 Jan 2008 17:06:31 +0000 + +gom (0.30.1-3) unstable; urgency=low + + * Moving pkg development to alioth, collab-maint. + * control: Add Xs-Vcs-Svn and -Browser information. + * Ack NMU 2.1; thanks. + * lintian warnings fixed: + - rules: Don't ignore distclean errors. + * control: Update to standards version 3.7.2 (no changes needed). + * Bug fix: "gom: [INTL:de] initial German debconf translation", thanks + to Helge Kreutzmann (Closes: #411281) [was already included in NMU]. + * Bug fix: "[INTL:nl] Dutch po-debconf translation", thanks to cobaco + (aka Bart Cornelis) (Closes: #423052). + + -- Stephan A Suerken Sun, 05 Aug 2007 08:59:49 +0000 + +gom (0.30.1-2.1) unstable; urgency=low + + * Non-maintainer upload to fix pending debconf issues. + * Switch to po-debconf for debconf templates. Closes: #356202 + * Rewrite the debconf templates to comply with the Developer's Reference + recommendations + * Debconf translations: + - French + - Galician. Closes: #411189 + - Portuguese. Closes: #411184 + - Tamil. Closes: #411212 + - Czech. Closes: #411221 + - Swedish. Closes: #411229 + - Russian. Closes: #411241 + - Basque. Closes: 411461 + - Romanian. Closes: #411518 + + -- Christian Perrier Mon, 19 Feb 2007 18:08:41 +0100 + +gom (0.30.1-2) unstable; urgency=low + + * postrm|inst: Check for update-modules before calling. + Fixes: "gom: postinst fails: line 21: update-modules: command not + found", thanks to Lucas Nussbaum (Closes: #408243). + + -- Stephan A Suerken Fri, 26 Jan 2007 12:38:58 +0000 + +gom (0.30.1-1) unstable; urgency=low + + * New upstream. + - Fixes: "gom: FTBFS on GNU/kFreeBSD", thanks to Petr Salinger + (Closes: #364884)). + + -- Stephan A Suerken Sat, 17 Jun 2006 14:31:21 +0200 + +gom (0.30.0-2) unstable; urgency=low + + * Obsoleting binary package gom-x (X binary deprecated upstream): + - Package "gom" conflicts/replaces "gom-x". + - No more gom-ct, gom-ctx binaries, removal of all alternatives handling. + - Reverting change to gom-ct binary in upstream's gomconfig script. + - Removal of superfluous extra gom-ct, gom-ctx manpages. + * Update to debhelper compat level 4. + - Remove now-obsolete extra "conffile" config. + * rules: Update "./configure" call && use upstream's "make install". + * rules: Remove obsolete "source diff" target. + * rules: Don't use /bin/bash explicitely as SHELL (?). + * Bug fix: "gom: please use debconf", thanks to Lars Wirzenius (Closes: + #328320): + - Not calling gomconfig at all from control scripts. + - Using mixer defaults as standard config files. + - purge: Only ask for (rm -rf) if there are files left in /etc/gom. + * Fix: Add ${misc:Depends} for proper (debconf) deps. + * Update to standards version 3.6.2 (debconf). + * A lot of textual updates. + * debian/*: Prefixing all files for binary package gom. + + -- Stephan A Suerken Tue, 7 Mar 2006 22:19:24 +0000 + +gom (0.30.0-1) unstable; urgency=low + + * New upstream version (Closes: #149421). From upstream's NEWS: + . + This is a long-due update release (last release was back in 1999), + fixing two pending problems (powerpc, BSD), got some long-due internal + changes done. Only some new features for better scripting ability are + added. + . + The X interface is rather obsolete, and not really maintained. I + (again) left it in the package, though ;). Just use the ncurses + interface (gom -it) if possible. + . + As for ALSA support, afaics there's no point in a gom driver backend, + as gom's internal API does not support all ALSA features. So, the same + practical result is achieved by using ALSA's OSS compatibility + modules. If you need special ALSA support, use some dedicated ALSA + mixer utility. + * debian/control: Updated package descriptions (be more pragmatic). + * debian/menu*: Quoting all menu entry items, fixing lintian warnings. + * strap_auto removed again; obsoleted by upstreams auto_bootstrap. + * debian/rules: Using -X in dh_installexamples to avoid CVS dirs. This + also fixes a lintian warning. + + -- Stephan A Suerken Mon, 31 May 2004 16:09:16 +0000 + +gom (0.29.103-12) unstable; urgency=low + + * Recompile with gcc-3.3. + * Honoring DEB_BUILD_OPTIONS for CFLAGS (Policy 10.1). + * Updating to standards version 3.6.1. + * Re-strapped autotools with autoconf 2.57 + automake 1.7. + Added "strap_auto" script for that. + * Bug fix: "gom: add support for ALSA in /etc/modutils/gom", thanks to + Ludovic Rousseau (Closes: #192451). + + -- Stephan A Suerken Fri, 10 Oct 2003 18:37:16 +0200 + +gom (0.29.103-11) unstable; urgency=low + + * Fixed init. + Closes: #108479. + * Bug #56409 is ancient, for version -2, I couldn't ever reproduce the bug, + and gom-x_0.29.103-10 is now available for powerpc. So this + Closes: #56409. (feel free to reopen if there is still a problem). + * Re-adding "gom-x.prerm" to CVS tree (it somehow got lost ;). + Closes: #104592. + + -- Stephan A Suerken Sun, 10 Feb 2002 20:45:02 +0100 + +gom (0.29.103-10) unstable; urgency=low + + * Note: 0.29.103-9 was rejected by dinstall. Treat that version as non-existent. I have purged + all instances. This changelog has all changes of -9 merged in. + * Fixed bashism "source" -> "." in /etc/init.d/gom. + Closes: #99451. + * Corrected man pages as suggested in Bug #97051, supposed to cure man-db's parse errors. + Closes: #97051. + * Initialization via /etc/init.d/gom now works for both kernel 2.2 and 2.4. + Closes: #98982. + * Bug #56409 (powerpc) is due to the fact that powerpc obviously does not catch up, so I + can't do anything about it. Please comment if that is wrong. + * Added support for debug in DEB_BUILD_OPTIONS. + * Purged some old slink compat things from scripts. + * Updating Standards-Version 3.5.2 -> 3.5.5: + - 11.7.3 examples/default now template. Upgrade..ups..ok. New Install..ups..ok. + + -- Stephan A Suerken Sun, 17 Jun 2001 19:56:39 +0200 + +gom (0.29.103-8) unstable; urgency=low + + * rules, control, etc: dh_installmanpages to dh_installman. + * More FHS: Using usr/bin usr/share/man for all bins / mans. + * Removed bashism in init script. + Closes: #92875. + * Checked archs: Consistent on all supported archs except + - powerpc: obviously due to missing xview. There is a recent successful + xview buildlog on voltaire, so hopefully gom will eventually be + available here too (Compare #56409). + + -- Stephan A Suerken Fri, 6 Apr 2001 19:36:28 +0200 + +gom (0.29.103-7) unstable; urgency=low + + * Updated Standards-Version from 3.0.0 to 3.5.2: + - Build-Depends: debhelper, libncurses5-dev, xutils, xviewg-dev + (n.b.: xutils: at least on i386, ./configure needs xmkmf) + Closes: #85197. + - We seem to violate 12.8, but I am leaving this until xview is phased + out by upstream (many people do not want to install xview, btw ;). + - Adding /etc/default/gom. Consequently changing /etc/init.d/gom, postinst, + README.Debian; removing /etc/gom/NO_AUTO_INIT. + * Making lintian happy: + - Removed hint to /usr/doc in "copyrights" for pre-potato dists. + - Fixing preinst: using "tempfile". + * Misc: + - Bug 68784 is not a bug, rather pointing to some non-intuitively + understandable but documented fact ;). Closing this now. + Closes: #68787. + + -- Stephan A Suerken Sun, 25 Feb 2001 04:17:20 +0100 + +gom (0.29.103-6) frozen unstable; urgency=low + + * Added clarification about ALSA/initialization to README.Debian. + Closes: #56119, #56493. + + -- Stephan A Suerken Wed, 2 Feb 2000 11:20:02 +0100 + +gom (0.29.103-5) frozen unstable; urgency=low + + * Version in frozen is currently 0.29.103-3. This version solves + two bugs and improves installation scripts. + * Added conflict for gom on ancient gom-x. + Closes: #55311. + + -- Stephan A Suerken Wed, 19 Jan 2000 17:39:02 +0100 + +gom (0.29.103-0.slink.4) unstable; urgency=low + + * Recompile for slink. + * postinst: Hack to find default config with slink debhelper. + + -- Stephan A Suerken Sun, 16 Jan 2000 01:57:42 +0100 + +gom (0.29.103-4) unstable; urgency=low + + * postinst: Removed conf. check on upgrades. + Closes: #54845. + * postinst: Making NO_AUTO_INIT default for new installs; +remarks. + * postinst: Copying new default config for upgrades from + ancient versions. + * postinst: Cosmetic/internal changes. + * rules: Hack to make gom-ctx.1 symlink valid with slink debhelper. + + -- Stephan A Suerken Sat, 15 Jan 2000 23:08:31 +0100 + +gom (0.29.103-3) unstable; urgency=low + + * Fixed maintainer name in debian/control to "Stephan A Suerken". Might be + the reason for dinstall thinking I do NMUs. + * Improved init.d/gom and modutils/gom. + Closes: #50561. Might be really closed this time. + + -- Stephan A Suerken Thu, 6 Jan 2000 07:19:55 +0100 + +gom (0.29.103-2) unstable; urgency=low + + * Mixer initialization improvements: + - added test for binary existence (init.d/gom). This actually + was a bug. + - sane message now if it fails (for autoloaded sound: no more + annoying error messages on bootup). + - New conffile /etc/modutils/gom for initialization when using + sound as module. + - cosmetic changes. + Closes: #50561. + * Files /etc/gom/* no longer conffiles. 100% handled by scripts. + + -- Stephan A Suerken Tue, 4 Jan 2000 01:50:09 +0100 + +gom (0.29.103-1) unstable; urgency=low + + * New upstream. Closes: #43940. + * Adding stubborn default configuration (working out-of-the-box + on many installations). Closes: #45925. + * Using FHS debhelper. Changes in rules to cope with usr/share. Fear build will + fail with non-FHS debhelper ;( + * Added reference to /usr/share/common-licenses/GPL in doc/copyright. + * Checked upgrade-policy (3.0.0); Faithfully updated standards version to 3.0.0. + * Changed postinst configuration handling. Forcing interactive configuration on + new installs or versions <0.29.99, else only configuration check (and no stopping). + * Moved some information from postinst to README.Debian. + + -- Stephan A Suerken Wed, 27 Oct 1999 03:52:34 +0200 + +gom (0.29.102-2) unstable; urgency=low + + * Forgot to change gomconfig references to /usr/bin/gom-ct in the new + upstream. Sigh. (see 0.29.99-2; this will falsify gomconfig if: updating + from 0.29.10 && gom-x installed && gom-x is default alternative) + + -- Stephan Alexander Suerken Sat, 28 Aug 1999 03:24:08 +0200 + +gom (0.29.102-1) unstable; urgency=low + + * New upstream. + * New upstream has own example dir - using that. + * Added preinst entry deleting obsolete /etc/rc.boot/gom file. (closes: #42110). + * /etc/init.d/gom will now exit 0 even if configuration is invalid (this caused + the install process to stop in that case...) + * Added reference to /usr/share/common-licenses/GPL in doc/copyright. + * Added note about gom bootup initialization + sound as module to postinst. + + -- Stephan Alexander Suerken Fri, 27 Aug 1999 07:06:32 +0200 + +gom (0.29.99-2) unstable; urgency=low + + * Changed references to gom to /usr/bin/gom-ct to avoid wrong binary problems with + gomconfig, init.d/gom on update. + * Closing old obsolete Bug#29416 :). + * Removing possible bashism from postinst, closing Bug#40274. + + -- Stephan Alexander Suerken Wed, 30 Jun 1999 23:37:40 +0200 + +gom (0.29.99-1) unstable; urgency=low + + * New upstream source. Closes #25448, #34488. + * Several internal changes due to the new upstream. + * Moved system bootup script from /etc/rc.boot to /etc/init.d + /etc/rcS.d handling, + as it is obviously policy. Closes #32440. + * Added postrm/purge entry to (optionally) remove /etc/gom. + + -- Stephan Alexander Suerken Fri, 25 Jun 1999 15:02:44 +0200 + +gom (0.29.10-5.1) unstable; urgency=low + + * Cosmetic change in gomconfig. Solves #29416. + + -- Stephan Alexander Suerken Sun, 22 Nov 1998 12:53:23 +0100 + +gom (0.29.10-5) unstable frozen; urgency=low + + * Recompilation because of missing X support in gom-ctx. The ./configure + script needed some help... + Thanks to Ionutz Borcoman for reporting this. + + -- Stephan Alexander Suerken Wed, 18 Nov 1998 07:09:33 +0100 + +gom (0.29.10-4) unstable frozen; urgency=low + + * Recompilation for slink. Fixes false dependency on ncurses3.4. + * Patched source code to avoid bug with snprintf. Fixes shortopts + and the help messages. + * Added warning to README.Debian not to call an interface in /etc/gom/gomrc + (see bug 25448). + * Fixed bug in gomconfig: now creating ~/.gom or /etc/gom if non-existent. + * Added option '--purge' to gomconfig. + + -- Stephan Alexander Suerken Sun, 24 May 1998 23:20:54 +0200 + +gom (0.29.10-3) unstable frozen; urgency=low + + * Upload to frozen to close Bugs on gom_0.29.10-1.1.deb, thusly adding + binary package gom-x to frozen, too. + * gom-ctx now in usr/X11R6/. + * Plus /usr/sbin/gomconfig, changes in package configuration. + * Closing Bug#12332 (an already closed bug I added long ago myself merely for testing + purposes :). + + -- Stephan Alexander Suerken Mon, 4 May 1998 21:14:32 +0200 + +gom (0.29.10-2) unstable; urgency=low + + * Converted from debstd to debhelper. + * Update to Standards-Version 2.4.0.0. + * Added menu support. + * Conffiles gomrc, default, rc.boot/gom (possible mixer init on boootup) added. + * Corrected invalid Standards-Version (Bug#14695, Bug#16749). + * Mixed dependencies fixed (Bug#14794). + * Lintian Bug Report#19320: + a) The copyright file now refers to the _un_compressed + /usr/doc/copyright/GPL. + b) Added pseudo man pages for gom-[c|ct|ctx] binaries. + c) Fixed missing /usr/doc/gom-x && copyright notice for gom-x. + + -- Stephan Alexander Suerken Wed, 22 Apr 1998 18:59:49 +0200 + +gom (0.29.10-1) unstable; urgency=low + + * New upstream release. + * Fundamental package reconstruction. + * Developed under hamm. + + -- Stephan Alexander Suerken Sun, 28 Sep 1997 22:00:12 +0200 + +gom (0.29.8-1) unstable; urgency=low + + * Initial Release. + + -- Stephan Alexander Suerken Thu, 31 Jul 1997 19:35:21 +0200 --- gom-0.30.2.orig/debian/gom.default +++ gom-0.30.2/debian/gom.default @@ -0,0 +1,3 @@ +# Use debconf to configure this file. +#auto_init="false" +#valid_sound_devices="sound alsa" --- gom-0.30.2.orig/debian/gom.init +++ gom-0.30.2/debian/gom.init @@ -0,0 +1,75 @@ +#!/bin/sh -e +### BEGIN INIT INFO +# Provides: gom +# Required-Start: $remote_fs +# Required-Stop: +# Default-Start: S +# Default-Stop: +# Short-Description: bootup for gom 0.29.99+: initialize mixer(s) +### END INIT INFO +# +# (c) 1998-2006 Stephan A Suerken +# + +# +# Where adm default values can be stored +# +gom_defaults=/etc/default/gom +gom_cmd=/usr/bin/gom + +# +# Variable script defaults; Customize in /etc/default/gom if needed. +# +auto_init="false" +valid_sound_devices="sound alsa" + +# +# Variable admin default +# +[ ! -e ${gom_defaults} ] || . ${gom_defaults} + +# +# Silent exits +# +# Explicit configuration +[ "${auto_init}" = "yes" -o "${auto_init}" = "true" ] || exit 0 +# gom.deb is removed but not purged +[ -x ${gom_cmd} ] || exit 0 + +# valid sound device there? (this works for (at least) kernels 2.2.x and 2.4.x) +sound_device="" +for d in ${valid_sound_devices}; do + if grep --quiet ${d} /proc/devices; then + sound_device=${d}; + break; + fi; +done +[ "${sound_device}" ] || exit 0 + +# +# Initialization +# +case "$1" in + # At this point, gom is installed properly and the (oss) sound + # driver is present. + # Won't fail even if configuration is invalid. + start|restart|reload|force-reload) + echo -n "Gom initializing audio mixer(s)..." + if ${gom_cmd} --quiet --initialize >/dev/null 2>&1 ; then + echo "done." + else + echo "some errors. Check 'gom --initialize' and/or finetune via 'gomconfig'." + fi + ;; + stop) + ;; + *) + echo "Usage: /etc/init.d/gom {start|restart|reload|force-reload|stop}" >&2 + echo + echo " start|restart|reload|force-reload initializes audio mixer(s)." >&2 + echo " stop does nothing." >&2 + exit 1 + ;; +esac + +exit 0 --- gom-0.30.2.orig/debian/gom.config +++ gom-0.30.2/debian/gom.config @@ -0,0 +1,13 @@ +#!/bin/sh -e +. /usr/share/debconf/confmodule + +CONFFILE="/etc/default/gom" +if [ -e "${CONFFILE}" ]; then + . "${CONFFILE}" || true + [ -z "${auto_init}" ] || db_set gom/auto_init "${auto_init}" + [ -z "${valid_sound_devices}" ] || db_set gom/valid_sound_devices "${valid_sound_devices}" +fi + +db_input medium gom/auto_init || true +db_input low gom/valid_sound_devices || true +db_go || true --- gom-0.30.2.orig/debian/copyright +++ gom-0.30.2/debian/copyright @@ -0,0 +1,32 @@ +This package was debianized by Stephan Sürken in 1997. + +The current Debian maintainer is Stephan Sürken . + +It was downloaded from: http://software.installiert.net. + +Upstream Authors: Stephan Sürken, Hannu Savolainen. + +The gom software is © 1996-2008 Stephan Sürken . + +gom's upstream "X gomii" is also © 1993 Hannu Savolainen (the X gomii +originally derived from "xvmixer" by Hannu Savolainen, also licensed +under the GPL). + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +On Debian systems, a verbatim uncompressed copy of the GPL is +available as /usr/share/common-licenses/GPL-3. + +The Debian packaging is © 1997-2008 Stephan Sürken +, and is licensed under the GPL, see above. --- gom-0.30.2.orig/debian/gom.preinst +++ gom-0.30.2/debian/gom.preinst @@ -0,0 +1,36 @@ +#!/bin/sh -e + +#DEBHELPER# + +# +# Policy 11.7.3 (templates), since 0.29.103-10 +# +# dpkg would not delete dir share/doc/gom/examples/default, and, when installing files, would not +# overwrite it with a symlink to share/gom/default. Rather a dpkg bug, afaik. +# This fixes this simply and hopefully sanely. + +# This is no longer dir, but symlink to share/gom/default +old_default_cfg="/usr/share/doc/gom/examples/default" +if [ -d "${old_default_cfg}" ]; then + rm -rf ${old_default_cfg} +fi + +case "$1" in + upgrade|install) + rcboot_file=/etc/rc.boot/gom + if [ -e ${rcboot_file} ]; then + . /usr/share/debconf/confmodule + db_input critical gom/remove_obsolete_rcboot || true + db_go || true + db_get gom/remove_obsolete_rcboot || true + if [ "$RET" = true ]; then + rm -f ${rcboot_file} + fi + fi + ;; +esac + +# All support for alternatives dropped, always remove +update-alternatives --remove gom /usr/bin/gom-c +update-alternatives --remove gom /usr/bin/gom-ct +update-alternatives --remove gom /usr/bin/gom-ctx --- gom-0.30.2.orig/debian/control +++ gom-0.30.2/debian/control @@ -0,0 +1,28 @@ +Source: gom +Section: sound +Priority: optional +Maintainer: Stephan Suerken +Standards-Version: 3.7.3 +Build-Depends: debhelper (>= 5.0.0), libncurses5-dev, po-debconf +XS-Vcs-Svn: svn://svn.debian.org/svn/collab-maint/deb-maint/gom/trunk +XS-Vcs-Browser: http://svn.debian.org/wsvn/collab-maint/deb-maint/gom/trunk +Homepage: http://software.installiert.net + +Package: gom +Architecture: any +Pre-Depends: debconf (>= 1.5.11) +Depends: ${shlibs:Depends}, ${misc:Depends} +Replaces: gom-x +Conflicts: gom-x +Description: Command line and interactive ncurses-based OSS audio mixer + gom is a command line mixer utility with optional built-in ncurses + interactive interface. + . + Its main feature is an exhaustive command line interface that makes + it ideal for scripting (e.g. for audio recording, running at user + and/or system login time, setting/restoring of settings, etc). + . + It supports OSS only, so if you want to use it with ALSA, you will + need its OSS-compatible modules. If you want to use all possible + features of ALSA however, you would need to use a mixer program + dedicated for ALSA. --- gom-0.30.2.orig/debian/gom.templates +++ gom-0.30.2/debian/gom.templates @@ -0,0 +1,36 @@ +Template: gom/auto_init +Type: boolean +Default: false +_Description: Initialize mixer on system startup? + If you choose this option, "/etc/init.d/gom start" (on system + startup, or if run manually) will set mixer settings to your saved + configuration. + . + You may use upstream's "gomconfig" script as root later to fine-tune + the settings. + +Template: gom/valid_sound_devices +Type: string +Default: sound alsa +Description: Space-separated list of valid sound devices: + If none of these device names exists in /proc/devices, + /etc/init.d/gom will exit silently (so it does not produce errors if + the system has no sound at all). + . + You would usually not touch the default value ("sound" is OSS, "alsa" + is ALSA). + +Template: gom/purge_etc_gom +Type: boolean +Default: true +_Description: Remove /etc/gom completely? + The /etc/gom directory seems to contain additional local + customization files. Please choose whether you want to remove it + entirely. + +Template: gom/remove_obsolete_rcboot +Type: boolean +Default: true +_Description: Remove obsoleted /etc/rc.boot/gom? + The /etc/rc.boot/gom file is obsoleted but might contain local + customizations. --- gom-0.30.2.orig/debian/po/pt_BR.po +++ gom-0.30.2/debian/po/pt_BR.po @@ -0,0 +1,77 @@ +# gom Brazilian Portuguese translation +# Copyright (c) 2007 gom's PACKAGE COPYRIGHT HOLDER +# This file is distributed under the same license as the gom package. +# Eder L. Marques , 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: gom_0.30.1-3\n" +"Report-Msgid-Bugs-To: absurd@debian.org\n" +"POT-Creation-Date: 2007-02-16 18:44+0100\n" +"PO-Revision-Date: 2007-10-05 01:50-0300\n" +"Last-Translator: Eder L. Marques \n" +"Language-Team: l10n Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"pt_BR utf-8\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: boolean +#. Description +#: ../gom.templates:1001 +msgid "Initialize mixer on system startup?" +msgstr "Inicializar o mixer na inicialização do sistema?" + +#. Type: boolean +#. Description +#: ../gom.templates:1001 +msgid "" +"If you choose this option, \"/etc/init.d/gom start\" (on system startup, or " +"if run manually) will set mixer settings to your saved configuration." +msgstr "" +"Se você escolher esta opção, \"/etc/init.d/gom start\" (na inicialização do " +"sistema, ou se executar manualmente) definirá as configurações do mixer para " +"as suas configurações salvas." + +#. Type: boolean +#. Description +#: ../gom.templates:1001 +msgid "" +"You may use upstream's \"gomconfig\" script as root later to fine-tune the " +"settings." +msgstr "" +"Você pode usar o script \"gomconfig\" do autor original (\"upstream\") como " +"root, posteriormente, para ajustar os detalhes da configuração." + +#. Type: boolean +#. Description +#: ../gom.templates:3001 +msgid "Remove /etc/gom completely?" +msgstr "Remover o /etc/gom completamente?" + +#. Type: boolean +#. Description +#: ../gom.templates:3001 +msgid "" +"The /etc/gom directory seems to contain additional local customization " +"files. Please choose whether you want to remove it entirely." +msgstr "" +"O diretório /etc/gom parece conter arquivos locais personalizados. Por " +"favor, escolha se você quer removê-lo completamente." + +#. Type: boolean +#. Description +#: ../gom.templates:4001 +msgid "Remove obsoleted /etc/rc.boot/gom?" +msgstr "Remover o obsoleto /etc/rc.boot/gom?" + +#. Type: boolean +#. Description +#: ../gom.templates:4001 +msgid "" +"The /etc/rc.boot/gom file is obsoleted but might contain local " +"customizations." +msgstr "" +"O arquivo /etc.rc.boot/gom está obsoleto mas pode conter personalizações " +"locais." --- gom-0.30.2.orig/debian/po/eu.po +++ gom-0.30.2/debian/po/eu.po @@ -0,0 +1,67 @@ +# Basque translations for PACKAGE package. +# Copyright (C) 2007 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# pi , 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: gom-debconf\n" +"Report-Msgid-Bugs-To: absurd@debian.org\n" +"POT-Creation-Date: 2007-02-16 18:44+0100\n" +"PO-Revision-Date: 2007-02-19 10:01+0100\n" +"Last-Translator: Piarres Beobide \n" +"Language-Team: Basque \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Pootle 0.10.1\n" + +#. Type: boolean +#. Description +#: ../gom.templates:1001 +msgid "Initialize mixer on system startup?" +msgstr "Sistema abiatzean nahasgailua abiarazi?" + +#. Type: boolean +#. Description +#: ../gom.templates:1001 +msgid "" +"If you choose this option, \"/etc/init.d/gom start\" (on system startup, or " +"if run manually) will set mixer settings to your saved configuration." +msgstr "Aukera hau hautatu ezkero, \"/etc/init.d/gom start\" (sistema abioan edo eskuz abiarazirik) egitean zure gordetako nahasgailu konfigurazioak ezarriko dira ." + +#. Type: boolean +#. Description +#: ../gom.templates:1001 +msgid "" +"You may use upstream's \"gomconfig\" script as root later to fine-tune the " +"settings." +msgstr "Beranduago \"gomconfig\" skript-a root bezala erabili dezakezu ezarpenak fintzeko." + +#. Type: boolean +#. Description +#: ../gom.templates:3001 +msgid "Remove /etc/gom completely?" +msgstr "/etc/gom guztiz ezabatu?" + +#. Type: boolean +#. Description +#: ../gom.templates:3001 +msgid "" +"The /etc/gom directory seems to contain additional local customization " +"files. Please choose whether you want to remove it entirely." +msgstr "Dirudienez /etc/gom direktorioan pertsonalizazio fitxategi lokalak ditu. Mesedez berretsi guztiz ezabatzea nahi duzun." + +#. Type: boolean +#. Description +#: ../gom.templates:4001 +msgid "Remove obsoleted /etc/rc.boot/gom?" +msgstr "Zaharkituriko /etc/rc.boot/gom ezabatu?" + +#. Type: boolean +#. Description +#: ../gom.templates:4001 +msgid "" +"The /etc/rc.boot/gom file is obsoleted but might contain local " +"customizations." +msgstr "/etc/rc.boot/gom fitxategia zaharkiturik dago baina ezarpen lokalak eduki ditzake." --- gom-0.30.2.orig/debian/po/pt.po +++ gom-0.30.2/debian/po/pt.po @@ -0,0 +1,75 @@ +# Portuguese translation of gom's debconf messages. +# Copyright (C) 2007 Carlos Lisboa +# This file is distributed under the same license as the gom package. +# Carlos Lisboa , 2007 +# +msgid "" +msgstr "" +"Project-Id-Version: gom\n" +"Report-Msgid-Bugs-To: absurd@debian.org\n" +"POT-Creation-Date: 2007-02-16 18:44+0100\n" +"PO-Revision-Date: 2007-02-16 18:00+0000\n" +"Last-Translator: Carlos Lisboa \n" +"Language-Team: Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../gom.templates:1001 +msgid "Initialize mixer on system startup?" +msgstr "Inicializar o misturador no arranque do sistema?" + +#. Type: boolean +#. Description +#: ../gom.templates:1001 +msgid "" +"If you choose this option, \"/etc/init.d/gom start\" (on system startup, or " +"if run manually) will set mixer settings to your saved configuration." +msgstr "" +"Se escolher esta opção, \"/etc/init.d/gom start\" (no arranque do sistema, " +"ou se o correr manualmente) irá activar as opções do misturador na sua " +"configuração guardada." + +#. Type: boolean +#. Description +#: ../gom.templates:1001 +msgid "" +"You may use upstream's \"gomconfig\" script as root later to fine-tune the " +"settings." +msgstr "" +"Poderá usar o script original \"gomconfig\" como root mais tarde para " +"afinar as opções." + +#. Type: boolean +#. Description +#: ../gom.templates:3001 +msgid "Remove /etc/gom completely?" +msgstr "Remover completamente o /etc/gom?" + +#. Type: boolean +#. Description +#: ../gom.templates:3001 +msgid "" +"The /etc/gom directory seems to contain additional local customization " +"files. Please choose whether you want to remove it entirely." +msgstr "" +"O directório /etc/gom parece conter ficheiros locais adicionais de " +"personalização. Por favor escolha se deseja remover completamente." + +#. Type: boolean +#. Description +#: ../gom.templates:4001 +msgid "Remove obsoleted /etc/rc.boot/gom?" +msgstr "Remover o obsoleto /etc/rc.boot/gom?" + +#. Type: boolean +#. Description +#: ../gom.templates:4001 +msgid "" +"The /etc/rc.boot/gom file is obsoleted but might contain local " +"customizations." +msgstr "" +"O ficheiro /etc/rc.boot/gom está obsoleto mas poderá conter personalizações " +"locais." --- gom-0.30.2.orig/debian/po/templates.pot +++ gom-0.30.2/debian/po/templates.pot @@ -0,0 +1,67 @@ +# 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: absurd@debian.org\n" +"POT-Creation-Date: 2007-02-16 18:44+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: boolean +#. Description +#: ../gom.templates:1001 +msgid "Initialize mixer on system startup?" +msgstr "" + +#. Type: boolean +#. Description +#: ../gom.templates:1001 +msgid "" +"If you choose this option, \"/etc/init.d/gom start\" (on system startup, or " +"if run manually) will set mixer settings to your saved configuration." +msgstr "" + +#. Type: boolean +#. Description +#: ../gom.templates:1001 +msgid "" +"You may use upstream's \"gomconfig\" script as root later to fine-tune the " +"settings." +msgstr "" + +#. Type: boolean +#. Description +#: ../gom.templates:3001 +msgid "Remove /etc/gom completely?" +msgstr "" + +#. Type: boolean +#. Description +#: ../gom.templates:3001 +msgid "" +"The /etc/gom directory seems to contain additional local customization " +"files. Please choose whether you want to remove it entirely." +msgstr "" + +#. Type: boolean +#. Description +#: ../gom.templates:4001 +msgid "Remove obsoleted /etc/rc.boot/gom?" +msgstr "" + +#. Type: boolean +#. Description +#: ../gom.templates:4001 +msgid "" +"The /etc/rc.boot/gom file is obsoleted but might contain local " +"customizations." +msgstr "" --- gom-0.30.2.orig/debian/po/POTFILES.in +++ gom-0.30.2/debian/po/POTFILES.in @@ -0,0 +1 @@ +[type: gettext/rfc822deb] gom.templates --- gom-0.30.2.orig/debian/po/ta.po +++ gom-0.30.2/debian/po/ta.po @@ -0,0 +1,68 @@ +# translation of gom.po to TAMIL +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Dr.T.Vasudevan , 2007. +msgid "" +msgstr "" +"Project-Id-Version: gom\n" +"Report-Msgid-Bugs-To: absurd@debian.org\n" +"POT-Creation-Date: 2007-02-16 18:44+0100\n" +"PO-Revision-Date: 2007-02-17 11:07+0530\n" +"Last-Translator: Dr.T.Vasudevan \n" +"Language-Team: TAMIL \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: boolean +#. Description +#: ../gom.templates:1001 +msgid "Initialize mixer on system startup?" +msgstr "கணினி துவங்கும் போது கலப்பானை ஆரம்பிக்கலாமா?" + +#. Type: boolean +#. Description +#: ../gom.templates:1001 +msgid "" +"If you choose this option, \"/etc/init.d/gom start\" (on system startup, or " +"if run manually) will set mixer settings to your saved configuration." +msgstr "இந்த தேர்வை தெரிவு செய்தால் \"/etc/init.d/gom start\" (கணினி துவங்கும் போது அல்லது கை முறையாக இயக்கும் போது) சேமித்துள்ள வடிவமைப்புக்கு கலப்பான் அமைப்பை அமைக்கும்." + +#. Type: boolean +#. Description +#: ../gom.templates:1001 +msgid "" +"You may use upstream's \"gomconfig\" script as root later to fine-tune the " +"settings." +msgstr "இந்த வடிவமைப்பை பின்னால் ரூட் ஆக மேலோடையின் \"gomconfig\" சிறு நிரல் மூலம் நுண் அமைத்துக் கொள்ளலாம்." + +#. Type: boolean +#. Description +#: ../gom.templates:3001 +msgid "Remove /etc/gom completely?" +msgstr "/etc/gom ஐ முழுமையாக நீக்கலாமா?" + +#. Type: boolean +#. Description +#: ../gom.templates:3001 +msgid "" +"The /etc/gom directory seems to contain additional local customization " +"files. Please choose whether you want to remove it entirely." +msgstr "இந்த /etc/gom அடைவில் கூடுதல் தனிப் பயன் கோப்புகள் இருப்பதாகத் தெரிகிறது. முழுமையாக நீக்கலாமா என உறுதி செய்து கொள்ளவும்." + +#. Type: boolean +#. Description +#: ../gom.templates:4001 +msgid "Remove obsoleted /etc/rc.boot/gom?" +msgstr "வழக்கற்ற /etc/rc.boot/gom ஐ நீக்கலாமா?" + +#. Type: boolean +#. Description +#: ../gom.templates:4001 +msgid "" +"The /etc/rc.boot/gom file is obsoleted but might contain local " +"customizations." +msgstr "/etc/rc.boot/gom வழக்கற்று விட்டது. ஆனால் அதில் தனிப்பயன் அமைப்புகள் இருக்கலாம்." + --- gom-0.30.2.orig/debian/po/ro.po +++ gom-0.30.2/debian/po/ro.po @@ -0,0 +1,72 @@ +# translation of ro.po to Romanian +# Romanian translations for PACKAGE package +# Traducerea în limba română pentru pachetul PACKAGE. +# Copyright (C) 2007 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Eddy Petrisor , 2007. +# Eddy Petrișor , 2007. +msgid "" +msgstr "" +"Project-Id-Version: ro\n" +"Report-Msgid-Bugs-To: absurd@debian.org\n" +"POT-Creation-Date: 2007-02-16 18:44+0100\n" +"PO-Revision-Date: 2007-02-19 15:43+0200\n" +"Last-Translator: Eddy Petrișor \n" +"Language-Team: Romanian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2;\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: boolean +#. Description +#: ../gom.templates:1001 +msgid "Initialize mixer on system startup?" +msgstr "Se iniţializează mixerul la pornirea sistemului?" + +#. Type: boolean +#. Description +#: ../gom.templates:1001 +msgid "" +"If you choose this option, \"/etc/init.d/gom start\" (on system startup, or " +"if run manually) will set mixer settings to your saved configuration." +msgstr "Dacă alegeţi acestă opţiune, „/etc/init.d/gom start” (la pornirea sistemului sau dacă e rulat manual) va ajusta configuraţia mixerului conform cu cea salvată." + +#. Type: boolean +#. Description +#: ../gom.templates:1001 +msgid "" +"You may use upstream's \"gomconfig\" script as root later to fine-tune the " +"settings." +msgstr "Puteţi folosi scriptul „gomconfig” ca utilizatorul root pentru a rafina configuraţia." + +#. Type: boolean +#. Description +#: ../gom.templates:3001 +msgid "Remove /etc/gom completely?" +msgstr "Se şterge complet /etc/gom?" + +#. Type: boolean +#. Description +#: ../gom.templates:3001 +msgid "" +"The /etc/gom directory seems to contain additional local customization " +"files. Please choose whether you want to remove it entirely." +msgstr "Directorul /etc/gom pare să conţină fişiere adiţionale de configurare locale. Alegeţi dacă doriţi să îl ştergeţi în întregime." + +#. Type: boolean +#. Description +#: ../gom.templates:4001 +msgid "Remove obsoleted /etc/rc.boot/gom?" +msgstr "Se şterge fişierul învechit /etc/rc.boot/gom?" + +#. Type: boolean +#. Description +#: ../gom.templates:4001 +msgid "" +"The /etc/rc.boot/gom file is obsoleted but might contain local " +"customizations." +msgstr "Fişierul /etc/rc.boot/gom este învechit dar poate conţine modificări locale." + --- gom-0.30.2.orig/debian/po/ru.po +++ gom-0.30.2/debian/po/ru.po @@ -0,0 +1,79 @@ +# translation of gom_0.30.1-2_debconf_ru.po to Russian +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Yuri Kozlov , 2007. +msgid "" +msgstr "" +"Project-Id-Version: 0.30.1-2\n" +"Report-Msgid-Bugs-To: absurd@debian.org\n" +"POT-Creation-Date: 2007-02-16 18:44+0100\n" +"PO-Revision-Date: 2007-02-17 14:36+0300\n" +"Last-Translator: Yuri Kozlov \n" +"Language-Team: Russian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. Type: boolean +#. Description +#: ../gom.templates:1001 +msgid "Initialize mixer on system startup?" +msgstr "Инициализировать микшер при загрузке системы?" + +#. Type: boolean +#. Description +#: ../gom.templates:1001 +msgid "" +"If you choose this option, \"/etc/init.d/gom start\" (on system startup, or " +"if run manually) will set mixer settings to your saved configuration." +msgstr "" +"Если вы ответите утвердительно, то при выполнении \"/etc/init.d/gom start\" " +"(во время загрузки системы, или если запустить вручную) будет " +"выполнено восстановление ранее сохранённых настроек параметров микшера." + +#. Type: boolean +#. Description +#: ../gom.templates:1001 +msgid "" +"You may use upstream's \"gomconfig\" script as root later to fine-tune the " +"settings." +msgstr "" +"Позже вы можете воспользоваться сценарием \"gomconfig\" для " +"точной настройки, запустив его с правами суперпользователя." + +#. Type: boolean +#. Description +#: ../gom.templates:3001 +msgid "Remove /etc/gom completely?" +msgstr "Удалить /etc/gom?" + +#. Type: boolean +#. Description +#: ../gom.templates:3001 +msgid "" +"The /etc/gom directory seems to contain additional local customization " +"files. Please choose whether you want to remove it entirely." +msgstr "" +"Кажется в каталоге /etc/gom содержатся дополнительные " +"пользовательские файлы. " +"Выберите, нужно ли удалять этот каталог совсем." + +#. Type: boolean +#. Description +#: ../gom.templates:4001 +msgid "Remove obsoleted /etc/rc.boot/gom?" +msgstr "Удалить устаревший /etc/rc.boot/gom?" + +#. Type: boolean +#. Description +#: ../gom.templates:4001 +msgid "" +"The /etc/rc.boot/gom file is obsoleted but might contain local " +"customizations." +msgstr "" +"Файл /etc/rc.boot/gom устарел, но может содержать локальные " +"настройки пользователя." + --- gom-0.30.2.orig/debian/po/de.po +++ gom-0.30.2/debian/po/de.po @@ -0,0 +1,74 @@ +# Translation of gom debconf templates to German +# Copyright (C) Helge Kreutzmann , 2007. +# This file is distributed under the same license as the gom package. +# +msgid "" +msgstr "" +"Project-Id-Version: gom\n" +"Report-Msgid-Bugs-To: absurd@debian.org\n" +"POT-Creation-Date: 2007-02-16 18:44+0100\n" +"PO-Revision-Date: 2007-02-17 19:53+0100\n" +"Last-Translator: Helge Kreutzmann \n" +"Language-Team: German \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../gom.templates:1001 +msgid "Initialize mixer on system startup?" +msgstr "Mischpult beim Systemstart initialisieren?" + +#. Type: boolean +#. Description +#: ../gom.templates:1001 +msgid "" +"If you choose this option, \"/etc/init.d/gom start\" (on system startup, or " +"if run manually) will set mixer settings to your saved configuration." +msgstr "" +"Falls Sie diese Option whlen, wird /etc/init.d/gom start (beim Systemstart " +"oder falls Sie es manuell ausfhren) Ihre Mischer-Einstellungen auf die " +"gespeicherte Konfiguration einstellen." + +#. Type: boolean +#. Description +#: ../gom.templates:1001 +msgid "" +"You may use upstream's \"gomconfig\" script as root later to fine-tune the " +"settings." +msgstr "" +"Sie knnen spter als root das gomconfig-Skript der Originalautoren " +"verwenden, um Feineinstellungen vorzunehmen." + +#. Type: boolean +#. Description +#: ../gom.templates:3001 +msgid "Remove /etc/gom completely?" +msgstr "/etc/gom komplett entfernen?" + +#. Type: boolean +#. Description +#: ../gom.templates:3001 +msgid "" +"The /etc/gom directory seems to contain additional local customization " +"files. Please choose whether you want to remove it entirely." +msgstr "" +"Das /etc/gom-Verzeichnis scheint zustzliche lokale Anpassungsdateien zu " +"enthalten. Bitte whlen Sie aus, ob Sie es insgesamt entfernen wollen." + +#. Type: boolean +#. Description +#: ../gom.templates:4001 +msgid "Remove obsoleted /etc/rc.boot/gom?" +msgstr "Veraltete /etc/rc.boot/gom entfernen?" + +#. Type: boolean +#. Description +#: ../gom.templates:4001 +msgid "" +"The /etc/rc.boot/gom file is obsoleted but might contain local " +"customizations." +msgstr "" +"Die Datei /etc/rc.boot/gom ist veraltet, knnte aber lokale Anpassungen " +"enthalten." --- gom-0.30.2.orig/debian/po/gl.po +++ gom-0.30.2/debian/po/gl.po @@ -0,0 +1,74 @@ +# Galician translation of gom's debconf templates +# This file is distributed under the same license as the gom package. +# Jacobo Tarrio , 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: gom\n" +"Report-Msgid-Bugs-To: absurd@debian.org\n" +"POT-Creation-Date: 2007-02-16 18:44+0100\n" +"PO-Revision-Date: 2007-02-16 23:46+0100\n" +"Last-Translator: Jacobo Tarrio \n" +"Language-Team: Galician \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../gom.templates:1001 +msgid "Initialize mixer on system startup?" +msgstr "¿Inicializar o mesturador ao iniciar o sistema?" + +#. Type: boolean +#. Description +#: ../gom.templates:1001 +msgid "" +"If you choose this option, \"/etc/init.d/gom start\" (on system startup, or " +"if run manually) will set mixer settings to your saved configuration." +msgstr "" +"Se escolle esta opción, \"/etc/init.d/gom start\" (no inicio do sistema, ou " +"ao executalo manualmente) ha establecer as posicións do mesturador á " +"configuración gravada." + +#. Type: boolean +#. Description +#: ../gom.templates:1001 +msgid "" +"You may use upstream's \"gomconfig\" script as root later to fine-tune the " +"settings." +msgstr "" +"Pode empregar despois o script \"gomconfig\" coma administrador para afinar " +"a configuración." + +#. Type: boolean +#. Description +#: ../gom.templates:3001 +msgid "Remove /etc/gom completely?" +msgstr "¿Eliminar /etc/gom completamente?" + +#. Type: boolean +#. Description +#: ../gom.templates:3001 +msgid "" +"The /etc/gom directory seems to contain additional local customization " +"files. Please choose whether you want to remove it entirely." +msgstr "" +"Semella que o directorio /etc/gom contén ficheiros de personalización locais " +"adicionais. Indique se quere borralo completamente." + +#. Type: boolean +#. Description +#: ../gom.templates:4001 +msgid "Remove obsoleted /etc/rc.boot/gom?" +msgstr "¿Eliminar o ficheiro obsoleto /etc/rc.boot/gom?" + +#. Type: boolean +#. Description +#: ../gom.templates:4001 +msgid "" +"The /etc/rc.boot/gom file is obsoleted but might contain local " +"customizations." +msgstr "" +"O ficheiro /etc/rc.boot/gom está obsoleto pero pode conter personalizacións " +"locais." --- gom-0.30.2.orig/debian/po/cs.po +++ gom-0.30.2/debian/po/cs.po @@ -0,0 +1,73 @@ +# 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. +# +msgid "" +msgstr "" +"Project-Id-Version: gom\n" +"Report-Msgid-Bugs-To: absurd@debian.org\n" +"POT-Creation-Date: 2007-02-16 18:44+0100\n" +"PO-Revision-Date: 2007-02-16 21:48+0100\n" +"Last-Translator: Miroslav Kure \n" +"Language-Team: Czech \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../gom.templates:1001 +msgid "Initialize mixer on system startup?" +msgstr "Inicializovat mixér při startu systému?" + +#. Type: boolean +#. Description +#: ../gom.templates:1001 +msgid "" +"If you choose this option, \"/etc/init.d/gom start\" (on system startup, or " +"if run manually) will set mixer settings to your saved configuration." +msgstr "" +"Zvolíte-li tuto možnost, příkaz \"/etc/init.d/gom start\" (spuštěný při " +"zavádění systému nebo ručně) nastaví mixér podle uloženého stavu." + +#. Type: boolean +#. Description +#: ../gom.templates:1001 +msgid "" +"You may use upstream's \"gomconfig\" script as root later to fine-tune the " +"settings." +msgstr "" +"Pro jemnější nastavení můžete jako uživatel root použít skript \"gomconfig\" " +"přímo od autora aplikace." + +#. Type: boolean +#. Description +#: ../gom.templates:3001 +msgid "Remove /etc/gom completely?" +msgstr "Úplně odstranit /etc/gom?" + +#. Type: boolean +#. Description +#: ../gom.templates:3001 +msgid "" +"The /etc/gom directory seems to contain additional local customization " +"files. Please choose whether you want to remove it entirely." +msgstr "" +"Zdá se, že adresář /etc/gom obsahuje lokální soubory s nastavením. Zvolte " +"si prosím, zda je chcete odstranit." + +#. Type: boolean +#. Description +#: ../gom.templates:4001 +msgid "Remove obsoleted /etc/rc.boot/gom?" +msgstr "Odstranit zastaralý /etc/rc.boot/gom?" + +#. Type: boolean +#. Description +#: ../gom.templates:4001 +msgid "" +"The /etc/rc.boot/gom file is obsoleted but might contain local " +"customizations." +msgstr "" +"Soubor /etc/rc.boot/gom je překonán, ale může obsahovat lokální úpravy." --- gom-0.30.2.orig/debian/po/fr.po +++ gom-0.30.2/debian/po/fr.po @@ -0,0 +1,76 @@ +# translation of fr.po to French +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Christian Perrier , 2007. +msgid "" +msgstr "" +"Project-Id-Version: fr\n" +"Report-Msgid-Bugs-To: absurd@debian.org\n" +"POT-Creation-Date: 2007-02-16 18:44+0100\n" +"PO-Revision-Date: 2007-02-16 18:08+0100\n" +"Last-Translator: Christian Perrier \n" +"Language-Team: French \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: boolean +#. Description +#: ../gom.templates:1001 +msgid "Initialize mixer on system startup?" +msgstr "Faut-il initialiser la table de mixage au démarrage ?" + +#. Type: boolean +#. Description +#: ../gom.templates:1001 +msgid "" +"If you choose this option, \"/etc/init.d/gom start\" (on system startup, or " +"if run manually) will set mixer settings to your saved configuration." +msgstr "" +"Si vous choisissez cette option, la commande « /etc/init.d/gom " +"start » (lancée au démarrage ou manuellement) appliquera votre propre " +"configuration de la tablede mixage, préalablement sauvegardée." + +#. Type: boolean +#. Description +#: ../gom.templates:1001 +msgid "" +"You may use upstream's \"gomconfig\" script as root later to fine-tune the " +"settings." +msgstr "" +"Vous pourrez plus tard utiliser le script « gomconfig » avec les privilèges " +"du superutilisateur pour adapter ces réglages." + +#. Type: boolean +#. Description +#: ../gom.templates:3001 +msgid "Remove /etc/gom completely?" +msgstr "Faut-il complètement supprimer /etc/gom ?" + +#. Type: boolean +#. Description +#: ../gom.templates:3001 +msgid "" +"The /etc/gom directory seems to contain additional local customization " +"files. Please choose whether you want to remove it entirely." +msgstr "" +"Le répertoire /etc/gom semble contenir des fichiers de paramétrages locaux. " +"Veuillez choisir si vous souhaitez le supprimer complètement." + +#. Type: boolean +#. Description +#: ../gom.templates:4001 +msgid "Remove obsoleted /etc/rc.boot/gom?" +msgstr "Faut-il supprimer le fichier obsolète /etc/rc.boot/gom ?" + +#. Type: boolean +#. Description +#: ../gom.templates:4001 +msgid "" +"The /etc/rc.boot/gom file is obsoleted but might contain local " +"customizations." +msgstr "" +"Le fichier /etc/rc.boot/gom n'est plus utilisé mais pourrait contenir des " +"paramétrages locaux." --- gom-0.30.2.orig/debian/po/nl.po +++ gom-0.30.2/debian/po/nl.po @@ -0,0 +1,60 @@ +# 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. +# +msgid "" +msgstr "" +"Project-Id-Version: gom\n" +"Report-Msgid-Bugs-To: absurd@debian.org\n" +"POT-Creation-Date: 2007-02-16 18:44+0100\n" +"PO-Revision-Date: 2007-04-30 14:18+0100\n" +"Last-Translator: Bart Cornelis \n" +"Language-Team: debian-l10n-dutch \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Dutch\n" + +#. Type: boolean +#. Description +#: ../gom.templates:1001 +msgid "Initialize mixer on system startup?" +msgstr "Wilt u de mixer initialiseren tijdens het opstarten van het systeem?" + +#. Type: boolean +#. Description +#: ../gom.templates:1001 +msgid "If you choose this option, \"/etc/init.d/gom start\" (on system startup, or if run manually) will set mixer settings to your saved configuration." +msgstr "Als u deze optie kiest zal '/etc/init.d/gom start' (tijdens de systeemstart, of wanneer handmatig aangeroepen) de mixer-instellen volgens uw opgeslagen configuratie." + +#. Type: boolean +#. Description +#: ../gom.templates:1001 +msgid "You may use upstream's \"gomconfig\" script as root later to fine-tune the settings." +msgstr "U kunt later als root het bovenstroomse script 'gomconfig' gebruiken om de instellingen bij te stellen." + +#. Type: boolean +#. Description +#: ../gom.templates:3001 +msgid "Remove /etc/gom completely?" +msgstr "Wilt u /etc/gom volledig verwijderen?" + +#. Type: boolean +#. Description +#: ../gom.templates:3001 +msgid "The /etc/gom directory seems to contain additional local customization files. Please choose whether you want to remove it entirely." +msgstr "De map /etc/gom lijkt aanvullende, of lokaal aangepaste bestanden te bevatten. Wilt u deze geheel verwijderen?" + +#. Type: boolean +#. Description +#: ../gom.templates:4001 +msgid "Remove obsoleted /etc/rc.boot/gom?" +msgstr "Wilt u de verouderde /etc/rc.boot/gom verwijderen?" + +#. Type: boolean +#. Description +#: ../gom.templates:4001 +msgid "The /etc/rc.boot/gom file is obsoleted but might contain local customizations." +msgstr "Het bestand /etc/rc.boot/gom is verouderd maar kan mogelijk lokale aanpassingen bevatten." + --- gom-0.30.2.orig/debian/po/sv.po +++ gom-0.30.2/debian/po/sv.po @@ -0,0 +1,59 @@ +# 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. +# +msgid "" +msgstr "" +"Project-Id-Version: gom\n" +"Report-Msgid-Bugs-To: absurd@debian.org\n" +"POT-Creation-Date: 2007-02-16 18:44+0100\n" +"PO-Revision-Date: 2007-02-17 10:47+0100\n" +"Last-Translator: Daniel Nylander \n" +"Language-Team: Swedish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../gom.templates:1001 +msgid "Initialize mixer on system startup?" +msgstr "Initiera mixern vid systemets uppstart?" + +#. Type: boolean +#. Description +#: ../gom.templates:1001 +msgid "If you choose this option, \"/etc/init.d/gom start\" (on system startup, or if run manually) will set mixer settings to your saved configuration." +msgstr "Om du väljer det här alternativet, \"/etc/init.d/gom start\" (vid systemets uppstart, eller om du manuellt kör) kommer ställa in mixerinställningarna till din sparade konfiguration." + +#. Type: boolean +#. Description +#: ../gom.templates:1001 +msgid "You may use upstream's \"gomconfig\" script as root later to fine-tune the settings." +msgstr "Du kan använda uppströmsskriptet \"gomconfig\" som root senare för att finjustera inställningarna." + +#. Type: boolean +#. Description +#: ../gom.templates:3001 +msgid "Remove /etc/gom completely?" +msgstr "Ta bort hela /etc/gom?" + +#. Type: boolean +#. Description +#: ../gom.templates:3001 +msgid "The /etc/gom directory seems to contain additional local customization files. Please choose whether you want to remove it entirely." +msgstr "Katalogen /etc/gom verkar innehålla ytterligare lokala anpassningsfiler. Välj huruvida du fullständigt vill ta bort katalogen." + +#. Type: boolean +#. Description +#: ../gom.templates:4001 +msgid "Remove obsoleted /etc/rc.boot/gom?" +msgstr "Ta bort föråldrade /etc/rc.boot/gom?" + +#. Type: boolean +#. Description +#: ../gom.templates:4001 +msgid "The /etc/rc.boot/gom file is obsoleted but might contain local customizations." +msgstr "Filen /etc/rc.boot/gom är föråldrad men kan innehålla lokala anpassningar." +