diff -Nru debhelper-7.0.13ubuntu1/autoscripts/postinst-desktop debhelper-7.2.8ubuntu~intrepid~ppa1/autoscripts/postinst-desktop --- debhelper-7.0.13ubuntu1/autoscripts/postinst-desktop 2008-06-26 12:13:46.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/autoscripts/postinst-desktop 1970-01-01 01:00:00.000000000 +0100 @@ -1,3 +0,0 @@ -if [ "$1" = "configure" ] && which update-desktop-database >/dev/null 2>&1 ; then - update-desktop-database -q -fi diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/autoscripts/postinst-doc-base /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/autoscripts/postinst-doc-base --- debhelper-7.0.13ubuntu1/autoscripts/postinst-doc-base 2008-06-26 12:13:45.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/autoscripts/postinst-doc-base 1970-01-01 01:00:00.000000000 +0100 @@ -1,3 +0,0 @@ -if [ "$1" = configure ] && which install-docs >/dev/null 2>&1; then - install-docs -i /usr/share/doc-base/#DOC-ID# -fi diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/autoscripts/postinst-gconf-defaults /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/autoscripts/postinst-gconf-defaults --- debhelper-7.0.13ubuntu1/autoscripts/postinst-gconf-defaults 2008-06-26 12:13:45.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/autoscripts/postinst-gconf-defaults 2009-04-14 19:13:55.000000000 +0100 @@ -1,3 +1,3 @@ if [ "$1" = "configure" ] && which update-gconf-defaults >/dev/null 2>&1; then - update-gconf-defaults + update-gconf-defaults #OPT# fi diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/autoscripts/postinst-moveconffile /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/autoscripts/postinst-moveconffile --- debhelper-7.0.13ubuntu1/autoscripts/postinst-moveconffile 1970-01-01 01:00:00.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/autoscripts/postinst-moveconffile 2009-04-14 19:13:55.000000000 +0100 @@ -0,0 +1,9 @@ +if [ "$1" = configure ]; then + if [ -e "#OLD#" ]; then + echo "Preserving user changes to #NEW# ..." + if [ -e "#NEW#" ]; then + mv -f "#NEW#" "#NEW#.dpkg-new" + fi + mv -f "#OLD#" "#NEW#" + fi +fi diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/autoscripts/postinst-scrollkeeper /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/autoscripts/postinst-scrollkeeper --- debhelper-7.0.13ubuntu1/autoscripts/postinst-scrollkeeper 2008-06-26 12:13:45.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/autoscripts/postinst-scrollkeeper 2008-12-16 23:13:03.000000000 +0000 @@ -1,3 +1,3 @@ if [ "$1" = "configure" ] && which scrollkeeper-update >/dev/null 2>&1; then - scrollkeeper-update -q >/dev/null 2>&1 + scrollkeeper-update -q fi diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/autoscripts/postinst-udev /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/autoscripts/postinst-udev --- debhelper-7.0.13ubuntu1/autoscripts/postinst-udev 2008-06-26 12:13:46.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/autoscripts/postinst-udev 1970-01-01 01:00:00.000000000 +0100 @@ -1,9 +0,0 @@ -if [ "$1" = configure ]; then - if [ -e "#OLD#" ]; then - echo "Preserving user changes to #RULE# ..." - if [ -e "#RULE#" ]; then - mv -f "#RULE#" "#RULE#.dpkg-new" - fi - mv -f "#OLD#" "#RULE#" - fi -fi diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/autoscripts/postrm-desktop /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/autoscripts/postrm-desktop --- debhelper-7.0.13ubuntu1/autoscripts/postrm-desktop 2008-06-26 12:13:46.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/autoscripts/postrm-desktop 1970-01-01 01:00:00.000000000 +0100 @@ -1,3 +0,0 @@ -if [ "$1" = "remove" ] && which update-desktop-database >/dev/null 2>&1 ; then - update-desktop-database -q -fi diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/autoscripts/postrm-gconf-defaults /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/autoscripts/postrm-gconf-defaults --- debhelper-7.0.13ubuntu1/autoscripts/postrm-gconf-defaults 2008-06-26 12:13:46.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/autoscripts/postrm-gconf-defaults 2009-04-14 19:13:55.000000000 +0100 @@ -1,3 +1,3 @@ if which update-gconf-defaults >/dev/null 2>&1; then - update-gconf-defaults + update-gconf-defaults #OPT# fi diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/autoscripts/preinst-moveconffile /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/autoscripts/preinst-moveconffile --- debhelper-7.0.13ubuntu1/autoscripts/preinst-moveconffile 1970-01-01 01:00:00.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/autoscripts/preinst-moveconffile 2009-04-14 19:13:55.000000000 +0100 @@ -0,0 +1,9 @@ +if [ "$1" = install ] || [ "$1" = upgrade ]; then + if [ -e "#OLD#" ]; then + if [ "`md5sum \"#OLD#\" | sed -e \"s/ .*//\"`" = \ + "`dpkg-query -W -f='${Conffiles}' #PACKAGE# | sed -n -e \"\\\\' #OLD# '{s/ obsolete$//;s/.* //p}\"`" ] + then + rm -f "#OLD#" + fi + fi +fi diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/autoscripts/preinst-udev /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/autoscripts/preinst-udev --- debhelper-7.0.13ubuntu1/autoscripts/preinst-udev 2008-06-26 12:13:45.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/autoscripts/preinst-udev 2009-04-14 19:13:55.000000000 +0100 @@ -1,11 +1,4 @@ if [ "$1" = install ] || [ "$1" = upgrade ]; then - if [ -e "#OLD#" ]; then - if [ "`md5sum \"#OLD#\" | sed -e \"s/ .*//\"`" = \ - "`dpkg-query -W -f='${Conffiles}' #PACKAGE# | sed -n -e \"\\\\' #OLD#'s/.* //p\"`" ] - then - rm -f "#OLD#" - fi - fi if [ -L "#RULE#" ]; then rm -f "#RULE#" fi diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/autoscripts/prerm-doc-base /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/autoscripts/prerm-doc-base --- debhelper-7.0.13ubuntu1/autoscripts/prerm-doc-base 2008-06-26 12:13:45.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/autoscripts/prerm-doc-base 1970-01-01 01:00:00.000000000 +0100 @@ -1,4 +0,0 @@ -if [ "$1" = remove ] || [ "$1" = upgrade ] && \ - which install-docs >/dev/null 2>&1; then - install-docs -r #DOC-ID# -fi diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/debhelper.pod /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/debhelper.pod --- debhelper-7.0.13ubuntu1/debhelper.pod 2008-06-26 12:13:44.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/debhelper.pod 2009-04-14 19:13:55.000000000 +0100 @@ -118,6 +118,14 @@ Do not act on the specified package even if an -a, -i, or -p option lists the package as one that should be acted on. +=item B<--remaining-packages> + +Do not act on the packages which have already been acted on by this debhelper +command earlier (i.e. if the command is present in the package debhelper log). +For example, if you need to call the command with special options only for a +couple of binary packages, pass this option to the last call of the command to +process the rest of packages with default settings. + =item B<--ignore=>I Ignore the specified file. This can be used if debian/ contains a debhelper @@ -333,6 +341,8 @@ =back +This mode is deprecated. + =item V5 Changes from V4 are: @@ -366,8 +376,8 @@ =item - -Commands that generate maintainer script fragements will order the -fragements in reverse order for the prerm and postrm scripts. +Commands that generate maintainer script fragments will order the +fragments in reverse order for the prerm and postrm scripts. =item - @@ -400,7 +410,7 @@ dh_install, will fall back to looking for files in debian/tmp if it doesn't find them in the current directory (or wherever you tell it look using ---srcdir). This allows dh_install to interoperate with dh_auto_install, +--sourcedir). This allows dh_install to interoperate with dh_auto_install, which installs to debian/tmp, without needing any special parameters. =item - @@ -477,10 +487,13 @@ =item DH_OPTIONS Anything in this variable will be prepended to the command line arguments -of all debhelper commands. This is useful in some situations, for example, -if you need to pass -p to all debhelper commands that will be run. One good -way to set DH_OPTIONS is by using "Target-specific Variable Values" in your -debian/rules file. See the make documentation for details on doing this. +of all debhelper commands. Command-specific options will be ignored by +commands that do not support them. + +This is useful in some situations, for example, if you need to pass -p to +all debhelper commands that will be run. One good way to set DH_OPTIONS is +by using "Target-specific Variable Values" in your debian/rules file. See +the make documentation for details on doing this. =item DH_ALWAYS_EXCLUDE diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/debian/changelog /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/debian/changelog --- debhelper-7.0.13ubuntu1/debian/changelog 2008-06-28 01:41:50.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/debian/changelog 2009-05-08 15:39:34.000000000 +0100 @@ -1,15 +1,268 @@ -debhelper (7.0.13ubuntu1) intrepid; urgency=low +debhelper (7.2.8ubuntu~intrepid~ppa1) intrepid; urgency=low - * Merge from Debian unstable, remaining changes: - - autoscripts/postinst-scrollkeeper: Do not show scrollkeeper-update - output. + * Even more dubious backport to Intrepid. + + -- Iain Lane Fri, 08 May 2009 15:38:59 +0100 + +debhelper (7.2.8ubuntu1) karmic; urgency=low + + * Merge with Debian unstable. Remaining Ubuntu changes: + - dh_installudev: Default priority is now 40 by default, the target + directory is /lib/udev/rules.d, and rules use '-' as separator instead of + '_'. Remove files from /etc/udev/rules.d unless they are user modified; + if modified and of default priority, take care to rename. + This should eventually go to Debian as well, see Debian #491117. + - dh_auto_install: add "--install-layout=deb" to setup.py install calls + (new Python 2.6 policy). + * dh_installxfonts: Drop versioned dependency for xfonts-utils. This + was only necessary for dapper backports, but since dapper desktop goes + EOL in two months, and we haven't done dapper backports in ages, this is + just an unnecessary delta. + + -- Martin Pitt Fri, 24 Apr 2009 19:22:46 +0200 + +debhelper (7.2.8) unstable; urgency=low + + * dh_desktop: Now a deprecated no-op, since desktop-file-utils + uses triggers. Closes: #523474 + (also Closes: #521960, #407701 as no longer applicable) + * Move dh sequence documentation to PROGRAMMING. + + -- Joey Hess Mon, 20 Apr 2009 16:15:32 -0400 + +debhelper (7.2.7) unstable; urgency=low + + * Fix calling the same helper for separate packages in the override of dh + binary-indep/binary-arch. Closes: #520567 + * Add --remaining-packages option (Modestas Vainius) + Closes: #520615 + * Pass -L UTF-8 to po4a to work around bug #520942 + * dh_icons: ignore gnome and hicolor themes (will be handled + by triggers). Closes: #521181 + + -- Joey Hess Fri, 27 Mar 2009 14:15:29 -0400 + +debhelper (7.2.6) unstable; urgency=low + + * Examples files updated to add dh_bugfiles, remove obsolete + dh_python. + * dh_auto_test: Support DEB_BUILD_OPTIONS=nocheck. Closes: #519374 + + -- Joey Hess Sun, 15 Mar 2009 17:54:48 -0400 + +debhelper (7.2.5) unstable; urgency=low + + * Set MODULEBUILDRC=/dev/null when running perl Build scripts + to avoid ~/.modulebuildrc influencing the build. Closes: #517423 + * dh_installmenus: Revert removal of update-menus calls. Closes: #518919 + Menu refuses to add unconfigured packages to the menu, and thus + omits packages when triggered, unfortunatly. I hope its behavior will + change. + + -- Joey Hess Mon, 09 Mar 2009 16:20:41 -0400 + +debhelper (7.2.4) unstable; urgency=low + + * dh_makeshlibs: Fix --add-udeb, for real. Closes: #518706 + + -- Joey Hess Sun, 08 Mar 2009 13:14:30 -0400 + +debhelper (7.2.3) unstable; urgency=low + + * dh_installmenus: Now that a triggers capable menu and dpkg are in + stable, menu does not need to be explicitly run in maintainer + scripts, except for packages with menu-methods files. (See #473467) + * dh_installdocs: No longer add maintainer script code to call + doc-base, as it supports triggers in stable. + * dh_bugfiles: New program, contributed by Modestas Vainius. + Closes: #326874 + * dh: Override LC_ALL, not LANG. re-Closes: #517617 + * dh_installchangelogs: Support -X to exclude automatic installation + of specific upstream changelogs. re-Closes: #490937 + * Compat level 4 is now deprecated. + * dh_makeshlibs: Re-add --add-udeb support. Closes: #518655 + * dh_shlibdeps: Remove --add-udeb switch (was accidentially added here). + + -- Joey Hess Sat, 07 Mar 2009 14:52:20 -0500 + +debhelper (7.2.2) unstable; urgency=low + + * dh_installmodules: Give files in /etc/modprobe.d a .conf + syntax, as required by new module-init-tools. + * dh_installmodules: Add preinst and postinst code to handle + cleanly renaming the modprobe.d files on upgrade. + * Two updates to conffile moving code from wiki: + - Support case where the conffile name is a substring of another + conffile's name. + - Support case where dpkg-query says the file is obsolete. + + -- Joey Hess Wed, 04 Mar 2009 19:37:33 -0500 + +debhelper (7.2.1) experimental; urgency=low + + * Merged debhelper 7.0.52. + + -- Joey Hess Sat, 28 Feb 2009 20:01:22 -0500 + +debhelper (7.2.0) experimental; urgency=low + + * Merged debhelper 7.0.50. + * dh: Fix typo. Closes: #509754 + * debhelper.pod: Fix typo. Closes: #510180 + * dh_gconf: Support mandatory settings. Closes: #513923 + * Improve error messages when child commands fail. + * Depend on dpkg-dev 1.14.19, the first to support Package-Type + fields in dpkg-gencontrol. + * dh_gencontrol: No longer need to generate the udeb filename + when calling dpkg-gencontrol. + * dh_gencontrol: Do not need to tell dpkg-gencontol not to + include the Homepage field in udebs (fixed in dpkg-dev 1.14.17). + + -- Joey Hess Thu, 26 Feb 2009 18:33:44 -0500 + +debhelper (7.1.1) experimental; urgency=low + + * dh_install(1): Order options alphabetically. Closes:# 503896 + * Fix some docs that refered to --srcdir rather than --sourcedir. + Closes: #504742 + * Add Vcs-Browser field. Closes: #507804 + * Ignore unknown options in DH_OPTIONS. Debhelper will always ignore + such options, even when unknown command-line options are converted back + to an error. This allows (ab)using DH_OPTIONS to pass command-specific + options. + (Note that getopt will warn about such unknown options. Eliminating this + warning without reimplementing much of Getopt::Long wasn't practical.) + + -- Joey Hess Sun, 14 Dec 2008 23:19:27 -0500 + +debhelper (7.1.0) experimental; urgency=low + + * dh_installchangelogs: Fall back to looking for changelog files ending + with ".txt". Closes: #498460 + * dh_gencontrol: Ensure misc:Depends is set in substvars to avoid dpkg + complaining about it when it's empty. Closes: #498666 + * dh: Fix typo in example. Closes: #500836 + * Allow individual debhelper programs to define their own special options + by passing a hash to init(), which is later passed on the Getopt::Long. + Closes: #370823 + * Move many command-specific options to only be accepted by the command + that uses them. Affected options are: + -x, -r, -R, -l, -L, -m, + --include-conffiles, --no-restart-on-upgrade, --no-start, + --restart-after-upgrade, --init-script, --filename, --flavor, --autodest, + --libpackage, --add-udeb, --dpkg-shlibdeps-params, + --dpkg-gencontrol-params, --update-rcd-params, --major, --remove-d, + --dirs-only, --keep-debug, --version-info, --list-missing, --fail-missing, + --language, --until, --after, --before, --remaining, --with + * If any third-party debhelper commands use any of the above options, + they will be broken, and need to be changed to pass options to init(). + * To avoid breaking rules files that pass options to commands that do not + use them, debhelper will now only warn if it encounters an unknown + option. This will be converted back to an error later. + + -- Joey Hess Wed, 10 Sep 2008 13:58:00 -0400 + +debhelper (7.0.52) unstable; urgency=low + + * dh: Fix make parsing to not be broken by locale settings. + Closes: #517617 + + -- Joey Hess Sat, 28 Feb 2009 19:52:34 -0500 + +debhelper (7.0.51) unstable; urgency=low + + * dh: Man page typos. Closes: #517549, #517550 + + -- Joey Hess Sat, 28 Feb 2009 13:23:30 -0500 + +debhelper (7.0.50) unstable; urgency=low + + * This release is designed to be easily backportable to stable, + to support the new style of rules file that I expect many packages will + use. + * dh: debian/rules override targets can change what is run + for a specific debhelper command in a sequence. + (Thanks Modestas Vainius for the improved makefile parser.) + * dh: Redid all the examples to use override targets, since these + eliminate all annoying boilerplate and are much easier to understand + than the old method. + * Remove rules.simple example, there's little need to use explicit targets + with dh anymore. + * dh: Support debian/rules calling make with -B, + which is useful to avoid issues with phony implicit + rules (see bug #509756). + + -- Joey Hess Fri, 27 Feb 2009 15:25:52 -0500 + +debhelper (7.0.17ubuntu4) jaunty; urgency=low + + * dh_auto_install: add "--install-layout=deb" to setup.py install calls. + + -- Michael Bienia Mon, 09 Mar 2009 16:17:31 +0100 + +debhelper (7.0.17ubuntu3) jaunty; urgency=low + + * dh_installmodules: Install files to /etc/modprobe.d/*.conf, and move the + file from /etc/modprobe.d/* if it exists and is changed (otherwise + remove before upgrade). + + -- Scott James Remnant Thu, 05 Mar 2009 11:26:43 +0000 + +debhelper (7.0.17ubuntu2) jaunty; urgency=low + + * dh_installudev: Default priority is now 40 by default, and the target + directory is now /lib/udev/rules.d. Remove files from /etc/udev/rules.d + unless they are user modified; if modified and of default priority, + take care to rename. + + -- Scott James Remnant Tue, 06 Jan 2009 18:03:34 +0000 + +debhelper (7.0.17ubuntu1) jaunty; urgency=low + + * Resynchronise with Debian. Remaining changes: - dh_installudev: Use priority 50 by default (instead of z60) and '-' separator (instead of '_'). - - dh_installxfonts: Use versioned dependency for xfonts-utils. This should - be kept until dapper goes out of support, to avoid broken dapper - backports. + - dh_installxfonts: Use versioned dependency for xfonts-utils. This + should be kept until dapper goes out of support, to avoid broken + dapper backports. + * Stop discarding scrollkeeper-update output; this isn't needed now that + we use rarian-compat. + + -- Colin Watson Sun, 02 Nov 2008 21:54:56 +0000 - -- Steve Langasek Sat, 28 Jun 2008 00:41:46 +0000 +debhelper (7.0.17) unstable; urgency=low + + [ Per Olofsson ] + * dh_auto_install: Fix man page, was referring to dh_auto_clean. + + [ Joey Hess ] + * dh_gencontrol: Drop the Homepage field from udebs. Closes: #492719 + * Typo. Closes: #493062 + * dh_auto_install: Improve check for MakeMaker, to avoid passing PREFIX + if the Makefile was generated by Module::Build::Compat. Closes: #496157 + + -- Joey Hess Fri, 22 Aug 2008 22:30:12 -0400 + +debhelper (7.0.16) unstable; urgency=low + + * dh: Avoid passing --with on to subcommands. Closes: #490886 + * dh_installchangelogs: When searching for changelog in v7 mode, skip + empty files. Closes: #490937 + + -- Joey Hess Sat, 19 Jul 2008 15:34:13 -0400 + +debhelper (7.0.15) unstable; urgency=low + + * dh_clean: Do not delete *-stamp files in -k mode in v7. Closes: #489918 + + -- Joey Hess Wed, 09 Jul 2008 16:16:11 -0400 + +debhelper (7.0.14) unstable; urgency=low + + * Load python-support sequence file first, to allow ones loaded later to + disable it. + + -- Joey Hess Sat, 05 Jul 2008 08:23:32 -0400 debhelper (7.0.13) unstable; urgency=low @@ -31,19 +284,6 @@ -- Joey Hess Wed, 25 Jun 2008 03:36:50 -0400 -debhelper (7.0.11ubuntu1) intrepid; urgency=low - - * Merge with Debian unstable. Remaining Ubuntu changes: - - autoscripts/postinst-scrollkeeper: Do not show scrollkeeper-update - output. - - dh_installudev: Use priority 50 by default (instead of z60) and '-' - separator (instead of '_'). - - dh_installxfonts: Use versioned dependency for xfonts-utils. This should - be kept until dapper goes out of support, to avoid broken dapper - backports. - - -- Martin Pitt Wed, 18 Jun 2008 10:57:55 +0200 - debhelper (7.0.11) unstable; urgency=low * dh: Man page fix. Closes: #485116 @@ -5951,4 +6191,3 @@ ready to replace debstd. -- Joey Hess Mon, 22 Sep 1997 15:01:25 -0400 - diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/debian/control /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/debian/control --- debhelper-7.0.13ubuntu1/debian/control 2008-06-26 12:13:46.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/debian/control 2009-04-24 18:22:00.000000000 +0100 @@ -4,13 +4,14 @@ Maintainer: Ubuntu Core Developers XSBC-Original-Maintainer: Joey Hess Build-Depends: po4a (>= 0.24), man-db (>= 2.5.1), file (>= 3.23) -Standards-Version: 3.8.0 +Standards-Version: 3.8.1 Vcs-Git: git://git.debian.org/git/debhelper/debhelper.git +Vcs-Browser: http://git.debian.org/?p=debhelper/debhelper.git;a=summary Homepage: http://kitenet.net/~joey/code/debhelper/ Package: debhelper Architecture: all -Depends: ${perl:Depends}, ${misc:Depends}, file (>= 3.23), dpkg-dev (>= 1.14.15), html2text, binutils, po-debconf, man-db (>= 2.5.1-1) +Depends: ${perl:Depends}, ${misc:Depends}, file (>= 3.23), dpkg-dev (>= 1.14.19), html2text, binutils, po-debconf, man-db (>= 2.5.1-1) Suggests: dh-make Conflicts: dpkg-cross (<< 1.18), python-support (<< 0.5.3), python-central (<< 0.5.6) Description: helper programs for debian/rules diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/debian/copyright /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/debian/copyright --- debhelper-7.0.13ubuntu1/debian/copyright 2008-06-26 12:13:46.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/debian/copyright 2009-04-20 21:15:21.000000000 +0100 @@ -50,3 +50,7 @@ Files: dh_md5sums Copyright: Charles Briscoe-Smith License: GPL-2+ + +Files: dh_bugfiles +Copyright: Modestas Vainius +License: GPL-2+ diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/debian/rules /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/debian/rules --- debhelper-7.0.13ubuntu1/debian/rules 2008-06-26 12:13:46.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/debian/rules 2009-03-21 01:33:08.000000000 +0000 @@ -5,6 +5,7 @@ # Each debhelper command in this rules file has to be run using ./run, # to ensure that the commands and libraries in the source tree are used, # rather than the installed ones. + %: ./run dh $@ diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/Debian/Debhelper/Dh_Getopt.pm /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/Debian/Debhelper/Dh_Getopt.pm --- debhelper-7.0.13ubuntu1/Debian/Debhelper/Dh_Getopt.pm 2008-06-26 12:13:46.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/Debian/Debhelper/Dh_Getopt.pm 2009-04-14 19:13:55.000000000 +0100 @@ -9,12 +9,8 @@ use Debian::Debhelper::Dh_Lib; use Getopt::Long; -use Exporter; -#use vars qw{@ISA @EXPORT}; -#@ISA=qw(Exporter); -#@EXPORT=qw(&aparseopts); # FIXME: for some reason, this doesn't work. -my (%options, %exclude_package); +my %exclude_package; sub showhelp { my $prog=basename($0); @@ -29,19 +25,19 @@ # order. sub AddPackage { my($option,$value)=@_; if ($option eq 'i' or $option eq 'indep') { - push @{$options{DOPACKAGES}}, getpackages('indep'); - $options{DOINDEP}=1; + push @{$dh{DOPACKAGES}}, getpackages('indep'); + $dh{DOINDEP}=1; } elsif ($option eq 'a' or $option eq 'arch') { - push @{$options{DOPACKAGES}}, getpackages('arch'); - $options{DOARCH}=1; + push @{$dh{DOPACKAGES}}, getpackages('arch'); + $dh{DOARCH}=1; } elsif ($option eq 'p' or $option eq 'package') { - push @{$options{DOPACKAGES}}, $value; + push @{$dh{DOPACKAGES}}, $value; } elsif ($option eq 's' or $option eq 'same-arch') { - push @{$options{DOPACKAGES}}, getpackages('same'); - $options{DOSAME}=1; + push @{$dh{DOPACKAGES}}, getpackages('same'); + $dh{DOSAME}=1; } else { error("bad option $option - should never happen!\n"); @@ -50,7 +46,7 @@ # Adds packages to the list of debug packages. sub AddDebugPackage { my($option,$value)=@_; - push @{$options{DEBUGPACKAGES}}, $value; + push @{$dh{DEBUGPACKAGES}}, $value; } # Add a package to a list of packages that should not be acted on. @@ -60,31 +56,28 @@ # Add another item to the exclude list. sub AddExclude { my($option,$value)=@_; - push @{$options{EXCLUDE}},$value; + push @{$dh{EXCLUDE}},$value; } # Add a file to the ignore list. sub AddIgnore { my($option,$file)=@_; - $options{IGNORE}->{$file}=1; -} - -# Add an item to the with list. -sub AddWith { my($option,$value)=@_; - push @{$options{WITH}},$value; + $dh{IGNORE}->{$file}=1; } # This collects non-options values. sub NonOption { - push @{$options{ARGV}}, @_; + push @{$dh{ARGV}}, @_; } -# Parse options and return a hash of the values. -sub parseopts { - undef %options; - - my $ret=GetOptions( - "v" => \$options{VERBOSE}, - "verbose" => \$options{VERBOSE}, +sub getoptions { + my $array=shift; + my %options=%{shift()} if ref $_[0]; + + Getopt::Long::GetOptionsFromArray($array, + "v" => \$dh{VERBOSE}, + "verbose" => \$dh{VERBOSE}, + + "no-act" => \$dh{NO_ACT}, "i" => \&AddPackage, "indep" => \&AddPackage, @@ -94,124 +87,134 @@ "p=s" => \&AddPackage, "package=s" => \&AddPackage, + + "N=s" => \&ExcludePackage, + "no-package=s" => \&ExcludePackage, + + "remaining-packages" => \$dh{EXCLUDE_LOGGED}, "dbg-package=s" => \&AddDebugPackage, "s" => \&AddPackage, "same-arch" => \&AddPackage, - "N=s" => \&ExcludePackage, - "no-package=s" => \&ExcludePackage, - - "n" => \$options{NOSCRIPTS}, - "noscripts" => \$options{NOSCRIPTS}, - "o" => \$options{ONLYSCRIPTS}, - "onlyscripts" => \$options{ONLYSCRIPTS}, + "n" => \$dh{NOSCRIPTS}, + "noscripts" => \$dh{NOSCRIPTS}, + "o" => \$dh{ONLYSCRIPTS}, + "onlyscripts" => \$dh{ONLYSCRIPTS}, - "x" => \$options{INCLUDE_CONFFILES}, # is -x for some unknown historical reason.. - "include-conffiles" => \$options{INCLUDE_CONFFILES}, - "X=s" => \&AddExclude, "exclude=s" => \&AddExclude, - "ignore=s" => \&AddIgnore, - - "d" => \$options{D_FLAG}, - "remove-d" => \$options{D_FLAG}, - "dirs-only" => \$options{D_FLAG}, + "d" => \$dh{D_FLAG}, - "r" => \$options{R_FLAG}, - "no-restart-on-upgrade" => \$options{R_FLAG}, - "no-start" => \$options{NO_START}, - "R|restart-after-upgrade" => \$options{RESTART_AFTER_UPGRADE}, - - "k" => \$options{K_FLAG}, - "keep" => \$options{K_FLAG}, - "keep-debug" => \$options{K_FLAG}, - - "P=s" => \$options{TMPDIR}, - "tmpdir=s" => \$options{TMPDIR}, - - "u=s", => \$options{U_PARAMS}, - "update-rcd-params=s", => \$options{U_PARAMS}, - "dpkg-shlibdeps-params=s", => \$options{U_PARAMS}, - "dpkg-gencontrol-params=s", => \$options{U_PARAMS}, + "k" => \$dh{K_FLAG}, + "keep" => \$dh{K_FLAG}, - "l=s", => \$options{L_PARAMS}, + "P=s" => \$dh{TMPDIR}, + "tmpdir=s" => \$dh{TMPDIR}, - "m=s", => \$options{M_PARAMS}, - "major=s" => \$options{M_PARAMS}, + "u=s", => \$dh{U_PARAMS}, - "V:s", => \$options{V_FLAG}, - "version-info:s" => \$options{V_FLAG}, + "V:s", => \$dh{V_FLAG}, - "A" => \$options{PARAMS_ALL}, - "all" => \$options{PARAMS_ALL}, - - "no-act" => \$options{NO_ACT}, + "A" => \$dh{PARAMS_ALL}, + "all" => \$dh{PARAMS_ALL}, - "init-script=s" => \$options{INIT_SCRIPT}, - - "sourcedir=s" => \$options{SOURCEDIR}, + "sourcedir=s" => \$dh{SOURCEDIR}, - "destdir=s" => \$options{DESTDIR}, - - "filename=s" => \$options{FILENAME}, + "destdir=s" => \$dh{DESTDIR}, - "priority=s" => \$options{PRIORITY}, + "priority=s" => \$dh{PRIORITY}, - "flavor=s" => \$options{FLAVOR}, - - "autodest" => \$options{AUTODEST}, - "h|help" => \&showhelp, - "mainpackage=s" => \$options{MAINPACKAGE}, + "mainpackage=s" => \$dh{MAINPACKAGE}, - "list-missing" => \$options{LIST_MISSING}, + "name=s" => \$dh{NAME}, - "fail-missing" => \$options{FAIL_MISSING}, + "error-handler=s" => \$dh{ERROR_HANDLER}, - "L|libpackage=s" => \$options{LIBPACKAGE}, - - "name=s" => \$options{NAME}, - - "error-handler=s" => \$options{ERROR_HANDLER}, - - "add-udeb=s" => \$options{SHLIBS_UDEB}, - - "language=s" => \$options{LANGUAGE}, + "ignore=s" => \&AddIgnore, - "until=s" => \$options{UNTIL}, - "after=s" => \$options{AFTER}, - "before=s" => \$options{BEFORE}, - "remaining" => \$options{REMAINING}, - "with=s" => \&AddWith, + %options, "<>" => \&NonOption, - ); + ) +} - if (!$ret) { - error("unknown option; aborting"); +# Parse options and set %dh values. +sub parseopts { + my $options=shift; + + my @ARGV_extra; + + # DH_INTERNAL_OPTIONS is used to pass additional options from + # dh through an override target to a command. + if (defined $ENV{DH_INTERNAL_OPTIONS}) { + $ENV{DH_INTERNAL_OPTIONS}=~s/^\s+//; + $ENV{DH_INTERNAL_OPTIONS}=~s/\s+$//; + @ARGV_extra=split(/\s+/,$ENV{DH_INTERNAL_OPTIONS}); + my $ret=getoptions(\@ARGV_extra, $options); + if (!$ret) { + warning("warning: unknown options will be a fatal error in a future debhelper release"); + #error("unknown option; aborting"); + } + + # Avoid forcing acting on packages specified in + # DH_INTERNAL_OPTIONS. This way, -p can be specified + # at the command line to act on a specific package, and if + # nothing is specified, the excludes will cause the set of + # packages DH_INTERNAL_OPTIONS specifies to be acted on. + if (defined $dh{DOPACKAGES}) { + foreach my $package (getpackages()) { + if (! grep { $_ eq $package } @{$dh{DOPACKAGES}}) { + $exclude_package{$package}=1; + } + } + } + delete $dh{DOPACKAGES}; + delete $dh{DOINDEP}; + delete $dh{DOARCH}; + delete $dh{DOSAME}; } + # DH_OPTIONS can contain additional options + # to be parsed like @ARGV, but with unknown options + # skipped. + if (defined $ENV{DH_OPTIONS}) { + $ENV{DH_OPTIONS}=~s/^\s+//; + $ENV{DH_OPTIONS}=~s/\s+$//; + @ARGV_extra=split(/\s+/,$ENV{DH_OPTIONS}); + my $ret=getoptions(\@ARGV_extra, $options); + if (!$ret) { + warning("warning: ignored unknown options in DH_OPTIONS"); + } + } + + my $ret=getoptions(\@ARGV, $options); + if (!$ret) { + warning("warning: unknown options will be a fatal error in a future debhelper release"); + #error("unknown option; aborting"); + } + # Check to see if -V was specified. If so, but no parameters were # passed, the variable will be defined but empty. - if (defined($options{V_FLAG})) { - $options{V_FLAG_SET}=1; + if (defined($dh{V_FLAG})) { + $dh{V_FLAG_SET}=1; } # If we have not been given any packages to act on, assume they # want us to act on them all. Note we have to do this before excluding # packages out, below. - if (! defined $options{DOPACKAGES} || ! @{$options{DOPACKAGES}}) { - if ($options{DOINDEP} || $options{DOARCH} || $options{DOSAME}) { + if (! defined $dh{DOPACKAGES} || ! @{$dh{DOPACKAGES}}) { + if ($dh{DOINDEP} || $dh{DOARCH} || $dh{DOSAME}) { # User specified that all arch (in)dep package be # built, and there are none of that type. - warning("I have no package to build"); + warning("You asked that all arch in(dep) packages be built, but there are none of that type."); exit(0); } - push @{$options{DOPACKAGES}},getpackages(); + push @{$dh{DOPACKAGES}},getpackages(); } # Remove excluded packages from the list of packages to act on. @@ -220,7 +223,11 @@ my @package_list; my $package; my %packages_seen; - foreach $package (@{$options{DOPACKAGES}}) { + foreach $package (@{$dh{DOPACKAGES}}) { + if (defined($dh{EXCLUDE_LOGGED}) && + grep { $_ eq basename($0) } load_log($package)) { + $exclude_package{$package}=1; + } if (! $exclude_package{$package}) { if (! exists $packages_seen{$package}) { $packages_seen{$package}=1; @@ -228,27 +235,25 @@ } } } - @{$options{DOPACKAGES}}=@package_list; + @{$dh{DOPACKAGES}}=@package_list; - # If there are no packages to act on now, it's an error. - if (! defined $options{DOPACKAGES} || ! @{$options{DOPACKAGES}}) { - error("I have no package to build"); + if (! defined $dh{DOPACKAGES} || ! @{$dh{DOPACKAGES}}) { + warning("No packages to build."); + exit(0); } - if (defined $options{U_PARAMS}) { + if (defined $dh{U_PARAMS}) { # Split the U_PARAMS up into an array. - my $u=$options{U_PARAMS}; - undef $options{U_PARAMS}; - push @{$options{U_PARAMS}}, split(/\s+/,$u); + my $u=$dh{U_PARAMS}; + undef $dh{U_PARAMS}; + push @{$dh{U_PARAMS}}, split(/\s+/,$u); } # Anything left in @ARGV is options that appeared after a -- # These options are added to the U_PARAMS array, while the # non-option values we collected replace them in @ARGV; - push @{$options{U_PARAMS}}, @ARGV; - @ARGV=@{$options{ARGV}} if exists $options{ARGV}; - - return %options; + push @{$dh{U_PARAMS}}, @ARGV, @ARGV_extra; + @ARGV=@{$dh{ARGV}} if exists $dh{ARGV}; } sub import { diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/Debian/Debhelper/Dh_Lib.pm /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/Debian/Debhelper/Dh_Lib.pm --- debhelper-7.0.13ubuntu1/Debian/Debhelper/Dh_Lib.pm 2008-06-26 12:13:46.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/Debian/Debhelper/Dh_Lib.pm 2009-04-20 21:15:21.000000000 +0100 @@ -15,34 +15,23 @@ &filedoublearray &getpackages &basename &dirname &xargs %dh &compat &addsubstvar &delsubstvar &excludefile &package_arch &is_udeb &udeb_filename &debhelper_script_subst &escape_shell - &inhibit_log); + &inhibit_log &load_log &write_log); my $max_compat=7; sub init { - # If DH_OPTIONS is set, prepend it @ARGV. - if (defined($ENV{DH_OPTIONS})) { - # Ignore leading/trailing whitespace. - $ENV{DH_OPTIONS}=~s/^\s+//; - $ENV{DH_OPTIONS}=~s/\s+$//; - unshift @ARGV,split(/\s+/,$ENV{DH_OPTIONS}); - } + my %params=@_; - # Check to see if an argument on the command line starts with a dash. - # if so, we need to pass this off to the resource intensive + # Check to see if an option line starts with a dash, + # or DH_OPTIONS is set. + # If so, we need to pass this off to the resource intensive # Getopt::Long, which I'd prefer to avoid loading at all if possible. - my $parseopt=undef; - my $arg; - foreach $arg (@ARGV) { - if ($arg=~m/^-/) { - $parseopt=1; - last; - } - } - if ($parseopt) { + if ((defined $ENV{DH_OPTIONS} && length $ENV{DH_OPTIONS}) || + (defined $ENV{DH_INTERNAL_OPTIONS} && length $ENV{DH_INTERNAL_OPTIONS}) || + grep /^-/, @ARGV) { eval "use Debian::Debhelper::Dh_Getopt"; - error($!) if $@; - %dh=Debian::Debhelper::Dh_Getopt::parseopts(); + error($@) if $@; + Debian::Debhelper::Dh_Getopt::parseopts($params{options}); } # Another way to set excludes. @@ -85,9 +74,6 @@ # Check if packages to build have been specified, if not, fall back to # the default, doing them all. if (! defined $dh{DOPACKAGES} || ! @{$dh{DOPACKAGES}}) { - if ($dh{DOINDEP} || $dh{DOARCH} || $dh{DOSAME}) { - error("You asked that all arch in(dep) packages be built, but there are none of that type."); - } push @{$dh{DOPACKAGES}},@allpackages; } @@ -114,14 +100,35 @@ my $write_log=1; sub END { if ($? == 0 && $write_log) { - my $cmd=basename($0); - foreach my $package (@{$dh{DOPACKAGES}}) { - my $ext=pkgext($package); - my $log="debian/${ext}debhelper.log"; - open(LOG, ">>", $log) || error("failed to write to ${log}: $!"); - print LOG $cmd."\n"; - close LOG; - } + write_log(basename($0), @{$dh{DOPACKAGES}}); + } +} + +sub load_log { + my ($package, $db)=@_; + my $ext=pkgext($package); + + my @log; + open(LOG, "<", "debian/${ext}debhelper.log") || return; + while () { + chomp; + push @log, $_; + $db->{$package}{$_}=1 if defined $db; + } + close LOG; + return @log; +} + +sub write_log { + my $cmd=shift; + my @packages=@_; + + foreach my $package (@packages) { + my $ext=pkgext($package); + my $log="debian/${ext}debhelper.log"; + open(LOG, ">>", $log) || error("failed to write to ${log}: $!"); + print LOG $cmd."\n"; + close LOG; } } @@ -167,8 +174,7 @@ verbose_print(escape_shell(@_)); if (! $dh{NO_ACT}) { - my $ret=system(@_); - $ret == 0 || error("command returned error code $ret"); + system(@_) == 0 || _error_exitcode($_[0]); } } @@ -181,11 +187,23 @@ if (! $dh{NO_ACT}) { # The join makes system get a scalar so it forks off a shell. - system(join(" ",@_)) == 0 - || error("command returned error code"); + system(join(" ", @_)) == 0 || _error_exitcode(join(" ", @_)) } } +sub _error_exitcode { + my $command=shift; + if ($? == -1) { + error("$command failed to to execute: $!"); + } + elsif ($? & 127) { + error("$command died with signal ".($? & 127)); + } + else { + error("$command returned exit code ".($? >> 8)); + } +} + # Run a command that may have a huge number of arguments, like xargs does. # Pass in a reference to an array containing the arguments, and then other # parameters that are the command and any parameters that should be passed to @@ -293,7 +311,7 @@ } if ($c < 4 && ! $warned_compat) { - warning("Compatibility levels before 4 are deprecated."); + warning("Compatibility levels before 5 are deprecated."); $warned_compat=1; } diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/dh /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/dh --- debhelper-7.0.13ubuntu1/dh 2008-06-26 12:13:44.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/dh 2009-04-20 21:20:19.000000000 +0100 @@ -11,7 +11,7 @@ =head1 SYNOPSIS -B sequence [B<--until> I] [B<--before> I] [B<--after> I] [B<--remaining>] [B<--with> I] [S>] +B sequence [B<--with> I] [B<--until> I] [B<--before> I] [B<--after> I] [B<--remaining>] [S>] =head1 DESCRIPTION @@ -34,10 +34,25 @@ in the sequence. The B<--until>, B<--before>, B<--after>, and B<--remaining> options can override this behavior. +If debian/rules contains a target with a name like "override_I", +then when it gets to that command in the sequence, dh will run that +target from the rules file, rather than running the actual command. The +override target can then run the command with additional options, or run +entirely different commands instead. (Note that to use this feature, +you should Build-Depend on debhelper 7.0.50 or above.) + =head1 OPTIONS =over 4 +=item B<--with> I + +Add the debhelper commands specified by the given addon to appropriate places +in the sequence of commands that is run. This option can be repeated more +than once, and is used when there is a third-party package that provides +debhelper commands. See the PROGRAMMING file for documentation about +the sequence addon interface. + =item B<--until> I Run commands in the sequence until and including I, then stop. @@ -54,14 +69,6 @@ Run all commands in the sequence that have yet to be run. -=item B<--with> I - -Add the debhelper commands specified by the given addon to appropriate places -in the sequence of commands that is run. This option can be repeated more -than once, and is used when there is a third-party package that provides -debhelper commands. See "SEQUENCE ADDONS" below for documentation about what -such packages should do to be supported by --with. - =back All other options passed to dh are passed on to each command it runs. This @@ -75,28 +82,6 @@ ambiguity. If there are multiple substring matches, the last one in the sequence will be used. -=head1 SEQUENCE ADDONS - -When B<--with> I is used, dh loads the perl module -Debian::Debhelper::Sequence::I. Two functions are provided to let -the module add its commands to sequences: - -=over 4 - -=item Debian::Debhelper::Dh_Lib::insert_before(existing_command, new_command) - -Insert I in sequences before I. - -=item Debian::Debhelper::Dh_Lib::insert_after(existing_command, new_command) - -Insert I in sequences after I. - -=item Debian::Debhelper::Dh_Lib::remove_command(existing_command) - -Remove I from the list of commands to run. - -=back - =cut sub command_pos { @@ -137,90 +122,66 @@ %: dh $@ -This is a simple rules file that is a good starting place for customisation. -(It's also available in F +Often you'll want to pass an option to a specific debhelper command. The +easy way to do with is by adding an override target for that command. + + #!/usr/bin/make -f + %: + dh $@ + + override_dh_strip: + dh_strip -Xfoo + + override_dh_installdocs: + dh_installdocs README TODO + +Sometimes the automated dh_auto_configure and dh_auto_build can't guess +what to do for a strange package. Here's how to avoid running either +and instead run your own commands. #!/usr/bin/make -f + %: + dh $@ - build: build-stamp - dh build - touch build-stamp - - clean: - dh clean - - install: build install-stamp - install-stamp: - dh install - touch install-stamp - - binary-arch: install - dh binary-arch - - binary-indep: install - dh binary-indep - - binary: binary-arch binary-indep - -Often you'll want to pass an option to ./configure. This uses dh to run all -commands before L, then runs that command by hand, -and then finished up by running the rest of the sequence. You could also -run ./configure by hand, instead of bothering with using dh_auto_configure. -And if necessary, you can add commands to run automake, etc here too. - - build: build-stamp - build-stamp: - dh build --before configure - dh_auto_configure -- --kitchen-sink=yes - dh build --after configure - touch build-stamp - -Here's how to skip two automated in a row (configure and build), and -instead run the commands by hand. - - build: build-stamp - build-stamp: - dh build --before configure + override_dh_auto_configure: ./mondoconfig + + override_dh_auto_build: make universe-explode-in-delight - dh build --after build - touch build-stamp -Another common case is wanting to run some code manually after a particular -debhelper command is run. +Another common case is wanting to do something manually before or +after a particular debhelper command is run. - install: build install-stamp - install-stamp: - dh install --until dh_fixperms - # dh_fixperms has run, now override it for one program + #!/usr/bin/make -f + %: + dh $@ + + override_dh_fixperms: + dh_fixperms chmod 4755 debian/foo/usr/bin/foo - # and continue - dh install --after dh_fixperms - touch install-stamp - -It's also fine to run debhelper commands early. Just make sure that at -least dh_prep is run from the sequence first, and be sure to use the -B<--remaining> option to ensure that commands that normally come before -those in the sequence are still run. - - install: build install-stamp - install-stamp: - dh install --until dh_prep - dh_installdocs README TODO - dh_installchangelogs Changes - dh install --remaining - touch install-stamp - - binary-arch: install - dh_strip -X foo - dh binary-arch --remaining + +If your package is a python package, dh will use dh_pysupport by +default. This is how to use dh_pycentral instead. + + #!/usr/bin/make -f + %: + dh --with python-central $@ =cut # Stash this away before init modifies it. my @ARGV_orig=@ARGV; -init(); +init(options => { + "until=s" => \$dh{UNTIL}, + "after=s" => \$dh{AFTER}, + "before=s" => \$dh{BEFORE}, + "remaining" => \$dh{REMAINING}, + "with=s" => sub { + my ($option,$value)=@_; + push @{$dh{WITH}},$value; + }, +}); inhibit_log(); # Definitions of sequences. @@ -266,8 +227,8 @@ dh_installudev dh_installwm dh_installxfonts + dh_bugfiles dh_lintian - dh_desktop dh_gconf dh_icons dh_perl @@ -293,7 +254,7 @@ $sequences{'binary-arch'} = [@{$sequences{binary}}]; # --with python-support is enabled by default, at least for now -push @{$dh{WITH}}, "python-support"; +unshift @{$dh{WITH}}, "python-support"; # sequence addon interface sub _insert { @@ -344,8 +305,14 @@ error "specify a sequence to run"; } my $sequence=shift; -if (! exists $sequences{$sequence}) { - error "Unknown sequence $sequence (chose from: ". +if ($sequence eq 'debian/rules' || + $sequence =~ /^override_dh_/) { + # make -B causes the rules file to be run as a target + # and support completly empty override targets + exit 0 +} +elsif (! exists $sequences{$sequence}) { + error "Unknown sequence $sequence (choose from: ". join(" ", sort keys %sequences).")"; } my @sequence=@{$sequences{$sequence}}; @@ -372,11 +339,11 @@ while (@ARGV_orig) { my $opt=shift @ARGV_orig; next if $opt eq $sequence; - if ($opt =~ /^--?(after|until|before)$/) { + if ($opt =~ /^--?(after|until|before|with)$/) { shift @ARGV_orig; next; } - elsif ($opt =~ /^--?(no-act|remaining|(after|until|before)=)/) { + elsif ($opt =~ /^--?(no-act|remaining|(after|until|before|with)=)/) { next; } push @options, $opt; @@ -386,7 +353,7 @@ my %logged; my %startpoint; foreach my $package (@packages) { - my @log=loadlog($package); + my @log=load_log($package, \%logged); if ($dh{AFTER}) { # Run commands in the sequence that come after the # specified command. @@ -396,7 +363,7 @@ # no commands remain to run after it, communicating to # future dh instances that the specified command should not # be run again. - writelog($package, $sequence[$startpoint{$package}-1]); + write_log($sequence[$startpoint{$package}-1], $package); } elsif ($dh{REMAINING}) { # Start at the beginning so all remaining commands will get @@ -443,21 +410,32 @@ # Command already done for all packages. next; } - elsif (! @exclude) { - # Run command for all packages. - run($sequence[$i], @options); - } - else { - # Run command for only a subset of packages. - run($sequence[$i], @options, - map { "-N$_" } @exclude); - } + + run($sequence[$i], \@packages, \@exclude, @options); } sub run { my $command=shift; + my @packages=@{shift()}; + my @exclude=@{shift()}; my @options=@_; + # If some packages are excluded, add flags + # to prevent them from being acted on. + push @options, map { "-N$_" } @exclude; + + # Check for override targets in debian/rules and + # run them instead of running the command directly. + my $override_command; + if (rules_explicit_target("override_".$command)) { + $override_command=$command; + # This passes the options through to commands called + # inside the target. + $ENV{DH_INTERNAL_OPTIONS}=join(" ", @options); + $command="debian/rules"; + @options="override_".$override_command; + } + # 3 space indent lines the command being run up under the # sequence name after "dh ". print " ".escape_shell($command, @options)."\n"; @@ -470,32 +448,61 @@ elsif ($ret) { exit 1; } + + if (defined $override_command) { + delete $ENV{DH_INTERNAL_OPTIONS}; + # Need to handle logging for overriden commands here, + # because the actual debhelper command may not have + # been run by the rules file target. + my %packages=map { $_ => 1 } @packages; + map { delete $packages{$_} } @exclude; + write_log($override_command, keys %packages); + } } } -sub loadlog { - my $package=shift; - my $ext=pkgext($package); +{ +my %targets; +my $rules_parsed; + +sub rules_explicit_target { + # Checks if a specified target exists as an explicit target + # in debian/rules. + my $target=shift; - my @log; - open(LOG, "<", "debian/${ext}debhelper.log") || return; - while () { - chomp; - push @log, $_; - $logged{$package}{$_}=1; + if (! $rules_parsed) { + my $processing_targets = 0; + my $not_a_target = 0; + open(MAKE, "LC_ALL=C make -Rrnpsf debian/rules debhelper-fail-me 2>/dev/null |"); + while () { + if ($processing_targets) { + if (/^# Not a target:/) { + $not_a_target = 1; + } + else { + if (!$not_a_target && /^([^#:]+)::?/) { + # Target is defined. + # NOTE: if it is a depenency + # of .PHONY it will be + # defined too but that's ok. + $targets{$1} = 1; + } + # "Not a target:" is always followed by + # a target name, so resetting this one + # here is safe. + $not_a_target = 0; + } + } elsif (/^# Files$/) { + $processing_targets = 1; + } + } + close MAKE; + $rules_parsed = 1; } - close LOG; - return @log; + + return exists $targets{$target}; } - -sub writelog { - my $package=shift; - my $cmd=shift; - my $ext=pkgext($package); - - open(LOG, ">>", "debian/${ext}debhelper.log") || error("failed to write to log"); - print LOG $cmd."\n"; - close LOG; + } =head1 SEE ALSO diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/dh_auto_build /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/dh_auto_build --- debhelper-7.0.13ubuntu1/dh_auto_build 2008-06-26 12:13:45.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/dh_auto_build 2009-04-20 21:15:21.000000000 +0100 @@ -30,7 +30,7 @@ =item B<--> I -Pass "params" to the program that is run. These can be used to suppliment +Pass "params" to the program that is run. These can be used to supplement or override any standard parameters that dh_auto_build passes. =back @@ -46,6 +46,7 @@ doit("python", "setup.py", "build", @{$dh{U_PARAMS}}); } elsif (-e "Build.PL" && -e "Build") { + $ENV{MODULEBUILDRC} = "/dev/null"; doit("perl", "Build", @{$dh{U_PARAMS}}); } diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/dh_auto_clean /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/dh_auto_clean --- debhelper-7.0.13ubuntu1/dh_auto_clean 2008-06-26 12:13:44.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/dh_auto_clean 2009-04-20 21:15:21.000000000 +0100 @@ -31,7 +31,7 @@ =item B<--> I -Pass "params" to the program that is run. These can be used to suppliment +Pass "params" to the program that is run. These can be used to supplement or override the any standard parameters that dh_auto_clean passes. =back @@ -60,6 +60,7 @@ doit('find', '.', '-name', '*.pyc', '-exec', 'rm', '{}', ';'); } elsif (-e "Build.PL" && -e "Build") { + $ENV{MODULEBUILDRC} = "/dev/null"; doit("perl", "Build", "--allow_mb_mismatch", 1, "distclean", @{$dh{U_PARAMS}}); } diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/dh_auto_configure /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/dh_auto_configure --- debhelper-7.0.13ubuntu1/dh_auto_configure 2008-06-26 12:13:44.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/dh_auto_configure 2009-04-20 21:15:21.000000000 +0100 @@ -23,7 +23,7 @@ This is intended to work for about 90% of packages. If it doesn't work, you're encouraged to skip using dh_auto_configure at all, and just run -./configure or its equivilant manually. +./configure or its equivalent manually. =head1 OPTIONS @@ -31,7 +31,7 @@ =item B<--> I -Pass "params" to the program that is run. These can be used to suppliment +Pass "params" to the program that is run. These can be used to supplement or override the standard parameters that dh_auto_configure passes. =back @@ -92,6 +92,7 @@ } elsif (-e "Build.PL") { $ENV{PERL_MM_USE_DEFAULT}=1; # Module::Build can also use this. + $ENV{MODULEBUILDRC} = "/dev/null"; doit("perl", "Build.PL", "installdirs=vendor", @{$dh{U_PARAMS}}); } diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/dh_auto_install /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/dh_auto_install --- debhelper-7.0.13ubuntu1/dh_auto_install 2008-06-26 12:13:44.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/dh_auto_install 2009-04-24 18:22:00.000000000 +0100 @@ -32,7 +32,7 @@ automatically set PREFIX=/usr too, since such Makefiles need that. This is intended to work for about 90% of packages. If it doesn't work, or -tries to use the wrong clean target, you're encouraged to skip using +tries to use the wrong install target, you're encouraged to skip using dh_auto_install at all, and just run make install manually. =head1 OPTIONS @@ -41,8 +41,8 @@ =item B<--> I -Pass "params" to the program that is run. These can be used to suppliment -or override the any standard parameters that dh_auto_clean passes. +Pass "params" to the program that is run. These can be used to supplement +or override the any standard parameters that dh_auto_install passes. =back @@ -63,10 +63,13 @@ if (-e "Makefile" || -e "makefile" || -e "GNUmakefile") { $ENV{MAKE}="make" unless exists $ENV{MAKE}; my @params="DESTDIR=$destdir"; - # Special case for MakeMaker. - if (-e "Makefile.PL") { + + # Special case for MakeMaker generated Makefiles. + if (-e "Makefile" && + system('grep -q "generated automatically by MakeMaker" Makefile') == 0) { push @params, "PREFIX=/usr"; } + foreach my $target (qw{install}) { # Use make -n to check to see if the target would do # anything. There's no good way to test if a target exists. @@ -84,9 +87,11 @@ doit("python", "setup.py", "install", "--root=$destdir", "--no-compile", "-O0", + "--install-layout=deb", @{$dh{U_PARAMS}}); } elsif (-e "Build.PL" && -e "Build") { + $ENV{MODULEBUILDRC} = "/dev/null"; doit("perl", "Build", "install", "destdir=$destdir", "create_packlist=0", @{$dh{U_PARAMS}}); } diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/dh_auto_test /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/dh_auto_test --- debhelper-7.0.13ubuntu1/dh_auto_test 2008-06-26 12:13:44.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/dh_auto_test 2009-04-20 21:15:21.000000000 +0100 @@ -32,15 +32,24 @@ =item B<--> I -Pass "params" to the program that is run. These can be used to suppliment +Pass "params" to the program that is run. These can be used to supplement or override the any standard parameters that dh_auto_test passes. =back +=head1 NOTES + +If the DEB_BUILD_OPTIONS environment variable contains "nocheck", no +tests will be performed. + =cut init(); +if (defined $ENV{DEB_BUILD_OPTIONS} && $ENV{DEB_BUILD_OPTIONS} =~ /nocheck/) { + exit 0; +} + if (-e "Makefile" || -e "makefile" || -e "GNUmakefile") { $ENV{MAKE}="make" unless exists $ENV{MAKE}; foreach my $target (qw{test check}) { @@ -55,6 +64,7 @@ } } elsif (-e "Build.PL" && -e "Build") { + $ENV{MODULEBUILDRC} = "/dev/null"; doit(qw/perl Build test/, @{$dh{U_PARAMS}}); } diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/dh_bugfiles /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/dh_bugfiles --- debhelper-7.0.13ubuntu1/dh_bugfiles 1970-01-01 01:00:00.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/dh_bugfiles 2009-04-14 19:13:55.000000000 +0100 @@ -0,0 +1,134 @@ +#!/usr/bin/perl -w + +=head1 NAME + +dh_bugfiles - install bug reporting customization files into package build directories + +=cut + +use strict; +use Debian::Debhelper::Dh_Lib; + +=head1 SYNOPSIS + +B [B<-A>] [S>] + +=head1 DESCRIPTION + +dh_bugfiles is a debhelper program that is responsible for installing +bug reporting customization files (bug scripts and/or bug control files +and/or presubj files) into package build directories. + +This helper program installs the following files if they are found: + +=over 3 + +=item B + +It is the script to be run by the bug reporting program for generating a bug +report template. This file is installed as F in the +package build directory if no other types of bug reporting customization +files are going to be installed for the package in question. Otherwise, +this file is installed as F. Finally, the +installed script is given execute permissions. + +=item B + +It is the bug control file containing some directions for the bug reporting +tool. This file is installed as F in the +package build directory. + +=item B + +The contents of this file are displayed to the user by the bug reporting +tool before allowing the user to write a bug report on the package to the +Debian Bug Tracking System. This file is installed as +F in the package build directory. + +=back + +=head1 OPTIONS + +=over 4 + +=item B<-A>, B<--all> + +Install debian/bug-* files to ALL packages acted on when respective +debian/package.bug-* files do not exist. Normally, debian/bug-* will +be installed to the first package only. + +=back + +=cut + +init(); + +# Types of bug files this debhelper program handles. +# Hash value is the name of the pkgfile of the respective +# type. +my %bugfile_types = ( + "script" => "bug-script", + "control" => "bug-control", + "presubj" => "bug-presubj", +); + +foreach my $package (@{$dh{DOPACKAGES}}) { + next if is_udeb($package); + + my $tmp=tmpdir($package); + my $dir="$tmp/usr/share/bug/$package"; + + # Gather information which bug files are available for the + # package in question + my %bugfiles=(); + while (my ($type, $pkgfilename) = each(%bugfile_types)) { + my $file=pkgfile($package,$pkgfilename); + if ($file) { + $bugfiles{$type}=$file; + } elsif (-f "debian/$pkgfilename" && $dh{PARAMS_ALL}) { + $bugfiles{$type}="debian/$pkgfilename"; + } + } + + # If there is only a bug script to install, install it as + # usr/share/bug/$package (unless this path is a directory) + if (! -d $dir && scalar(keys(%bugfiles)) == 1 && exists $bugfiles{script}) { + doit("install","-D","-p","-m755",$bugfiles{script},$dir); + } + elsif (scalar(keys(%bugfiles)) > 0) { + if (-f $dir) { + # Move usr/share/bug/$package to usr/share/bug/$package/script + doit("mv", $dir, "${dir}.tmp"); + doit("install","-d",$dir); + doit("mv", "${dir}.tmp", "$dir/script"); + } + elsif (! -d $dir) { + doit("install","-d",$dir); + } + while (my ($type, $srcfile) = each(%bugfiles)) { + doit("install","-p","-m644",$srcfile, "$dir/$type"); + } + } + + # Ensure that the bug script is executable + if (-f $dir) { + chmod 0755, $dir; + } + elsif (-f "$dir/script") { + chmod 0755, "$dir/script"; + } +} + +=head1 SEE ALSO + +F + +L + +This program is a part of debhelper. + +=head1 AUTHOR + +Modestas Vainius + +=cut diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/dh_builddeb /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/dh_builddeb --- debhelper-7.0.13ubuntu1/dh_builddeb 2008-06-26 12:13:45.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/dh_builddeb 2009-04-14 19:13:55.000000000 +0100 @@ -43,7 +43,9 @@ =cut -init(); +init(options => { + "filename=s" => \$dh{FILENAME}, +}); # Set the default destination directory. if (! defined $dh{DESTDIR}) { diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/dh_clean /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/dh_clean --- debhelper-7.0.13ubuntu1/dh_clean 2008-06-26 12:13:44.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/dh_clean 2009-04-14 19:13:55.000000000 +0100 @@ -36,8 +36,7 @@ =item B<-k>, B<--keep> -This causes L to be run instead of dh_clean, for backwards -compatibility. +This is deprecated, use L instead. =item B<-d>, B<--dirs-only> @@ -58,7 +57,9 @@ =cut -init(); +init(options => { + "dirs-only" => \$dh{D_FLAG}, +}); inhibit_log(); if ($dh{K_FLAG}) { @@ -122,7 +123,7 @@ doit('rm', '-rf', 'debian/tmp') if -x 'debian/tmp' && ! compat(1) && ! excludefile("debian/tmp"); -if (!compat(6)) { +if (!compat(6) && !$dh{K_FLAG}) { complex_doit('rm -f *-stamp'); } diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/dh_desktop /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/dh_desktop --- debhelper-7.0.13ubuntu1/dh_desktop 2008-06-26 12:13:45.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/dh_desktop 2009-04-14 19:13:55.000000000 +0100 @@ -2,7 +2,7 @@ =head1 NAME -dh_desktop - Register .desktop files +dh_desktop - deprecated no-op =cut @@ -15,34 +15,14 @@ =head1 DESCRIPTION -dh_desktop is a debhelper program that registers .desktop files. -Currently this program does not handle installation of the files, though it -may do so at a later date. It takes care of adding maintainer script -fragments to call F. - -Note that since F currently only handles mime -types, as an optimisation, desktop files not containing MimeType fields -will currently be ignored by dh_desktop. +dh_desktop was a debhelper program that registers .desktop files. +However, it no longer does anything, and is now deprecated. =cut init(); -foreach my $package (@{$dh{DOPACKAGES}}) { - my $tmp=tmpdir($package); - - if (-d "$tmp/usr/share/applications") { - # Get a list of the desktop files that are in - # usr/share/applications and thus might need - # update-desktop-database be called. Other desktop - # files don't. - my $desktop_files = `find $tmp/usr/share/applications -type f -name \\*.desktop -execdir grep -q "^MimeType" '{}' \\; -printf '%p\n'`; - if ($desktop_files && ! $dh{NOSCRIPTS}) { - autoscript($package,"postinst","postinst-desktop"); - autoscript($package,"postrm","postrm-desktop"); - } - } -} +warning("This program is deprecated, and does nothing anymore."); =head1 SEE ALSO diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/dh_gconf /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/dh_gconf --- debhelper-7.0.13ubuntu1/dh_gconf 2008-06-26 12:13:45.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/dh_gconf 2009-04-14 19:13:55.000000000 +0100 @@ -27,6 +27,11 @@ directory, with "package" replaced by the package name. Some postinst and postrm fragments will be generated to launch update-gconf-defaults. +If a file named debian/package.gconf-mandatory exists, then it is +installed into usr/share/gconf/mandatory/10_package in the package build +directory, with "package" replaced by the package name, and similar +postinst and postrm fragments will be generated. + The gconf-schemas and update-gconf-defaults scripts are provided by the gconf2 package. An appropriate dependency will be generated in ${misc:Depends}. @@ -57,13 +62,22 @@ my $tmp=tmpdir($package); my $gconf_dep = 0; + my $mandatory = pkgfile($package, "gconf-mandatory"); + if ($mandatory ne '') { + doit("mkdir","-p","$tmp/usr/share/gconf/mandatory"); + doit("install","-p","-m644",$mandatory,"$tmp/usr/share/gconf/mandatory/${priority}_$package"); + autoscript($package,"postinst","postinst-gconf-defaults","s%#OPT#%--mandatory%"); + autoscript($package,"postrm","postrm-gconf-defaults","s%#OPT#%--mandatory%"); + addsubstvar($package, "misc:Depends", "gconf2 (>= 2.24.0-5)"); + $gconf_dep = 1; + } my $defaults = pkgfile($package,"gconf-defaults"); if ($defaults ne '') { doit("mkdir","-p","$tmp/usr/share/gconf/defaults"); doit("install","-p","-m644",$defaults,"$tmp/usr/share/gconf/defaults/${priority}_$package"); - autoscript($package,"postinst","postinst-gconf-defaults"); - autoscript($package,"postrm","postrm-gconf-defaults"); - addsubstvar($package, "misc:Depends", "gconf2 (>= 2.12.1-1)"); + autoscript($package,"postinst","postinst-gconf-defaults","s%#OPT#%%"); + autoscript($package,"postrm","postrm-gconf-defaults","s%#OPT#%%"); + addsubstvar($package, "misc:Depends", "gconf2 (>= 2.12.1-1)") unless $gconf_dep; $gconf_dep = 1; } diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/dh_gencontrol /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/dh_gencontrol --- debhelper-7.0.13ubuntu1/dh_gencontrol 2008-06-26 12:13:45.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/dh_gencontrol 2009-04-14 19:13:55.000000000 +0100 @@ -37,11 +37,15 @@ =cut -init(); +init(options => { + "dpkg-gencontrol-params=s", => \$dh{U_PARAMS}, +}); foreach my $package (@{$dh{DOPACKAGES}}) { my $tmp=tmpdir($package); my $ext=pkgext($package); + + my $substvars="debian/${ext}substvars"; my $changelog=pkgfile($package,'changelog'); if (! $changelog) { @@ -52,15 +56,17 @@ doit("install","-o",0,"-g",0,"-d","$tmp/DEBIAN"); } + # avoid gratuitous warning + if (! -e $substvars || system("grep -q '^misc:Depends=' $substvars") != 0) { + complex_doit("echo misc:Depends= >> $substvars"); + } + # Generate and install control file. my @command="dpkg-gencontrol"; if (getpackages() > 1) { push @command, "-p$package"; } - if (is_udeb($package)) { - push @command, "-n".udeb_filename($package); - } - doit(@command, "-l$changelog", "-Tdebian/${ext}substvars", + doit(@command, "-l$changelog", "-T$substvars", "-P$tmp",@{$dh{U_PARAMS}}); # This chmod is only necessary if the user sets the umask to diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/dh_icons /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/dh_icons --- debhelper-7.0.13ubuntu1/dh_icons 2008-06-26 12:13:44.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/dh_icons 2009-04-14 19:13:55.000000000 +0100 @@ -46,6 +46,8 @@ opendir(DIRHANDLE, $icondir); while (my $subdir = readdir(DIRHANDLE)) { next if $subdir =~ /^\./; + next if $subdir eq "gnome"; + next if $subdir eq "hicolor"; my $needs_cache = 0; find sub { $needs_cache = 1 if -f and (/\.png$/ or /\.svg$/ or /\.xpm$/ or /\.icon$/); diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/dh_install /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/dh_install --- debhelper-7.0.13ubuntu1/dh_install 2008-06-26 12:13:45.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/dh_install 2009-04-14 19:13:55.000000000 +0100 @@ -42,17 +42,12 @@ From debhelper compatibility level 7 on, dh_install will fall back to looking in debian/tmp for files, if it doesn't find them in the current -directory (or whereever you've told it to look using --srcdir). +directory (or whereever you've told it to look using --sourcedir). =head1 OPTIONS =over 4 -=item B<-Xitem>, B<--exclude=item> - -Exclude files that contain "item" anywhere in their filename from -being installed. - =item B<--autodest> Guess as the destination directory to install things to. If this is @@ -71,6 +66,11 @@ debian/package.install file, with no explicit destination, then dh_install will automatically guess the destination even if this flag is not set. +=item B<--fail-missing> + +This option is like --list-missing, except if a file was missed, it will +not only list the missing files, but also fail with a nonzero exit code. + =item B<--list-missing> This option makes dh_install keep track of the files it installs, and then at @@ -84,11 +84,6 @@ Note that files that are excluded from being moved via the -X option are not warned about. -=item B<--fail-missing> - -This option is like --list-missing, except if a file was missed, it will -not only list the missing files, but also fail with a nonzero exit code. - =item B<--sourcedir=dir> Makes all source files be found under dir. If this is specified, it is @@ -100,6 +95,11 @@ approximate dh_movefiles behaviour, except it will copy files instead of moving them. +=item B<-Xitem>, B<--exclude=item> + +Exclude files that contain "item" anywhere in their filename from +being installed. + =item I Lists files (or directories) to install and where to install them to. @@ -109,7 +109,11 @@ =cut -init(); +init(options => { + "autodest" => \$dh{AUTODEST}, + "list-missing" => \$dh{LIST_MISSING}, + "fail-missing" => \$dh{FAIL_MISSING}, +}); my @installed; diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/dh_installchangelogs /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/dh_installchangelogs --- debhelper-7.0.13ubuntu1/dh_installchangelogs 2008-06-26 12:13:45.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/dh_installchangelogs 2009-04-14 19:13:55.000000000 +0100 @@ -11,7 +11,7 @@ =head1 SYNOPSIS -B [S>] [B<-k>] [I] +B [S>] [B<-k>] [B<-X>I] [I] =head1 DESCRIPTION @@ -53,6 +53,11 @@ upstream changelog has an unusual name, or if other documentation in the package refers to the changelog file. +=item B<-Xitem>, B<--exclude=item> + +Exclude upstream changelog files that contain "item" anywhere in their +filename from being installed. + =item I Install this file as the upstream changelog. @@ -68,8 +73,10 @@ if (! defined $upstream) { if (! isnative($dh{MAINPACKAGE}) && !compat(6)) { my @files=sort glob("*"); - foreach my $name (qw{changelog changes}) { - my @matches=grep { lc $_ eq $name } @files; + foreach my $name (qw{changelog changes changelog.txt changes.txt}) { + my @matches=grep { + lc $_ eq $name && -s $_ && ! excludefile($_) + } @files; if (@matches) { $upstream=shift @matches; last; diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/dh_installdocs /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/dh_installdocs --- debhelper-7.0.13ubuntu1/dh_installdocs 2008-06-26 12:13:45.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/dh_installdocs 2009-04-14 19:13:55.000000000 +0100 @@ -11,7 +11,7 @@ =head1 SYNOPSIS -B [S>] [B<-A>] [B<-n>] [B<-X>I] [S>] +B [S>] [B<-A>] [B<-X>I] [S>] =head1 DESCRIPTION @@ -40,10 +40,8 @@ Files named debian/package.docs can list other files to be installed. Files named debian/package.doc-base, will be installed as doc-base control -files, and will make this program automatically generate the postinst and -prerm commands needed to interface with the doc-base package. Note that the -doc-id will be determined from the "Document:" entry in the -doc-base control file in question. +files. Note that the doc-id will be determined from the "Document:" entry +in the doc-base control file in question. If your package needs to register more than one document, you need multiple files. To accomplish this, you can use files named debian/package.doc-base.* @@ -57,10 +55,6 @@ Install all files specified by command line parameters in ALL packages acted on. -=item B<-n>, B<--noscripts> - -Do not modify postinst/prerm scripts. - =item B<-Xitem>, B<--exclude=item> Exclude files that contain "item" anywhere in their filename from @@ -223,14 +217,6 @@ foreach my $fn (keys %doc_ids) { doit("install","-g",0,"-o",0,"-m644","-p","debian/$fn", "$tmp/usr/share/doc-base/$doc_ids{$fn}"); - if (! $dh{NOSCRIPTS}) { - autoscript($package,"postinst","postinst-doc-base", - "s/#DOC-ID#/$doc_ids{$fn}/", - ); - autoscript($package,"prerm","prerm-doc-base", - "s/#DOC-ID#/$doc_ids{$fn}/", - ); - } } } diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/dh_installemacsen /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/dh_installemacsen --- debhelper-7.0.13ubuntu1/dh_installemacsen 2008-06-26 12:13:45.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/dh_installemacsen 2009-04-14 19:13:55.000000000 +0100 @@ -59,7 +59,9 @@ =cut -init(); +init(options => { + "flavor=s" => \$dh{FLAVOR}, +}); if (! defined $dh{PRIORITY}) { $dh{PRIORITY}=50; diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/dh_installinit /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/dh_installinit --- debhelper-7.0.13ubuntu1/dh_installinit 2008-06-26 12:13:45.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/dh_installinit 2009-04-14 19:13:55.000000000 +0100 @@ -115,7 +115,15 @@ =cut -init(); +init(options => { + "r" => \$dh{R_FLAG}, + "no-restart-on-upgrade" => \$dh{R_FLAG}, + "no-start" => \$dh{NO_START}, + "R|restart-after-upgrade" => \$dh{RESTART_AFTER_UPGRADE}, + "init-script=s" => \$dh{INIT_SCRIPT}, + "update-rcd-params=s", => \$dh{U_PARAMS}, + "remove-d" => \$dh{D_FLAG}, +}); foreach my $package (@{$dh{DOPACKAGES}}) { my $tmp=tmpdir($package); diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/dh_installman /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/dh_installman --- debhelper-7.0.13ubuntu1/dh_installman 2008-06-26 12:13:45.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/dh_installman 2009-04-14 19:13:55.000000000 +0100 @@ -85,7 +85,9 @@ =cut -init(); +init(options => { + "language=s" => \$dh{LANGUAGE}, +}); my @sofiles; my @sodests; diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/dh_installmodules /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/dh_installmodules --- debhelper-7.0.13ubuntu1/dh_installmodules 2008-06-26 12:13:44.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/dh_installmodules 2009-04-14 19:13:55.000000000 +0100 @@ -21,7 +21,7 @@ registering kernel modules. Files named debian/package.modprobe will be installed in -etc/modprobe.d/package in the package build directory, to be used by +etc/modprobe.d/package.conf in the package build directory, to be used by module-init-tools's version of modprobe. Kernel modules are searched for in the package build directory and if @@ -30,6 +30,10 @@ These commands are inserted into the maintainer scripts by dh_installdeb. See L for an explanation of how this works. +Previous versions of dh_installmodules installed files named +etc/modprobe.d/package, code is added to the preinst and postinst to +handle the upgrade from the old location. + Previous versions of dh_installmodules also supported files named debian/package.modules, which were installed into etc/modutils/package in the package build directory. This was for use by @@ -102,7 +106,11 @@ if (! -e "$tmp/etc/modprobe.d") { doit("install","-d","$tmp/etc/modprobe.d"); } - doit("install","-m","0644",$modprobe_file,"$tmp/etc/modprobe.d/".pkgfilename($package)); + my $old="/etc/modprobe.d/".pkgfilename($package); + my $new=$old.".conf"; + doit("install","-m","0644",$modprobe_file,"$tmp/$new"); + autoscript($package,"preinst","preinst-moveconffile","s!#OLD#!$old!g;s!#PACKAGE#!$package!g"); + autoscript($package,"postinst","postinst-moveconffile","s!#OLD#!$old!g;s!#NEW#!$new!g"); } if (! $dh{NOSCRIPTS}) { diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/dh_installudev /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/dh_installudev --- debhelper-7.0.13ubuntu1/dh_installudev 2008-06-26 12:13:45.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/dh_installudev 2009-04-24 18:47:13.000000000 +0100 @@ -20,7 +20,7 @@ installing udev rules files. Files named debian/package.udev will be installed in -etc/udev/rules.d/ in the package build directory. +lib/udev/rules.d/ in the package build directory. Code is added to the preinst and postinst to handle the upgrade from the old udev rules file location. @@ -37,8 +37,8 @@ =item B<--priority=>I -Sets the priority string of the filename. Default is 50. -See /etc/udev/rules.d/README to identify the appropriate priority. +Sets the priority string of the filename. Default is 40. +See /lib/udev/rules.d/README to identify the appropriate priority. =item B<-n>, B<--noscripts> @@ -56,8 +56,10 @@ init(); +my $default=0; if (! defined $dh{PRIORITY}) { - $dh{PRIORITY}="50"; + $dh{PRIORITY}="40"; + $default=1; } if ($dh{PRIORITY}) { $dh{PRIORITY}.="-"; @@ -73,15 +75,29 @@ $filename=~s/\.udev$/.rules/; if ($rules_file) { - if (! -e "$tmp/etc/udev/rules.d") { - doit("install","-d","$tmp/etc/udev/rules.d"); + if (! -e "$tmp/lib/udev/rules.d") { + doit("install","-d","$tmp/lib/udev/rules.d"); } - doit("install","-m","0644",$rules_file,"$tmp/etc/udev/rules.d/$dh{PRIORITY}$filename"); + doit("install","-m","0644",$rules_file,"$tmp/lib/udev/rules.d/$dh{PRIORITY}$filename"); if (! $dh{NOSCRIPTS}) { my $old="/etc/udev/$filename"; my $rule="/etc/udev/rules.d/$dh{PRIORITY}$filename"; - autoscript($package,"preinst","preinst-udev","s!#OLD#!$old!g;s!#RULE#!$rule!g;s!#PACKAGE#!$package!g"); - autoscript($package,"postinst","postinst-udev","s!#OLD#!$old!g;s!#RULE#!$rule!g"); + autoscript($package,"preinst","preinst-moveconffile","s!#OLD#!$old!g;s!#PACKAGE#!$package!g"); + autoscript($package,"postinst","postinst-moveconffile","s!#OLD#!$old!g;s!#NEW#!$rule!g"); + autoscript($package,"preinst","preinst-udev","s!#RULE#!$rule!g"); + + # Remove old rule from /etc, unless it's modified, + # in which case we leave it (or rename it) + if ($default) { + $old="/etc/udev/rules.d/50-$filename"; + } else { + $old="/etc/udev/rules.d/$dh{PRIORITY}$filename"; + } + autoscript($package,"preinst","preinst-moveconffile","s!#OLD#!$old!g;s!#NEW#!$rule!g;s!#PACKAGE#!$package!g"); + if ($default) { + autoscript($package,"postinst","postinst-moveconffile","s!#OLD#!$old!g;s!#NEW#!$rule!g"); + } + } } } diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/dh_installxfonts /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/dh_installxfonts --- debhelper-7.0.13ubuntu1/dh_installxfonts 2008-06-26 12:13:44.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/dh_installxfonts 2008-12-16 23:13:03.000000000 +0000 @@ -75,11 +75,11 @@ autoscript($package, "postrm", "postrm-xfonts", "s:#CMDS#:".join(";", @cmds).":;"); - addsubstvar($package, "misc:Depends", "xfonts-utils (>= 1:1.0.0-6)"); + addsubstvar($package, "misc:Depends", "xfonts-utils"); } else { # remove - addsubstvar($package, "misc:Depends", "xfonts-utils (>= 1:1.0.0-6)", "", 1); + addsubstvar($package, "misc:Depends", "xfonts-utils", "", 1); } } diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/dh_makeshlibs /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/dh_makeshlibs --- debhelper-7.0.13ubuntu1/dh_makeshlibs 2008-06-26 12:13:44.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/dh_makeshlibs 2009-04-14 19:13:55.000000000 +0100 @@ -104,7 +104,12 @@ =cut -init(); +init(options => { + "m=s", => \$dh{M_PARAMS}, + "major=s" => \$dh{M_PARAMS}, + "version-info:s" => \$dh{V_FLAG}, + "add-udeb=s" => \$dh{SHLIBS_UDEB}, +}); foreach my $package (@{$dh{DOPACKAGES}}) { next if is_udeb($package); diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/dh_md5sums /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/dh_md5sums --- debhelper-7.0.13ubuntu1/dh_md5sums 2008-06-26 12:13:44.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/dh_md5sums 2009-04-14 19:13:55.000000000 +0100 @@ -43,7 +43,10 @@ =cut -init(); +init(options => { + "x" => \$dh{INCLUDE_CONFFILES}, # is -x for some unknown historical reason.. + "include-conffiles" => \$dh{INCLUDE_CONFFILES}, +}); foreach my $package (@{$dh{DOPACKAGES}}) { next if is_udeb($package); diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/dh_prep /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/dh_prep --- debhelper-7.0.13ubuntu1/dh_prep 2008-06-26 12:13:45.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/dh_prep 2009-04-14 19:13:55.000000000 +0100 @@ -2,7 +2,7 @@ =head1 NAME -dh_prep - preform cleanups in preparation for building a binary package +dh_prep - perform cleanups in preparation for building a binary package =cut diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/dh_shlibdeps /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/dh_shlibdeps --- debhelper-7.0.13ubuntu1/dh_shlibdeps 2008-06-26 12:13:44.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/dh_shlibdeps 2009-04-14 19:13:55.000000000 +0100 @@ -82,10 +82,14 @@ on libbar1 as follows: dh_shlibdeps -Llibbar1 -l/usr/lib/bar - + =cut -init(); +init(options => { + "L|libpackage=s" => \$dh{LIBPACKAGE}, + "dpkg-shlibdeps-params=s", => \$dh{U_PARAMS}, + "l=s", => \$dh{L_PARAMS}, +}); if ($dh{L_PARAMS}) { my @paths=(); diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/dh_strip /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/dh_strip --- debhelper-7.0.13ubuntu1/dh_strip 2008-06-26 12:13:45.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/dh_strip 2009-04-14 19:13:55.000000000 +0100 @@ -77,7 +77,9 @@ =cut -init(); +init(options => { + "keep-debug" => \$dh{K_FLAG}, +}); # This variable can be used to turn off stripping (see Policy). if (defined $ENV{DEB_BUILD_OPTIONS} && $ENV{DEB_BUILD_OPTIONS} =~ /nostrip/) { diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/doc/PROGRAMMING /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/doc/PROGRAMMING --- debhelper-7.0.13ubuntu1/doc/PROGRAMMING 2008-06-26 12:13:46.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/doc/PROGRAMMING 2009-04-20 21:15:21.000000000 +0100 @@ -46,27 +46,19 @@ There are always exceptions. Just ask me. -Introducing Dh_Lib.pm: ---------------------- +Introducing Dh_Lib: +------------------ -Dh_Lib.pm is the library used by all debhelper programs to parse their +Dh_Lib is the library used by all debhelper programs to parse their arguments and set some useful variables. It's not mandatory that your program use Dh_Lib.pm, but it will make it a lot easier to keep it in sync with the rest of debhelper if it does, so this is highly encouraged. -(There used to be a version of Dh_lib.pm that was a library of functions for -shell scripts. If you want to write a debhelper command that is a shell -script, I can dig up that old library for you. Only the perl one is -supported now, though.) - -Use Dh_Lib.pm like this: +Use Dh_Lib like this: use Debian::Debhelper::Dh_Lib init(); -The BEGIN block is there to make perl look for the module in all the right -places. - The init() function causes Dh_lib to parse the command line and do some other initialization tasks. @@ -77,6 +69,13 @@ -a, and -p. To help you make this work right, Dh_Lib.pm handles argument processing. Just call init(). +You can add support for additional options to your command by passing an +options hash to init(). The hash is then passed on the Getopt::Long to +parse the command line options. For example, to add a --foo option, which +sets $dh{FOO}: + +init(options => { foo => \$dh{FOO} }); + After argument processing, some global variables are used to hold the results; programs can use them later. These variables are elements of the %dh hash. @@ -99,27 +98,19 @@ -X EXCLUDE exclude a something from processing (you decide what this means for your program) (This is an array) - EXCLUDE_FIND same as DH_EXCLUDE, except all items are put +-X EXCLUDE_FIND same as EXCLUDE, except all items are put into a string in a way that they will make find find them. (Use ! in front to negate that, of course) Note that this should only be used inside complex_doit(), not in doit(). --x INCLUDE_CONFFILES - include conffiles. It's -x for obscure - historical reasons. -d D_FLAG you decide what this means to your program --r R_FLAG you decide what this means to your program --k K_FLAG you decide what this means to your program +-k K_FLAG used to turn on keeping of something -P TMPDIR package build directory (implies only one package is being acted on) -u U_PARAMS will be set to a string, that is typically parameters your program passes on to some other program. (This is an array) --m M_PARAMS will be set to a string, you decide what it - means to your program --l L_PARAMS will be set to a string, you decide what it - means to your program -V V_FLAG will be set to a string, you decide what it means to your program -V V_FLAG_SET will be 1 if -V was specified, even if no @@ -129,29 +120,18 @@ those processed here), will apply to all binary packages the program acts on, not just the first ---init-script INIT_SCRIPT will be set to a string, which specifies an - init script name (probably only - dh_installinit will ever use this) ---sourcedir SOURCEDIR will be set to a string (probably only - dh_movefiles will ever use this) ---destdir DESTDIR will be set to a string (probably only - dh_builddeb will ever use this) ---filename FILENAME will be set to a string ---flavor FLAVOR will be set to a string (probably only - dh_installemacsen will ever use this) ---number PRIORITY will be set to a number (deprecated) +--sourcedir SOURCEDIR will be set to a string +--destdir DESTDIR will be set to a string --priority PRIORITY will be set to a number +--mainpackage MAINPACKAGE controls which package is treated as the + main package to act on --name NAME a name to use for installed files, instead of the package name --error-handler ERROR_HANDLER a function to call on error ---language LANGUAGE specify what language a file is in ---add-udeb SHLIBS_UDEB used by dh_makeshlibs Any additional command line parameters that do not start with "-" will be ignored, and you can access them later just as you normally would. -If you need a new command line option, just ask me, and I will add it. - Global variables: ---------------- @@ -262,5 +242,29 @@ inhibit_log() Prevent logging the program's successful finish to debian/*debhelper.log +load_log($package, $hashref) + Loads the log file for the given package and returns a list of + logged commands. + (Passing a hashref also causes it to populate the hash.) +write_log($cmd, $package ...) + Writes the log files for the specified package(s), adding + the cmd to the end. + +Sequence Addons +--------------- + +The dh(1) command has a --with parameter that ca be used to load +a sequence addon named Debian::Debhelper::Sequence::. +These addons can add/remove commands to the dh command sequences, by calling +some functions from Dh_Lib: + +insert_before($existing_command, $new_command) + Insert $new_command in sequences before $existing_command + +insert_after($existing_command, $new_command) + Insert $new_command in sequences after $existing_command + +remove_command($existing_command) + Remove $existing_command from the list of commands to run. -- Joey Hess diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/doc/TODO /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/doc/TODO --- debhelper-7.0.13ubuntu1/doc/TODO 2008-06-26 12:13:46.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/doc/TODO 2009-04-20 21:05:42.000000000 +0100 @@ -3,33 +3,6 @@ Wishlist items: -* All debhelper programs should only accept the options they are documented - to accept (rather than accepting all debhelper options). They should - be able to print brief usage summaries. - - I think this calls for a restructuring. Make a Debhelper.pm class. Each - program subclasses the class. The class provides command line parsing, - useful functions, and so on. Skeleton of a debhelper command would then - be: - - use base qw{Debhelper}; - - sub startup { - # Add initialization stuff here. - } - - sub perpackage { - my $package=shift; - - # Stuff to do for each package here. - } - - sub fini { - # And final stuff here, if any. - } - - This needs more thought. - v8: * escaping in config files (for whitespace)? @@ -39,7 +12,7 @@ Deprecated: -* DH_COMPAT 1, 2, 3. Can be removed once all packages are seen to be using +* DH_COMPAT 1, 2, 3, 4. Can be removed once all packages are seen to be using a newer version. I won't hold my breath. Now with evil warning messages though. * Also, grep the entire archive for all dh_* command lines, @@ -50,9 +23,11 @@ * dh_installmanpages. * dh_testversion. Remove as soon as nothing uses it. * dh_movefiles. I won't hold my breath. -* debconf-mergetemplates support and the debian/template.ll files and the - debconf-utils dependency. * dh_undocumented * dh_installinit --init-script * dh_python * dh_clean -k (make it warn) +* Convert warning about unknown command-line options back to an error. + Need to wait a while (from Oct 2008) to ensure that most rules files + that pass unknown options to commands are fixed. +* dh_desktop. Remove eventually.. diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/examples/rules.arch /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/examples/rules.arch --- debhelper-7.0.13ubuntu1/examples/rules.arch 2008-06-26 12:13:45.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/examples/rules.arch 2009-04-14 19:13:55.000000000 +0100 @@ -61,6 +61,7 @@ # dh_installwm # dh_installudev # dh_lintian +# dh_bugfiles # dh_undocumented dh_installman dh_link @@ -68,7 +69,6 @@ dh_compress dh_fixperms # dh_perl -# dh_python # dh_makeshlibs dh_installdeb dh_shlibdeps diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/examples/rules.indep /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/examples/rules.indep --- debhelper-7.0.13ubuntu1/examples/rules.indep 2008-06-26 12:13:45.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/examples/rules.indep 2009-04-14 19:13:55.000000000 +0100 @@ -56,13 +56,13 @@ # dh_installwm # dh_installudev # dh_lintian +# dh_bugfiles # dh_undocumented dh_installman dh_link dh_compress dh_fixperms # dh_perl -# dh_python dh_installdeb dh_gencontrol dh_md5sums diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/examples/rules.multi /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/examples/rules.multi --- debhelper-7.0.13ubuntu1/examples/rules.multi 2008-06-26 12:13:45.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/examples/rules.multi 2009-04-14 19:13:55.000000000 +0100 @@ -61,13 +61,13 @@ # dh_installwm -i # dh_installudev -i # dh_lintian -i +# dh_bugfiles -i # dh_undocumented -i dh_installman -i dh_link -i dh_compress -i dh_fixperms -i # dh_perl -i -# dh_python -i dh_installdeb -i dh_gencontrol -i dh_md5sums -i @@ -93,6 +93,7 @@ # dh_installwm -a # dh_installudev -a # dh_lintian -a +# dh_bugfiles -a # dh_undocumented -a dh_installman -a dh_strip -a @@ -100,7 +101,6 @@ dh_compress -a dh_fixperms -a # dh_perl -a -# dh_python -a # dh_makeshlibs -a dh_installdeb -a dh_shlibdeps -a diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/examples/rules.multi2 /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/examples/rules.multi2 --- debhelper-7.0.13ubuntu1/examples/rules.multi2 2008-06-26 12:13:45.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/examples/rules.multi2 2009-04-14 19:13:55.000000000 +0100 @@ -67,13 +67,13 @@ # dh_installwm # dh_installudev # dh_lintian +# dh_bugfiles # dh_undocumented dh_strip dh_link dh_compress dh_fixperms # dh_perl -# dh_python # dh_makeshlibs dh_installdeb dh_shlibdeps diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/examples/rules.simple /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/examples/rules.simple --- debhelper-7.0.13ubuntu1/examples/rules.simple 2008-06-26 12:13:45.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/examples/rules.simple 1970-01-01 01:00:00.000000000 +0100 @@ -1,22 +0,0 @@ -#!/usr/bin/make -f - -build: build-stamp -build-stamp: - dh build - touch build-stamp - -clean: - dh clean - -install: build install-stamp -install-stamp: - dh install - touch install-stamp - -binary-arch: install - dh binary-arch - -binary-indep: install - dh binary-indep - -binary: binary-arch binary-indep diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/Makefile /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/Makefile --- debhelper-7.0.13ubuntu1/Makefile 2008-06-26 12:13:45.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/Makefile 2009-04-14 19:13:55.000000000 +0100 @@ -36,7 +36,7 @@ cat debhelper.pod | \ $(MAKEMANLIST) `find . -maxdepth 1 -type f -perm +100 -name "dh_*" | sort` | \ $(POD2MAN) --name="debhelper" --section=7 > debhelper.7 - po4a man/po4a/po4a.cfg + po4a -L UTF-8 man/po4a/po4a.cfg set -e; \ for lang in $(LANGS); do \ dir=man/$$lang; \ diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/man/po4a/po/debhelper.pot /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/man/po4a/po/debhelper.pot --- debhelper-7.0.13ubuntu1/man/po4a/po/debhelper.pot 2008-06-26 12:13:46.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/man/po4a/po/debhelper.pot 2009-04-20 21:15:44.000000000 +0100 @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2008-06-25 03:37-0400\n" +"POT-Creation-Date: 2009-04-20 16:15-0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -15,66 +15,34 @@ "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING" -# type: =head1 -#: debhelper.pod:1 dh_builddeb:3 dh_clean:3 dh_compress:3 dh_desktop:3 -#: dh_fixperms:3 dh_gconf:3 dh_gencontrol:3 dh_installcatalogs:3 -#: dh_installchangelogs:3 dh_installcron:3 dh_installdebconf:3 dh_installdeb:3 -#: dh_installdirs:3 dh_installdocs:3 dh_installemacsen:3 dh_installexamples:3 -#: dh_installinfo:3 dh_installinit:3 dh_installlogcheck:3 -#: dh_installlogrotate:3 dh_installmanpages:3 dh_installman:3 dh_installmenu:3 -#: dh_installmime:3 dh_installmodules:3 dh_installpam:3 dh_install:3 -#: dh_installppp:3 dh_installwm:3 dh_installxfonts:3 dh_link:3 -#: dh_listpackages:3 dh_makeshlibs:3 dh_md5sums:3 dh_movefiles:3 dh_perl:3 -#: dh_python:3 dh_scrollkeeper:3 dh_shlibdeps:3 dh_strip:3 dh_suidregister:3 -#: dh_testdir:3 dh_testroot:3 dh_testversion:3 dh_undocumented:3 dh_usrlocal:3 +#. type: =head1 +#: debhelper.pod:1 dh_builddeb:3 dh_clean:3 dh_compress:3 dh_desktop:3 dh_fixperms:3 dh_gconf:3 dh_gencontrol:3 dh_installcatalogs:3 dh_installchangelogs:3 dh_installcron:3 dh_installdebconf:3 dh_installdeb:3 dh_installdirs:3 dh_installdocs:3 dh_installemacsen:3 dh_installexamples:3 dh_installinfo:3 dh_installinit:3 dh_installlogcheck:3 dh_installlogrotate:3 dh_installmanpages:3 dh_installman:3 dh_installmenu:3 dh_installmime:3 dh_installmodules:3 dh_installpam:3 dh_install:3 dh_installppp:3 dh_installwm:3 dh_installxfonts:3 dh_link:3 dh_listpackages:3 dh_makeshlibs:3 dh_md5sums:3 dh_movefiles:3 dh_perl:3 dh_python:3 dh_scrollkeeper:3 dh_shlibdeps:3 dh_strip:3 dh_suidregister:3 dh_testdir:3 dh_testroot:3 dh_testversion:3 dh_undocumented:3 dh_usrlocal:3 msgid "NAME" msgstr "" -# type: textblock +#. type: textblock #: debhelper.pod:3 msgid "debhelper - the debhelper tool suite" msgstr "" -# type: =head1 -#: debhelper.pod:5 dh_builddeb:12 dh_clean:12 dh_compress:13 dh_desktop:12 -#: dh_fixperms:12 dh_gconf:12 dh_gencontrol:12 dh_installcatalogs:14 -#: dh_installchangelogs:12 dh_installcron:12 dh_installdebconf:12 -#: dh_installdeb:12 dh_installdirs:12 dh_installdocs:12 dh_installemacsen:12 -#: dh_installexamples:12 dh_installinfo:12 dh_installinit:12 -#: dh_installlogcheck:12 dh_installlogrotate:12 dh_installmanpages:13 -#: dh_installman:13 dh_installmenu:12 dh_installmime:12 dh_installmodules:14 -#: dh_installpam:12 dh_install:13 dh_installppp:12 dh_installwm:12 -#: dh_installxfonts:12 dh_link:13 dh_listpackages:12 dh_makeshlibs:12 -#: dh_md5sums:13 dh_movefiles:12 dh_perl:14 dh_python:13 dh_scrollkeeper:12 -#: dh_shlibdeps:13 dh_strip:13 dh_suidregister:7 dh_testdir:12 dh_testroot:7 -#: dh_testversion:12 dh_undocumented:12 dh_usrlocal:15 +#. type: =head1 +#: debhelper.pod:5 dh_builddeb:12 dh_clean:12 dh_compress:13 dh_desktop:12 dh_fixperms:12 dh_gconf:12 dh_gencontrol:12 dh_installcatalogs:14 dh_installchangelogs:12 dh_installcron:12 dh_installdebconf:12 dh_installdeb:12 dh_installdirs:12 dh_installdocs:12 dh_installemacsen:12 dh_installexamples:12 dh_installinfo:12 dh_installinit:12 dh_installlogcheck:12 dh_installlogrotate:12 dh_installmanpages:13 dh_installman:13 dh_installmenu:12 dh_installmime:12 dh_installmodules:14 dh_installpam:12 dh_install:13 dh_installppp:12 dh_installwm:12 dh_installxfonts:12 dh_link:13 dh_listpackages:12 dh_makeshlibs:12 dh_md5sums:13 dh_movefiles:12 dh_perl:14 dh_python:13 dh_scrollkeeper:12 dh_shlibdeps:13 dh_strip:13 dh_suidregister:7 dh_testdir:12 dh_testroot:7 dh_testversion:12 dh_undocumented:12 dh_usrlocal:15 msgid "SYNOPSIS" msgstr "" -# type: textblock +#. type: textblock #: debhelper.pod:7 msgid "" -"BI<*> [B<-v>] [B<-a>] [B<-i>] [B<-s>] [B<--no-act>] [B<-ppackage>] [B<-" -"Npackage] [-Ptmpdir>]" +"BI<*> [B<-v>] [B<-a>] [B<-i>] [B<-s>] [B<--no-act>] [B<-ppackage>] " +"[B<-Npackage] [-Ptmpdir>]" msgstr "" -# type: =head1 -#: debhelper.pod:9 dh_builddeb:16 dh_clean:16 dh_compress:17 dh_desktop:16 -#: dh_fixperms:16 dh_gconf:16 dh_gencontrol:16 dh_installcatalogs:18 -#: dh_installchangelogs:16 dh_installcron:16 dh_installdebconf:16 -#: dh_installdeb:16 dh_installdirs:16 dh_installdocs:16 dh_installemacsen:16 -#: dh_installexamples:16 dh_installinfo:16 dh_installinit:16 -#: dh_installlogcheck:16 dh_installlogrotate:16 dh_installmanpages:17 -#: dh_installman:17 dh_installmenu:16 dh_installmime:16 dh_installmodules:18 -#: dh_installpam:16 dh_install:17 dh_installppp:16 dh_installwm:16 -#: dh_installxfonts:16 dh_link:17 dh_listpackages:16 dh_makeshlibs:16 -#: dh_md5sums:17 dh_movefiles:16 dh_perl:18 dh_python:17 dh_scrollkeeper:16 -#: dh_shlibdeps:17 dh_strip:17 dh_suidregister:11 dh_testdir:16 dh_testroot:11 -#: dh_testversion:16 dh_undocumented:16 dh_usrlocal:19 +#. type: =head1 +#: debhelper.pod:9 dh_builddeb:16 dh_clean:16 dh_compress:17 dh_desktop:16 dh_fixperms:16 dh_gconf:16 dh_gencontrol:16 dh_installcatalogs:18 dh_installchangelogs:16 dh_installcron:16 dh_installdebconf:16 dh_installdeb:16 dh_installdirs:16 dh_installdocs:16 dh_installemacsen:16 dh_installexamples:16 dh_installinfo:16 dh_installinit:16 dh_installlogcheck:16 dh_installlogrotate:16 dh_installmanpages:17 dh_installman:17 dh_installmenu:16 dh_installmime:16 dh_installmodules:18 dh_installpam:16 dh_install:17 dh_installppp:16 dh_installwm:16 dh_installxfonts:16 dh_link:17 dh_listpackages:16 dh_makeshlibs:16 dh_md5sums:17 dh_movefiles:16 dh_perl:18 dh_python:17 dh_scrollkeeper:16 dh_shlibdeps:17 dh_strip:17 dh_suidregister:11 dh_testdir:16 dh_testroot:11 dh_testversion:16 dh_undocumented:16 dh_usrlocal:19 msgid "DESCRIPTION" msgstr "" -# type: textblock +#. type: textblock #: debhelper.pod:11 msgid "" "Debhelper is used to help you build a debian package. The philosophy behind " @@ -86,7 +54,7 @@ "new policy." msgstr "" -# type: textblock +#. type: textblock #: debhelper.pod:19 msgid "" "A typical debian/rules file that uses debhelper will call several debhelper " @@ -94,7 +62,7 @@ "rules files that use debhelper are in F" msgstr "" -# type: textblock +#. type: textblock #: debhelper.pod:23 msgid "" "To create a new debian package using debhelper, you can just copy one of the " @@ -104,24 +72,24 @@ "contains a tutorial about making your first package using debhelper." msgstr "" -# type: =head1 +#. type: =head1 #: debhelper.pod:29 msgid "DEBHELPER COMMANDS" msgstr "" -# type: textblock +#. type: textblock #: debhelper.pod:31 msgid "" "Here is the complete list of available debhelper commands. See their man " "pages for additional documentation." msgstr "" -# type: textblock +#. type: textblock #: debhelper.pod:36 msgid "#LIST#" msgstr "" -# type: textblock +#. type: textblock #: debhelper.pod:40 msgid "" "If a program's name starts with \"dh_\", and the program is not on the above " @@ -129,12 +97,12 @@ "like the other programs described on this page." msgstr "" -# type: =head1 +#. type: =head1 #: debhelper.pod:44 msgid "DEBHELPER CONFIG FILES" msgstr "" -# type: textblock +#. type: textblock #: debhelper.pod:46 msgid "" "Many debhelper commands make use of files in F to control what they " @@ -145,7 +113,7 @@ "is replaced with the package that is being acted on)." msgstr "" -# type: textblock +#. type: textblock #: debhelper.pod:53 msgid "" "For example, dh_installdocs uses files named debian/package.docs to list the " @@ -156,7 +124,7 @@ "complicated formats." msgstr "" -# type: textblock +#. type: textblock #: debhelper.pod:60 msgid "" "Note that if a package is the first (or only) binary package listed in " @@ -164,17 +132,17 @@ "can be found." msgstr "" -# type: textblock +#. type: textblock #: debhelper.pod:64 msgid "" "In some rare cases, you may want to have different versions of these files " "for different architectures. If files named debian/package.foo.arch exist, " -"where \"arch\" is the same as the output of \"dpkg-architecture -" -"qDEB_HOST_ARCH\", then they will be used in preference to other, more " +"where \"arch\" is the same as the output of \"dpkg-architecture " +"-qDEB_HOST_ARCH\", then they will be used in preference to other, more " "general files." msgstr "" -# type: textblock +#. type: textblock #: debhelper.pod:70 msgid "" "In many cases, these config files are used to specify various types of " @@ -183,219 +151,225 @@ "characters ('?' and '*' and '[..]' character classes) in the files." msgstr "" -# type: textblock +#. type: textblock #: debhelper.pod:75 msgid "" "You can also put comments in these files; lines beginning with \"#\" are " "ignored." msgstr "" -# type: =head1 +#. type: =head1 #: debhelper.pod:78 msgid "SHARED DEBHELPER OPTIONS" msgstr "" -# type: textblock +#. type: textblock #: debhelper.pod:80 -msgid "" -"The following command line options are supported by all debhelper programs." +msgid "The following command line options are supported by all debhelper programs." msgstr "" -# type: =item +#. type: =item #: debhelper.pod:84 msgid "B<-v>, B<--verbose>" msgstr "" -# type: textblock +#. type: textblock #: debhelper.pod:86 -msgid "" -"Verbose mode: show all commands that modify the package build directory." +msgid "Verbose mode: show all commands that modify the package build directory." msgstr "" -# type: =item +#. type: =item #: debhelper.pod:88 msgid "B<--no-act>" msgstr "" -# type: textblock +#. type: textblock #: debhelper.pod:90 msgid "" "Do not really do anything. If used with -v, the result is that the command " "will output what it would have done." msgstr "" -# type: =item +#. type: =item #: debhelper.pod:93 msgid "B<-a>, B<--arch>" msgstr "" -# type: textblock +#. type: textblock #: debhelper.pod:95 msgid "Act on all architecture dependent packages." msgstr "" -# type: =item +#. type: =item #: debhelper.pod:97 msgid "B<-i>, B<--indep>" msgstr "" -# type: textblock +#. type: textblock #: debhelper.pod:99 msgid "Act on all architecture independent packages." msgstr "" -# type: =item +#. type: =item #: debhelper.pod:101 msgid "B<->I, B<--package=>I" msgstr "" -# type: textblock +#. type: textblock #: debhelper.pod:103 msgid "" "Act on the package named \"package\". This option may be specified multiple " "times to make debhelper operate on a given set of packages." msgstr "" -# type: =item +#. type: =item #: debhelper.pod:106 msgid "B<-s>, B<--same-arch>" msgstr "" -# type: textblock +#. type: textblock #: debhelper.pod:108 msgid "" "This is a smarter version of the -a flag, that is used in some rare " "circumstances. It understands that if the control file lists \"Architecture: " "i386\" for the package, the package should not be acted on on other " -"architectures. So this flag makes the command act on all \"Architecture: any" -"\" packages, as well as on any packages that have the current architecture " -"explicitly specified. Contrast to the -a flag, which makes the command work " -"on all packages that are not architecture independent." +"architectures. So this flag makes the command act on all \"Architecture: " +"any\" packages, as well as on any packages that have the current " +"architecture explicitly specified. Contrast to the -a flag, which makes the " +"command work on all packages that are not architecture independent." msgstr "" -# type: =item +#. type: =item #: debhelper.pod:116 msgid "B<-N>I, B<--no-package=>I" msgstr "" -# type: textblock +#. type: textblock #: debhelper.pod:118 msgid "" "Do not act on the specified package even if an -a, -i, or -p option lists " "the package as one that should be acted on." msgstr "" -# type: =item +#. type: =item #: debhelper.pod:121 -msgid "B<--ignore=>I" +msgid "B<--remaining-packages>" msgstr "" -# type: textblock +#. type: textblock #: debhelper.pod:123 msgid "" +"Do not act on the packages which have already been acted on by this " +"debhelper command earlier (i.e. if the command is present in the package " +"debhelper log). For example, if you need to call the command with special " +"options only for a couple of binary packages, pass this option to the last " +"call of the command to process the rest of packages with default settings." +msgstr "" + +#. type: =item +#: debhelper.pod:129 +msgid "B<--ignore=>I" +msgstr "" + +#. type: textblock +#: debhelper.pod:131 +msgid "" "Ignore the specified file. This can be used if debian/ contains a debhelper " -"config file that a debhelper command should not act on. Note that debian/" -"compat, debian/control, and debian/changelog can't be ignored, but then, " -"there should never be a reason to ignore those files." +"config file that a debhelper command should not act on. Note that " +"debian/compat, debian/control, and debian/changelog can't be ignored, but " +"then, there should never be a reason to ignore those files." msgstr "" -# type: textblock -#: debhelper.pod:128 +#. type: textblock +#: debhelper.pod:136 msgid "" "For example, if upstream ships a debian/init that you don't want " "dh_installinit to install, use --ignore=debian/init" msgstr "" -# type: =item -#: debhelper.pod:131 +#. type: =item +#: debhelper.pod:139 msgid "B<-P>I, B<--tmpdir=>I" msgstr "" -# type: textblock -#: debhelper.pod:133 -msgid "" -"Use \"tmpdir\" for package build directory. The default is debian/" +#. type: textblock +#: debhelper.pod:141 +msgid "Use \"tmpdir\" for package build directory. The default is debian/" msgstr "" -# type: =item -#: debhelper.pod:135 +#. type: =item +#: debhelper.pod:143 msgid "B<--mainpackage=>I" msgstr "" -# type: textblock -#: debhelper.pod:137 +#. type: textblock +#: debhelper.pod:145 msgid "" "This little-used option changes the package which debhelper considers the " "\"main package\", that is, the first one listed in debian/control, and the " -"one for which debian/foo files can be used instead of the usual debian/" -"package.foo files." +"one for which debian/foo files can be used instead of the usual " +"debian/package.foo files." msgstr "" -# type: =head1 -#: debhelper.pod:144 +#. type: =head1 +#: debhelper.pod:152 msgid "COMMON DEBHELPER OPTIONS" msgstr "" -# type: textblock -#: debhelper.pod:146 +#. type: textblock +#: debhelper.pod:154 msgid "" "The following command line options are supported by some debhelper " "programs. See the man page of each program for a complete explanation of " "what each option does." msgstr "" -# type: =item -#: debhelper.pod:152 +#. type: =item +#: debhelper.pod:160 msgid "B<-n>" msgstr "" -# type: textblock -#: debhelper.pod:154 +#. type: textblock +#: debhelper.pod:162 msgid "Do not modify postinst/postrm/etc scripts." msgstr "" -# type: =item -#: debhelper.pod:156 dh_compress:42 dh_makeshlibs:66 dh_md5sums:37 -#: dh_shlibdeps:36 dh_strip:39 +#. type: =item +#: debhelper.pod:164 dh_compress:42 dh_makeshlibs:66 dh_md5sums:37 dh_shlibdeps:36 dh_strip:39 msgid "B<-X>I, B<--exclude=>I" msgstr "" -# type: textblock -#: debhelper.pod:158 +#. type: textblock +#: debhelper.pod:166 msgid "" "Exclude an item from processing. This option may be used multiple times, to " "exclude more than one thing." msgstr "" -# type: =item -#: debhelper.pod:161 dh_compress:50 dh_installdirs:32 dh_installdocs:55 -#: dh_installexamples:33 dh_installinfo:41 dh_installman:62 dh_link:52 +#. type: =item +#: debhelper.pod:169 dh_compress:50 dh_installdirs:32 dh_installdocs:53 dh_installexamples:33 dh_installinfo:41 dh_installman:62 dh_link:52 msgid "B<-A>, B<--all>" msgstr "" -# type: textblock -#: debhelper.pod:163 +#. type: textblock +#: debhelper.pod:171 msgid "" "Makes files or other items that are specified on the command line take " "effect in ALL packages acted on, not just the first." msgstr "" -# type: =head1 -#: debhelper.pod:168 dh_installcatalogs:52 dh_installdocs:87 -#: dh_installemacsen:54 dh_installexamples:50 dh_installinfo:57 -#: dh_installinit:110 dh_installman:79 dh_installmime:41 dh_installmodules:56 -#: dh_installwm:53 dh_installxfonts:37 dh_movefiles:58 dh_scrollkeeper:42 -#: dh_strip:68 dh_usrlocal:49 +#. type: =head1 +#: debhelper.pod:176 dh_installcatalogs:52 dh_installdocs:81 dh_installemacsen:54 dh_installexamples:50 dh_installinfo:57 dh_installinit:110 dh_installman:79 dh_installmime:41 dh_installmodules:60 dh_installwm:53 dh_installxfonts:37 dh_movefiles:58 dh_scrollkeeper:42 dh_strip:68 dh_usrlocal:49 msgid "NOTES" msgstr "" -# type: =head2 -#: debhelper.pod:170 +#. type: =head2 +#: debhelper.pod:178 msgid "Multiple binary package support" msgstr "" -# type: textblock -#: debhelper.pod:172 +#. type: textblock +#: debhelper.pod:180 msgid "" "If your source package generates more than one binary package, debhelper " "programs will default to acting on all binary packages when run. If your " @@ -406,23 +380,23 @@ "in the binary-indep debian/rules target." msgstr "" -# type: textblock -#: debhelper.pod:180 +#. type: textblock +#: debhelper.pod:188 msgid "" "To facilitate this, as well as give you more control over which packages are " -"acted on by debhelper programs, all debhelper programs accept the B<-a>, B<-" -"i>, B<-p>, and B<-s> parameters. These parameters are cumulative. If none " -"are given, debhelper programs default to acting on all packages listed in " -"the control file." +"acted on by debhelper programs, all debhelper programs accept the B<-a>, " +"B<-i>, B<-p>, and B<-s> parameters. These parameters are cumulative. If " +"none are given, debhelper programs default to acting on all packages listed " +"in the control file." msgstr "" -# type: =head2 -#: debhelper.pod:186 +#. type: =head2 +#: debhelper.pod:194 msgid "Automatic generation of debian install scripts" msgstr "" -# type: textblock -#: debhelper.pod:188 +#. type: textblock +#: debhelper.pod:196 msgid "" "Some debhelper commands will automatically generate parts of debian " "maintainer scripts. If you want these automatically generated things " @@ -432,22 +406,22 @@ "dh_installdeb." msgstr "" -# type: textblock -#: debhelper.pod:195 +#. type: textblock +#: debhelper.pod:203 msgid "" "If a script does not exist at all and debhelper needs to add something to " "it, then debhelper will create the complete script." msgstr "" -# type: textblock -#: debhelper.pod:198 +#. type: textblock +#: debhelper.pod:206 msgid "" "All debhelper commands that automatically generate code in this way let it " "be disabled by the -n parameter (see above)." msgstr "" -# type: textblock -#: debhelper.pod:201 +#. type: textblock +#: debhelper.pod:209 msgid "" "Note that the inserted code will be shell code, so you cannot directly use " "it in a perl script. If you would like to embed it into a perl script, here " @@ -455,8 +429,8 @@ "the set command):" msgstr "" -# type: verbatim -#: debhelper.pod:206 +#. type: verbatim +#: debhelper.pod:214 #, no-wrap msgid "" " my $temp=\"set -e\\nset -- @ARGV\\n\" . << 'EOF';\n" @@ -467,13 +441,13 @@ "\n" msgstr "" -# type: =head2 -#: debhelper.pod:212 +#. type: =head2 +#: debhelper.pod:220 msgid "Automatic generation of miscellaneous dependencies." msgstr "" -# type: textblock -#: debhelper.pod:214 +#. type: textblock +#: debhelper.pod:222 msgid "" "Some debhelper commands may make the generated package need to depend on " "some other packages. For example, if you use L, your " @@ -484,8 +458,8 @@ "things, so debhelper offers a way to automate it." msgstr "" -# type: textblock -#: debhelper.pod:222 +#. type: textblock +#: debhelper.pod:230 msgid "" "All commands of this type, besides documenting what dependencies may be " "needed on their man pages, will automatically generate a substvar called " @@ -493,8 +467,8 @@ "will be expanded to the dependencies debhelper figures you need." msgstr "" -# type: textblock -#: debhelper.pod:227 +#. type: textblock +#: debhelper.pod:235 msgid "" "This is entirely independent of the standard ${shlibs:Depends} generated by " "L, and the ${perl:Depends} generated by L. " @@ -502,20 +476,20 @@ "reality." msgstr "" -# type: =head2 -#: debhelper.pod:232 +#. type: =head2 +#: debhelper.pod:240 msgid "Package build directories" msgstr "" -# type: textblock -#: debhelper.pod:234 +#. type: textblock +#: debhelper.pod:242 msgid "" "By default, all debhelper programs assume that the temporary directory used " "for assembling the tree of files in a package is debian/." msgstr "" -# type: textblock -#: debhelper.pod:237 +#. type: textblock +#: debhelper.pod:245 msgid "" "Sometimes, you might want to use some other temporary directory. This is " "supported by the -P flag. For example, \"dh_installdocs -Pdebian/tmp\", will " @@ -526,13 +500,13 @@ "act on." msgstr "" -# type: =head2 -#: debhelper.pod:245 +#. type: =head2 +#: debhelper.pod:253 msgid "Debhelper compatibility levels" msgstr "" -# type: textblock -#: debhelper.pod:247 +#. type: textblock +#: debhelper.pod:255 msgid "" "From time to time, major non-backwards-compatible changes need to be made to " "debhelper, to keep it clean and well-designed as needs change and its author " @@ -542,43 +516,44 @@ "behavior in various ways." msgstr "" -# type: textblock -#: debhelper.pod:254 +#. type: textblock +#: debhelper.pod:262 msgid "" -"Tell debhelper what compatibility level to use by writing a number to debian/" -"compat. For example, to turn on V7 mode:" +"Tell debhelper what compatibility level to use by writing a number to " +"debian/compat. For example, to turn on V7 mode:" msgstr "" -# type: verbatim -#: debhelper.pod:257 +#. type: verbatim +#: debhelper.pod:265 #, no-wrap msgid "" " % echo 7 > debian/compat\n" "\n" msgstr "" -# type: textblock -#: debhelper.pod:259 +#. type: textblock +#: debhelper.pod:267 msgid "" "Unless otherwise indicated, all debhelper documentation assumes that you are " "using the most recent compatibility level, and in most cases does not " "indicate if the behavior is different in an earlier compatibility level, so " "if you are not using the most recent compatibility level, you're advised to " -"read below for notes about what is different in earlier compatibility levels." +"read below for notes about what is different in earlier compatibility " +"levels." msgstr "" -# type: textblock -#: debhelper.pod:266 +#. type: textblock +#: debhelper.pod:274 msgid "These are the available compatibility levels:" msgstr "" -# type: =item -#: debhelper.pod:270 +#. type: =item +#: debhelper.pod:278 msgid "V1" msgstr "" -# type: textblock -#: debhelper.pod:272 +#. type: textblock +#: debhelper.pod:280 msgid "" "This is the original debhelper compatibility level, and so it is the default " "one. In this mode, debhelper will use debian/tmp as the package tree " @@ -586,233 +561,229 @@ "using debian/ for all other packages listed in the control file." msgstr "" -# type: textblock -#: debhelper.pod:277 debhelper.pod:284 debhelper.pod:307 +#. type: textblock +#: debhelper.pod:285 debhelper.pod:292 debhelper.pod:315 debhelper.pod:344 msgid "This mode is deprecated." msgstr "" -# type: =item -#: debhelper.pod:279 +#. type: =item +#: debhelper.pod:287 msgid "V2" msgstr "" -# type: textblock -#: debhelper.pod:281 +#. type: textblock +#: debhelper.pod:289 msgid "" "In this mode, debhelper will consistently use debian/ as the " "package tree directory for every package that is built." msgstr "" -# type: =item -#: debhelper.pod:286 +#. type: =item +#: debhelper.pod:294 msgid "V3" msgstr "" -# type: textblock -#: debhelper.pod:288 +#. type: textblock +#: debhelper.pod:296 msgid "This mode works like V2, with the following additions:" msgstr "" -# type: =item -#: debhelper.pod:292 debhelper.pod:297 debhelper.pod:301 debhelper.pod:315 -#: debhelper.pod:320 debhelper.pod:325 debhelper.pod:330 debhelper.pod:342 -#: debhelper.pod:346 debhelper.pod:351 debhelper.pod:355 debhelper.pod:367 -#: debhelper.pod:372 debhelper.pod:378 debhelper.pod:384 debhelper.pod:399 -#: debhelper.pod:406 debhelper.pod:410 debhelper.pod:414 +#. type: =item +#: debhelper.pod:300 debhelper.pod:305 debhelper.pod:309 debhelper.pod:323 debhelper.pod:328 debhelper.pod:333 debhelper.pod:338 debhelper.pod:352 debhelper.pod:356 debhelper.pod:361 debhelper.pod:365 debhelper.pod:377 debhelper.pod:382 debhelper.pod:388 debhelper.pod:394 debhelper.pod:409 debhelper.pod:416 debhelper.pod:420 debhelper.pod:424 msgid "-" msgstr "" -# type: textblock -#: debhelper.pod:294 +#. type: textblock +#: debhelper.pod:302 msgid "" "Debhelper config files support globbing via * and ?, when appropriate. To " "turn this off and use those characters raw, just prefix with a backslash." msgstr "" -# type: textblock -#: debhelper.pod:299 +#. type: textblock +#: debhelper.pod:307 msgid "dh_makeshlibs makes the postinst and postrm scripts call ldconfig." msgstr "" -# type: textblock -#: debhelper.pod:303 -msgid "" -"Every file in etc/ is automatically flagged as a conffile by dh_installdeb." +#. type: textblock +#: debhelper.pod:311 +msgid "Every file in etc/ is automatically flagged as a conffile by dh_installdeb." msgstr "" -# type: =item -#: debhelper.pod:309 +#. type: =item +#: debhelper.pod:317 msgid "V4" msgstr "" -# type: textblock -#: debhelper.pod:311 +#. type: textblock +#: debhelper.pod:319 msgid "Changes from V3 are:" msgstr "" -# type: textblock -#: debhelper.pod:317 +#. type: textblock +#: debhelper.pod:325 msgid "" "dh_makeshlibs -V will not include the debian part of the version number in " "the generated dependency line in the shlibs file." msgstr "" -# type: textblock -#: debhelper.pod:322 +#. type: textblock +#: debhelper.pod:330 msgid "" "You are encouraged to put the new ${misc:Depends} into debian/control to " "supplement the ${shlibs:Depends} field." msgstr "" -# type: textblock -#: debhelper.pod:327 +#. type: textblock +#: debhelper.pod:335 msgid "" "dh_fixperms will make all files in bin/ directories and in etc/init.d " "executable." msgstr "" -# type: textblock -#: debhelper.pod:332 +#. type: textblock +#: debhelper.pod:340 msgid "dh_link will correct existing links to conform with policy." msgstr "" -# type: =item -#: debhelper.pod:336 +#. type: =item +#: debhelper.pod:346 msgid "V5" msgstr "" -# type: textblock -#: debhelper.pod:338 +#. type: textblock +#: debhelper.pod:348 msgid "Changes from V4 are:" msgstr "" -# type: textblock -#: debhelper.pod:344 +#. type: textblock +#: debhelper.pod:354 msgid "Comments are ignored in debhelper config files." msgstr "" -# type: textblock -#: debhelper.pod:348 +#. type: textblock +#: debhelper.pod:358 msgid "" "dh_strip --dbg-package now specifies the name of a package to put debugging " "symbols in, not the packages to take the symbols from." msgstr "" -# type: textblock -#: debhelper.pod:353 +#. type: textblock +#: debhelper.pod:363 msgid "dh_installdocs skips installing empty files." msgstr "" -# type: textblock -#: debhelper.pod:357 +#. type: textblock +#: debhelper.pod:367 msgid "dh_install errors out if wildcards expand to nothing." msgstr "" -# type: =item -#: debhelper.pod:361 +#. type: =item +#: debhelper.pod:371 msgid "V6" msgstr "" -# type: textblock -#: debhelper.pod:363 +#. type: textblock +#: debhelper.pod:373 msgid "Changes from V5 are:" msgstr "" -# type: textblock -#: debhelper.pod:369 +#. type: textblock +#: debhelper.pod:379 msgid "" -"Commands that generate maintainer script fragements will order the " -"fragements in reverse order for the prerm and postrm scripts." +"Commands that generate maintainer script fragments will order the fragments " +"in reverse order for the prerm and postrm scripts." msgstr "" -# type: textblock -#: debhelper.pod:374 +#. type: textblock +#: debhelper.pod:384 msgid "" "dh_installwm will install a slave manpage link for x-window-manager.1.gz, if " "it sees the man page in usr/share/man/man1 in the package build directory." msgstr "" -# type: textblock -#: debhelper.pod:380 +#. type: textblock +#: debhelper.pod:390 msgid "" "dh_builddeb did not previously delete everything matching DH_ALWAYS_EXCLUDE, " "if it was set to a list of things to exclude, such as \"CVS:.svn:.git\". Now " "it does." msgstr "" -# type: textblock -#: debhelper.pod:386 +#. type: textblock +#: debhelper.pod:396 msgid "" "dh_installman allows overwriting existing man pages in the package build " "directory. In previous compatibility levels it silently refuses to do this." msgstr "" -# type: =item -#: debhelper.pod:391 +#. type: =item +#: debhelper.pod:401 msgid "V7" msgstr "" -# type: textblock -#: debhelper.pod:393 +#. type: textblock +#: debhelper.pod:403 msgid "This is the recommended mode of operation." msgstr "" -# type: textblock -#: debhelper.pod:395 +#. type: textblock +#: debhelper.pod:405 msgid "Changes from V6 are:" msgstr "" -# type: textblock -#: debhelper.pod:401 +#. type: textblock +#: debhelper.pod:411 msgid "" "dh_install, will fall back to looking for files in debian/tmp if it doesn't " -"find them in the current directory (or wherever you tell it look using --" -"srcdir). This allows dh_install to interoperate with dh_auto_install, which " -"installs to debian/tmp, without needing any special parameters." +"find them in the current directory (or wherever you tell it look using " +"--sourcedir). This allows dh_install to interoperate with dh_auto_install, " +"which installs to debian/tmp, without needing any special parameters." msgstr "" -# type: textblock -#: debhelper.pod:408 +#. type: textblock +#: debhelper.pod:418 msgid "dh_clean will read debian/clean and delete files listed there." msgstr "" -# type: textblock -#: debhelper.pod:412 +#. type: textblock +#: debhelper.pod:422 msgid "dh_clean will delete toplevel *-stamp files." msgstr "" -# type: textblock -#: debhelper.pod:416 +#. type: textblock +#: debhelper.pod:426 msgid "" "dh_installchangelogs will guess at what file is the upstream changelog if " "none is specified." msgstr "" -# type: =head2 -#: debhelper.pod:423 +#. type: =head2 +#: debhelper.pod:433 msgid "Doc directory symlinks" msgstr "" -# type: textblock -#: debhelper.pod:425 +#. type: textblock +#: debhelper.pod:435 msgid "" -"Sometimes it is useful to make a package not contain a /usr/share/doc/" -"package directory at all, instead placing just a dangling symlink in the " -"binary package, that points to some other doc directory. Policy says this is " -"ok if your package depends on the package whose doc directory it uses. To " -"accomplish this, just don't tell debhelper to install any documentation " -"files into the package, and use dh_link to set up the symlink (or do it by " -"hand), and debhelper should do the right thing: notice it is a dangling " -"symlink and not try to install a copyright file or changelog." +"Sometimes it is useful to make a package not contain a " +"/usr/share/doc/package directory at all, instead placing just a dangling " +"symlink in the binary package, that points to some other doc " +"directory. Policy says this is ok if your package depends on the package " +"whose doc directory it uses. To accomplish this, just don't tell debhelper " +"to install any documentation files into the package, and use dh_link to set " +"up the symlink (or do it by hand), and debhelper should do the right thing: " +"notice it is a dangling symlink and not try to install a copyright file or " +"changelog." msgstr "" -# type: =head2 -#: debhelper.pod:434 +#. type: =head2 +#: debhelper.pod:444 msgid "udebs" msgstr "" -# type: textblock -#: debhelper.pod:436 +#. type: textblock +#: debhelper.pod:446 msgid "" "Debhelper includes support for udebs. To create a udeb with debhelper, add " "\"XC-Package-Type: udeb\" to the package's stanza in debian/control, and " @@ -822,23 +793,24 @@ "over preinst, postrm, prerm, and config scripts, etc." msgstr "" -# type: =head2 -#: debhelper.pod:443 +#. type: =head2 +#: debhelper.pod:453 msgid "Other notes" msgstr "" -# type: textblock -#: debhelper.pod:445 +#. type: textblock +#: debhelper.pod:455 msgid "" "In general, if any debhelper program needs a directory to exist under " "debian/, it will create it. I haven't bothered to document this in all the " -"man pages, but for example, dh_installdeb knows to make debian//" -"DEBIAN/ before trying to put files there, dh_installmenu knows you need a " -"debian//usr/share/menu/ before installing the menu files, etc." +"man pages, but for example, dh_installdeb knows to make " +"debian//DEBIAN/ before trying to put files there, dh_installmenu " +"knows you need a debian//usr/share/menu/ before installing the menu " +"files, etc." msgstr "" -# type: textblock -#: debhelper.pod:451 +#. type: textblock +#: debhelper.pod:461 msgid "" "Once your package uses debhelper to build, be sure to add debhelper to your " "Build-Depends line in debian/control. You should build-depend on a version " @@ -846,83 +818,90 @@ "your package uses. So if your package used compatibility level 7:" msgstr "" -# type: verbatim -#: debhelper.pod:457 +#. type: verbatim +#: debhelper.pod:467 #, no-wrap msgid "" " Build-Depends: debhelper (>= 7)\n" "\n" msgstr "" -# type: =head1 -#: debhelper.pod:459 +#. type: =head1 +#: debhelper.pod:469 msgid "ENVIRONMENT" msgstr "" -# type: =item -#: debhelper.pod:463 +#. type: =item +#: debhelper.pod:473 msgid "DH_VERBOSE" msgstr "" -# type: textblock -#: debhelper.pod:465 +#. type: textblock +#: debhelper.pod:475 msgid "" "Set to 1 to enable verbose mode. Debhelper will output every command it runs " "that modifies files on the build system." msgstr "" -# type: =item -#: debhelper.pod:468 +#. type: =item +#: debhelper.pod:478 msgid "DH_COMPAT" msgstr "" -# type: textblock -#: debhelper.pod:470 +#. type: textblock +#: debhelper.pod:480 msgid "" "Temporarily specifies what compatibility level debhelper should run at, " "overriding any value in debian/compat." msgstr "" -# type: =item -#: debhelper.pod:473 +#. type: =item +#: debhelper.pod:483 msgid "DH_NO_ACT" msgstr "" -# type: textblock -#: debhelper.pod:475 +#. type: textblock +#: debhelper.pod:485 msgid "Set to 1 to enable no-act mode." msgstr "" -# type: =item -#: debhelper.pod:477 +#. type: =item +#: debhelper.pod:487 msgid "DH_OPTIONS" msgstr "" -# type: textblock -#: debhelper.pod:479 +#. type: textblock +#: debhelper.pod:489 msgid "" "Anything in this variable will be prepended to the command line arguments of " -"all debhelper commands. This is useful in some situations, for example, if " -"you need to pass -p to all debhelper commands that will be run. One good way " -"to set DH_OPTIONS is by using \"Target-specific Variable Values\" in your " -"debian/rules file. See the make documentation for details on doing this." +"all debhelper commands. Command-specific options will be ignored by commands " +"that do not support them." msgstr "" -# type: =item -#: debhelper.pod:485 +#. type: textblock +#: debhelper.pod:493 +msgid "" +"This is useful in some situations, for example, if you need to pass -p to " +"all debhelper commands that will be run. One good way to set DH_OPTIONS is " +"by using \"Target-specific Variable Values\" in your debian/rules file. See " +"the make documentation for details on doing this." +msgstr "" + +#. type: =item +#: debhelper.pod:498 msgid "DH_ALWAYS_EXCLUDE" msgstr "" -# type: textblock -#: debhelper.pod:487 +#. type: textblock +#: debhelper.pod:500 msgid "" "If set, this adds the value the variable is set to to the -X options of all " "commands that support the -X option. Moreover, dh_builddeb will rm -rf " "anything that matches the value in your package build tree." msgstr "" -# type: textblock -#: debhelper.pod:491 +#. type: textblock +#: debhelper.pod:504 msgid "" "This can be useful if you are doing a build from a CVS source tree, in which " "case setting DH_ALWAYS_EXCLUDE=CVS will prevent any CVS directories from " @@ -932,290 +911,226 @@ "package is built." msgstr "" -# type: textblock -#: debhelper.pod:498 +#. type: textblock +#: debhelper.pod:511 msgid "" "Multiple things to exclude can be separated with colons, as in " "DH_ALWAYS_EXCLUDE=CVS:.svn" msgstr "" -# type: =head1 -#: debhelper.pod:503 dh_builddeb:85 dh_clean:129 dh_compress:190 dh_desktop:47 -#: dh_fixperms:110 dh_gconf:92 dh_gencontrol:73 dh_installcatalogs:109 -#: dh_installchangelogs:140 dh_installcron:61 dh_installdebconf:118 -#: dh_installdeb:94 dh_installdirs:83 dh_installdocs:237 dh_installemacsen:109 -#: dh_installexamples:103 dh_installinfo:103 dh_installinit:216 -#: dh_installlogcheck:51 dh_installlogrotate:50 dh_installmanpages:197 -#: dh_installman:249 dh_installmenu:80 dh_installmime:85 dh_installmodules:116 -#: dh_installpam:52 dh_install:268 dh_installppp:56 dh_installwm:107 -#: dh_installxfonts:86 dh_link:223 dh_listpackages:29 dh_makeshlibs:222 -#: dh_md5sums:86 dh_movefiles:162 dh_perl:152 dh_python:282 dh_scrollkeeper:76 -#: dh_shlibdeps:159 dh_strip:224 dh_suidregister:117 dh_testdir:44 -#: dh_testroot:27 dh_testversion:75 dh_undocumented:28 dh_usrlocal:114 +#. type: =head1 +#: debhelper.pod:516 dh_builddeb:87 dh_clean:130 dh_compress:190 dh_desktop:27 dh_fixperms:110 dh_gconf:106 dh_gencontrol:79 dh_installcatalogs:109 dh_installchangelogs:147 dh_installcron:61 dh_installdebconf:118 dh_installdeb:94 dh_installdirs:83 dh_installdocs:223 dh_installemacsen:111 dh_installexamples:103 dh_installinfo:103 dh_installinit:224 dh_installlogcheck:51 dh_installlogrotate:50 dh_installmanpages:197 dh_installman:251 dh_installmenu:80 dh_installmime:85 dh_installmodules:124 dh_installpam:52 dh_install:272 dh_installppp:56 dh_installwm:107 dh_installxfonts:86 dh_link:223 dh_listpackages:29 dh_makeshlibs:227 dh_md5sums:89 dh_movefiles:162 dh_perl:152 dh_python:282 dh_scrollkeeper:76 dh_shlibdeps:163 dh_strip:226 dh_suidregister:117 dh_testdir:44 dh_testroot:27 dh_testversion:75 dh_undocumented:28 dh_usrlocal:114 msgid "SEE ALSO" msgstr "" -# type: =item -#: debhelper.pod:507 +#. type: =item +#: debhelper.pod:520 msgid "F" msgstr "" -# type: textblock -#: debhelper.pod:509 +#. type: textblock +#: debhelper.pod:522 msgid "A set of example debian/rules files that use debhelper." msgstr "" -# type: =item -#: debhelper.pod:511 +#. type: =item +#: debhelper.pod:524 msgid "L" msgstr "" -# type: textblock -#: debhelper.pod:513 +#. type: textblock +#: debhelper.pod:526 msgid "Debhelper web site." msgstr "" -# type: =head1 -#: debhelper.pod:517 dh_builddeb:91 dh_clean:135 dh_compress:196 dh_desktop:53 -#: dh_fixperms:116 dh_gconf:98 dh_gencontrol:79 dh_installcatalogs:115 -#: dh_installchangelogs:146 dh_installcron:67 dh_installdebconf:124 -#: dh_installdeb:100 dh_installdirs:89 dh_installdocs:243 -#: dh_installemacsen:115 dh_installexamples:109 dh_installinfo:109 -#: dh_installinit:222 dh_installlogcheck:57 dh_installlogrotate:56 -#: dh_installmanpages:203 dh_installman:255 dh_installmenu:88 -#: dh_installmime:91 dh_installmodules:122 dh_installpam:58 dh_install:274 -#: dh_installppp:62 dh_installwm:113 dh_installxfonts:92 dh_link:229 -#: dh_listpackages:35 dh_makeshlibs:228 dh_md5sums:92 dh_movefiles:168 -#: dh_perl:158 dh_python:288 dh_scrollkeeper:82 dh_shlibdeps:165 dh_strip:230 -#: dh_suidregister:123 dh_testdir:50 dh_testroot:33 dh_testversion:81 -#: dh_undocumented:34 dh_usrlocal:120 +#. type: =head1 +#: debhelper.pod:530 dh_builddeb:93 dh_clean:136 dh_compress:196 dh_desktop:33 dh_fixperms:116 dh_gconf:112 dh_gencontrol:85 dh_installcatalogs:115 dh_installchangelogs:153 dh_installcron:67 dh_installdebconf:124 dh_installdeb:100 dh_installdirs:89 dh_installdocs:229 dh_installemacsen:117 dh_installexamples:109 dh_installinfo:109 dh_installinit:230 dh_installlogcheck:57 dh_installlogrotate:56 dh_installmanpages:203 dh_installman:257 dh_installmenu:88 dh_installmime:91 dh_installmodules:130 dh_installpam:58 dh_install:278 dh_installppp:62 dh_installwm:113 dh_installxfonts:92 dh_link:229 dh_listpackages:35 dh_makeshlibs:233 dh_md5sums:95 dh_movefiles:168 dh_perl:158 dh_python:288 dh_scrollkeeper:82 dh_shlibdeps:169 dh_strip:232 dh_suidregister:123 dh_testdir:50 dh_testroot:33 dh_testversion:81 dh_undocumented:34 dh_usrlocal:120 msgid "AUTHOR" msgstr "" -# type: textblock -#: debhelper.pod:519 dh_builddeb:93 dh_clean:137 dh_compress:198 -#: dh_fixperms:118 dh_gencontrol:81 dh_installchangelogs:148 dh_installcron:69 -#: dh_installdebconf:126 dh_installdeb:102 dh_installdirs:91 -#: dh_installdocs:245 dh_installemacsen:117 dh_installexamples:111 -#: dh_installinfo:111 dh_installinit:224 dh_installlogrotate:58 -#: dh_installmanpages:205 dh_installman:257 dh_installmenu:90 -#: dh_installmime:93 dh_installmodules:124 dh_installpam:60 dh_install:276 -#: dh_installppp:64 dh_installwm:115 dh_installxfonts:94 dh_link:231 -#: dh_listpackages:37 dh_makeshlibs:230 dh_md5sums:94 dh_movefiles:170 -#: dh_shlibdeps:167 dh_strip:232 dh_suidregister:125 dh_testdir:52 -#: dh_testroot:35 dh_testversion:83 dh_undocumented:36 +#. type: textblock +#: debhelper.pod:532 dh_builddeb:95 dh_clean:138 dh_compress:198 dh_fixperms:118 dh_gencontrol:87 dh_installchangelogs:155 dh_installcron:69 dh_installdebconf:126 dh_installdeb:102 dh_installdirs:91 dh_installdocs:231 dh_installemacsen:119 dh_installexamples:111 dh_installinfo:111 dh_installinit:232 dh_installlogrotate:58 dh_installmanpages:205 dh_installman:259 dh_installmenu:90 dh_installmime:93 dh_installmodules:132 dh_installpam:60 dh_install:280 dh_installppp:64 dh_installwm:115 dh_installxfonts:94 dh_link:231 dh_listpackages:37 dh_makeshlibs:235 dh_md5sums:97 dh_movefiles:170 dh_shlibdeps:171 dh_strip:234 dh_suidregister:125 dh_testdir:52 dh_testroot:35 dh_testversion:83 dh_undocumented:36 msgid "Joey Hess " msgstr "" -# type: textblock +#. type: textblock #: dh_builddeb:5 msgid "dh_builddeb - build debian binary packages" msgstr "" -# type: textblock +#. type: textblock #: dh_builddeb:14 msgid "" -"B [S>] [B<--destdir=>I] [B<--" -"filename=>I] [S I>]" +"B [S>] [B<--destdir=>I] " +"[B<--filename=>I] [S I>]" msgstr "" -# type: textblock +#. type: textblock #: dh_builddeb:18 msgid "" "dh_builddeb simply calls L to build a debian package or " "packages." msgstr "" -# type: =head1 -#: dh_builddeb:21 dh_clean:33 dh_compress:38 dh_fixperms:31 dh_gconf:34 -#: dh_gencontrol:26 dh_installcatalogs:42 dh_installchangelogs:44 -#: dh_installcron:24 dh_installdebconf:50 dh_installdirs:28 dh_installdocs:51 -#: dh_installemacsen:35 dh_installexamples:29 dh_installinfo:37 -#: dh_installinit:33 dh_installlogrotate:22 dh_installmanpages:40 -#: dh_installman:58 dh_installmenu:34 dh_installmime:31 dh_installmodules:39 -#: dh_installpam:24 dh_install:47 dh_installppp:26 dh_installwm:32 dh_link:48 -#: dh_makeshlibs:28 dh_md5sums:28 dh_movefiles:32 dh_perl:31 dh_python:39 -#: dh_scrollkeeper:32 dh_shlibdeps:26 dh_strip:35 dh_testdir:23 -#: dh_testversion:34 dh_usrlocal:39 +#. type: =head1 +#: dh_builddeb:21 dh_clean:33 dh_compress:38 dh_fixperms:31 dh_gconf:39 dh_gencontrol:26 dh_installcatalogs:42 dh_installchangelogs:44 dh_installcron:24 dh_installdebconf:50 dh_installdirs:28 dh_installdocs:49 dh_installemacsen:35 dh_installexamples:29 dh_installinfo:37 dh_installinit:33 dh_installlogrotate:22 dh_installmanpages:40 dh_installman:58 dh_installmenu:34 dh_installmime:31 dh_installmodules:43 dh_installpam:24 dh_install:47 dh_installppp:26 dh_installwm:32 dh_link:48 dh_makeshlibs:28 dh_md5sums:28 dh_movefiles:32 dh_perl:31 dh_python:39 dh_scrollkeeper:32 dh_shlibdeps:26 dh_strip:35 dh_testdir:23 dh_testversion:34 dh_usrlocal:39 msgid "OPTIONS" msgstr "" -# type: =item +#. type: =item #: dh_builddeb:25 msgid "B<--destdir=>I" msgstr "" -# type: textblock +#. type: textblock #: dh_builddeb:27 msgid "" "Use this if you want the generated .deb files to be put in a directory other " "than the default of \"..\"" msgstr "" -# type: =item +#. type: =item #: dh_builddeb:30 msgid "B<--filename=>I" msgstr "" -# type: textblock +#. type: textblock #: dh_builddeb:32 msgid "" "Use this if you want to force the generated .deb file to have a particular " "file name. Does not work well if more than one .deb is generated!" msgstr "" -# type: =item +#. type: =item #: dh_builddeb:35 msgid "B<-u>I" msgstr "" -# type: =item -#: dh_builddeb:37 dh_gencontrol:32 dh_installdebconf:58 dh_installinit:78 -#: dh_makeshlibs:76 dh_shlibdeps:32 +#. type: =item +#: dh_builddeb:37 dh_gencontrol:32 dh_installdebconf:58 dh_installinit:78 dh_makeshlibs:76 dh_shlibdeps:32 msgid "B<--> I" msgstr "" -# type: textblock +#. type: textblock #: dh_builddeb:39 msgid "Pass I to L when it is used to build the package." msgstr "" -# type: textblock -#: dh_builddeb:87 dh_clean:131 dh_compress:192 dh_fixperms:112 dh_gconf:94 -#: dh_gencontrol:75 dh_installcatalogs:111 dh_installchangelogs:142 -#: dh_installcron:63 dh_installdebconf:120 dh_installdeb:96 dh_installdirs:85 -#: dh_installdocs:239 dh_installemacsen:111 dh_installexamples:105 -#: dh_installinfo:105 dh_installinit:218 dh_installlogcheck:53 -#: dh_installlogrotate:52 dh_installmanpages:199 dh_installman:251 -#: dh_installmime:87 dh_installmodules:118 dh_installpam:54 dh_install:270 -#: dh_installppp:58 dh_installwm:109 dh_installxfonts:88 dh_link:225 -#: dh_listpackages:31 dh_makeshlibs:224 dh_md5sums:88 dh_movefiles:164 -#: dh_perl:154 dh_python:284 dh_strip:226 dh_suidregister:119 dh_testdir:46 -#: dh_testroot:29 dh_testversion:77 dh_undocumented:30 dh_usrlocal:116 +#. type: textblock +#: dh_builddeb:89 dh_clean:132 dh_compress:192 dh_fixperms:112 dh_gconf:108 dh_gencontrol:81 dh_installcatalogs:111 dh_installchangelogs:149 dh_installcron:63 dh_installdebconf:120 dh_installdeb:96 dh_installdirs:85 dh_installdocs:225 dh_installemacsen:113 dh_installexamples:105 dh_installinfo:105 dh_installinit:226 dh_installlogcheck:53 dh_installlogrotate:52 dh_installmanpages:199 dh_installman:253 dh_installmime:87 dh_installmodules:126 dh_installpam:54 dh_install:274 dh_installppp:58 dh_installwm:109 dh_installxfonts:88 dh_link:225 dh_listpackages:31 dh_makeshlibs:229 dh_md5sums:91 dh_movefiles:164 dh_perl:154 dh_python:284 dh_strip:228 dh_suidregister:119 dh_testdir:46 dh_testroot:29 dh_testversion:77 dh_undocumented:30 dh_usrlocal:116 msgid "L" msgstr "" -# type: textblock -#: dh_builddeb:89 dh_clean:133 dh_compress:194 dh_desktop:51 dh_fixperms:114 -#: dh_gconf:96 dh_gencontrol:77 dh_installchangelogs:144 dh_installcron:65 -#: dh_installdebconf:122 dh_installdeb:98 dh_installdirs:87 dh_installdocs:241 -#: dh_installemacsen:113 dh_installexamples:107 dh_installinfo:107 -#: dh_installinit:220 dh_installlogrotate:54 dh_installmanpages:201 -#: dh_installman:253 dh_installmenu:86 dh_installmime:89 dh_installmodules:120 -#: dh_installpam:56 dh_install:272 dh_installppp:60 dh_installwm:111 -#: dh_installxfonts:90 dh_link:227 dh_listpackages:33 dh_makeshlibs:226 -#: dh_md5sums:90 dh_movefiles:166 dh_perl:156 dh_python:286 dh_scrollkeeper:80 -#: dh_shlibdeps:163 dh_strip:228 dh_suidregister:121 dh_testdir:48 -#: dh_testroot:31 dh_testversion:79 dh_undocumented:32 dh_usrlocal:118 +#. type: textblock +#: dh_builddeb:91 dh_clean:134 dh_compress:194 dh_desktop:31 dh_fixperms:114 dh_gconf:110 dh_gencontrol:83 dh_installchangelogs:151 dh_installcron:65 dh_installdebconf:122 dh_installdeb:98 dh_installdirs:87 dh_installdocs:227 dh_installemacsen:115 dh_installexamples:107 dh_installinfo:107 dh_installinit:228 dh_installlogrotate:54 dh_installmanpages:201 dh_installman:255 dh_installmenu:86 dh_installmime:89 dh_installmodules:128 dh_installpam:56 dh_install:276 dh_installppp:60 dh_installwm:111 dh_installxfonts:90 dh_link:227 dh_listpackages:33 dh_makeshlibs:231 dh_md5sums:93 dh_movefiles:166 dh_perl:156 dh_python:286 dh_scrollkeeper:80 dh_shlibdeps:167 dh_strip:230 dh_suidregister:121 dh_testdir:48 dh_testroot:31 dh_testversion:79 dh_undocumented:32 dh_usrlocal:118 msgid "This program is a part of debhelper." msgstr "" -# type: textblock +#. type: textblock #: dh_clean:5 msgid "dh_clean - clean up package build directories" msgstr "" -# type: textblock +#. type: textblock #: dh_clean:14 msgid "" "B [S>] [B<-k>] [B<-d>] [B<-X>I] " "[S>]" msgstr "" -# type: verbatim +#. type: verbatim #: dh_clean:18 #, no-wrap msgid "" -"dh_clean is a debhelper program that is responsible for cleaning up after a\n" -"package is built. It removes the package build directories, and removes some\n" +"dh_clean is a debhelper program that is responsible for cleaning up after " +"a\n" +"package is built. It removes the package build directories, and removes " +"some\n" "other files including debian/files, and any detritus left behind by other\n" -"debhelper commands. It also removes common files that should not appear in a\n" +"debhelper commands. It also removes common files that should not appear in " +"a\n" "debian diff:\n" " #*# *~ DEADJOE *.orig *.rej *.SUMS TAGS .deps/* *.P *-stamp\n" "\n" msgstr "" -# type: textblock +#. type: textblock #: dh_clean:25 msgid "The debian/clean file can list other files to be removed." msgstr "" -# type: textblock +#. type: textblock #: dh_clean:27 msgid "" "It does not run \"make clean\" to clean up after the build process. Use " "L to do that." msgstr "" -# type: textblock +#. type: textblock #: dh_clean:30 msgid "" "dh_clean (or \"dh clean\") should be the last debhelper command run in the " "clean target in debian/rules." msgstr "" -# type: =item +#. type: =item #: dh_clean:37 dh_installchangelogs:48 msgid "B<-k>, B<--keep>" msgstr "" -# type: textblock +#. type: textblock #: dh_clean:39 -msgid "" -"This causes L to be run instead of dh_clean, for backwards " -"compatibility." +msgid "This is deprecated, use L instead." msgstr "" -# type: =item -#: dh_clean:42 +#. type: =item +#: dh_clean:41 msgid "B<-d>, B<--dirs-only>" msgstr "" -# type: textblock -#: dh_clean:44 +#. type: textblock +#: dh_clean:43 msgid "" "Only clean the package build directories, do not clean up any other files at " "all." msgstr "" -# type: =item -#: dh_clean:47 +#. type: =item +#: dh_clean:46 msgid "B<-X>I B<--exclude=>I" msgstr "" -# type: textblock -#: dh_clean:49 +#. type: textblock +#: dh_clean:48 msgid "" "Exclude files that contain \"item\" anywhere in their filename from being " "deleted, even if they would normally be deleted. You may use this option " "multiple times to build up a list of things to exclude." msgstr "" -# type: =item -#: dh_clean:53 dh_compress:55 dh_installdocs:69 dh_installexamples:38 -#: dh_installinfo:50 dh_installmanpages:44 dh_movefiles:49 dh_testdir:27 +#. type: =item +#: dh_clean:52 dh_compress:55 dh_installdocs:63 dh_installexamples:38 dh_installinfo:50 dh_installmanpages:44 dh_movefiles:49 dh_testdir:27 msgid "I" msgstr "" -# type: textblock -#: dh_clean:55 +#. type: textblock +#: dh_clean:54 msgid "Delete these files too." msgstr "" -# type: textblock +#. type: textblock #: dh_compress:5 -msgid "" -"dh_compress - compress files and fix symlinks in package build directories" +msgid "dh_compress - compress files and fix symlinks in package build directories" msgstr "" -# type: textblock +#. type: textblock #: dh_compress:15 msgid "" -"B [S>] [B<-X>I] [B<-A>] [S>]" +"B [S>] [B<-X>I] [B<-A>] [S>]" msgstr "" -# type: textblock +#. type: textblock #: dh_compress:19 msgid "" "dh_compress is a debhelper program that is responsible for compressing the " @@ -1224,18 +1139,19 @@ "new files." msgstr "" -# type: textblock +#. type: textblock #: dh_compress:24 msgid "" "By default, dh_compress compresses files that debian policy mandates should " -"be compressed, namely all files in usr/share/info, usr/share/man, usr/X11R6/" -"man, files in usr/share/doc that are larger than 4k in size, (except the " -"copyright file, .html and .css files, and files that appear to be already " -"compressed based on their extensions), and all changelog files. Plus PCF " -"fonts underneath usr/X11R6/lib/X11/fonts/ and usr/share/fonts/X11/" +"be compressed, namely all files in usr/share/info, usr/share/man, " +"usr/X11R6/man, files in usr/share/doc that are larger than 4k in size, " +"(except the copyright file, .html and .css files, and files that appear to " +"be already compressed based on their extensions), and all changelog " +"files. Plus PCF fonts underneath usr/X11R6/lib/X11/fonts/ and " +"usr/share/fonts/X11/" msgstr "" -# type: textblock +#. type: textblock #: dh_compress:31 msgid "" "If a debian/package.compress file exists, the default files are not " @@ -1246,7 +1162,7 @@ "debian/package.compress file if you really need to." msgstr "" -# type: textblock +#. type: textblock #: dh_compress:44 msgid "" "Exclude files that contain \"item\" anywhere in their filename from being " @@ -1256,76 +1172,66 @@ "but this is easier." msgstr "" -# type: textblock +#. type: textblock #: dh_compress:52 msgid "" "Compress all files specified by command line parameters in ALL packages " "acted on." msgstr "" -# type: textblock +#. type: textblock #: dh_compress:57 msgid "Add these files to the list of files to compress." msgstr "" -# type: =head1 +#. type: =head1 #: dh_compress:61 dh_perl:61 dh_python:66 dh_strip:74 dh_usrlocal:55 msgid "CONFORMS TO" msgstr "" -# type: textblock +#. type: textblock #: dh_compress:63 msgid "Debian policy, version 3.0" msgstr "" -# type: textblock +#. type: textblock #: dh_desktop:5 -msgid "dh_desktop - Register .desktop files" +msgid "dh_desktop - deprecated no-op" msgstr "" -# type: textblock +#. type: textblock #: dh_desktop:14 msgid "B [S>]" msgstr "" -# type: textblock +#. type: textblock #: dh_desktop:18 msgid "" -"dh_desktop is a debhelper program that registers .desktop files. Currently " -"this program does not handle installation of the files, though it may do so " -"at a later date. It takes care of adding maintainer script fragments to call " -"F." +"dh_desktop was a debhelper program that registers .desktop files. However, " +"it no longer does anything, and is now deprecated." msgstr "" -# type: textblock -#: dh_desktop:23 -msgid "" -"Note that since F currently only handles mime " -"types, as an optimisation, desktop files not containing MimeType fields will " -"currently be ignored by dh_desktop." -msgstr "" - -# type: textblock -#: dh_desktop:49 dh_scrollkeeper:78 +#. type: textblock +#: dh_desktop:29 dh_scrollkeeper:78 msgid "L" msgstr "" -# type: textblock -#: dh_desktop:55 dh_scrollkeeper:84 +#. type: textblock +#: dh_desktop:35 dh_scrollkeeper:84 msgid "Ross Burton " msgstr "" -# type: textblock +#. type: textblock #: dh_fixperms:5 msgid "dh_fixperms - fix permissions of files in package build directories" msgstr "" -# type: textblock +#. type: textblock #: dh_fixperms:14 msgid "B [S>] [B<-X>I]" msgstr "" -# type: textblock +#. type: textblock #: dh_fixperms:18 msgid "" "dh_fixperms is a debhelper program that is responsible for setting the " @@ -1333,7 +1239,7 @@ "state -- a state that complies with Debian policy." msgstr "" -# type: textblock +#. type: textblock #: dh_fixperms:22 msgid "" "dh_fixperms makes all files in usr/share/doc in the package build directory " @@ -1341,17 +1247,17 @@ "the permissions of all man pages to mode 644. It makes all files be owned by " "root, and it removes group and other write permission from all files. It " "removes execute permissions from any libraries, headers, perl modules, or " -"desktop files that have it set. It makes all files in bin/ directories, /usr/" -"games/ and etc/init.d executable (since v4). Finally, it removes the setuid " -"and setgid bits from all files in the package." +"desktop files that have it set. It makes all files in bin/ directories, " +"/usr/games/ and etc/init.d executable (since v4). Finally, it removes the " +"setuid and setgid bits from all files in the package." msgstr "" -# type: =item +#. type: =item #: dh_fixperms:35 msgid "B<-X>I, B<--exclude> I" msgstr "" -# type: textblock +#. type: textblock #: dh_fixperms:37 msgid "" "Exclude files that contain \"item\" anywhere in their filename from having " @@ -1359,32 +1265,32 @@ "up a list of things to exclude." msgstr "" -# type: textblock +#. type: textblock #: dh_gconf:5 msgid "dh_gconf - generate GConf schema registration scripts" msgstr "" -# type: textblock +#. type: textblock #: dh_gconf:14 msgid "B [S>] [B<--priority=>]" msgstr "" -# type: textblock +#. type: textblock #: dh_gconf:18 msgid "" "dh_gconf is a debhelper program that is responsible for registering GConf " "schemas." msgstr "" -# type: textblock +#. type: textblock #: dh_gconf:21 msgid "" "It automatically generates the postinst and prerm fragments needed to " -"register and unregister the schemas in usr/share/gconf/schemas, using gconf-" -"schemas." +"register and unregister the schemas in usr/share/gconf/schemas, using " +"gconf-schemas." msgstr "" -# type: textblock +#. type: textblock #: dh_gconf:25 msgid "" "If a file named debian/package.gconf-defaults exists, then it is installed " @@ -1393,43 +1299,52 @@ "fragments will be generated to launch update-gconf-defaults." msgstr "" -# type: textblock +#. type: textblock #: dh_gconf:30 msgid "" +"If a file named debian/package.gconf-mandatory exists, then it is installed " +"into usr/share/gconf/mandatory/10_package in the package build directory, " +"with \"package\" replaced by the package name, and similar postinst and " +"postrm fragments will be generated." +msgstr "" + +#. type: textblock +#: dh_gconf:35 +msgid "" "The gconf-schemas and update-gconf-defaults scripts are provided by the " -"gconf2 package. An appropriate dependency will be generated in ${misc:" -"Depends}." +"gconf2 package. An appropriate dependency will be generated in " +"${misc:Depends}." msgstr "" -# type: =item -#: dh_gconf:38 +#. type: =item +#: dh_gconf:43 msgid "B<--priority> I" msgstr "" -# type: textblock -#: dh_gconf:40 +#. type: textblock +#: dh_gconf:45 msgid "" "Use I (which should be a 2-digit number) as the defaults priority " "instead of 10. Higher values than ten can be used by derived distributions " "(20), CDD distributions (50), or site-specific packages (90)." msgstr "" -# type: textblock -#: dh_gconf:100 +#. type: textblock +#: dh_gconf:114 msgid "Ross Burton Josselin Mouette " msgstr "" -# type: textblock +#. type: textblock #: dh_gencontrol:5 msgid "dh_gencontrol - generate and install control file" msgstr "" -# type: textblock +#. type: textblock #: dh_gencontrol:14 msgid "B [S>] [S I>]" msgstr "" -# type: textblock +#. type: textblock #: dh_gencontrol:18 msgid "" "dh_gencontrol is a debhelper program that is responsible for generating " @@ -1437,7 +1352,7 @@ "permissions." msgstr "" -# type: textblock +#. type: textblock #: dh_gencontrol:22 msgid "" "This program is merely a wrapper around L, which calls " @@ -1445,119 +1360,116 @@ "useful flags." msgstr "" -# type: =item +#. type: =item #: dh_gencontrol:30 msgid "B<-u>I, B<--dpkg-gencontrol-params>=I" msgstr "" -# type: textblock +#. type: textblock #: dh_gencontrol:34 msgid "Pass \"params\" to L." msgstr "" -# type: textblock +#. type: textblock #: dh_installcatalogs:5 msgid "dh_installcatalogs - install and register SGML Catalogs" msgstr "" -# type: textblock +#. type: textblock #: dh_installcatalogs:16 msgid "B [S>] [B<-n>]" msgstr "" -# type: textblock +#. type: textblock #: dh_installcatalogs:20 msgid "" "dh_installcatalogs is a debhelper program that installs and registers SGML " "catalogs. It complies with the Debian XML/SGML policy." msgstr "" -# type: textblock +#. type: textblock #: dh_installcatalogs:23 msgid "" "The file F.sgmlcatalogs> contains the catalogs to be " "installed per package. Each line in that file should be of the form " "C, where C indicates where the catalog resides in the " "source tree, and C indicates the destination location for the catalog " -"under the package build area. C should start with F." +"under the package build area. C should start with " +"F." msgstr "" -# type: textblock +#. type: textblock #: dh_installcatalogs:30 msgid "" -"Catalogs will be registered in a supercatalog, in F." -"cat>." +"Catalogs will be registered in a supercatalog, in " +"F.cat>." msgstr "" -# type: textblock +#. type: textblock #: dh_installcatalogs:33 msgid "" "This command automatically adds maintainer script snippets for registering " -"and unregistering the catalogs and \"supercatalogs\" (unless B<-n> is used). " -"These snippets are inserted into the maintainer scripts by dh_installdeb; " -"see L for an explanation of Debhelper maintainer script " -"snippets." +"and unregistering the catalogs and \"supercatalogs\" (unless B<-n> is " +"used). These snippets are inserted into the maintainer scripts by " +"dh_installdeb; see L for an explanation of Debhelper " +"maintainer script snippets." msgstr "" -# type: textblock +#. type: textblock #: dh_installcatalogs:39 msgid "" "A dependency on B will be added to C<${misc:Depends}>, so be sure " "your package uses that variable in F." msgstr "" -# type: =item -#: dh_installcatalogs:46 dh_installdebconf:54 dh_installdocs:60 -#: dh_installemacsen:39 dh_installinfo:46 dh_installinit:37 dh_installmenu:38 -#: dh_installmime:35 dh_installmodules:43 dh_installwm:42 dh_makeshlibs:62 -#: dh_python:60 dh_scrollkeeper:36 dh_usrlocal:43 +#. type: =item +#: dh_installcatalogs:46 dh_installdebconf:54 dh_installemacsen:39 dh_installinfo:46 dh_installinit:37 dh_installmenu:38 dh_installmime:35 dh_installmodules:47 dh_installwm:42 dh_makeshlibs:62 dh_python:60 dh_scrollkeeper:36 dh_usrlocal:43 msgid "B<-n>, B<--noscripts>" msgstr "" -# type: textblock +#. type: textblock #: dh_installcatalogs:48 msgid "Do not modify F/F/F scripts." msgstr "" -# type: textblock -#: dh_installcatalogs:54 dh_installdocs:93 dh_installemacsen:56 -#: dh_installinfo:59 dh_installinit:112 dh_installmime:43 dh_installmodules:58 -#: dh_installwm:55 dh_scrollkeeper:44 dh_usrlocal:51 +#. type: textblock +#: dh_installcatalogs:54 dh_installdocs:87 dh_installemacsen:56 dh_installinfo:59 dh_installinit:112 dh_installmime:43 dh_installmodules:62 dh_installwm:55 dh_scrollkeeper:44 dh_usrlocal:51 msgid "" "Note that this command is not idempotent. L should be called " "between invocations of this command. Otherwise, it may cause multiple " "instances of the same text to be added to maintainer scripts." msgstr "" -# type: textblock +#. type: textblock #: dh_installcatalogs:113 msgid "F" msgstr "" -# type: textblock +#. type: textblock #: dh_installcatalogs:117 msgid "Adam Di Carlo " msgstr "" -# type: textblock +#. type: textblock #: dh_installchangelogs:5 -msgid "" -"dh_installchangelogs - install changelogs into package build directories" +msgid "dh_installchangelogs - install changelogs into package build directories" msgstr "" -# type: textblock +#. type: textblock #: dh_installchangelogs:14 -msgid "B [S>] [B<-k>] [I]" +msgid "" +"B [S>] [B<-k>] [B<-X>I] " +"[I]" msgstr "" -# type: textblock +#. type: textblock #: dh_installchangelogs:18 msgid "" "dh_installchangelogs is a debhelper program that is responsible for " "installing changelogs into package build directories." msgstr "" -# type: textblock +#. type: textblock #: dh_installchangelogs:21 msgid "" "dh_installchangelogs determines if the package is a debian native package, " @@ -1568,15 +1480,16 @@ "to debian/changelog.)" msgstr "" -# type: textblock +#. type: textblock #: dh_installchangelogs:28 msgid "" "Parallelling the debian changelog handling, this program also takes care of " -"NEWS.Debian files. If there is a debian/NEWS file, it is installed as usr/" -"share/doc/package/NEWS.Debian. debian/package.NEWS files can also be used." +"NEWS.Debian files. If there is a debian/NEWS file, it is installed as " +"usr/share/doc/package/NEWS.Debian. debian/package.NEWS files can also be " +"used." msgstr "" -# type: textblock +#. type: textblock #: dh_installchangelogs:33 msgid "" "An upstream changelog file may be specified as an option. If none is " @@ -1584,17 +1497,18 @@ "above.)" msgstr "" -# type: textblock +#. type: textblock #: dh_installchangelogs:37 msgid "" -"If there is an upstream changelog file, it will be be installed as usr/share/" -"doc/package/changelog in the package build directory. If the changelog is a " -"html file (determined by file extension), it will be installed as usr/share/" -"doc/package/changelog.html instead, and will be converted to plain text with " -"html2text to generate usr/share/doc/package/changelog." +"If there is an upstream changelog file, it will be be installed as " +"usr/share/doc/package/changelog in the package build directory. If the " +"changelog is a html file (determined by file extension), it will be " +"installed as usr/share/doc/package/changelog.html instead, and will be " +"converted to plain text with html2text to generate " +"usr/share/doc/package/changelog." msgstr "" -# type: textblock +#. type: textblock #: dh_installchangelogs:50 msgid "" "Keep the original name of the upstream changelog. This will be accomplished " @@ -1604,98 +1518,109 @@ "package refers to the changelog file." msgstr "" -# type: =item -#: dh_installchangelogs:56 -msgid "I" +#. type: =item +#: dh_installchangelogs:56 dh_installdocs:58 dh_installexamples:43 dh_install:98 dh_link:57 dh_movefiles:44 +msgid "B<-Xitem>, B<--exclude=item>" msgstr "" -# type: textblock +#. type: textblock #: dh_installchangelogs:58 +msgid "" +"Exclude upstream changelog files that contain \"item\" anywhere in their " +"filename from being installed." +msgstr "" + +#. type: =item +#: dh_installchangelogs:61 +msgid "I" +msgstr "" + +#. type: textblock +#: dh_installchangelogs:63 msgid "Install this file as the upstream changelog." msgstr "" -# type: textblock +#. type: textblock #: dh_installcron:5 msgid "dh_installcron - install cron scripts into etc/cron.*" msgstr "" -# type: textblock +#. type: textblock #: dh_installcron:14 msgid "B [S>] [B<--name=>I]" msgstr "" -# type: textblock +#. type: textblock #: dh_installcron:18 msgid "" "dh_installcron is a debhelper program that is responsible for installing " -"cron scripts into etc/cron.*/ in package build directories. The files debian/" -"package.cron.daily, debian/package.cron.weekly, debian/package.cron.monthly, " -"debian/package.cron.hourly, and debian/package.cron.d are installed." +"cron scripts into etc/cron.*/ in package build directories. The files " +"debian/package.cron.daily, debian/package.cron.weekly, " +"debian/package.cron.monthly, debian/package.cron.hourly, and " +"debian/package.cron.d are installed." msgstr "" -# type: =item -#: dh_installcron:28 dh_installinit:83 dh_installlogrotate:26 -#: dh_installmodules:47 dh_installpam:28 dh_installppp:30 +#. type: =item +#: dh_installcron:28 dh_installinit:83 dh_installlogrotate:26 dh_installmodules:51 dh_installpam:28 dh_installppp:30 msgid "B<--name=>I" msgstr "" -# type: textblock +#. type: textblock #: dh_installcron:30 msgid "" -"Look for files named debian/package.name.cron.* and install them as etc/cron." -"*/name, instead of using the usual files and installing them as the package " -"name." +"Look for files named debian/package.name.cron.* and install them as " +"etc/cron.*/name, instead of using the usual files and installing them as the " +"package name." msgstr "" -# type: textblock +#. type: textblock #: dh_installdebconf:5 msgid "" "dh_installdebconf - install files used by debconf in package build " "directories" msgstr "" -# type: textblock +#. type: textblock #: dh_installdebconf:14 -msgid "" -"B [S>] [B<-n>] [S I>]" +msgid "B [S>] [B<-n>] [S I>]" msgstr "" -# type: textblock +#. type: textblock #: dh_installdebconf:18 msgid "" "dh_installdebconf is a debhelper program that is responsible for installing " "files used by the debconf package into package build directories." msgstr "" -# type: textblock +#. type: textblock #: dh_installdebconf:21 msgid "" "It also automatically generates the postrm commands needed to interface with " -"debconf. The commands are added to the maintainer scripts by dh_installdeb. " -"See L for an explanation of how that works." +"debconf. The commands are added to the maintainer scripts by " +"dh_installdeb. See L for an explanation of how that works." msgstr "" -# type: textblock +#. type: textblock #: dh_installdebconf:26 msgid "" "Files named debian/package.config and debian/package.templates are installed " "into the DEBIAN directory in the package build directory. If a file named " "debian/package.config.debhelper exists, the contents of that file are merged " "into the config script as follows: If the script exists, then anywhere in it " -"that \"#DEBHELPER#\" appears, the text of the .debhelper file is inserted. " -"If the script does not exist, then a script is generated from the .debhelper " -"file. The .debhelper files may be created by other debhelper programs, and " -"are shell script fragments." +"that \"#DEBHELPER#\" appears, the text of the .debhelper file is " +"inserted. If the script does not exist, then a script is generated from the " +".debhelper file. The .debhelper files may be created by other debhelper " +"programs, and are shell script fragments." msgstr "" -# type: textblock +#. type: textblock #: dh_installdebconf:35 msgid "" "Note that if you use debconf, your package probably needs to depend on it " "(it will be added to ${misc:Depends} by this program)." msgstr "" -# type: textblock +#. type: textblock #: dh_installdebconf:38 msgid "" "Note that for your config script to be called by dpkg, your postinst needs " @@ -1703,41 +1628,41 @@ "statement into postinst automatically as it it too hard to do it right." msgstr "" -# type: =head1 +#. type: =head1 #: dh_installdebconf:43 msgid "LOCALIZED TEMPLATE FILES" msgstr "" -# type: textblock +#. type: textblock #: dh_installdebconf:45 msgid "" "This program will look to see if you have a debian/po directory and if so " "will automatically call L to generate a merged templates file " -"containing the translations. For this to work, your package should build-" -"depend on po-debconf." +"containing the translations. For this to work, your package should " +"build-depend on po-debconf." msgstr "" -# type: textblock +#. type: textblock #: dh_installdebconf:56 msgid "Do not modify postrm script." msgstr "" -# type: textblock +#. type: textblock #: dh_installdebconf:60 msgid "Pass the params to po2debconf." msgstr "" -# type: textblock +#. type: textblock #: dh_installdeb:5 msgid "dh_installdeb - install files into the DEBIAN directory" msgstr "" -# type: textblock +#. type: textblock #: dh_installdeb:14 msgid "B [S>]" msgstr "" -# type: textblock +#. type: textblock #: dh_installdeb:18 msgid "" "dh_installdeb is a debhelper program that is responsible for installing " @@ -1745,7 +1670,7 @@ "correct permissions." msgstr "" -# type: verbatim +#. type: verbatim #: dh_installdeb:22 #, no-wrap msgid "" @@ -1761,20 +1686,20 @@ "\n" msgstr "" -# type: textblock +#. type: textblock #: dh_installdeb:32 msgid "" "The postinst, preinst, postrm, and prerm are handled specially: If a " "corresponding file named debian/package.script.debhelper exists, the " "contents of that file are merged into the script as follows: If the script " -"exists, then anywhere in it that \"#DEBHELPER#\" appears, the text of the ." -"debhelper file is inserted. If the script does not exist, then a script is " +"exists, then anywhere in it that \"#DEBHELPER#\" appears, the text of the " +".debhelper file is inserted. If the script does not exist, then a script is " "generated from the .debhelper file. The .debhelper files are created by " "other debhelper programs, such as L, and are shell script " "fragments." msgstr "" -# type: textblock +#. type: textblock #: dh_installdeb:40 msgid "" "In V3 compatibility mode and higher, all files in the etc/ directory in a " @@ -1782,76 +1707,76 @@ "is no need to list them manually in package.conffiles." msgstr "" -# type: textblock +#. type: textblock #: dh_installdirs:5 msgid "dh_installdirs - create subdirectories in package build directories" msgstr "" -# type: textblock +#. type: textblock #: dh_installdirs:14 msgid "B [S>] [B<-A>] [S>]" msgstr "" -# type: textblock +#. type: textblock #: dh_installdirs:18 msgid "" "dh_installdirs is a debhelper program that is responsible for creating " "subdirectories in package build directories." msgstr "" -# type: textblock +#. type: textblock #: dh_installdirs:21 msgid "A file named debian/package.dirs can list directories to be created." msgstr "" -# type: textblock +#. type: textblock #: dh_installdirs:23 msgid "" "Any directory names specified as parameters will be created in the package " "build directory of the first package dh_installdirs is told to act on. By " -"default, this is the first binary package in debian/control, but if you use -" -"p, -i, or -a flags, it will be the first package specified by those flags." +"default, this is the first binary package in debian/control, but if you use " +"-p, -i, or -a flags, it will be the first package specified by those flags." msgstr "" -# type: textblock +#. type: textblock #: dh_installdirs:34 msgid "" "Create any directories specified by command line parameters in ALL packages " "acted on, not just the first." msgstr "" -# type: =item +#. type: =item #: dh_installdirs:37 msgid "I" msgstr "" -# type: textblock +#. type: textblock #: dh_installdirs:39 msgid "" "Create these directories in the package build directory of the first package " "acted on. (Or in all packages if -A is specified.)" msgstr "" -# type: textblock +#. type: textblock #: dh_installdocs:5 msgid "dh_installdocs - install documentation into package build directories" msgstr "" -# type: textblock +#. type: textblock #: dh_installdocs:14 msgid "" -"B [S>] [B<-A>] [B<-n>] [B<-X>I] " -"[S>]" +"B [S>] [B<-A>] [B<-X>I] [S>]" msgstr "" -# type: textblock +#. type: textblock #: dh_installdocs:18 msgid "" "dh_installdocs is a debhelper program that is responsible for installing " "documentation into usr/share/doc/package in package build directories." msgstr "" -# type: textblock +#. type: textblock #: dh_installdocs:21 msgid "" "dh_installdocs automatically installs debian/copyright if it exists. If " @@ -1861,7 +1786,7 @@ "debian/package.copyright." msgstr "" -# type: textblock +#. type: textblock #: dh_installdocs:27 msgid "" "Any filenames specified as parameters will be installed into the first " @@ -1870,84 +1795,71 @@ "flags, it will be the first package specified by those flags." msgstr "" -# type: textblock +#. type: textblock #: dh_installdocs:32 msgid "" "Also, debian/README.Debian (or debian/README.debian) and debian/TODO, if " -"they exist, will be installed into the first binary package listed in debian/" -"control, if dh_installdocs is acting on that package. Note that debian/TODO " -"will be installed named TODO.Debian, if the package is not a debian native " -"package. Also note that README.debian is installed as README.Debian, for " -"consistency. Note that debian/package.README.Debian and debian/package.TODO " -"can be used to specify files for subpackages." +"they exist, will be installed into the first binary package listed in " +"debian/control, if dh_installdocs is acting on that package. Note that " +"debian/TODO will be installed named TODO.Debian, if the package is not a " +"debian native package. Also note that README.debian is installed as " +"README.Debian, for consistency. Note that debian/package.README.Debian and " +"debian/package.TODO can be used to specify files for subpackages." msgstr "" -# type: textblock +#. type: textblock #: dh_installdocs:40 msgid "Files named debian/package.docs can list other files to be installed." msgstr "" -# type: textblock +#. type: textblock #: dh_installdocs:42 msgid "" "Files named debian/package.doc-base, will be installed as doc-base control " -"files, and will make this program automatically generate the postinst and " -"prerm commands needed to interface with the doc-base package. Note that the " -"doc-id will be determined from the \"Document:\" entry in the doc-base " -"control file in question." +"files. Note that the doc-id will be determined from the \"Document:\" entry " +"in the doc-base control file in question." msgstr "" -# type: textblock -#: dh_installdocs:48 +#. type: textblock +#: dh_installdocs:46 msgid "" "If your package needs to register more than one document, you need multiple " "files. To accomplish this, you can use files named debian/package.doc-base.*" msgstr "" -# type: textblock -#: dh_installdocs:57 dh_installinfo:43 dh_installman:64 +#. type: textblock +#: dh_installdocs:55 dh_installinfo:43 dh_installman:64 msgid "" "Install all files specified by command line parameters in ALL packages acted " "on." msgstr "" -# type: textblock -#: dh_installdocs:62 dh_installemacsen:41 dh_installinfo:48 -msgid "Do not modify postinst/prerm scripts." -msgstr "" - -# type: =item -#: dh_installdocs:64 dh_installexamples:43 dh_install:51 dh_link:57 -#: dh_movefiles:44 -msgid "B<-Xitem>, B<--exclude=item>" -msgstr "" - -# type: textblock -#: dh_installdocs:66 +#. type: textblock +#: dh_installdocs:60 msgid "" "Exclude files that contain \"item\" anywhere in their filename from being " "installed. Note that this includes doc-base files." msgstr "" -# type: textblock -#: dh_installdocs:71 +#. type: textblock +#: dh_installdocs:65 msgid "" "Install these files as documentation into the first package acted on. (Or in " "all packages if B<-A> is specified)." msgstr "" -# type: =head1 -#: dh_installdocs:76 dh_link:70 dh_makeshlibs:82 dh_shlibdeps:66 +#. type: =head1 +#: dh_installdocs:70 dh_link:70 dh_makeshlibs:82 dh_shlibdeps:66 msgid "EXAMPLES" msgstr "" -# type: textblock -#: dh_installdocs:78 +#. type: textblock +#: dh_installdocs:72 msgid "This is an example of a debian/package.docs file:" msgstr "" -# type: verbatim -#: dh_installdocs:80 +#. type: verbatim +#: dh_installdocs:74 #, no-wrap msgid "" " README\n" @@ -1959,27 +1871,27 @@ "\n" msgstr "" -# type: textblock -#: dh_installdocs:89 +#. type: textblock +#: dh_installdocs:83 msgid "" "Note that dh_installdocs will happily copy entire directory hierarchies if " "you ask it to (similar to cp -a). If it is asked to install a directory, it " "will install the complete contents of the directory." msgstr "" -# type: textblock +#. type: textblock #: dh_installemacsen:5 msgid "dh_installemacsen - register an emacs add on package" msgstr "" -# type: textblock +#. type: textblock #: dh_installemacsen:14 msgid "" "B [S>] [B<-n>] [B<--priority=>I] " "[B<--flavor=>I]" msgstr "" -# type: textblock +#. type: textblock #: dh_installemacsen:18 msgid "" "dh_installemacsen is a debhelper program that is responsible for installing " @@ -1987,7 +1899,7 @@ "directories." msgstr "" -# type: textblock +#. type: textblock #: dh_installemacsen:22 msgid "" "It also automatically generates the postinst and prerm commands needed to " @@ -1996,60 +1908,64 @@ "explanation of how this works." msgstr "" -# type: textblock +#. type: textblock #: dh_installemacsen:27 msgid "" "If a file named debian/package.emacsen-install exists, then it is installed " "into usr/lib/emacsen-common/packages/install/package in the package build " -"directory. Similarly, debian/package.emacsen-remove is installed into usr/" -"lib/emacsen-common/packages/remove/package . And similarly, debian/package." -"emacsen-startup is installed into etc/emacs/site-start.d/50.el (by " -"default)." +"directory. Similarly, debian/package.emacsen-remove is installed into " +"usr/lib/emacsen-common/packages/remove/package . And similarly, " +"debian/package.emacsen-startup is installed into " +"etc/emacs/site-start.d/50.el (by default)." msgstr "" -# type: =item +#. type: textblock +#: dh_installemacsen:41 dh_installinfo:48 +msgid "Do not modify postinst/prerm scripts." +msgstr "" + +#. type: =item #: dh_installemacsen:43 dh_installwm:36 msgid "B<--priority=>I" msgstr "" -# type: textblock +#. type: textblock #: dh_installemacsen:45 msgid "Sets the priority number of a site-start.d file. Default is 50." msgstr "" -# type: =item +#. type: =item #: dh_installemacsen:47 msgid "B<--flavor=>I" msgstr "" -# type: textblock +#. type: textblock #: dh_installemacsen:49 msgid "" -"Sets the flavor a site-start.d file will be installed in. Default is \"emacs" -"\", alternatives include \"xemacs\" and \"emacs20\"." +"Sets the flavor a site-start.d file will be installed in. Default is " +"\"emacs\", alternatives include \"xemacs\" and \"emacs20\"." msgstr "" -# type: textblock +#. type: textblock #: dh_installexamples:5 -msgid "" -"dh_installexamples - install example files into package build directories" +msgid "dh_installexamples - install example files into package build directories" msgstr "" -# type: textblock +#. type: textblock #: dh_installexamples:14 msgid "" "B [S>] [B<-A>] [B<-X>I] " "[S>]" msgstr "" -# type: textblock +#. type: textblock #: dh_installexamples:18 msgid "" "dh_installexamples is a debhelper program that is responsible for installing " "examples into usr/share/doc/package/examples in package build directories." msgstr "" -# type: textblock +#. type: textblock #: dh_installexamples:22 msgid "" "Any file names specified as parameters will be installed into the first " @@ -2058,34 +1974,33 @@ "will be the first package specified by those flags." msgstr "" -# type: textblock +#. type: textblock #: dh_installexamples:27 -msgid "" -"Files named debian/package.examples can list other files to be installed." +msgid "Files named debian/package.examples can list other files to be installed." msgstr "" -# type: textblock +#. type: textblock #: dh_installexamples:35 msgid "" "Install any files specified by command line parameters in ALL packages acted " "on." msgstr "" -# type: textblock +#. type: textblock #: dh_installexamples:40 msgid "" "Install these files as examples into the first package acted on. (Or into " "all packages if -A is specified.)" msgstr "" -# type: textblock -#: dh_installexamples:45 dh_install:53 dh_movefiles:46 +#. type: textblock +#: dh_installexamples:45 dh_install:100 dh_movefiles:46 msgid "" "Exclude files that contain \"item\" anywhere in their filename from being " "installed." msgstr "" -# type: textblock +#. type: textblock #: dh_installexamples:52 msgid "" "Note that dh_installexamples will happily copy entire directory hierarchies " @@ -2093,25 +2008,24 @@ "it will install the complete contents of the directory." msgstr "" -# type: textblock +#. type: textblock #: dh_installinfo:5 msgid "dh_installinfo - install and register info files" msgstr "" -# type: textblock +#. type: textblock #: dh_installinfo:14 -msgid "" -"B [S>] [B<-A>] [B<-n>] [S>]" +msgid "B [S>] [B<-A>] [B<-n>] [S>]" msgstr "" -# type: textblock +#. type: textblock #: dh_installinfo:18 msgid "" "dh_installinfo is a debhelper program that is responsible for installing " "info files and registering the files it installs with install-info." msgstr "" -# type: textblock +#. type: textblock #: dh_installinfo:21 msgid "" "Note that install-info determines some information about the info files by " @@ -2119,7 +2033,7 @@ "determine what section the info file belongs in." msgstr "" -# type: textblock +#. type: textblock #: dh_installinfo:25 msgid "" "Any filenames specified as parameters will be installed into the first " @@ -2128,12 +2042,12 @@ "will be the first package specified by those flags." msgstr "" -# type: textblock +#. type: textblock #: dh_installinfo:30 msgid "Files named debian/package.info can list other files to be installed." msgstr "" -# type: textblock +#. type: textblock #: dh_installinfo:32 msgid "" "dh_installinfo will automatically generate the postinst and prerm commands " @@ -2142,33 +2056,33 @@ "L for an explanation of how this works." msgstr "" -# type: textblock +#. type: textblock #: dh_installinfo:52 msgid "" "Install these info files into the first package acted on. (Or in all " "packages if -A is specified)." msgstr "" -# type: textblock +#. type: textblock #: dh_installinit:5 msgid "dh_installinit - install init scripts into package build directories" msgstr "" -# type: textblock +#. type: textblock #: dh_installinit:14 msgid "" -"B [S>] [B<--name=>I] [B<-n>] [B<-" -"R>] [B<-r>] [B<-d>] [S I>]" +"B [S>] [B<--name=>I] [B<-n>] " +"[B<-R>] [B<-r>] [B<-d>] [S I>]" msgstr "" -# type: textblock +#. type: textblock #: dh_installinit:18 msgid "" "dh_installinit is a debhelper program that is responsible for installing " "init scripts and associated defaults files into package build directories." msgstr "" -# type: textblock +#. type: textblock #: dh_installinit:21 msgid "" "It also automatically generates the postinst and postrm and prerm commands " @@ -2176,33 +2090,33 @@ "scripts." msgstr "" -# type: textblock +#. type: textblock #: dh_installinit:25 msgid "" -"If a file named debian/package.init exists, then it is installed into etc/" -"init.d/package in the package build directory, with \"package\" replaced by " -"the package name." +"If a file named debian/package.init exists, then it is installed into " +"etc/init.d/package in the package build directory, with \"package\" replaced " +"by the package name." msgstr "" -# type: textblock +#. type: textblock #: dh_installinit:29 msgid "" -"If a file named debian/package.default exists, then it is installed into etc/" -"default/package in the package build directory, with \"package\" replaced by " -"the package name." +"If a file named debian/package.default exists, then it is installed into " +"etc/default/package in the package build directory, with \"package\" " +"replaced by the package name." msgstr "" -# type: textblock +#. type: textblock #: dh_installinit:39 msgid "Do not modify postinst/postrm/prerm scripts." msgstr "" -# type: =item +#. type: =item #: dh_installinit:41 msgid "B<-o>, B<--onlyscripts>" msgstr "" -# type: textblock +#. type: textblock #: dh_installinit:43 msgid "" "Only modify postinst/postrm/prerm scripts, do not actually install any init " @@ -2211,12 +2125,12 @@ "dh_installinit find it." msgstr "" -# type: =item +#. type: =item #: dh_installinit:48 msgid "B<-R>, B<--restart-after-upgrade>" msgstr "" -# type: textblock +#. type: textblock #: dh_installinit:50 msgid "" "Do not stop the init script until after the package upgrade has been " @@ -2224,7 +2138,7 @@ "script in the prerm, and starts it again in the postinst." msgstr "" -# type: textblock +#. type: textblock #: dh_installinit:54 msgid "" "This can be useful for daemons that should not have a possibly long downtime " @@ -2233,92 +2147,92 @@ "option." msgstr "" -# type: =item +#. type: =item #: dh_installinit:59 msgid "B<-r>, B<--no-restart-on-upgrade>" msgstr "" -# type: textblock +#. type: textblock #: dh_installinit:61 msgid "Do not stop init script on upgrade." msgstr "" -# type: =item +#. type: =item #: dh_installinit:63 msgid "B<--no-start>" msgstr "" -# type: textblock +#. type: textblock #: dh_installinit:65 msgid "" "Do not start the init script on install or upgrade, or stop it on removal. " "Only call update-rc.d. Useful for rcS scripts." msgstr "" -# type: =item +#. type: =item #: dh_installinit:68 msgid "B<-d>, B<--remove-d>" msgstr "" -# type: textblock +#. type: textblock #: dh_installinit:70 msgid "" "Remove trailing \"d\" from the name of the package, and use the result for " "the filename the init script is installed as in etc/init.d/ , and the " "default file is installed as in etc/default/ . This may be useful for " -"daemons with names ending in \"d\". (Note: this takes precedence over the --" -"init-script parameter described below.)" +"daemons with names ending in \"d\". (Note: this takes precedence over the " +"--init-script parameter described below.)" msgstr "" -# type: =item +#. type: =item #: dh_installinit:76 msgid "B<-u>I B<--update-rcd-params=>I" msgstr "" -# type: textblock +#. type: textblock #: dh_installinit:80 msgid "" "Pass \"params\" to L. If not specified, \"defaults\" will be " "passed to L." msgstr "" -# type: textblock +#. type: textblock #: dh_installinit:85 msgid "" "Install the init script (and default file) using the filename I " "instead of the default filename, which is the package name. When this " -"parameter is used, dh_installinit looks for and installs files named debian/" -"package.name.init and debian/package.name.default, instead of the usual " -"debian/package.init and debian/package.default." +"parameter is used, dh_installinit looks for and installs files named " +"debian/package.name.init and debian/package.name.default, instead of the " +"usual debian/package.init and debian/package.default." msgstr "" -# type: =item +#. type: =item #: dh_installinit:91 msgid "B<--init-script=>I" msgstr "" -# type: textblock +#. type: textblock #: dh_installinit:93 msgid "" -"Use \"scriptname\" as the filename the init script is installed as in etc/" -"init.d/ (and also use it as the filename for the defaults file, if it is " +"Use \"scriptname\" as the filename the init script is installed as in " +"etc/init.d/ (and also use it as the filename for the defaults file, if it is " "installed). If you use this parameter, dh_installinit will look to see if a " "file in the debian/ directory exists that looks like \"package.scriptname\" " "and if so will install it as the init script in preference to the files it " "normally installs." msgstr "" -# type: textblock +#. type: textblock #: dh_installinit:100 msgid "This parameter is deprecated, use the --name parameter instead." msgstr "" -# type: =item +#. type: =item #: dh_installinit:102 msgid "B<--error-handler=>I" msgstr "" -# type: textblock +#. type: textblock #: dh_installinit:104 msgid "" "Call the named shell function if running the init script fails. The function " @@ -2326,28 +2240,30 @@ "token." msgstr "" -# type: textblock +#. type: textblock #: dh_installlogcheck:5 msgid "dh_installlogcheck - install logcheck rulefiles into etc/logcheck/" msgstr "" -# type: textblock +#. type: textblock #: dh_installlogcheck:14 msgid "B [S>]" msgstr "" -# type: textblock +#. type: textblock #: dh_installlogcheck:18 msgid "" "dh_installlogcheck is a debhelper program that is responsible for installing " "logcheck rule files into subdirectories of etc/logcheck/ in package build " -"directories. The files debian/package.logcheck.cracking, debian/package." -"logcheck.violations, debian/package.logcheck.violations.ignore, debian/" -"package.logcheck.ignore.workstation, debian/package.logcheck.ignore.server " -"and debian/package.logcheck.ignore.paranoid are installed if present." +"directories. The files debian/package.logcheck.cracking, " +"debian/package.logcheck.violations, " +"debian/package.logcheck.violations.ignore, " +"debian/package.logcheck.ignore.workstation, " +"debian/package.logcheck.ignore.server and " +"debian/package.logcheck.ignore.paranoid are installed if present." msgstr "" -# type: verbatim +#. type: verbatim #: dh_installlogcheck:55 #, no-wrap msgid "" @@ -2355,22 +2271,22 @@ " \n" msgstr "" -# type: textblock +#. type: textblock #: dh_installlogcheck:59 msgid "Jon Middleton " msgstr "" -# type: textblock +#. type: textblock #: dh_installlogrotate:5 msgid "dh_installlogrotate - install logrotate config files" msgstr "" -# type: textblock +#. type: textblock #: dh_installlogrotate:14 msgid "B [S>] [B<--name=>I]" msgstr "" -# type: textblock +#. type: textblock #: dh_installlogrotate:18 msgid "" "dh_installlogrotate is a debhelper program that is responsible for " @@ -2378,25 +2294,25 @@ "directories. Files named debian/package.logrotate are installed." msgstr "" -# type: textblock +#. type: textblock #: dh_installlogrotate:28 msgid "" -"Look for files named debian/package.name.logrotate and install them as etc/" -"logrotate.d/name, instead of using the usual files and installing them as " -"the package name." +"Look for files named debian/package.name.logrotate and install them as " +"etc/logrotate.d/name, instead of using the usual files and installing them " +"as the package name." msgstr "" -# type: textblock +#. type: textblock #: dh_installmanpages:5 msgid "dh_installmanpages - old-style man page installer" msgstr "" -# type: textblock +#. type: textblock #: dh_installmanpages:15 msgid "B [S>] [S>]" msgstr "" -# type: textblock +#. type: textblock #: dh_installmanpages:19 msgid "" "dh_installmanpages is a debhelper program that is responsible for " @@ -2404,15 +2320,15 @@ "package build directories." msgstr "" -# type: textblock +#. type: textblock #: dh_installmanpages:23 msgid "" "This is a DWIM-style program, with an interface unlike the rest of " -"debhelper. It is deprecated, and you are encouraged to use L instead." +"debhelper. It is deprecated, and you are encouraged to use " +"L instead." msgstr "" -# type: textblock +#. type: textblock #: dh_installmanpages:27 msgid "" "dh_installmanpages scans the current directory and all subdirectories for " @@ -2422,7 +2338,7 @@ "them into the correct man directory." msgstr "" -# type: textblock +#. type: textblock #: dh_installmanpages:33 msgid "" "All filenames specified as parameters will be skipped by " @@ -2430,7 +2346,7 @@ "that you do not want to be installed." msgstr "" -# type: textblock +#. type: textblock #: dh_installmanpages:37 msgid "" "After the man page installation step, dh_installmanpages will check to see " @@ -2438,19 +2354,19 @@ "symlinks." msgstr "" -# type: textblock +#. type: textblock #: dh_installmanpages:46 msgid "" "Do not install these files as man pages, even if they look like valid man " "pages." msgstr "" -# type: =head1 +#. type: =head1 #: dh_installmanpages:51 msgid "BUGS" msgstr "" -# type: textblock +#. type: textblock #: dh_installmanpages:53 msgid "" "dh_installmanpages will install the man pages it finds into B packages " @@ -2459,29 +2375,29 @@ "or use the much better L program instead)." msgstr "" -# type: textblock +#. type: textblock #: dh_installmanpages:58 msgid "Files ending in I<.man> will be ignored." msgstr "" -# type: textblock +#. type: textblock #: dh_installmanpages:60 msgid "" "Files specified as parameters that contain spaces in their filenames will " "not be processed properly." msgstr "" -# type: textblock +#. type: textblock #: dh_installman:5 msgid "dh_installman - install man pages into package build directories" msgstr "" -# type: textblock +#. type: textblock #: dh_installman:15 msgid "B [S>] [S>]" msgstr "" -# type: textblock +#. type: textblock #: dh_installman:19 msgid "" "dh_installman is a debhelper program that handles installing man pages into " @@ -2490,32 +2406,32 @@ "the section field in their .TH line. If you have a properly formatted .TH " "line, your man page will be installed into the right directory, with the " "right name (this includes proper handling of pages with a subsection, like " -"\"3perl\", which are placed in man3, and given an extension of \".3perl\"). " -"If your .TH line is incorrect or missing, the program may guess wrong based " -"on the file extension." +"\"3perl\", which are placed in man3, and given an extension of " +"\".3perl\"). If your .TH line is incorrect or missing, the program may guess " +"wrong based on the file extension." msgstr "" -# type: textblock +#. type: textblock #: dh_installman:29 msgid "" "It also supports translated man pages, by looking for extensions like .ll.8 " "and .ll_LL.8, or by use of the --language switch." msgstr "" -# type: textblock +#. type: textblock #: dh_installman:32 msgid "" "If dh_installman seems to install a man page into the wrong section or with " "the wrong extension, this is because the man page has the wrong section " "listed in its .TH line. Edit the man page and correct the section, and " "dh_installman will follow suit. See L for details about the .TH " -"section. If dh_installman seems to install a man page into a directory like /" -"usr/share/man/pl/man1/, that is because your program has a name like \"foo.pl" -"\", and dh_installman assumes that means it is translated into Polish. Use --" -"language=C to avoid this." +"section. If dh_installman seems to install a man page into a directory like " +"/usr/share/man/pl/man1/, that is because your program has a name like " +"\"foo.pl\", and dh_installman assumes that means it is translated into " +"Polish. Use --language=C to avoid this." msgstr "" -# type: textblock +#. type: textblock #: dh_installman:41 msgid "" "Any man page filenames specified as parameters will be installed into the " @@ -2524,13 +2440,14 @@ "will be the first package specified by those flags." msgstr "" -# type: textblock +#. type: textblock #: dh_installman:46 msgid "" -"Files named debian/package.manpages can list other man pages to be installed." +"Files named debian/package.manpages can list other man pages to be " +"installed." msgstr "" -# type: textblock +#. type: textblock #: dh_installman:49 msgid "" "After the man page installation step, dh_installman will check to see if any " @@ -2538,7 +2455,7 @@ "acting on contain \".so\" links. If so, it changes them to symlinks." msgstr "" -# type: textblock +#. type: textblock #: dh_installman:53 msgid "" "Also, dh_installman will use man to guess the character encoding of each " @@ -2547,31 +2464,31 @@ "details." msgstr "" -# type: =item +#. type: =item #: dh_installman:67 msgid "B<--language>=ll" msgstr "" -# type: textblock +#. type: textblock #: dh_installman:69 msgid "" "Use this to specify that the man pages being acted on are written in the " "specified language." msgstr "" -# type: =item +#. type: =item #: dh_installman:72 msgid "I" msgstr "" -# type: textblock +#. type: textblock #: dh_installman:74 msgid "" "Install these man pages into the first package acted on. (Or in all packages " "if -A is specified)." msgstr "" -# type: textblock +#. type: textblock #: dh_installman:81 msgid "" "An older version of this program, L, is still used by " @@ -2580,25 +2497,24 @@ "program instead." msgstr "" -# type: textblock +#. type: textblock #: dh_installmenu:5 -msgid "" -"dh_installmenu - install debian menu files into package build directories" +msgid "dh_installmenu - install debian menu files into package build directories" msgstr "" -# type: textblock +#. type: textblock #: dh_installmenu:14 msgid "B [S>] [B<-n>]" msgstr "" -# type: textblock +#. type: textblock #: dh_installmenu:18 msgid "" "dh_installmenu is a debhelper program that is responsible for installing " "files used by the debian menu package into package build directories." msgstr "" -# type: textblock +#. type: textblock #: dh_installmenu:21 msgid "" "It also automatically generates the postinst and postrm commands needed to " @@ -2607,15 +2523,15 @@ "explanation of how this works." msgstr "" -# type: textblock +#. type: textblock #: dh_installmenu:26 msgid "" -"If a file named debian/package.menu exists, then it is installed into usr/" -"share/menu/package in the package build directory. This is a debian menu " +"If a file named debian/package.menu exists, then it is installed into " +"usr/share/menu/package in the package build directory. This is a debian menu " "file. See L for its format." msgstr "" -# type: textblock +#. type: textblock #: dh_installmenu:30 msgid "" "If a file named debian/package.menu-method exits, then it is installed into " @@ -2623,35 +2539,34 @@ "menu method file." msgstr "" -# type: textblock -#: dh_installmenu:40 dh_installmime:37 dh_installmodules:45 dh_makeshlibs:64 -#: dh_python:62 +#. type: textblock +#: dh_installmenu:40 dh_installmime:37 dh_installmodules:49 dh_makeshlibs:64 dh_python:62 msgid "Do not modify postinst/postrm scripts." msgstr "" -# type: textblock +#. type: textblock #: dh_installmenu:82 msgid "L L L" msgstr "" -# type: textblock +#. type: textblock #: dh_installmime:5 msgid "dh_installmime - install mime files into package build directories" msgstr "" -# type: textblock +#. type: textblock #: dh_installmime:14 msgid "B [S>] [B<-n>]" msgstr "" -# type: textblock +#. type: textblock #: dh_installmime:18 msgid "" "dh_installmime is a debhelper program that is responsible for installing " "mime files into package build directories." msgstr "" -# type: textblock +#. type: textblock #: dh_installmime:21 msgid "" "It also automatically generates the postinst and postrm commands needed to " @@ -2660,112 +2575,120 @@ "L for an explanation of how this works." msgstr "" -# type: textblock +#. type: textblock #: dh_installmime:26 msgid "" "If files named debian/package.mime or debian/package.sharedmimeinfo exist, " -"then they are installed into usr/lib/mime/packages/package and /usr/share/" -"mime/packages/package.xml (respectively) in the package build directory." +"then they are installed into usr/lib/mime/packages/package and " +"/usr/share/mime/packages/package.xml (respectively) in the package build " +"directory." msgstr "" -# type: textblock +#. type: textblock #: dh_installmodules:5 msgid "dh_installmodules - register modules with modutils" msgstr "" -# type: textblock +#. type: textblock #: dh_installmodules:16 -msgid "" -"B [S>] [B<-n>] [B<--name=>I]" +msgid "B [S>] [B<-n>] [B<--name=>I]" msgstr "" -# type: textblock +#. type: textblock #: dh_installmodules:20 msgid "" "dh_installmodules is a debhelper program that is responsible for registering " "kernel modules." msgstr "" -# type: textblock +#. type: textblock #: dh_installmodules:23 msgid "" -"Files named debian/package.modprobe will be installed in etc/modprobe.d/" -"package in the package build directory, to be used by module-init-tools's " -"version of modprobe." +"Files named debian/package.modprobe will be installed in " +"etc/modprobe.d/package.conf in the package build directory, to be used by " +"module-init-tools's version of modprobe." msgstr "" -# type: textblock +#. type: textblock #: dh_installmodules:27 msgid "" "Kernel modules are searched for in the package build directory and if found, " "postinst and postrm commands are automatically generated to run depmod and " "register the modules when the package is installed. These commands are " -"inserted into the maintainer scripts by dh_installdeb. See L for an explanation of how this works." +"inserted into the maintainer scripts by dh_installdeb. See " +"L for an explanation of how this works." msgstr "" -# type: textblock +#. type: textblock #: dh_installmodules:33 msgid "" -"Previous versions of dh_installmodules also supported files named debian/" -"package.modules, which were installed into etc/modutils/package in the " -"package build directory. This was for use by modutils, which is no longer in " -"Debian. dh_installmodules will warn about such files now." +"Previous versions of dh_installmodules installed files named " +"etc/modprobe.d/package, code is added to the preinst and postinst to handle " +"the upgrade from the old location." +msgstr "" + +#. type: textblock +#: dh_installmodules:37 +msgid "" +"Previous versions of dh_installmodules also supported files named " +"debian/package.modules, which were installed into etc/modutils/package in " +"the package build directory. This was for use by modutils, which is no " +"longer in Debian. dh_installmodules will warn about such files now." msgstr "" -# type: textblock -#: dh_installmodules:49 +#. type: textblock +#: dh_installmodules:53 msgid "" "When this parameter is used, dh_installmodules looks for and installs files " "named debian/package.name.modules and debian/package.name.modprobe instead " "of the usual debian/package.modules and debian/package.modprobe" msgstr "" -# type: textblock +#. type: textblock #: dh_installpam:5 msgid "dh_installpam - install pam support files" msgstr "" -# type: textblock +#. type: textblock #: dh_installpam:14 msgid "B [S>] [B<--name=>I]" msgstr "" -# type: textblock +#. type: textblock #: dh_installpam:18 msgid "" "dh_installpam is a debhelper program that is responsible for installing " "files used by PAM into package build directories." msgstr "" -# type: textblock +#. type: textblock #: dh_installpam:21 msgid "" -"If a file named debian/package.pam exists, then it is installed into etc/pam." -"d/package in the package build directory." +"If a file named debian/package.pam exists, then it is installed into " +"etc/pam.d/package in the package build directory." msgstr "" -# type: textblock +#. type: textblock #: dh_installpam:30 msgid "" -"Look for files named debian/package.name.pam and install them as etc/pam.d/" -"name, instead of using the usual files and installing them as the package " -"name." +"Look for files named debian/package.name.pam and install them as " +"etc/pam.d/name, instead of using the usual files and installing them as the " +"package name." msgstr "" -# type: textblock +#. type: textblock #: dh_install:5 msgid "dh_install - install files into package build directories" msgstr "" -# type: textblock +#. type: textblock #: dh_install:15 msgid "" "B [B<-X>I] [B<--autodest>] [B<--sourcedir=>I] " "[S>] [S>]" msgstr "" -# type: textblock +#. type: textblock #: dh_install:19 msgid "" "dh_install is a debhelper program that handles installing files into package " @@ -2777,7 +2700,7 @@ "needed. It is a replacement for the old dh_movefiles command." msgstr "" -# type: textblock +#. type: textblock #: dh_install:27 msgid "" "Files named debian/package.install list the files to install into each " @@ -2790,7 +2713,7 @@ "(in v3 mode and above)." msgstr "" -# type: textblock +#. type: textblock #: dh_install:36 msgid "" "This program may be used in one of two ways. If you just have a file or two " @@ -2801,30 +2724,30 @@ "directories and files from there into the proper package build directories." msgstr "" -# type: textblock +#. type: textblock #: dh_install:43 msgid "" "From debhelper compatibility level 7 on, dh_install will fall back to " "looking in debian/tmp for files, if it doesn't find them in the current " -"directory (or whereever you've told it to look using --srcdir)." +"directory (or whereever you've told it to look using --sourcedir)." msgstr "" -# type: =item -#: dh_install:56 +#. type: =item +#: dh_install:51 msgid "B<--autodest>" msgstr "" -# type: textblock -#: dh_install:58 +#. type: textblock +#: dh_install:53 msgid "" "Guess as the destination directory to install things to. If this is " -"specified, you should not list destination directories in debian/package." -"install files or on the command line. Instead, dh_install will guess as " -"follows:" +"specified, you should not list destination directories in " +"debian/package.install files or on the command line. Instead, dh_install " +"will guess as follows:" msgstr "" -# type: textblock -#: dh_install:63 +#. type: textblock +#: dh_install:58 msgid "" "Strip off debian/tmp (or the sourcedir if one is given) from the front of " "the filename, if it is present, and install into the dirname of the " @@ -2833,8 +2756,8 @@ "it will be copied to debian/package/etc/." msgstr "" -# type: textblock -#: dh_install:69 +#. type: textblock +#: dh_install:64 msgid "" "Note that if you list exactly one filename or wildcard-pattern on a line by " "itself in a debian/package.install file, with no explicit destination, then " @@ -2842,12 +2765,24 @@ "set." msgstr "" -# type: =item +#. type: =item +#: dh_install:69 +msgid "B<--fail-missing>" +msgstr "" + +#. type: textblock +#: dh_install:71 +msgid "" +"This option is like --list-missing, except if a file was missed, it will not " +"only list the missing files, but also fail with a nonzero exit code." +msgstr "" + +#. type: =item #: dh_install:74 msgid "B<--list-missing>" msgstr "" -# type: textblock +#. type: textblock #: dh_install:76 msgid "" "This option makes dh_install keep track of the files it installs, and then " @@ -2856,46 +2791,34 @@ "somewhere, it will warn on stderr about that." msgstr "" -# type: textblock +#. type: textblock #: dh_install:81 msgid "" "This may be useful if you have a large package and want to make sure that " "you don't miss installing newly added files in new upstream releases." msgstr "" -# type: textblock +#. type: textblock #: dh_install:84 msgid "" "Note that files that are excluded from being moved via the -X option are not " "warned about." msgstr "" -# type: =item +#. type: =item #: dh_install:87 -msgid "B<--fail-missing>" -msgstr "" - -# type: textblock -#: dh_install:89 -msgid "" -"This option is like --list-missing, except if a file was missed, it will not " -"only list the missing files, but also fail with a nonzero exit code." -msgstr "" - -# type: =item -#: dh_install:92 msgid "B<--sourcedir=dir>" msgstr "" -# type: textblock -#: dh_install:94 +#. type: textblock +#: dh_install:89 msgid "" "Makes all source files be found under dir. If this is specified, it is akin " "to all the source filenames having \"dir/\" prepended to them." msgstr "" -# type: textblock -#: dh_install:97 +#. type: textblock +#: dh_install:92 msgid "" "To make dh_install behave like the old dh_movefiles, move your package.files " "file to package.install and call dh_install with \"--sourcedir=debian/tmp\" " @@ -2903,25 +2826,25 @@ "except it will copy files instead of moving them." msgstr "" -# type: =item +#. type: =item #: dh_install:103 msgid "I" msgstr "" -# type: textblock +#. type: textblock #: dh_install:105 msgid "" "Lists files (or directories) to install and where to install them to. The " "files will be installed into the first package dh_install acts on." msgstr "" -# type: =head1 -#: dh_install:241 +#. type: =head1 +#: dh_install:245 msgid "EXAMPLE" msgstr "" -# type: textblock -#: dh_install:243 +#. type: textblock +#: dh_install:247 msgid "" "Suppose your package's upstream Makefile installs a binary, a man page, and " "a library into appropriate subdirectories of debian/tmp. You want to put the " @@ -2930,8 +2853,8 @@ "contain:" msgstr "" -# type: verbatim -#: dh_install:249 +#. type: verbatim +#: dh_install:253 #, no-wrap msgid "" " usr/bin\n" @@ -2939,28 +2862,28 @@ "\n" msgstr "" -# type: textblock -#: dh_install:252 +#. type: textblock +#: dh_install:256 msgid "While debian/libfoo.install contains:" msgstr "" -# type: verbatim -#: dh_install:254 +#. type: verbatim +#: dh_install:258 #, no-wrap msgid "" " usr/lib/libfoo*.so.*\n" "\n" msgstr "" -# type: textblock -#: dh_install:256 +#. type: textblock +#: dh_install:260 msgid "" "If you want a libfoo-dev package too, debian/libfoo-dev.install might " "contain:" msgstr "" -# type: verbatim -#: dh_install:258 +#. type: verbatim +#: dh_install:262 #, no-wrap msgid "" " usr/include\n" @@ -2969,13 +2892,13 @@ "\n" msgstr "" -# type: =head1 -#: dh_install:262 +#. type: =head1 +#: dh_install:266 msgid "LIMITATIONS" msgstr "" -# type: verbatim -#: dh_install:264 +#. type: verbatim +#: dh_install:268 #, no-wrap msgid "" "dh_install cannot rename files or directories, it can only install them\n" @@ -2984,62 +2907,62 @@ " \n" msgstr "" -# type: textblock +#. type: textblock #: dh_installppp:5 msgid "dh_installppp - install ppp ip-up and ip-down files" msgstr "" -# type: textblock +#. type: textblock #: dh_installppp:14 msgid "B [S>] [B<--name=>I]" msgstr "" -# type: textblock +#. type: textblock #: dh_installppp:18 msgid "" "dh_installppp is a debhelper program that is responsible for installing ppp " "ip-up and ip-down scripts. into package build directories." msgstr "" -# type: textblock +#. type: textblock #: dh_installppp:21 msgid "" "If a file named debian/package.ppp.ip-up exists, then it is installed into " -"etc/ppp/ip-up.d/package in the package build directory. Files named debian/" -"package.ppp.ip-down are installed to etc/ppp/ip-down.d/package" +"etc/ppp/ip-up.d/package in the package build directory. Files named " +"debian/package.ppp.ip-down are installed to etc/ppp/ip-down.d/package" msgstr "" -# type: textblock +#. type: textblock #: dh_installppp:32 msgid "" -"Look for files named debian/package.name.ppp.ip-* and install them as etc/" -"ppp/ip-*/name, instead of using the usual files and installing them as the " -"package name." +"Look for files named debian/package.name.ppp.ip-* and install them as " +"etc/ppp/ip-*/name, instead of using the usual files and installing them as " +"the package name." msgstr "" -# type: textblock +#. type: textblock #: dh_installwm:5 msgid "dh_installwm - register a window manager" msgstr "" -# type: textblock +#. type: textblock #: dh_installwm:14 msgid "" "B [S>] [B<-n>] [B<--priority=>I] " "[S>]" msgstr "" -# type: textblock +#. type: textblock #: dh_installwm:18 msgid "" "dh_installwm is a debhelper program that is responsible for generating the " -"postinst and postrm commands that register a window manager with L. The window manager's man page is also registered as a " -"slave symlink (in v6 mode and up), if it is found in usr/share/man/man1/ in " -"the package build directory." +"postinst and postrm commands that register a window manager with " +"L. The window manager's man page is also registered " +"as a slave symlink (in v6 mode and up), if it is found in " +"usr/share/man/man1/ in the package build directory." msgstr "" -# type: textblock +#. type: textblock #: dh_installwm:24 msgid "" "Any window manager programs specified as parameters will be registered in " @@ -3048,14 +2971,14 @@ "it will be the first package specified by those flags." msgstr "" -# type: textblock +#. type: textblock #: dh_installwm:29 msgid "" "Files named debian/package.wm can list other window manager programs to " "register." msgstr "" -# type: textblock +#. type: textblock #: dh_installwm:38 msgid "" "Set the priority of the window manager. Default is 20, which is too low for " @@ -3063,34 +2986,34 @@ "calculating the correct value." msgstr "" -# type: textblock +#. type: textblock #: dh_installwm:44 msgid "Do not modify postinst/postrm scripts. Turns this command into a no-op." msgstr "" -# type: =item +#. type: =item #: dh_installwm:46 msgid "I" msgstr "" -# type: textblock +#. type: textblock #: dh_installwm:48 msgid "" "The commands used to run the window manager or window managers you want to " "register." msgstr "" -# type: textblock +#. type: textblock #: dh_installxfonts:5 msgid "dh_installxfonts - register X fonts" msgstr "" -# type: textblock +#. type: textblock #: dh_installxfonts:14 msgid "B [S>]" msgstr "" -# type: textblock +#. type: textblock #: dh_installxfonts:18 msgid "" "dh_installxfonts is a debhelper program that is responsible for registering " @@ -3098,7 +3021,7 @@ "rebuilt properly at install time." msgstr "" -# type: textblock +#. type: textblock #: dh_installxfonts:22 msgid "" "Before calling this program, you should have installed any X fonts provided " @@ -3108,15 +3031,15 @@ "build directory." msgstr "" -# type: textblock +#. type: textblock #: dh_installxfonts:28 msgid "" "Your package should depend on xfonts-utils so that the update-fonts-* " -"commands are available. (This program adds that dependency to ${misc:" -"Depends}.)" +"commands are available. (This program adds that dependency to " +"${misc:Depends}.)" msgstr "" -# type: textblock +#. type: textblock #: dh_installxfonts:32 msgid "" "This program automatically generates the postinst and postrm commands needed " @@ -3125,40 +3048,40 @@ "works." msgstr "" -# type: textblock +#. type: textblock #: dh_installxfonts:39 msgid "" -"See L, L, and L for more information about X font installation." +"See L, L, and " +"L for more information about X font installation." msgstr "" -# type: textblock +#. type: textblock #: dh_installxfonts:42 msgid "" "See Debian policy, section 11.8.5. for details about doing fonts the Debian " "way." msgstr "" -# type: textblock +#. type: textblock #: dh_link:5 msgid "dh_link - create symlinks in package build directories" msgstr "" -# type: textblock +#. type: textblock #: dh_link:15 msgid "" "B [S>] [B<-A>] [B<-X>I] [S>]" msgstr "" -# type: textblock +#. type: textblock #: dh_link:19 msgid "" "dh_link is a debhelper program that creates symlinks in package build " "directories." msgstr "" -# type: textblock +#. type: textblock #: dh_link:22 msgid "" "dh_link accepts a list of pairs of source and destination files. The source " @@ -3167,28 +3090,28 @@ "equal number of source and destination files specified." msgstr "" -# type: textblock +#. type: textblock #: dh_link:27 msgid "" "The list can be specified in two ways. A file named debian/package.links can " "list pairs of files. If you use this file, you should put each pair of files " -"on its own line, and separate the files within the pair with whitespace. " -"Also, pairs of files can be specified as parameters - these pairs will only " -"be created in the package build directory of the first package dh_link is " -"told to act on. By default, this is the first binary package in debian/" -"control, but if you use -p, -i, or -a flags, it will be the first package " -"specified by those flags." +"on its own line, and separate the files within the pair with " +"whitespace. Also, pairs of files can be specified as parameters - these " +"pairs will only be created in the package build directory of the first " +"package dh_link is told to act on. By default, this is the first binary " +"package in debian/control, but if you use -p, -i, or -a flags, it will be " +"the first package specified by those flags." msgstr "" -# type: textblock +#. type: textblock #: dh_link:36 msgid "" "Be sure you B specify the full filename to both the source and " -"destination files (unlike you would do if you were using something like L)." +"destination files (unlike you would do if you were using something like " +"L)." msgstr "" -# type: textblock +#. type: textblock #: dh_link:40 msgid "" "dh_link will generate symlinks that comply with debian policy - absolute " @@ -3197,33 +3120,33 @@ "the symlinks in." msgstr "" -# type: textblock +#. type: textblock #: dh_link:45 msgid "" "dh_link also scans the package build tree for existing symlinks which do not " "conform to debian policy, and corrects them (v4 or later)." msgstr "" -# type: textblock +#. type: textblock #: dh_link:54 msgid "" "Create any links specified by command line parameters in ALL packages acted " "on, not just the first." msgstr "" -# type: textblock +#. type: textblock #: dh_link:59 msgid "" "Do not correct symlinks that contain \"item\" anywhere in their filename " "from being corrected to comply with debian policy." msgstr "" -# type: =item +#. type: =item #: dh_link:62 msgid "I" msgstr "" -# type: textblock +#. type: textblock #: dh_link:64 msgid "" "Create a file named \"destination\" as a link to a file named \"source\". Do " @@ -3231,7 +3154,7 @@ "all packages if -A is specified.)" msgstr "" -# type: verbatim +#. type: verbatim #: dh_link:72 #, no-wrap msgid "" @@ -3239,12 +3162,12 @@ "\n" msgstr "" -# type: textblock +#. type: textblock #: dh_link:74 msgid "Make bar.1 be a symlink to foo.1" msgstr "" -# type: verbatim +#. type: verbatim #: dh_link:76 #, no-wrap msgid "" @@ -3253,24 +3176,24 @@ "\n" msgstr "" -# type: textblock +#. type: textblock #: dh_link:79 msgid "" "Make /usr/lib/foo/ be a link to /var/lib/foo/, and bar.1 be a symlink to the " "foo.1" msgstr "" -# type: textblock +#. type: textblock #: dh_listpackages:5 msgid "dh_listpackages - list binary packages debhelper will act on" msgstr "" -# type: textblock +#. type: textblock #: dh_listpackages:14 msgid "B [S>]" msgstr "" -# type: textblock +#. type: textblock #: dh_listpackages:18 msgid "" "dh_listpackages is a debhelper program that outputs a list of all binary " @@ -3279,34 +3202,33 @@ "act on if passed the same options." msgstr "" -# type: textblock +#. type: textblock #: dh_makeshlibs:5 -msgid "" -"dh_makeshlibs - automatically create shlibs file and call dpkg-gensymbols" +msgid "dh_makeshlibs - automatically create shlibs file and call dpkg-gensymbols" msgstr "" -# type: textblock +#. type: textblock #: dh_makeshlibs:14 msgid "" -"B [S>] [B<-m>I] [B<-V>I<" -"[dependencies]>] [B<-n>] [B<-X>I] [S I>]" +"B [S>] [B<-m>I] " +"[B<-V>I<[dependencies]>] [B<-n>] [B<-X>I] [S I>]" msgstr "" -# type: textblock +#. type: textblock #: dh_makeshlibs:18 msgid "" "dh_makeshlibs is a debhelper program that automatically scans for shared " "libraries, and generates a shlibs file for the libraries it finds." msgstr "" -# type: textblock +#. type: textblock #: dh_makeshlibs:21 msgid "" "It also adds a call to ldconfig in the postinst and postrm scripts (in V3 " "mode and above only) to any packages in which it finds shared libraries." msgstr "" -# type: textblock +#. type: textblock #: dh_makeshlibs:24 msgid "" "If a L symbol file is found in debian/package.symbols " @@ -3314,12 +3236,12 @@ "and install the symbols file." msgstr "" -# type: =item +#. type: =item #: dh_makeshlibs:32 msgid "B<-m>I, B<--major=>I" msgstr "" -# type: textblock +#. type: textblock #: dh_makeshlibs:34 msgid "" "Instead of trying to guess the major number of the library with objdump, use " @@ -3328,17 +3250,17 @@ "library filenames rather than using objdump." msgstr "" -# type: =item +#. type: =item #: dh_makeshlibs:39 msgid "B<-V>, B<-V>I" msgstr "" -# type: =item +#. type: =item #: dh_makeshlibs:41 msgid "B<--version-info>, B<--version-info=>I" msgstr "" -# type: textblock +#. type: textblock #: dh_makeshlibs:43 msgid "" "By default, the shlibs file generated by this program does not make packages " @@ -3353,7 +3275,7 @@ "(be sure to include the package name)." msgstr "" -# type: textblock +#. type: textblock #: dh_makeshlibs:54 msgid "" "Beware of using -V without any parameters; this is a conservative setting " @@ -3364,19 +3286,19 @@ "with dependencies that are too tight and so find it harder to be upgraded." msgstr "" -# type: textblock +#. type: textblock #: dh_makeshlibs:68 msgid "" "Exclude files that contain \"item\" anywhere in their filename or directory " "from being treated as shared libraries." msgstr "" -# type: =item +#. type: =item #: dh_makeshlibs:71 msgid "B<--add-udeb=>I" msgstr "" -# type: textblock +#. type: textblock #: dh_makeshlibs:73 msgid "" "Create an additional line for udebs in the shlibs file and use \"udeb\" as " @@ -3384,17 +3306,17 @@ "package." msgstr "" -# type: textblock +#. type: textblock #: dh_makeshlibs:78 msgid "Pass \"params\" to L." msgstr "" -# type: =item +#. type: =item #: dh_makeshlibs:86 msgid "dh_makeshlibs" msgstr "" -# type: verbatim +#. type: verbatim #: dh_makeshlibs:88 #, no-wrap msgid "" @@ -3404,12 +3326,12 @@ "\n" msgstr "" -# type: =item +#. type: =item #: dh_makeshlibs:92 msgid "dh_makeshlibs -V" msgstr "" -# type: verbatim +#. type: verbatim #: dh_makeshlibs:94 #, no-wrap msgid "" @@ -3419,12 +3341,12 @@ "\n" msgstr "" -# type: =item +#. type: =item #: dh_makeshlibs:98 msgid "dh_makeshlibs -V 'libfoobar1 (>= 1.0)'" msgstr "" -# type: verbatim +#. type: verbatim #: dh_makeshlibs:100 #, no-wrap msgid "" @@ -3433,19 +3355,19 @@ "\n" msgstr "" -# type: textblock +#. type: textblock #: dh_md5sums:5 msgid "dh_md5sums - generate DEBIAN/md5sums file" msgstr "" -# type: textblock +#. type: textblock #: dh_md5sums:15 msgid "" -"B [S>] [B<-x>] [B<-X>I] [B<--include-" -"conffiles>]" +"B [S>] [B<-x>] [B<-X>I] " +"[B<--include-conffiles>]" msgstr "" -# type: textblock +#. type: textblock #: dh_md5sums:19 msgid "" "dh_md5sums is a debhelper program that is responsible for generating a " @@ -3453,50 +3375,50 @@ "These files are used by the debsums package." msgstr "" -# type: textblock +#. type: textblock #: dh_md5sums:23 msgid "" "All files in DEBIAN/ are omitted from the md5sums file, as are all conffiles " "(unless you use the --include-conffiles switch)." msgstr "" -# type: textblock +#. type: textblock #: dh_md5sums:26 msgid "The md5sums file is installed with proper permissions and ownerships." msgstr "" -# type: =item +#. type: =item #: dh_md5sums:32 msgid "B<-x>, B<--include-conffiles>" msgstr "" -# type: textblock +#. type: textblock #: dh_md5sums:34 msgid "" "Include conffiles in the md5sums list. Note that this information is " "redundant since it is included elsewhere in debian packages." msgstr "" -# type: textblock +#. type: textblock #: dh_md5sums:39 msgid "" "Exclude files that contain \"item\" anywhere in their filename from being " "listed in the md5sums file." msgstr "" -# type: textblock +#. type: textblock #: dh_movefiles:5 msgid "dh_movefiles - move files out of debian/tmp into subpackages" msgstr "" -# type: textblock +#. type: textblock #: dh_movefiles:14 msgid "" -"B [S>] [B<--sourcedir=>I] [B<-" -"X>I] S>]" +"B [S>] [B<--sourcedir=>I] " +"[B<-X>I] S>]" msgstr "" -# type: textblock +#. type: textblock #: dh_movefiles:18 msgid "" "dh_movefiles is a debhelper program that is responsible for moving files out " @@ -3505,7 +3427,7 @@ "everything into debian/tmp, and you need to break that up into subpackages." msgstr "" -# type: textblock +#. type: textblock #: dh_movefiles:23 msgid "" "Files named debian/package.files list the files to be moved, separated by " @@ -3515,19 +3437,19 @@ "apply to the first package dh_movefiles is told to act on." msgstr "" -# type: textblock +#. type: textblock #: dh_movefiles:29 msgid "" "Note: dh_install is a much better program, and you are recommended to use it " "instead of dh_movefiles." msgstr "" -# type: =item +#. type: =item #: dh_movefiles:36 msgid "B<--sourcedir=>I" msgstr "" -# type: textblock +#. type: textblock #: dh_movefiles:38 msgid "" "Instead of moving files out of debian/tmp (the default), this option makes " @@ -3537,16 +3459,16 @@ "begin with a `/'." msgstr "" -# type: textblock +#. type: textblock #: dh_movefiles:51 msgid "" -"Lists files to move. The filenames listed should be relative to debian/tmp/. " -"You can also list directory names, and the whole directory will be moved. It " -"is an error to list files here unless you use -p, -i, or -a to tell " -"dh_movefiles which subpackage to put them in." +"Lists files to move. The filenames listed should be relative to " +"debian/tmp/. You can also list directory names, and the whole directory will " +"be moved. It is an error to list files here unless you use -p, -i, or -a to " +"tell dh_movefiles which subpackage to put them in." msgstr "" -# type: textblock +#. type: textblock #: dh_movefiles:60 msgid "" "Note that files are always moved out of debian/tmp by default (even if you " @@ -3558,24 +3480,24 @@ "by dh_clean later." msgstr "" -# type: textblock +#. type: textblock #: dh_perl:5 msgid "dh_perl - calculates perl dependencies and cleans up after MakeMaker" msgstr "" -# type: textblock +#. type: textblock #: dh_perl:16 msgid "B [S>] [B<-d>] [S>]" msgstr "" -# type: textblock +#. type: textblock #: dh_perl:20 msgid "" -"dh_perl is a debhelper program that is responsible for generating the ${perl:" -"Depends} substitutions and adding them to substvars files." +"dh_perl is a debhelper program that is responsible for generating the " +"${perl:Depends} substitutions and adding them to substvars files." msgstr "" -# type: textblock +#. type: textblock #: dh_perl:23 msgid "" "The program will look at perl scripts and modules in your package, and will " @@ -3584,19 +3506,19 @@ "place the token \"${perl:Depends}\"." msgstr "" -# type: textblock +#. type: textblock #: dh_perl:28 msgid "" "dh_perl also cleans up empty directories that MakeMaker can generate when " "installing perl modules." msgstr "" -# type: =item +#. type: =item #: dh_perl:35 msgid "B<-d>" msgstr "" -# type: textblock +#. type: textblock #: dh_perl:37 msgid "" "In some specific cases you may want to depend on perl-base rather than the " @@ -3605,7 +3527,7 @@ "for some packages that are included in the base system." msgstr "" -# type: textblock +#. type: textblock #: dh_perl:42 msgid "" "Note that this flag may cause no dependency on perl-base to be generated at " @@ -3613,12 +3535,12 @@ "versioned dependency is needed." msgstr "" -# type: =item +#. type: =item #: dh_perl:46 msgid "B<-V>" msgstr "" -# type: textblock +#. type: textblock #: dh_perl:48 msgid "" "By default, scripts and architecture independent modules don't depend on any " @@ -3626,49 +3548,50 @@ "perl (or perl-base with -d) package to be specified." msgstr "" -# type: =item +#. type: =item #: dh_perl:52 msgid "I" msgstr "" -# type: textblock +#. type: textblock #: dh_perl:54 msgid "" "If your package installs perl modules in non-standard directories, you can " "make dh_perl check those directories by passing their names on the command " -"line. It will only check the vendorlib and vendorarch directories by default." +"line. It will only check the vendorlib and vendorarch directories by " +"default." msgstr "" -# type: textblock +#. type: textblock #: dh_perl:63 dh_strip:76 msgid "Debian policy, version 3.0.1" msgstr "" -# type: textblock +#. type: textblock #: dh_perl:65 msgid "Perl policy, version 1.18" msgstr "" -# type: textblock +#. type: textblock #: dh_perl:160 msgid "Brendan O'Dea " msgstr "" -# type: textblock +#. type: textblock #: dh_python:5 msgid "" "dh_python - calculates python dependencies and adds postinst and prerm " "python scripts" msgstr "" -# type: textblock +#. type: textblock #: dh_python:15 msgid "" "B [S>] [B<-n>] [B<-V> I] " "[S>]" msgstr "" -# type: textblock +#. type: textblock #: dh_python:19 msgid "" "Note: This program is deprecated. You should use dh_pysupport or " @@ -3676,7 +3599,7 @@ "Python-Version control file field exists." msgstr "" -# type: textblock +#. type: textblock #: dh_python:23 msgid "" "dh_python is a debhelper program that is responsible for generating the " @@ -3684,7 +3607,7 @@ "also add a postinst and a prerm script if required." msgstr "" -# type: textblock +#. type: textblock #: dh_python:27 msgid "" "The program will look at python scripts and modules in your package, and " @@ -3694,7 +3617,7 @@ "package's control file wherever you place the token \"${python:Depends}\"." msgstr "" -# type: textblock +#. type: textblock #: dh_python:33 msgid "" "If some modules need to be byte-compiled at install time, appropriate " @@ -3702,39 +3625,39 @@ "modules are found, they are removed." msgstr "" -# type: textblock +#. type: textblock #: dh_python:37 msgid "If you use this program, your package should build-depend on python." msgstr "" -# type: =item +#. type: =item #: dh_python:43 msgid "I" msgstr "" -# type: textblock +#. type: textblock #: dh_python:45 msgid "" "If your package installs python modules in non-standard directories, you can " "make dh_python check those directories by passing their names on the command " -"line. By default, it will check /usr/lib/site-python, /usr/lib/$PACKAGE, /" -"usr/share/$PACKAGE, /usr/lib/games/$PACKAGE, /usr/share/games/$PACKAGE and /" -"usr/lib/python?.?/site-packages." +"line. By default, it will check /usr/lib/site-python, /usr/lib/$PACKAGE, " +"/usr/share/$PACKAGE, /usr/lib/games/$PACKAGE, /usr/share/games/$PACKAGE and " +"/usr/lib/python?.?/site-packages." msgstr "" -# type: textblock +#. type: textblock #: dh_python:51 msgid "" "Note: only /usr/lib/site-python, /usr/lib/python?.?/site-packages and the " "extra names on the command line are searched for binary (.so) modules." msgstr "" -# type: =item +#. type: =item #: dh_python:54 msgid "B<-V> I" msgstr "" -# type: textblock +#. type: textblock #: dh_python:56 msgid "" "If the .py files your package ships are meant to be used by a specific " @@ -3742,44 +3665,44 @@ "such as 2.3. Do not use if you ship modules in /usr/lib/site-python." msgstr "" -# type: textblock +#. type: textblock #: dh_python:68 msgid "Debian policy, version 3.5.7" msgstr "" -# type: textblock +#. type: textblock #: dh_python:70 msgid "Python policy, version 0.3.7" msgstr "" -# type: textblock +#. type: textblock #: dh_python:290 msgid "Josselin Mouette " msgstr "" -# type: textblock +#. type: textblock #: dh_python:292 msgid "most ideas stolen from Brendan O'Dea " msgstr "" -# type: textblock +#. type: textblock #: dh_scrollkeeper:5 msgid "dh_scrollkeeper - generate ScrollKeeper registration scripts" msgstr "" -# type: textblock +#. type: textblock #: dh_scrollkeeper:14 msgid "B [S>] [B<-n>] [S>]" msgstr "" -# type: textblock +#. type: textblock #: dh_scrollkeeper:18 msgid "" "B is a debhelper program that handles correctly registering " "OMF files that it finds in package build trees with ScrollKeeper." msgstr "" -# type: textblock +#. type: textblock #: dh_scrollkeeper:22 msgid "" "This command automatically adds maintainer script snippets for registering " @@ -3789,7 +3712,7 @@ "snippets." msgstr "" -# type: textblock +#. type: textblock #: dh_scrollkeeper:28 msgid "" "It will also change any DTD declarations in the OMF and DocBook files to " @@ -3797,31 +3720,31 @@ "source files, but the files in the package build tree." msgstr "" -# type: textblock +#. type: textblock #: dh_scrollkeeper:38 msgid "Do not modify F/F scripts." msgstr "" -# type: textblock +#. type: textblock #: dh_shlibdeps:5 msgid "dh_shlibdeps - calculate shared library dependencies" msgstr "" -# type: textblock +#. type: textblock #: dh_shlibdeps:15 msgid "" -"B [S>] [B<-L>I] [B<-" -"l>I] [B<-X>I] [S I>]" +"B [S>] [B<-L>I] " +"[B<-l>I] [B<-X>I] [S I>]" msgstr "" -# type: textblock +#. type: textblock #: dh_shlibdeps:19 msgid "" "dh_shlibdeps is a debhelper program that is responsible for calculating " "shared library dependencies for packages." msgstr "" -# type: textblock +#. type: textblock #: dh_shlibdeps:22 msgid "" "This program is merely a wrapper around L that calls it " @@ -3829,17 +3752,17 @@ "executables and shared libraries it has found." msgstr "" -# type: =item +#. type: =item #: dh_shlibdeps:30 msgid "B<-u>I, B<--dpkg-shlibdeps-params=>I" msgstr "" -# type: textblock +#. type: textblock #: dh_shlibdeps:34 msgid "Pass \"params\" to L." msgstr "" -# type: textblock +#. type: textblock #: dh_shlibdeps:38 msgid "" "Exclude files that contain \"item\" anywhere in their filename from being " @@ -3848,40 +3771,40 @@ "may be used more than once to exclude more than one thing." msgstr "" -# type: =item +#. type: =item #: dh_shlibdeps:43 msgid "B<-l>I[:directory:directory:..]" msgstr "" -# type: textblock +#. type: textblock #: dh_shlibdeps:45 -msgid "" -"With recent versions of dpkg-shlibdeps, this option is generally not needed." +msgid "With recent versions of dpkg-shlibdeps, this option is generally not needed." msgstr "" -# type: textblock +#. type: textblock #: dh_shlibdeps:48 msgid "" "Before dpkg-shlibdeps is run, LD_LIBRARY_PATH will have added to it the " "specified directory (or directories -- separate with colons). With recent " "versions of dpkg-shlibdeps, this is mostly only useful for packages that " "build multiple flavors of the same library, or other situations where the " -"library is installed into a directory not on the regular library search path." +"library is installed into a directory not on the regular library search " +"path." msgstr "" -# type: =item +#. type: =item #: dh_shlibdeps:55 msgid "B<-L>I, B<--libpackage=>I" msgstr "" -# type: textblock +#. type: textblock #: dh_shlibdeps:57 msgid "" "With recent versions of dpkg-shlibdeps, this option is generally not needed, " "unless your package builds multiple flavors of the same library." msgstr "" -# type: textblock +#. type: textblock #: dh_shlibdeps:60 msgid "" "It tells dpkg-shlibdeps (via its -S parameter) to look first in the package " @@ -3889,15 +3812,16 @@ "symbol files, and shlibs files." msgstr "" -# type: textblock +#. type: textblock #: dh_shlibdeps:68 msgid "" -"Suppose that your source package produces libfoo1, libfoo-dev, and libfoo-" -"bin binary packages. libfoo-bin links against libfoo1, and should depend on " -"it. In your rules file, first run dh_makeshlibs, then dh_shlibdeps:" +"Suppose that your source package produces libfoo1, libfoo-dev, and " +"libfoo-bin binary packages. libfoo-bin links against libfoo1, and should " +"depend on it. In your rules file, first run dh_makeshlibs, then " +"dh_shlibdeps:" msgstr "" -# type: verbatim +#. type: verbatim #: dh_shlibdeps:72 #, no-wrap msgid "" @@ -3906,15 +3830,16 @@ "\n" msgstr "" -# type: textblock +#. type: textblock #: dh_shlibdeps:75 msgid "" "This will have the effect of generating automatically a shlibs file for " -"libfoo1, and using that file and the libfoo1 library in the debian/libfoo1/" -"usr/lib directory to calculate shared library dependency information." +"libfoo1, and using that file and the libfoo1 library in the " +"debian/libfoo1/usr/lib directory to calculate shared library dependency " +"information." msgstr "" -# type: textblock +#. type: textblock #: dh_shlibdeps:80 msgid "" "If a libbar1 package is also produced, that is an alternate build of libfoo, " @@ -3922,33 +3847,32 @@ "libbar1 as follows:" msgstr "" -# type: verbatim +#. type: verbatim #: dh_shlibdeps:84 #, no-wrap msgid "" "\tdh_shlibdeps -Llibbar1 -l/usr/lib/bar\n" -"\n" +"\t\n" msgstr "" -# type: textblock -#: dh_shlibdeps:161 +#. type: textblock +#: dh_shlibdeps:165 msgid "L, L" msgstr "" -# type: textblock +#. type: textblock #: dh_strip:5 -msgid "" -"dh_strip - strip executables, shared libraries, and some static libraries" +msgid "dh_strip - strip executables, shared libraries, and some static libraries" msgstr "" -# type: textblock +#. type: textblock #: dh_strip:15 msgid "" "B [S>] [B<-X>I] [--dbg-package=package] " "[--keep-debug]" msgstr "" -# type: textblock +#. type: textblock #: dh_strip:19 msgid "" "dh_strip is a debhelper program that is responsible for stripping " @@ -3956,7 +3880,7 @@ "debugging." msgstr "" -# type: textblock +#. type: textblock #: dh_strip:23 msgid "" "This program examines your package build directories and works out what to " @@ -3968,7 +3892,7 @@ "in almost all cases." msgstr "" -# type: textblock +#. type: textblock #: dh_strip:31 msgid "" "Since it is very hard to automatically guess if a file is a module, and hard " @@ -3976,7 +3900,7 @@ "stripping binary modules such as .o files." msgstr "" -# type: textblock +#. type: textblock #: dh_strip:41 msgid "" "Exclude files that contain \"item\" anywhere in their filename from being " @@ -3984,12 +3908,12 @@ "things to exclude." msgstr "" -# type: =item +#. type: =item #: dh_strip:45 msgid "B<--dbg-package=>I" msgstr "" -# type: textblock +#. type: textblock #: dh_strip:47 msgid "" "Causes dh_strip to save debug symbols stripped from the packages it acts on " @@ -3997,14 +3921,14 @@ "debugging package." msgstr "" -# type: textblock +#. type: textblock #: dh_strip:51 msgid "" "For example, if your packages are libfoo and foo and you want to include a " "foo-dbg package with debugging symbols, use dh_strip --dbg-package=foo-dbg." msgstr "" -# type: textblock +#. type: textblock #: dh_strip:54 msgid "" "Note that this option behaves significantly different in debhelper " @@ -4014,38 +3938,38 @@ "packages with \"-dbg\" added to their name." msgstr "" -# type: =item +#. type: =item #: dh_strip:60 msgid "B<-k>, B<--keep-debug>" msgstr "" -# type: textblock +#. type: textblock #: dh_strip:62 msgid "" -"Debug symbols will be retained, but split into an independent file in usr/" -"lib/debug/ in the package build directory. --dbg-package is easier to use " -"than this option, but this option is more flexible." +"Debug symbols will be retained, but split into an independent file in " +"usr/lib/debug/ in the package build directory. --dbg-package is easier to " +"use than this option, but this option is more flexible." msgstr "" -# type: textblock +#. type: textblock #: dh_strip:70 msgid "" "If the DEB_BUILD_OPTIONS environment variable contains \"nostrip\", nothing " -"will be stripped, in accordance with Debian policy (section 10.1 \"Binaries" -"\")." +"will be stripped, in accordance with Debian policy (section 10.1 " +"\"Binaries\")." msgstr "" -# type: textblock +#. type: textblock #: dh_suidregister:5 msgid "dh_suidregister - obsolete suid registration program" msgstr "" -# type: textblock +#. type: textblock #: dh_suidregister:9 dh_undocumented:14 msgid "Do not run!" msgstr "" -# type: textblock +#. type: textblock #: dh_suidregister:13 msgid "" "This program used to register suid and sgid files with L, " @@ -4054,20 +3978,21 @@ "used." msgstr "" -# type: =head1 +#. type: =head1 #: dh_suidregister:18 msgid "CONVERTING TO STATOVERRIDE" msgstr "" -# type: textblock +#. type: textblock #: dh_suidregister:20 msgid "" "Converting a package that uses this program to use the new statoverride " -"mechanism is easy. Just remove the call to dh_suidregister from debian/" -"rules, and add a versioned conflicts into your control file, as follows:" +"mechanism is easy. Just remove the call to dh_suidregister from " +"debian/rules, and add a versioned conflicts into your control file, as " +"follows:" msgstr "" -# type: verbatim +#. type: verbatim #: dh_suidregister:25 #, no-wrap msgid "" @@ -4075,7 +4000,7 @@ "\n" msgstr "" -# type: textblock +#. type: textblock #: dh_suidregister:27 msgid "" "The conflicts is only necessary if your package used to register things with " @@ -4083,17 +4008,17 @@ "from your rules file." msgstr "" -# type: textblock +#. type: textblock #: dh_testdir:5 msgid "dh_testdir - test directory before building debian package" msgstr "" -# type: textblock +#. type: textblock #: dh_testdir:14 msgid "B [S>] [S>]" msgstr "" -# type: textblock +#. type: textblock #: dh_testdir:18 msgid "" "dh_testdir tries to make sure that you are in the correct directory when " @@ -4102,54 +4027,52 @@ "error." msgstr "" -# type: textblock +#. type: textblock #: dh_testdir:29 msgid "Test for the existence of these files too." msgstr "" -# type: textblock +#. type: textblock #: dh_testroot:5 msgid "dh_testroot - ensure that a package is built as root" msgstr "" -# type: textblock +#. type: textblock #: dh_testroot:9 msgid "B [S>]" msgstr "" -# type: textblock +#. type: textblock #: dh_testroot:13 msgid "" "dh_testroot simply checks to see if you are root. If not, it exits with an " -"error. Debian packages must be built as root, though you can use L" +"error. Debian packages must be built as root, though you can use " +"L" msgstr "" -# type: textblock +#. type: textblock #: dh_testversion:5 -msgid "" -"dh_testversion - ensure that the correct version of debhelper is installed" +msgid "dh_testversion - ensure that the correct version of debhelper is installed" msgstr "" -# type: textblock +#. type: textblock #: dh_testversion:14 msgid "B [S>] [I] [I]" msgstr "" -# type: textblock +#. type: textblock #: dh_testversion:18 -msgid "" -"Note: This program is deprecated. You should use build dependencies instead." +msgid "Note: This program is deprecated. You should use build dependencies instead." msgstr "" -# type: textblock +#. type: textblock #: dh_testversion:21 msgid "" "dh_testversion compares the version of debhelper against the version you " "specify, and if the condition is not met, exits with an error message." msgstr "" -# type: textblock +#. type: textblock #: dh_testversion:24 msgid "" "You can use this in your debian/rules files if a new debhelper feature is " @@ -4157,7 +4080,7 @@ "debhelper's changelog to figure out the version you need." msgstr "" -# type: textblock +#. type: textblock #: dh_testversion:28 msgid "" "Be sure not to overuse dh_testversion. If debhelper version 9.5 introduces a " @@ -4167,12 +4090,12 @@ "dh_testversion." msgstr "" -# type: =item +#. type: =item #: dh_testversion:38 msgid "I" msgstr "" -# type: textblock +#. type: textblock #: dh_testversion:40 msgid "" "Optional comparison operator used in comparing the versions. If not " @@ -4180,24 +4103,24 @@ "dpkg --help." msgstr "" -# type: =item +#. type: =item #: dh_testversion:44 msgid "I" msgstr "" -# type: textblock +#. type: textblock #: dh_testversion:46 msgid "" "Version number to compare against the current version of debhelper. If not " "specified, dh_testversion does nothing." msgstr "" -# type: textblock +#. type: textblock #: dh_undocumented:5 msgid "dh_undocumented - obsolete undocumented.7 symlink program" msgstr "" -# type: textblock +#. type: textblock #: dh_undocumented:18 msgid "" "This program used to make symlinks to the undocumented.7 man page for man " @@ -4206,24 +4129,24 @@ "used." msgstr "" -# type: textblock +#. type: textblock #: dh_usrlocal:5 msgid "dh_usrlocal - migrate usr/local directories to maintainer scripts" msgstr "" -# type: textblock +#. type: textblock #: dh_usrlocal:17 msgid "B [S>] [B<-n>]" msgstr "" -# type: textblock +#. type: textblock #: dh_usrlocal:21 msgid "" "dh_usrlocal is a debhelper program that can be used for building packages " "that will provide a subdirectory in /usr/local when installed." msgstr "" -# type: textblock +#. type: textblock #: dh_usrlocal:24 msgid "" "It finds subdirectories of usr/local in the package build directory, and " @@ -4235,7 +4158,7 @@ "snippets." msgstr "" -# type: textblock +#. type: textblock #: dh_usrlocal:32 msgid "" "If the directories found in the build tree have unusual owners, groups, or " @@ -4246,34 +4169,17 @@ "recommends for directories in /usr/local." msgstr "" -# type: textblock +#. type: textblock #: dh_usrlocal:45 msgid "Do not modify F/F scripts." msgstr "" -# type: textblock +#. type: textblock #: dh_usrlocal:57 msgid "Debian policy, version 2.2" msgstr "" -# type: textblock +#. type: textblock #: dh_usrlocal:122 msgid "Andrew Stribblehill " msgstr "" - -# type: textblock -#: debhelper.pod:401 -msgid "" -"dh_install, if --sourcedir is not specified, will first look for files in " -"debian/tmp, and then will look in the current directory. This allows " -"dh_install to interoperate with dh_auto_install without needing any special " -"parameters." -msgstr "" - -# type: textblock -#: dh_install:43 -msgid "" -"From debhelper compatibility level 7 on, if --sourcedir is not specified, " -"dh_install will install files from debian/tmp if the directory contains the " -"files. Otherwise, it will install files from the current directory." -msgstr "" diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/man/po4a/po/es.po /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/man/po4a/po/es.po --- debhelper-7.0.13ubuntu1/man/po4a/po/es.po 2008-06-26 12:13:47.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/man/po4a/po/es.po 2009-04-20 21:15:46.000000000 +0100 @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2008-06-25 03:37-0400\n" +"POT-Creation-Date: 2009-04-20 16:15-0300\n" "PO-Revision-Date: 2005-09-18 00:11+0200\n" "Last-Translator: Rubén Porras Campo \n" "Language-Team: SPANISH \n" @@ -14,6 +14,7 @@ "Content-Transfer-Encoding: ENCODING\n" # type: =head1 +#. type: =head1 #: debhelper.pod:1 dh_builddeb:3 dh_clean:3 dh_compress:3 dh_desktop:3 #: dh_fixperms:3 dh_gconf:3 dh_gencontrol:3 dh_installcatalogs:3 #: dh_installchangelogs:3 dh_installcron:3 dh_installdebconf:3 dh_installdeb:3 @@ -29,11 +30,13 @@ msgstr "NOMBRE" # type: textblock +#. type: textblock #: debhelper.pod:3 msgid "debhelper - the debhelper tool suite" msgstr "debhelper - El conjunto de herramientas debhelper" # type: =head1 +#. type: =head1 #: debhelper.pod:5 dh_builddeb:12 dh_clean:12 dh_compress:13 dh_desktop:12 #: dh_fixperms:12 dh_gconf:12 dh_gencontrol:12 dh_installcatalogs:14 #: dh_installchangelogs:12 dh_installcron:12 dh_installdebconf:12 @@ -50,6 +53,7 @@ msgstr "SINOPSIS" # type: textblock +#. type: textblock #: debhelper.pod:7 msgid "" "BI<*> [B<-v>] [B<-a>] [B<-i>] [B<-s>] [B<--no-act>] [B<-ppackage>] [B<-" @@ -59,6 +63,7 @@ "Npaquete] [-Ptmpdir>]" # type: =head1 +#. type: =head1 #: debhelper.pod:9 dh_builddeb:16 dh_clean:16 dh_compress:17 dh_desktop:16 #: dh_fixperms:16 dh_gconf:16 dh_gencontrol:16 dh_installcatalogs:18 #: dh_installchangelogs:16 dh_installcron:16 dh_installdebconf:16 @@ -75,6 +80,7 @@ msgstr "DESCRIPCIÓN" # type: textblock +#. type: textblock #: debhelper.pod:11 msgid "" "Debhelper is used to help you build a debian package. The philosophy behind " @@ -94,6 +100,7 @@ "reconstruidos para que se ajusten a la nueva política." # type: textblock +#. type: textblock #: debhelper.pod:19 #, fuzzy msgid "" @@ -107,6 +114,7 @@ "encontrar en F" # type: textblock +#. type: textblock #: debhelper.pod:23 msgid "" "To create a new debian package using debhelper, you can just copy one of the " @@ -124,11 +132,13 @@ "maint-guide-es)" # type: =head1 +#. type: =head1 #: debhelper.pod:29 msgid "DEBHELPER COMMANDS" msgstr "ÓRDENES DE DEBHELPER" # type: textblock +#. type: textblock #: debhelper.pod:31 msgid "" "Here is the complete list of available debhelper commands. See their man " @@ -138,11 +148,13 @@ "para más información consulte sus respectivas páginas del manual." # type: textblock +#. type: textblock #: debhelper.pod:36 msgid "#LIST#" msgstr "#LIST#" # type: textblock +#. type: textblock #: debhelper.pod:40 msgid "" "If a program's name starts with \"dh_\", and the program is not on the above " @@ -154,11 +166,13 @@ "como los programas descritos en está página." # type: =head1 +#. type: =head1 #: debhelper.pod:44 msgid "DEBHELPER CONFIG FILES" msgstr "FICHEROS DE CONFIGURACIÓN DE DEBHELPER" # type: textblock +#. type: textblock #: debhelper.pod:46 msgid "" "Many debhelper commands make use of files in F to control what they " @@ -177,6 +191,7 @@ "reemplazado por el paquete sobre el que se está trabajando)." # type: textblock +#. type: textblock #: debhelper.pod:53 msgid "" "For example, dh_installdocs uses files named debian/package.docs to list the " @@ -195,6 +210,7 @@ "complicado." # type: textblock +#. type: textblock #: debhelper.pod:60 msgid "" "Note that if a package is the first (or only) binary package listed in " @@ -206,6 +222,7 @@ "paquete.tal." # type: textblock +#. type: textblock #: debhelper.pod:64 #, fuzzy msgid "" @@ -222,6 +239,7 @@ "generales." # type: textblock +#. type: textblock #: debhelper.pod:70 msgid "" "In many cases, these config files are used to specify various types of " @@ -235,6 +253,7 @@ "puedes usar comodines del shell como ('?' y '*') en estos ficheros." # type: textblock +#. type: textblock #: debhelper.pod:75 msgid "" "You can also put comments in these files; lines beginning with \"#\" are " @@ -244,11 +263,13 @@ "líneas con el símbolo \"#\"" # type: =head1 +#. type: =head1 #: debhelper.pod:78 msgid "SHARED DEBHELPER OPTIONS" msgstr "OPCIONES COMPARTIDAS DE DEBHELPER" # type: textblock +#. type: textblock #: debhelper.pod:80 msgid "" "The following command line options are supported by all debhelper programs." @@ -257,11 +278,13 @@ "debhelper." # type: =item +#. type: =item #: debhelper.pod:84 msgid "B<-v>, B<--verbose>" msgstr "B<-v>, B<--verbose>" # type: textblock +#. type: textblock #: debhelper.pod:86 msgid "" "Verbose mode: show all commands that modify the package build directory." @@ -270,11 +293,13 @@ "construcción del paquete." # type: =item +#. type: =item #: debhelper.pod:88 msgid "B<--no-act>" msgstr "B<--no-act>" # type: textblock +#. type: textblock #: debhelper.pod:90 msgid "" "Do not really do anything. If used with -v, the result is that the command " @@ -284,31 +309,37 @@ "hecho." # type: =item +#. type: =item #: debhelper.pod:93 msgid "B<-a>, B<--arch>" msgstr "B<-a>, B<--arch>" # type: textblock +#. type: textblock #: debhelper.pod:95 msgid "Act on all architecture dependent packages." msgstr "Actuar en todos los paquetes dependientes de la arquitectura." # type: =item +#. type: =item #: debhelper.pod:97 msgid "B<-i>, B<--indep>" msgstr "B<-i>, B<--indep>" # type: textblock +#. type: textblock #: debhelper.pod:99 msgid "Act on all architecture independent packages." msgstr "Actuar en todos los paquetes independientes de la arquitectura." # type: =item +#. type: =item #: debhelper.pod:101 msgid "B<->I, B<--package=>I" msgstr "B<->I, B<--package=>I" # type: textblock +#. type: textblock #: debhelper.pod:103 msgid "" "Act on the package named \"package\". This option may be specified multiple " @@ -319,11 +350,13 @@ "paquetes." # type: =item +#. type: =item #: debhelper.pod:106 msgid "B<-s>, B<--same-arch>" msgstr "B<-s>, B<--same-arch>" # type: textblock +#. type: textblock #: debhelper.pod:108 msgid "" "This is a smarter version of the -a flag, that is used in some rare " @@ -344,11 +377,13 @@ "dependientes de la arquitectura." # type: =item +#. type: =item #: debhelper.pod:116 msgid "B<-N>I, B<--no-package=>I" msgstr "B<-N>I, B<--no-package=>I" # type: textblock +#. type: textblock #: debhelper.pod:118 msgid "" "Do not act on the specified package even if an -a, -i, or -p option lists " @@ -358,13 +393,32 @@ "listan este paquete como uno sobre los que se debe actuar." # type: =item +#. type: =item #: debhelper.pod:121 #, fuzzy +msgid "B<--remaining-packages>" +msgstr "B<--mainpackage=>I" + +#. type: textblock +#: debhelper.pod:123 +msgid "" +"Do not act on the packages which have already been acted on by this " +"debhelper command earlier (i.e. if the command is present in the package " +"debhelper log). For example, if you need to call the command with special " +"options only for a couple of binary packages, pass this option to the last " +"call of the command to process the rest of packages with default settings." +msgstr "" + +# type: =item +#. type: =item +#: debhelper.pod:129 +#, fuzzy msgid "B<--ignore=>I" msgstr "B<--name=>I" # type: textblock -#: debhelper.pod:123 +#. type: textblock +#: debhelper.pod:131 msgid "" "Ignore the specified file. This can be used if debian/ contains a debhelper " "config file that a debhelper command should not act on. Note that debian/" @@ -373,19 +427,22 @@ msgstr "" # type: textblock -#: debhelper.pod:128 +#. type: textblock +#: debhelper.pod:136 msgid "" "For example, if upstream ships a debian/init that you don't want " "dh_installinit to install, use --ignore=debian/init" msgstr "" # type: =item -#: debhelper.pod:131 +#. type: =item +#: debhelper.pod:139 msgid "B<-P>I, B<--tmpdir=>I" msgstr "B<-P>I, B<--tmpdir=>I" # type: textblock -#: debhelper.pod:133 +#. type: textblock +#: debhelper.pod:141 msgid "" "Use \"tmpdir\" for package build directory. The default is debian/" msgstr "" @@ -393,12 +450,14 @@ "debian/." # type: =item -#: debhelper.pod:135 +#. type: =item +#: debhelper.pod:143 msgid "B<--mainpackage=>I" msgstr "B<--mainpackage=>I" # type: textblock -#: debhelper.pod:137 +#. type: textblock +#: debhelper.pod:145 msgid "" "This little-used option changes the package which debhelper considers the " "\"main package\", that is, the first one listed in debian/control, and the " @@ -411,12 +470,14 @@ "debian/package.tal." # type: =head1 -#: debhelper.pod:144 +#. type: =head1 +#: debhelper.pod:152 msgid "COMMON DEBHELPER OPTIONS" msgstr "OPCIONES COMUNES DE DEBHELPER" # type: textblock -#: debhelper.pod:146 +#. type: textblock +#: debhelper.pod:154 msgid "" "The following command line options are supported by some debhelper " "programs. See the man page of each program for a complete explanation of " @@ -427,23 +488,27 @@ "lo que hace cada una." # type: =item -#: debhelper.pod:152 +#. type: =item +#: debhelper.pod:160 msgid "B<-n>" msgstr "B<-n>" # type: textblock -#: debhelper.pod:154 +#. type: textblock +#: debhelper.pod:162 msgid "Do not modify postinst/postrm/etc scripts." msgstr "No modificar los scripts postinst/postrm/etc." # type: =item -#: debhelper.pod:156 dh_compress:42 dh_makeshlibs:66 dh_md5sums:37 +#. type: =item +#: debhelper.pod:164 dh_compress:42 dh_makeshlibs:66 dh_md5sums:37 #: dh_shlibdeps:36 dh_strip:39 msgid "B<-X>I, B<--exclude=>I" msgstr "B<-X>I, B<--exclude=>I" # type: textblock -#: debhelper.pod:158 +#. type: textblock +#: debhelper.pod:166 msgid "" "Exclude an item from processing. This option may be used multiple times, to " "exclude more than one thing." @@ -452,13 +517,15 @@ "excluir distintos elementos." # type: =item -#: debhelper.pod:161 dh_compress:50 dh_installdirs:32 dh_installdocs:55 +#. type: =item +#: debhelper.pod:169 dh_compress:50 dh_installdirs:32 dh_installdocs:53 #: dh_installexamples:33 dh_installinfo:41 dh_installman:62 dh_link:52 msgid "B<-A>, B<--all>" msgstr "B<-A>, B<--all>" # type: textblock -#: debhelper.pod:163 +#. type: textblock +#: debhelper.pod:171 msgid "" "Makes files or other items that are specified on the command line take " "effect in ALL packages acted on, not just the first." @@ -467,21 +534,24 @@ "tengan efecto en TODOS los paquetes sobre los que actúa, no sólo el primero." # type: =head1 -#: debhelper.pod:168 dh_installcatalogs:52 dh_installdocs:87 +#. type: =head1 +#: debhelper.pod:176 dh_installcatalogs:52 dh_installdocs:81 #: dh_installemacsen:54 dh_installexamples:50 dh_installinfo:57 -#: dh_installinit:110 dh_installman:79 dh_installmime:41 dh_installmodules:56 +#: dh_installinit:110 dh_installman:79 dh_installmime:41 dh_installmodules:60 #: dh_installwm:53 dh_installxfonts:37 dh_movefiles:58 dh_scrollkeeper:42 #: dh_strip:68 dh_usrlocal:49 msgid "NOTES" msgstr "NOTAS" # type: =head2 -#: debhelper.pod:170 +#. type: =head2 +#: debhelper.pod:178 msgid "Multiple binary package support" msgstr "Soporte para varios paquetes binarios" # type: textblock -#: debhelper.pod:172 +#. type: textblock +#: debhelper.pod:180 msgid "" "If your source package generates more than one binary package, debhelper " "programs will default to acting on all binary packages when run. If your " @@ -500,7 +570,8 @@ "arquitectura en el objetivo binary-indep de debian/rules." # type: textblock -#: debhelper.pod:180 +#. type: textblock +#: debhelper.pod:188 msgid "" "To facilitate this, as well as give you more control over which packages are " "acted on by debhelper programs, all debhelper programs accept the B<-a>, B<-" @@ -515,12 +586,14 @@ "los paquetes listados en el fichero de control." # type: =head2 -#: debhelper.pod:186 +#. type: =head2 +#: debhelper.pod:194 msgid "Automatic generation of debian install scripts" msgstr "Generación automática de los scripts de instalación de debian" # type: textblock -#: debhelper.pod:188 +#. type: textblock +#: debhelper.pod:196 msgid "" "Some debhelper commands will automatically generate parts of debian " "maintainer scripts. If you want these automatically generated things " @@ -537,7 +610,8 @@ "cualquier código auto-generado cuando ejecutes dh_installdeb." # type: textblock -#: debhelper.pod:195 +#. type: textblock +#: debhelper.pod:203 msgid "" "If a script does not exist at all and debhelper needs to add something to " "it, then debhelper will create the complete script." @@ -546,7 +620,8 @@ "pueden deshabilitar con el parámetro -n (ver arriba)." # type: textblock -#: debhelper.pod:198 +#. type: textblock +#: debhelper.pod:206 msgid "" "All debhelper commands that automatically generate code in this way let it " "be disabled by the -n parameter (see above)." @@ -555,7 +630,8 @@ "estamanera se pueden deshabilitar con el parámetro -n (ver arriba)." # type: textblock -#: debhelper.pod:201 +#. type: textblock +#: debhelper.pod:209 msgid "" "Note that the inserted code will be shell code, so you cannot directly use " "it in a perl script. If you would like to embed it into a perl script, here " @@ -568,7 +644,8 @@ "$1, $2, etc están establecidas con la orden set):" # type: verbatim -#: debhelper.pod:206 +#. type: verbatim +#: debhelper.pod:214 #, no-wrap msgid "" " my $temp=\"set -e\\nset -- @ARGV\\n\" . << 'EOF';\n" @@ -586,12 +663,14 @@ "\n" # type: =head2 -#: debhelper.pod:212 +#. type: =head2 +#: debhelper.pod:220 msgid "Automatic generation of miscellaneous dependencies." msgstr "Generación automática de diversas dependencias." # type: textblock -#: debhelper.pod:214 +#. type: textblock +#: debhelper.pod:222 msgid "" "Some debhelper commands may make the generated package need to depend on " "some other packages. For example, if you use L, your " @@ -610,7 +689,8 @@ "automatizarlo." # type: textblock -#: debhelper.pod:222 +#. type: textblock +#: debhelper.pod:230 msgid "" "All commands of this type, besides documenting what dependencies may be " "needed on their man pages, will automatically generate a substvar called " @@ -624,7 +704,8 @@ "debhelper crea oportunas." # type: textblock -#: debhelper.pod:227 +#. type: textblock +#: debhelper.pod:235 msgid "" "This is entirely independent of the standard ${shlibs:Depends} generated by " "L, and the ${perl:Depends} generated by L. " @@ -637,12 +718,14 @@ "estas variables no son correctas." # type: =head2 -#: debhelper.pod:232 +#. type: =head2 +#: debhelper.pod:240 msgid "Package build directories" msgstr "Directorios de construcción del paquete" # type: textblock -#: debhelper.pod:234 +#. type: textblock +#: debhelper.pod:242 msgid "" "By default, all debhelper programs assume that the temporary directory used " "for assembling the tree of files in a package is debian/." @@ -652,7 +735,8 @@ "." # type: textblock -#: debhelper.pod:237 +#. type: textblock +#: debhelper.pod:245 msgid "" "Sometimes, you might want to use some other temporary directory. This is " "supported by the -P flag. For example, \"dh_installdocs -Pdebian/tmp\", will " @@ -671,12 +755,14 @@ "binario sobre el que debhelper actuará." # type: =head2 -#: debhelper.pod:245 +#. type: =head2 +#: debhelper.pod:253 msgid "Debhelper compatibility levels" msgstr "Niveles de compatibilidad de debhelper" # type: textblock -#: debhelper.pod:247 +#. type: textblock +#: debhelper.pod:255 msgid "" "From time to time, major non-backwards-compatible changes need to be made to " "debhelper, to keep it clean and well-designed as needs change and its author " @@ -694,7 +780,8 @@ "maneras." # type: textblock -#: debhelper.pod:254 +#. type: textblock +#: debhelper.pod:262 #, fuzzy msgid "" "Tell debhelper what compatibility level to use by writing a number to debian/" @@ -704,7 +791,8 @@ "debian/compat. Por ejemplo, para activar el modo V4:" # type: verbatim -#: debhelper.pod:257 +#. type: verbatim +#: debhelper.pod:265 #, fuzzy, no-wrap msgid "" " % echo 7 > debian/compat\n" @@ -714,7 +802,8 @@ "\n" # type: textblock -#: debhelper.pod:259 +#. type: textblock +#: debhelper.pod:267 msgid "" "Unless otherwise indicated, all debhelper documentation assumes that you are " "using the most recent compatibility level, and in most cases does not " @@ -724,17 +813,20 @@ msgstr "" # type: textblock -#: debhelper.pod:266 +#. type: textblock +#: debhelper.pod:274 msgid "These are the available compatibility levels:" msgstr "Los niveles de compatibilidad disponibles son:" # type: =item -#: debhelper.pod:270 +#. type: =item +#: debhelper.pod:278 msgid "V1" msgstr "V1" # type: textblock -#: debhelper.pod:272 +#. type: textblock +#: debhelper.pod:280 msgid "" "This is the original debhelper compatibility level, and so it is the default " "one. In this mode, debhelper will use debian/tmp as the package tree " @@ -747,17 +839,20 @@ "fichero de control. Se desaconseja su uso." # type: textblock -#: debhelper.pod:277 debhelper.pod:284 debhelper.pod:307 +#. type: textblock +#: debhelper.pod:285 debhelper.pod:292 debhelper.pod:315 debhelper.pod:344 msgid "This mode is deprecated." msgstr "Este modo está desaconsejado." # type: =item -#: debhelper.pod:279 +#. type: =item +#: debhelper.pod:287 msgid "V2" msgstr "V2" # type: textblock -#: debhelper.pod:281 +#. type: textblock +#: debhelper.pod:289 msgid "" "In this mode, debhelper will consistently use debian/ as the " "package tree directory for every package that is built." @@ -766,26 +861,30 @@ "árbol de directorios para cada paquete que se construya." # type: =item -#: debhelper.pod:286 +#. type: =item +#: debhelper.pod:294 msgid "V3" msgstr "V3" # type: textblock -#: debhelper.pod:288 +#. type: textblock +#: debhelper.pod:296 msgid "This mode works like V2, with the following additions:" msgstr "Este modo funciona como el V2 con los siguientes añadidos:" # type: =item -#: debhelper.pod:292 debhelper.pod:297 debhelper.pod:301 debhelper.pod:315 -#: debhelper.pod:320 debhelper.pod:325 debhelper.pod:330 debhelper.pod:342 -#: debhelper.pod:346 debhelper.pod:351 debhelper.pod:355 debhelper.pod:367 -#: debhelper.pod:372 debhelper.pod:378 debhelper.pod:384 debhelper.pod:399 -#: debhelper.pod:406 debhelper.pod:410 debhelper.pod:414 +#. type: =item +#: debhelper.pod:300 debhelper.pod:305 debhelper.pod:309 debhelper.pod:323 +#: debhelper.pod:328 debhelper.pod:333 debhelper.pod:338 debhelper.pod:352 +#: debhelper.pod:356 debhelper.pod:361 debhelper.pod:365 debhelper.pod:377 +#: debhelper.pod:382 debhelper.pod:388 debhelper.pod:394 debhelper.pod:409 +#: debhelper.pod:416 debhelper.pod:420 debhelper.pod:424 msgid "-" msgstr "-" # type: textblock -#: debhelper.pod:294 +#. type: textblock +#: debhelper.pod:302 msgid "" "Debhelper config files support globbing via * and ?, when appropriate. To " "turn this off and use those characters raw, just prefix with a backslash." @@ -795,13 +894,15 @@ "prefijo una barra invertida." # type: textblock -#: debhelper.pod:299 +#. type: textblock +#: debhelper.pod:307 msgid "dh_makeshlibs makes the postinst and postrm scripts call ldconfig." msgstr "" "dh_makeshlibs hace que los scripts postinst y postrm ejecuten ldconfig." # type: textblock -#: debhelper.pod:303 +#. type: textblock +#: debhelper.pod:311 msgid "" "Every file in etc/ is automatically flagged as a conffile by dh_installdeb." msgstr "" @@ -809,17 +910,20 @@ "conffiles." # type: =item -#: debhelper.pod:309 +#. type: =item +#: debhelper.pod:317 msgid "V4" msgstr "V4" # type: textblock -#: debhelper.pod:311 +#. type: textblock +#: debhelper.pod:319 msgid "Changes from V3 are:" msgstr "" # type: textblock -#: debhelper.pod:317 +#. type: textblock +#: debhelper.pod:325 msgid "" "dh_makeshlibs -V will not include the debian part of the version number in " "the generated dependency line in the shlibs file." @@ -828,7 +932,8 @@ "generado en la línea de dependencias del fichero shlibs." # type: textblock -#: debhelper.pod:322 +#. type: textblock +#: debhelper.pod:330 msgid "" "You are encouraged to put the new ${misc:Depends} into debian/control to " "supplement the ${shlibs:Depends} field." @@ -837,7 +942,8 @@ "reemplazar el campo ${shlibs:Depends}." # type: textblock -#: debhelper.pod:327 +#. type: textblock +#: debhelper.pod:335 msgid "" "dh_fixperms will make all files in bin/ directories and in etc/init.d " "executable." @@ -846,30 +952,35 @@ "etc/init.d." # type: textblock -#: debhelper.pod:332 +#. type: textblock +#: debhelper.pod:340 msgid "dh_link will correct existing links to conform with policy." msgstr "" "dh_link corregirá los enlaces existentes para ajustarse a la política de " "debian." # type: =item -#: debhelper.pod:336 +#. type: =item +#: debhelper.pod:346 msgid "V5" msgstr "V5" # type: textblock -#: debhelper.pod:338 +#. type: textblock +#: debhelper.pod:348 msgid "Changes from V4 are:" msgstr "" # type: textblock -#: debhelper.pod:344 +#. type: textblock +#: debhelper.pod:354 msgid "Comments are ignored in debhelper config files." msgstr "" "Se ignoran los comentarios en los ficheros de configuración de debhelper." # type: textblock -#: debhelper.pod:348 +#. type: textblock +#: debhelper.pod:358 msgid "" "dh_strip --dbg-package now specifies the name of a package to put debugging " "symbols in, not the packages to take the symbols from." @@ -879,34 +990,40 @@ "los símbolos." # type: textblock -#: debhelper.pod:353 +#. type: textblock +#: debhelper.pod:363 msgid "dh_installdocs skips installing empty files." msgstr "dh_installdocs no instala ficheros vacíos." # type: textblock -#: debhelper.pod:357 +#. type: textblock +#: debhelper.pod:367 msgid "dh_install errors out if wildcards expand to nothing." msgstr "" # type: =item -#: debhelper.pod:361 +#. type: =item +#: debhelper.pod:371 msgid "V6" msgstr "" # type: textblock -#: debhelper.pod:363 +#. type: textblock +#: debhelper.pod:373 msgid "Changes from V5 are:" msgstr "" # type: textblock -#: debhelper.pod:369 +#. type: textblock +#: debhelper.pod:379 msgid "" -"Commands that generate maintainer script fragements will order the " -"fragements in reverse order for the prerm and postrm scripts." +"Commands that generate maintainer script fragments will order the fragments " +"in reverse order for the prerm and postrm scripts." msgstr "" # type: textblock -#: debhelper.pod:374 +#. type: textblock +#: debhelper.pod:384 #, fuzzy msgid "" "dh_installwm will install a slave manpage link for x-window-manager.1.gz, if " @@ -914,7 +1031,8 @@ msgstr "dh_installwm - registra un gestor de ventanas" # type: textblock -#: debhelper.pod:380 +#. type: textblock +#: debhelper.pod:390 msgid "" "dh_builddeb did not previously delete everything matching DH_ALWAYS_EXCLUDE, " "if it was set to a list of things to exclude, such as \"CVS:.svn:.git\". Now " @@ -922,62 +1040,72 @@ msgstr "" # type: textblock -#: debhelper.pod:386 +#. type: textblock +#: debhelper.pod:396 msgid "" "dh_installman allows overwriting existing man pages in the package build " "directory. In previous compatibility levels it silently refuses to do this." msgstr "" # type: =item -#: debhelper.pod:391 +#. type: =item +#: debhelper.pod:401 msgid "V7" msgstr "" # type: textblock -#: debhelper.pod:393 +#. type: textblock +#: debhelper.pod:403 #, fuzzy msgid "This is the recommended mode of operation." msgstr "" "Este es el modo de operación aconsejado. Hace lo mismo que V3 y además:" # type: textblock -#: debhelper.pod:395 +#. type: textblock +#: debhelper.pod:405 msgid "Changes from V6 are:" msgstr "" # type: textblock -#: debhelper.pod:401 +#. type: textblock +#: debhelper.pod:411 msgid "" "dh_install, will fall back to looking for files in debian/tmp if it doesn't " "find them in the current directory (or wherever you tell it look using --" -"srcdir). This allows dh_install to interoperate with dh_auto_install, which " -"installs to debian/tmp, without needing any special parameters." +"sourcedir). This allows dh_install to interoperate with dh_auto_install, " +"which installs to debian/tmp, without needing any special parameters." msgstr "" # type: textblock -#: debhelper.pod:408 +#. type: textblock +#: debhelper.pod:418 msgid "dh_clean will read debian/clean and delete files listed there." msgstr "" # type: textblock -#: debhelper.pod:412 +#. type: textblock +#: debhelper.pod:422 msgid "dh_clean will delete toplevel *-stamp files." msgstr "" # type: textblock -#: debhelper.pod:416 +#. type: textblock +#: debhelper.pod:426 msgid "" "dh_installchangelogs will guess at what file is the upstream changelog if " "none is specified." msgstr "" # type: =head2 -#: debhelper.pod:423 +#. type: =head2 +#: debhelper.pod:433 msgid "Doc directory symlinks" msgstr "Enlaces a los directorios Doc" # type: textblock -#: debhelper.pod:425 +#. type: textblock +#: debhelper.pod:435 msgid "" "Sometimes it is useful to make a package not contain a /usr/share/doc/" "package directory at all, instead placing just a dangling symlink in the " @@ -999,12 +1127,14 @@ "colgante y no tratará de instalar un fichero de copyright o changelog." # type: =head2 -#: debhelper.pod:434 +#. type: =head2 +#: debhelper.pod:444 msgid "udebs" msgstr "udebs" # type: textblock -#: debhelper.pod:436 +#. type: textblock +#: debhelper.pod:446 msgid "" "Debhelper includes support for udebs. To create a udeb with debhelper, add " "\"XC-Package-Type: udeb\" to the package's stanza in debian/control, and " @@ -1022,12 +1152,14 @@ "preinst, postrm, prerm, y de configuración, etc." # type: =head2 -#: debhelper.pod:443 +#. type: =head2 +#: debhelper.pod:453 msgid "Other notes" msgstr "Otras notas" # type: textblock -#: debhelper.pod:445 +#. type: textblock +#: debhelper.pod:455 msgid "" "In general, if any debhelper program needs a directory to exist under " "debian/, it will create it. I haven't bothered to document this in all the " @@ -1043,7 +1175,8 @@ "archivos del menú, etc." # type: textblock -#: debhelper.pod:451 +#. type: textblock +#: debhelper.pod:461 #, fuzzy msgid "" "Once your package uses debhelper to build, be sure to add debhelper to your " @@ -1058,7 +1191,8 @@ "paquete usa el nivel de compatibilidad 4:" # type: verbatim -#: debhelper.pod:457 +#. type: verbatim +#: debhelper.pod:467 #, fuzzy, no-wrap msgid "" " Build-Depends: debhelper (>= 7)\n" @@ -1068,17 +1202,20 @@ "\n" # type: =head1 -#: debhelper.pod:459 +#. type: =head1 +#: debhelper.pod:469 msgid "ENVIRONMENT" msgstr "ENTORNO" # type: =item -#: debhelper.pod:463 +#. type: =item +#: debhelper.pod:473 msgid "DH_VERBOSE" msgstr "DH_VERBOSE" # type: textblock -#: debhelper.pod:465 +#. type: textblock +#: debhelper.pod:475 msgid "" "Set to 1 to enable verbose mode. Debhelper will output every command it runs " "that modifies files on the build system." @@ -1088,12 +1225,14 @@ "construcción." # type: =item -#: debhelper.pod:468 +#. type: =item +#: debhelper.pod:478 msgid "DH_COMPAT" msgstr "DH_COMPAT" # type: textblock -#: debhelper.pod:470 +#. type: textblock +#: debhelper.pod:480 msgid "" "Temporarily specifies what compatibility level debhelper should run at, " "overriding any value in debian/compat." @@ -1102,28 +1241,41 @@ "debhelper, ignorando cualquier valor en debian/compat." # type: =item -#: debhelper.pod:473 +#. type: =item +#: debhelper.pod:483 msgid "DH_NO_ACT" msgstr "DH_NO_ACT" # type: textblock -#: debhelper.pod:475 +#. type: textblock +#: debhelper.pod:485 msgid "Set to 1 to enable no-act mode." msgstr "Poner a 1 para habilitar el modo no-act." # type: =item -#: debhelper.pod:477 +#. type: =item +#: debhelper.pod:487 msgid "DH_OPTIONS" msgstr "DH_OPTIONS" # type: textblock -#: debhelper.pod:479 +#. type: textblock +#: debhelper.pod:489 msgid "" "Anything in this variable will be prepended to the command line arguments of " -"all debhelper commands. This is useful in some situations, for example, if " -"you need to pass -p to all debhelper commands that will be run. One good way " -"to set DH_OPTIONS is by using \"Target-specific Variable Values\" in your " -"debian/rules file. See the make documentation for details on doing this." +"all debhelper commands. Command-specific options will be ignored by commands " +"that do not support them." +msgstr "" + +# type: textblock +#. type: textblock +#: debhelper.pod:493 +#, fuzzy +msgid "" +"This is useful in some situations, for example, if you need to pass -p to " +"all debhelper commands that will be run. One good way to set DH_OPTIONS is " +"by using \"Target-specific Variable Values\" in your debian/rules file. See " +"the make documentation for details on doing this." msgstr "" "Todo lo que halla en esta variable se antepondrá a los argumentos en la " "línea de órdenes de todas las órdenes de debhelper. Esto es útil en algunas " @@ -1133,12 +1285,14 @@ "Lea la documentación de make para los detalles sobre como hacer esto." # type: =item -#: debhelper.pod:485 +#. type: =item +#: debhelper.pod:498 msgid "DH_ALWAYS_EXCLUDE" msgstr "DH_ALWAYS_EXCLUDE" # type: textblock -#: debhelper.pod:487 +#. type: textblock +#: debhelper.pod:500 msgid "" "If set, this adds the value the variable is set to to the -X options of all " "commands that support the -X option. Moreover, dh_builddeb will rm -rf " @@ -1149,7 +1303,8 @@ "coincida con el valor en el árbol de construcción." # type: textblock -#: debhelper.pod:491 +#. type: textblock +#: debhelper.pod:504 msgid "" "This can be useful if you are doing a build from a CVS source tree, in which " "case setting DH_ALWAYS_EXCLUDE=CVS will prevent any CVS directories from " @@ -1166,7 +1321,8 @@ "sitio donde se construya el paquete." # type: textblock -#: debhelper.pod:498 +#. type: textblock +#: debhelper.pod:511 msgid "" "Multiple things to exclude can be separated with colons, as in " "DH_ALWAYS_EXCLUDE=CVS:.svn" @@ -1175,80 +1331,89 @@ "puntos, p. ej.: DH_ALWAYS_EXCLUDE=CVS:.svn" # type: =head1 -#: debhelper.pod:503 dh_builddeb:85 dh_clean:129 dh_compress:190 dh_desktop:47 -#: dh_fixperms:110 dh_gconf:92 dh_gencontrol:73 dh_installcatalogs:109 -#: dh_installchangelogs:140 dh_installcron:61 dh_installdebconf:118 -#: dh_installdeb:94 dh_installdirs:83 dh_installdocs:237 dh_installemacsen:109 -#: dh_installexamples:103 dh_installinfo:103 dh_installinit:216 +#. type: =head1 +#: debhelper.pod:516 dh_builddeb:87 dh_clean:130 dh_compress:190 dh_desktop:27 +#: dh_fixperms:110 dh_gconf:106 dh_gencontrol:79 dh_installcatalogs:109 +#: dh_installchangelogs:147 dh_installcron:61 dh_installdebconf:118 +#: dh_installdeb:94 dh_installdirs:83 dh_installdocs:223 dh_installemacsen:111 +#: dh_installexamples:103 dh_installinfo:103 dh_installinit:224 #: dh_installlogcheck:51 dh_installlogrotate:50 dh_installmanpages:197 -#: dh_installman:249 dh_installmenu:80 dh_installmime:85 dh_installmodules:116 -#: dh_installpam:52 dh_install:268 dh_installppp:56 dh_installwm:107 -#: dh_installxfonts:86 dh_link:223 dh_listpackages:29 dh_makeshlibs:222 -#: dh_md5sums:86 dh_movefiles:162 dh_perl:152 dh_python:282 dh_scrollkeeper:76 -#: dh_shlibdeps:159 dh_strip:224 dh_suidregister:117 dh_testdir:44 +#: dh_installman:251 dh_installmenu:80 dh_installmime:85 dh_installmodules:124 +#: dh_installpam:52 dh_install:272 dh_installppp:56 dh_installwm:107 +#: dh_installxfonts:86 dh_link:223 dh_listpackages:29 dh_makeshlibs:227 +#: dh_md5sums:89 dh_movefiles:162 dh_perl:152 dh_python:282 dh_scrollkeeper:76 +#: dh_shlibdeps:163 dh_strip:226 dh_suidregister:117 dh_testdir:44 #: dh_testroot:27 dh_testversion:75 dh_undocumented:28 dh_usrlocal:114 msgid "SEE ALSO" msgstr "VÉASE ADEMÁS" # type: =item -#: debhelper.pod:507 +#. type: =item +#: debhelper.pod:520 msgid "F" msgstr "F" # type: textblock -#: debhelper.pod:509 +#. type: textblock +#: debhelper.pod:522 msgid "A set of example debian/rules files that use debhelper." msgstr "Varios ficheros de ejemplo debian/rules que usan debhelper." # type: =item -#: debhelper.pod:511 +#. type: =item +#: debhelper.pod:524 msgid "L" msgstr "L" # type: textblock -#: debhelper.pod:513 +#. type: textblock +#: debhelper.pod:526 msgid "Debhelper web site." msgstr "Web de Debhelper." # type: =head1 -#: debhelper.pod:517 dh_builddeb:91 dh_clean:135 dh_compress:196 dh_desktop:53 -#: dh_fixperms:116 dh_gconf:98 dh_gencontrol:79 dh_installcatalogs:115 -#: dh_installchangelogs:146 dh_installcron:67 dh_installdebconf:124 -#: dh_installdeb:100 dh_installdirs:89 dh_installdocs:243 -#: dh_installemacsen:115 dh_installexamples:109 dh_installinfo:109 -#: dh_installinit:222 dh_installlogcheck:57 dh_installlogrotate:56 -#: dh_installmanpages:203 dh_installman:255 dh_installmenu:88 -#: dh_installmime:91 dh_installmodules:122 dh_installpam:58 dh_install:274 +#. type: =head1 +#: debhelper.pod:530 dh_builddeb:93 dh_clean:136 dh_compress:196 dh_desktop:33 +#: dh_fixperms:116 dh_gconf:112 dh_gencontrol:85 dh_installcatalogs:115 +#: dh_installchangelogs:153 dh_installcron:67 dh_installdebconf:124 +#: dh_installdeb:100 dh_installdirs:89 dh_installdocs:229 +#: dh_installemacsen:117 dh_installexamples:109 dh_installinfo:109 +#: dh_installinit:230 dh_installlogcheck:57 dh_installlogrotate:56 +#: dh_installmanpages:203 dh_installman:257 dh_installmenu:88 +#: dh_installmime:91 dh_installmodules:130 dh_installpam:58 dh_install:278 #: dh_installppp:62 dh_installwm:113 dh_installxfonts:92 dh_link:229 -#: dh_listpackages:35 dh_makeshlibs:228 dh_md5sums:92 dh_movefiles:168 -#: dh_perl:158 dh_python:288 dh_scrollkeeper:82 dh_shlibdeps:165 dh_strip:230 +#: dh_listpackages:35 dh_makeshlibs:233 dh_md5sums:95 dh_movefiles:168 +#: dh_perl:158 dh_python:288 dh_scrollkeeper:82 dh_shlibdeps:169 dh_strip:232 #: dh_suidregister:123 dh_testdir:50 dh_testroot:33 dh_testversion:81 #: dh_undocumented:34 dh_usrlocal:120 msgid "AUTHOR" msgstr "AUTOR" # type: textblock -#: debhelper.pod:519 dh_builddeb:93 dh_clean:137 dh_compress:198 -#: dh_fixperms:118 dh_gencontrol:81 dh_installchangelogs:148 dh_installcron:69 +#. type: textblock +#: debhelper.pod:532 dh_builddeb:95 dh_clean:138 dh_compress:198 +#: dh_fixperms:118 dh_gencontrol:87 dh_installchangelogs:155 dh_installcron:69 #: dh_installdebconf:126 dh_installdeb:102 dh_installdirs:91 -#: dh_installdocs:245 dh_installemacsen:117 dh_installexamples:111 -#: dh_installinfo:111 dh_installinit:224 dh_installlogrotate:58 -#: dh_installmanpages:205 dh_installman:257 dh_installmenu:90 -#: dh_installmime:93 dh_installmodules:124 dh_installpam:60 dh_install:276 +#: dh_installdocs:231 dh_installemacsen:119 dh_installexamples:111 +#: dh_installinfo:111 dh_installinit:232 dh_installlogrotate:58 +#: dh_installmanpages:205 dh_installman:259 dh_installmenu:90 +#: dh_installmime:93 dh_installmodules:132 dh_installpam:60 dh_install:280 #: dh_installppp:64 dh_installwm:115 dh_installxfonts:94 dh_link:231 -#: dh_listpackages:37 dh_makeshlibs:230 dh_md5sums:94 dh_movefiles:170 -#: dh_shlibdeps:167 dh_strip:232 dh_suidregister:125 dh_testdir:52 +#: dh_listpackages:37 dh_makeshlibs:235 dh_md5sums:97 dh_movefiles:170 +#: dh_shlibdeps:171 dh_strip:234 dh_suidregister:125 dh_testdir:52 #: dh_testroot:35 dh_testversion:83 dh_undocumented:36 msgid "Joey Hess " msgstr "Joey Hess " # type: textblock +#. type: textblock #: dh_builddeb:5 #, fuzzy msgid "dh_builddeb - build debian binary packages" msgstr "dh_builddeb - construye paquetes debian" # type: textblock +#. type: textblock #: dh_builddeb:14 msgid "" "B [S>] [B<--destdir=>I] [B<--" @@ -1258,6 +1423,7 @@ "filename=>I] [S I>]" # type: textblock +#. type: textblock #: dh_builddeb:18 msgid "" "dh_builddeb simply calls L to build a debian package or " @@ -1267,12 +1433,13 @@ "paquetes Debian." # type: =head1 -#: dh_builddeb:21 dh_clean:33 dh_compress:38 dh_fixperms:31 dh_gconf:34 +#. type: =head1 +#: dh_builddeb:21 dh_clean:33 dh_compress:38 dh_fixperms:31 dh_gconf:39 #: dh_gencontrol:26 dh_installcatalogs:42 dh_installchangelogs:44 -#: dh_installcron:24 dh_installdebconf:50 dh_installdirs:28 dh_installdocs:51 +#: dh_installcron:24 dh_installdebconf:50 dh_installdirs:28 dh_installdocs:49 #: dh_installemacsen:35 dh_installexamples:29 dh_installinfo:37 #: dh_installinit:33 dh_installlogrotate:22 dh_installmanpages:40 -#: dh_installman:58 dh_installmenu:34 dh_installmime:31 dh_installmodules:39 +#: dh_installman:58 dh_installmenu:34 dh_installmime:31 dh_installmodules:43 #: dh_installpam:24 dh_install:47 dh_installppp:26 dh_installwm:32 dh_link:48 #: dh_makeshlibs:28 dh_md5sums:28 dh_movefiles:32 dh_perl:31 dh_python:39 #: dh_scrollkeeper:32 dh_shlibdeps:26 dh_strip:35 dh_testdir:23 @@ -1281,11 +1448,13 @@ msgstr "OPCIONES" # type: =item +#. type: =item #: dh_builddeb:25 msgid "B<--destdir=>I" msgstr "B<--destdir=>I" # type: textblock +#. type: textblock #: dh_builddeb:27 msgid "" "Use this if you want the generated .deb files to be put in a directory other " @@ -1295,11 +1464,13 @@ "directorio distinto de \"..\"" # type: =item +#. type: =item #: dh_builddeb:30 msgid "B<--filename=>I" msgstr "B<--filename=>I" # type: textblock +#. type: textblock #: dh_builddeb:32 msgid "" "Use this if you want to force the generated .deb file to have a particular " @@ -1309,57 +1480,64 @@ "¡No funciona bien si se genera más de un .deb!" # type: =item +#. type: =item #: dh_builddeb:35 msgid "B<-u>I" msgstr "B<-u>I" # type: =item +#. type: =item #: dh_builddeb:37 dh_gencontrol:32 dh_installdebconf:58 dh_installinit:78 #: dh_makeshlibs:76 dh_shlibdeps:32 msgid "B<--> I" msgstr "B<--> I" # type: textblock +#. type: textblock #: dh_builddeb:39 msgid "Pass I to L when it is used to build the package." msgstr "Pasa I a L cuando se construye el paquete." # type: textblock -#: dh_builddeb:87 dh_clean:131 dh_compress:192 dh_fixperms:112 dh_gconf:94 -#: dh_gencontrol:75 dh_installcatalogs:111 dh_installchangelogs:142 +#. type: textblock +#: dh_builddeb:89 dh_clean:132 dh_compress:192 dh_fixperms:112 dh_gconf:108 +#: dh_gencontrol:81 dh_installcatalogs:111 dh_installchangelogs:149 #: dh_installcron:63 dh_installdebconf:120 dh_installdeb:96 dh_installdirs:85 -#: dh_installdocs:239 dh_installemacsen:111 dh_installexamples:105 -#: dh_installinfo:105 dh_installinit:218 dh_installlogcheck:53 -#: dh_installlogrotate:52 dh_installmanpages:199 dh_installman:251 -#: dh_installmime:87 dh_installmodules:118 dh_installpam:54 dh_install:270 +#: dh_installdocs:225 dh_installemacsen:113 dh_installexamples:105 +#: dh_installinfo:105 dh_installinit:226 dh_installlogcheck:53 +#: dh_installlogrotate:52 dh_installmanpages:199 dh_installman:253 +#: dh_installmime:87 dh_installmodules:126 dh_installpam:54 dh_install:274 #: dh_installppp:58 dh_installwm:109 dh_installxfonts:88 dh_link:225 -#: dh_listpackages:31 dh_makeshlibs:224 dh_md5sums:88 dh_movefiles:164 -#: dh_perl:154 dh_python:284 dh_strip:226 dh_suidregister:119 dh_testdir:46 +#: dh_listpackages:31 dh_makeshlibs:229 dh_md5sums:91 dh_movefiles:164 +#: dh_perl:154 dh_python:284 dh_strip:228 dh_suidregister:119 dh_testdir:46 #: dh_testroot:29 dh_testversion:77 dh_undocumented:30 dh_usrlocal:116 msgid "L" msgstr "L" # type: textblock -#: dh_builddeb:89 dh_clean:133 dh_compress:194 dh_desktop:51 dh_fixperms:114 -#: dh_gconf:96 dh_gencontrol:77 dh_installchangelogs:144 dh_installcron:65 -#: dh_installdebconf:122 dh_installdeb:98 dh_installdirs:87 dh_installdocs:241 -#: dh_installemacsen:113 dh_installexamples:107 dh_installinfo:107 -#: dh_installinit:220 dh_installlogrotate:54 dh_installmanpages:201 -#: dh_installman:253 dh_installmenu:86 dh_installmime:89 dh_installmodules:120 -#: dh_installpam:56 dh_install:272 dh_installppp:60 dh_installwm:111 -#: dh_installxfonts:90 dh_link:227 dh_listpackages:33 dh_makeshlibs:226 -#: dh_md5sums:90 dh_movefiles:166 dh_perl:156 dh_python:286 dh_scrollkeeper:80 -#: dh_shlibdeps:163 dh_strip:228 dh_suidregister:121 dh_testdir:48 +#. type: textblock +#: dh_builddeb:91 dh_clean:134 dh_compress:194 dh_desktop:31 dh_fixperms:114 +#: dh_gconf:110 dh_gencontrol:83 dh_installchangelogs:151 dh_installcron:65 +#: dh_installdebconf:122 dh_installdeb:98 dh_installdirs:87 dh_installdocs:227 +#: dh_installemacsen:115 dh_installexamples:107 dh_installinfo:107 +#: dh_installinit:228 dh_installlogrotate:54 dh_installmanpages:201 +#: dh_installman:255 dh_installmenu:86 dh_installmime:89 dh_installmodules:128 +#: dh_installpam:56 dh_install:276 dh_installppp:60 dh_installwm:111 +#: dh_installxfonts:90 dh_link:227 dh_listpackages:33 dh_makeshlibs:231 +#: dh_md5sums:93 dh_movefiles:166 dh_perl:156 dh_python:286 dh_scrollkeeper:80 +#: dh_shlibdeps:167 dh_strip:230 dh_suidregister:121 dh_testdir:48 #: dh_testroot:31 dh_testversion:79 dh_undocumented:32 dh_usrlocal:118 msgid "This program is a part of debhelper." msgstr "Este programa es parte de debhelper." # type: textblock +#. type: textblock #: dh_clean:5 msgid "dh_clean - clean up package build directories" msgstr "dh_clean - limpia los directorios de construcción de los paquetes" # type: textblock +#. type: textblock #: dh_clean:14 msgid "" "B [S>] [B<-k>] [B<-d>] [B<-X>I] " @@ -1369,6 +1547,7 @@ "[S>]" # type: verbatim +#. type: verbatim #: dh_clean:18 #, fuzzy, no-wrap msgid "" @@ -1389,6 +1568,7 @@ "\n" # type: textblock +#. type: textblock #: dh_clean:25 #, fuzzy msgid "The debian/clean file can list other files to be removed." @@ -1397,6 +1577,7 @@ "instalar." # type: textblock +#. type: textblock #: dh_clean:27 msgid "" "It does not run \"make clean\" to clean up after the build process. Use " @@ -1404,6 +1585,7 @@ msgstr "" # type: textblock +#. type: textblock #: dh_clean:30 msgid "" "dh_clean (or \"dh clean\") should be the last debhelper command run in the " @@ -1411,24 +1593,27 @@ msgstr "" # type: =item +#. type: =item #: dh_clean:37 dh_installchangelogs:48 msgid "B<-k>, B<--keep>" msgstr "B<-k>, B<--keep>" # type: textblock +#. type: textblock #: dh_clean:39 -msgid "" -"This causes L to be run instead of dh_clean, for backwards " -"compatibility." -msgstr "" +#, fuzzy +msgid "This is deprecated, use L instead." +msgstr "Se desaconseja el uso de esta opción, use --name en su lugar." # type: =item -#: dh_clean:42 +#. type: =item +#: dh_clean:41 msgid "B<-d>, B<--dirs-only>" msgstr "B<-d>, B<--dirs-only>" # type: textblock -#: dh_clean:44 +#. type: textblock +#: dh_clean:43 msgid "" "Only clean the package build directories, do not clean up any other files at " "all." @@ -1437,12 +1622,14 @@ "otro tipo de ficheros en absoluto." # type: =item -#: dh_clean:47 +#. type: =item +#: dh_clean:46 msgid "B<-X>I B<--exclude=>I" msgstr "B<-X>I B<--exclude=>I" # type: textblock -#: dh_clean:49 +#. type: textblock +#: dh_clean:48 msgid "" "Exclude files that contain \"item\" anywhere in their filename from being " "deleted, even if they would normally be deleted. You may use this option " @@ -1453,17 +1640,20 @@ "opción si quiere excluir una lista de ficheros." # type: =item -#: dh_clean:53 dh_compress:55 dh_installdocs:69 dh_installexamples:38 +#. type: =item +#: dh_clean:52 dh_compress:55 dh_installdocs:63 dh_installexamples:38 #: dh_installinfo:50 dh_installmanpages:44 dh_movefiles:49 dh_testdir:27 msgid "I" msgstr "I" # type: textblock -#: dh_clean:55 +#. type: textblock +#: dh_clean:54 msgid "Delete these files too." msgstr "Borra también estos ficheros." # type: textblock +#. type: textblock #: dh_compress:5 msgid "" "dh_compress - compress files and fix symlinks in package build directories" @@ -1472,6 +1662,7 @@ "directorios de contrucción de los paquetes." # type: textblock +#. type: textblock #: dh_compress:15 msgid "" "B [S>] [B<-X>I] [B<-A>] [S>]" # type: textblock +#. type: textblock #: dh_compress:19 msgid "" "dh_compress is a debhelper program that is responsible for compressing the " @@ -1494,6 +1686,7 @@ "comprimidos es actualizado para apuntar a los nuevos ficheros." # type: textblock +#. type: textblock #: dh_compress:24 #, fuzzy msgid "" @@ -1513,6 +1706,7 @@ "lib/X11/fonts/" # type: textblock +#. type: textblock #: dh_compress:31 #, fuzzy msgid "" @@ -1531,6 +1725,7 @@ "debian/package.compress cuando sea realmente necesario" # type: textblock +#. type: textblock #: dh_compress:44 msgid "" "Exclude files that contain \"item\" anywhere in their filename from being " @@ -1545,6 +1740,7 @@ "el fichero debian/compress para realizarlo, pero esto es más sencillo." # type: textblock +#. type: textblock #: dh_compress:52 msgid "" "Compress all files specified by command line parameters in ALL packages " @@ -1554,63 +1750,56 @@ "órdenesen TODOS los paquetes sobre los que se actúa." # type: textblock +#. type: textblock #: dh_compress:57 msgid "Add these files to the list of files to compress." msgstr "Añade estos ficheros a la lista de ficheros a comprimir." # type: =head1 +#. type: =head1 #: dh_compress:61 dh_perl:61 dh_python:66 dh_strip:74 dh_usrlocal:55 msgid "CONFORMS TO" msgstr "CONFORME A" # type: textblock +#. type: textblock #: dh_compress:63 msgid "Debian policy, version 3.0" msgstr "Normas de Debian, versión 3.0" -# type: textblock +#. type: textblock #: dh_desktop:5 -msgid "dh_desktop - Register .desktop files" -msgstr "dh_desktop - Registra ficheros .desktop" +msgid "dh_desktop - deprecated no-op" +msgstr "" # type: textblock +#. type: textblock #: dh_desktop:14 #, fuzzy msgid "B [S>]" msgstr "B [S>]" -# type: textblock +#. type: textblock #: dh_desktop:18 msgid "" -"dh_desktop is a debhelper program that registers .desktop files. Currently " -"this program does not handle installation of the files, though it may do so " -"at a later date. It takes care of adding maintainer script fragments to call " -"F." +"dh_desktop was a debhelper program that registers .desktop files. However, " +"it no longer does anything, and is now deprecated." msgstr "" -"dh_desktop es un programa de debhelper que registra ficheros .desktop. En " -"la actualidad no gestiona la instalación de los ficheros, aunque puede que " -"lo haga en un futuro. Se preocupa de añadir los fragmentos necesario para " -"llamar a F en los scripts del desarrollador." # type: textblock -#: dh_desktop:23 -msgid "" -"Note that since F currently only handles mime " -"types, as an optimisation, desktop files not containing MimeType fields will " -"currently be ignored by dh_desktop." -msgstr "" - -# type: textblock -#: dh_desktop:49 dh_scrollkeeper:78 +#. type: textblock +#: dh_desktop:29 dh_scrollkeeper:78 msgid "L" msgstr "L" # type: textblock -#: dh_desktop:55 dh_scrollkeeper:84 +#. type: textblock +#: dh_desktop:35 dh_scrollkeeper:84 msgid "Ross Burton " msgstr "Ross Burton " # type: textblock +#. type: textblock #: dh_fixperms:5 msgid "dh_fixperms - fix permissions of files in package build directories" msgstr "" @@ -1618,11 +1807,13 @@ "construcción." # type: textblock +#. type: textblock #: dh_fixperms:14 msgid "B [S>] [B<-X>I]" msgstr "B [S>] [B<-X>I]" # type: textblock +#. type: textblock #: dh_fixperms:18 msgid "" "dh_fixperms is a debhelper program that is responsible for setting the " @@ -1634,6 +1825,7 @@ "ficheros y directorios de los directorios de construcción del paquete." # type: textblock +#. type: textblock #: dh_fixperms:22 #, fuzzy msgid "" @@ -1656,11 +1848,13 @@ "setuid y setgid de todos los ficheros en el paquete." # type: =item +#. type: =item #: dh_fixperms:35 msgid "B<-X>I, B<--exclude> I" msgstr "B<-X>I, B<--exclude> I" # type: textblock +#. type: textblock #: dh_fixperms:37 msgid "" "Exclude files that contain \"item\" anywhere in their filename from having " @@ -1672,17 +1866,20 @@ "ficheros a excluir." # type: textblock +#. type: textblock #: dh_gconf:5 msgid "dh_gconf - generate GConf schema registration scripts" msgstr "dh_gconf - genera scripts para registrar esquemas de GConf" # type: textblock +#. type: textblock #: dh_gconf:14 #, fuzzy msgid "B [S>] [B<--priority=>]" msgstr "B [S>] [B<-p>]" # type: textblock +#. type: textblock #: dh_gconf:18 msgid "" "dh_gconf is a debhelper program that is responsible for registering GConf " @@ -1690,6 +1887,7 @@ msgstr "dh_gconf es un programa de debhelper que registra esquemas de GConf." # type: textblock +#. type: textblock #: dh_gconf:21 #, fuzzy msgid "" @@ -1703,6 +1901,7 @@ "depender de gconf2. Este programa añadirá una dependencia a ${misc:Depends}." # type: textblock +#. type: textblock #: dh_gconf:25 #, fuzzy msgid "" @@ -1716,7 +1915,22 @@ "\" reemplazado por el nombre del paquete." # type: textblock +#. type: textblock #: dh_gconf:30 +#, fuzzy +msgid "" +"If a file named debian/package.gconf-mandatory exists, then it is installed " +"into usr/share/gconf/mandatory/10_package in the package build directory, " +"with \"package\" replaced by the package name, and similar postinst and " +"postrm fragments will be generated." +msgstr "" +"Si existe un fichero llamado debian/paquete.default, se instala en etc/" +"default/paquete en el directorio de construcción del paquete, con \"paquete" +"\" reemplazado por el nombre del paquete." + +# type: textblock +#. type: textblock +#: dh_gconf:35 msgid "" "The gconf-schemas and update-gconf-defaults scripts are provided by the " "gconf2 package. An appropriate dependency will be generated in ${misc:" @@ -1724,13 +1938,15 @@ msgstr "" # type: =item -#: dh_gconf:38 +#. type: =item +#: dh_gconf:43 #, fuzzy msgid "B<--priority> I" msgstr "B<--priority=>I" # type: textblock -#: dh_gconf:40 +#. type: textblock +#: dh_gconf:45 msgid "" "Use I (which should be a 2-digit number) as the defaults priority " "instead of 10. Higher values than ten can be used by derived distributions " @@ -1738,22 +1954,26 @@ msgstr "" # type: textblock -#: dh_gconf:100 +#. type: textblock +#: dh_gconf:114 #, fuzzy msgid "Ross Burton Josselin Mouette " msgstr "Josselin Mouette " # type: textblock +#. type: textblock #: dh_gencontrol:5 msgid "dh_gencontrol - generate and install control file" msgstr "dh_gencontrol - genera e instala el fichero de control" # type: textblock +#. type: textblock #: dh_gencontrol:14 msgid "B [S>] [S I>]" msgstr "B [S>] [S I>]" # type: textblock +#. type: textblock #: dh_gencontrol:18 msgid "" "dh_gencontrol is a debhelper program that is responsible for generating " @@ -1764,6 +1984,7 @@ "control, y los instala en el directorio DEBIAN con los permisos correctos." # type: textblock +#. type: textblock #: dh_gencontrol:22 #, fuzzy msgid "" @@ -1776,27 +1997,32 @@ "opciones adicionales útiles, incluyendo \"-isp\"." # type: =item +#. type: =item #: dh_gencontrol:30 #, fuzzy msgid "B<-u>I, B<--dpkg-gencontrol-params>=I" msgstr "B<-u>I, B<--dpkg-gencontrol-params>I" # type: textblock +#. type: textblock #: dh_gencontrol:34 msgid "Pass \"params\" to L." msgstr "Pasa \"parámetros\" a L." # type: textblock +#. type: textblock #: dh_installcatalogs:5 msgid "dh_installcatalogs - install and register SGML Catalogs" msgstr "dh_installcatalogs - instala y registra catálogos SGML" # type: textblock +#. type: textblock #: dh_installcatalogs:16 msgid "B [S>] [B<-n>]" msgstr "B [S>] [B<-n>]" # type: textblock +#. type: textblock #: dh_installcatalogs:20 #, fuzzy msgid "" @@ -1809,6 +2035,7 @@ "se refiere." # type: textblock +#. type: textblock #: dh_installcatalogs:23 msgid "" "The file F.sgmlcatalogs> contains the catalogs to be " @@ -1825,6 +2052,7 @@ "share/sgml/>." # type: textblock +#. type: textblock #: dh_installcatalogs:30 msgid "" "Catalogs will be registered in a supercatalog, in F." @@ -1834,6 +2062,7 @@ "I.cat>." # type: textblock +#. type: textblock #: dh_installcatalogs:33 #, fuzzy msgid "" @@ -1852,6 +2081,7 @@ "desarrollador." # type: textblock +#. type: textblock #: dh_installcatalogs:39 msgid "" "A dependency on B will be added to C<${misc:Depends}>, so be sure " @@ -1859,21 +2089,24 @@ msgstr "" # type: =item -#: dh_installcatalogs:46 dh_installdebconf:54 dh_installdocs:60 -#: dh_installemacsen:39 dh_installinfo:46 dh_installinit:37 dh_installmenu:38 -#: dh_installmime:35 dh_installmodules:43 dh_installwm:42 dh_makeshlibs:62 -#: dh_python:60 dh_scrollkeeper:36 dh_usrlocal:43 +#. type: =item +#: dh_installcatalogs:46 dh_installdebconf:54 dh_installemacsen:39 +#: dh_installinfo:46 dh_installinit:37 dh_installmenu:38 dh_installmime:35 +#: dh_installmodules:47 dh_installwm:42 dh_makeshlibs:62 dh_python:60 +#: dh_scrollkeeper:36 dh_usrlocal:43 msgid "B<-n>, B<--noscripts>" msgstr "B<-n>, B<--noscripts>" # type: textblock +#. type: textblock #: dh_installcatalogs:48 msgid "Do not modify F/F/F scripts." msgstr "No modifica los scripts de F/F/F." # type: textblock -#: dh_installcatalogs:54 dh_installdocs:93 dh_installemacsen:56 -#: dh_installinfo:59 dh_installinit:112 dh_installmime:43 dh_installmodules:58 +#. type: textblock +#: dh_installcatalogs:54 dh_installdocs:87 dh_installemacsen:56 +#: dh_installinfo:59 dh_installinit:112 dh_installmime:43 dh_installmodules:62 #: dh_installwm:55 dh_scrollkeeper:44 dh_usrlocal:51 #, fuzzy msgid "" @@ -1886,16 +2119,19 @@ "mantenimiento contengan partes duplicadas." # type: textblock +#. type: textblock #: dh_installcatalogs:113 msgid "F" msgstr "F" # type: textblock +#. type: textblock #: dh_installcatalogs:117 msgid "Adam Di Carlo " msgstr "Adam Di Carlo " # type: textblock +#. type: textblock #: dh_installchangelogs:5 msgid "" "dh_installchangelogs - install changelogs into package build directories" @@ -1904,13 +2140,17 @@ "construcción" # type: textblock +#. type: textblock #: dh_installchangelogs:14 #, fuzzy -msgid "B [S>] [B<-k>] [I]" +msgid "" +"B [S>] [B<-k>] [B<-X>I] " +"[I]" msgstr "" "B [>] [B<-k>] [I]" # type: textblock +#. type: textblock #: dh_installchangelogs:18 msgid "" "dh_installchangelogs is a debhelper program that is responsible for " @@ -1920,6 +2160,7 @@ "ficheros de cambios en los directorios de construcción del paquete." # type: textblock +#. type: textblock #: dh_installchangelogs:21 msgid "" "dh_installchangelogs determines if the package is a debian native package, " @@ -1937,6 +2178,7 @@ "changelog, se usarán preferentemente en vez de debian/changelog.)" # type: textblock +#. type: textblock #: dh_installchangelogs:28 msgid "" "Parallelling the debian changelog handling, this program also takes care of " @@ -1949,6 +2191,7 @@ "debian/paquete.NEWS." # type: textblock +#. type: textblock #: dh_installchangelogs:33 msgid "" "An upstream changelog file may be specified as an option. If none is " @@ -1957,6 +2200,7 @@ msgstr "" # type: textblock +#. type: textblock #: dh_installchangelogs:37 #, fuzzy msgid "" @@ -1975,6 +2219,7 @@ "changelog." # type: textblock +#. type: textblock #: dh_installchangelogs:50 msgid "" "Keep the original name of the upstream changelog. This will be accomplished " @@ -1992,27 +2237,50 @@ "cambios." # type: =item -#: dh_installchangelogs:56 +#. type: =item +#: dh_installchangelogs:56 dh_installdocs:58 dh_installexamples:43 +#: dh_install:98 dh_link:57 dh_movefiles:44 +msgid "B<-Xitem>, B<--exclude=item>" +msgstr "B<-Xelemento>, B<--exclude=elemento>" + +# type: textblock +#. type: textblock +#: dh_installchangelogs:58 +#, fuzzy +msgid "" +"Exclude upstream changelog files that contain \"item\" anywhere in their " +"filename from being installed." +msgstr "" +"Los ficheros que contengan \"elemento\" en alguna parte de su nombre no se " +"instalarán." + +# type: =item +#. type: =item +#: dh_installchangelogs:61 msgid "I" msgstr "I" # type: textblock -#: dh_installchangelogs:58 +#. type: textblock +#: dh_installchangelogs:63 msgid "Install this file as the upstream changelog." msgstr "" "Instala este fichero como el fichero de cambios del desarrollador principal." # type: textblock +#. type: textblock #: dh_installcron:5 msgid "dh_installcron - install cron scripts into etc/cron.*" msgstr "dh_installcron - instala scripts para cron en etc/cron.*" # type: textblock +#. type: textblock #: dh_installcron:14 msgid "B [S>] [B<--name=>I]" msgstr "B [S>] [B<--name=>I]" # type: textblock +#. type: textblock #: dh_installcron:18 msgid "" "dh_installcron is a debhelper program that is responsible for installing " @@ -2027,12 +2295,14 @@ "cron.d." # type: =item +#. type: =item #: dh_installcron:28 dh_installinit:83 dh_installlogrotate:26 -#: dh_installmodules:47 dh_installpam:28 dh_installppp:30 +#: dh_installmodules:51 dh_installpam:28 dh_installppp:30 msgid "B<--name=>I" msgstr "B<--name=>I" # type: textblock +#. type: textblock #: dh_installcron:30 msgid "" "Look for files named debian/package.name.cron.* and install them as etc/cron." @@ -2044,6 +2314,7 @@ "nombre del paquete." # type: textblock +#. type: textblock #: dh_installdebconf:5 msgid "" "dh_installdebconf - install files used by debconf in package build " @@ -2053,6 +2324,7 @@ "de construcción" # type: textblock +#. type: textblock #: dh_installdebconf:14 msgid "" "B [S>] [B<-n>] [S I>]" @@ -2061,6 +2333,7 @@ "I>]" # type: textblock +#. type: textblock #: dh_installdebconf:18 msgid "" "dh_installdebconf is a debhelper program that is responsible for installing " @@ -2071,6 +2344,7 @@ "del paquete." # type: textblock +#. type: textblock #: dh_installdebconf:21 #, fuzzy msgid "" @@ -2083,6 +2357,7 @@ "acerca de como funciona esto." # type: textblock +#. type: textblock #: dh_installdebconf:26 msgid "" "Files named debian/package.config and debian/package.templates are installed " @@ -2105,6 +2380,7 @@ "scripts línea de órdenes." # type: textblock +#. type: textblock #: dh_installdebconf:35 msgid "" "Note that if you use debconf, your package probably needs to depend on it " @@ -2114,6 +2390,7 @@ "(será añadido a ${misc:Depends} por este programa)." # type: textblock +#. type: textblock #: dh_installdebconf:38 msgid "" "Note that for your config script to be called by dpkg, your postinst needs " @@ -2126,11 +2403,13 @@ "automáticamente porque es demasiado difícil hacerlo bien." # type: =head1 +#. type: =head1 #: dh_installdebconf:43 msgid "LOCALIZED TEMPLATE FILES" msgstr "FICHEROS DE PLANTILLAS TRADUCIDOS" # type: textblock +#. type: textblock #: dh_installdebconf:45 #, fuzzy msgid "" @@ -2145,27 +2424,32 @@ "antiguo L para juntarlos." # type: textblock +#. type: textblock #: dh_installdebconf:56 msgid "Do not modify postrm script." msgstr "No modifica el script de postrm." # type: textblock +#. type: textblock #: dh_installdebconf:60 #, fuzzy msgid "Pass the params to po2debconf." msgstr "Pasa \"parámetros\" a L." # type: textblock +#. type: textblock #: dh_installdeb:5 msgid "dh_installdeb - install files into the DEBIAN directory" msgstr "dh_installdeb - instala ficheros en el directorio DEBIAN" # type: textblock +#. type: textblock #: dh_installdeb:14 msgid "B [S>]" msgstr "B [S>]" # type: textblock +#. type: textblock #: dh_installdeb:18 msgid "" "dh_installdeb is a debhelper program that is responsible for installing " @@ -2177,6 +2461,7 @@ "los permisos correctos." # type: verbatim +#. type: verbatim #: dh_installdeb:22 #, fuzzy, no-wrap msgid "" @@ -2202,6 +2487,7 @@ "\n" # type: textblock +#. type: textblock #: dh_installdeb:32 msgid "" "The postinst, preinst, postrm, and prerm are handled specially: If a " @@ -2223,6 +2509,7 @@ "L, y son fragmentos de scripts de shell." # type: textblock +#. type: textblock #: dh_installdeb:40 msgid "" "In V3 compatibility mode and higher, all files in the etc/ directory in a " @@ -2235,17 +2522,20 @@ "conffiles." # type: textblock +#. type: textblock #: dh_installdirs:5 msgid "dh_installdirs - create subdirectories in package build directories" msgstr "" "dh_installdirs - crea subdirectorios en los directorios de construcción" # type: textblock +#. type: textblock #: dh_installdirs:14 msgid "B [S>] [B<-A>] [S>]" msgstr "B [S>] [B<-A>] [S>]" # type: textblock +#. type: textblock #: dh_installdirs:18 msgid "" "dh_installdirs is a debhelper program that is responsible for creating " @@ -2255,6 +2545,7 @@ "subdirectorios en los directorios de construcción del paquete." # type: textblock +#. type: textblock #: dh_installdirs:21 #, fuzzy msgid "A file named debian/package.dirs can list directories to be created." @@ -2262,6 +2553,7 @@ "Los ficheros debian/paquete.docs pueden listar otros ficheros a instalar." # type: textblock +#. type: textblock #: dh_installdirs:23 msgid "" "Any directory names specified as parameters will be created in the package " @@ -2276,6 +2568,7 @@ "por esas opciones." # type: textblock +#. type: textblock #: dh_installdirs:34 msgid "" "Create any directories specified by command line parameters in ALL packages " @@ -2285,11 +2578,13 @@ "de órdenes en TODOS los paquetes sobre los que actúe, no sólo en el primero." # type: =item +#. type: =item #: dh_installdirs:37 msgid "I" msgstr "I" # type: textblock +#. type: textblock #: dh_installdirs:39 msgid "" "Create these directories in the package build directory of the first package " @@ -2299,21 +2594,25 @@ "sobre el que se actúe. (O en todos los paquetes si se especifica -A)." # type: textblock +#. type: textblock #: dh_installdocs:5 msgid "dh_installdocs - install documentation into package build directories" msgstr "" "dh_installdocs - instala documentación en los directorios de construcción" # type: textblock +#. type: textblock #: dh_installdocs:14 +#, fuzzy msgid "" -"B [S>] [B<-A>] [B<-n>] [B<-X>I] " +"B [S>] [B<-A>] [B<-X>I] " "[S>]" msgstr "" "B [S>] [B<-A>] [B<-n>] [B<-" "X>I] [S>]" # type: textblock +#. type: textblock #: dh_installdocs:18 msgid "" "dh_installdocs is a debhelper program that is responsible for installing " @@ -2324,6 +2623,7 @@ "del paquete." # type: textblock +#. type: textblock #: dh_installdocs:21 msgid "" "dh_installdocs automatically installs debian/copyright if it exists. If " @@ -2339,6 +2639,7 @@ "paquete.copyright." # type: textblock +#. type: textblock #: dh_installdocs:27 msgid "" "Any filenames specified as parameters will be installed into the first " @@ -2352,6 +2653,7 @@ "B<-i>, o B<-a>, será el primer paquete especificado por estas." # type: textblock +#. type: textblock #: dh_installdocs:32 msgid "" "Also, debian/README.Debian (or debian/README.debian) and debian/TODO, if " @@ -2371,19 +2673,20 @@ "paquete.TODO pueden usarse para especificar ficheros para subpaquetes." # type: textblock +#. type: textblock #: dh_installdocs:40 msgid "Files named debian/package.docs can list other files to be installed." msgstr "" "Los ficheros debian/paquete.docs pueden listar otros ficheros a instalar." # type: textblock +#. type: textblock #: dh_installdocs:42 +#, fuzzy msgid "" "Files named debian/package.doc-base, will be installed as doc-base control " -"files, and will make this program automatically generate the postinst and " -"prerm commands needed to interface with the doc-base package. Note that the " -"doc-id will be determined from the \"Document:\" entry in the doc-base " -"control file in question." +"files. Note that the doc-id will be determined from the \"Document:\" entry " +"in the doc-base control file in question." msgstr "" "Los ficheros debian/paquete.doc-base, se instalarán como ficheros de control " "de doc-base, y hará que el programa genere automáticamente las órdenes de " @@ -2392,7 +2695,8 @@ "control de doc-base en cuestión." # type: textblock -#: dh_installdocs:48 +#. type: textblock +#: dh_installdocs:46 msgid "" "If your package needs to register more than one document, you need multiple " "files. To accomplish this, you can use files named debian/package.doc-base.*" @@ -2401,7 +2705,8 @@ "ficheros. Para esto puede usar ficheros llamados debian/paquete.doc-base.*" # type: textblock -#: dh_installdocs:57 dh_installinfo:43 dh_installman:64 +#. type: textblock +#: dh_installdocs:55 dh_installinfo:43 dh_installman:64 msgid "" "Install all files specified by command line parameters in ALL packages acted " "on." @@ -2410,18 +2715,8 @@ "órdenes en TODOS los paquetes sobre los que actúe." # type: textblock -#: dh_installdocs:62 dh_installemacsen:41 dh_installinfo:48 -msgid "Do not modify postinst/prerm scripts." -msgstr "No modifica los scripts de postinst/prerm." - -# type: =item -#: dh_installdocs:64 dh_installexamples:43 dh_install:51 dh_link:57 -#: dh_movefiles:44 -msgid "B<-Xitem>, B<--exclude=item>" -msgstr "B<-Xelemento>, B<--exclude=elemento>" - -# type: textblock -#: dh_installdocs:66 +#. type: textblock +#: dh_installdocs:60 #, fuzzy msgid "" "Exclude files that contain \"item\" anywhere in their filename from being " @@ -2431,7 +2726,8 @@ "de ser listados en el fichero md5sums." # type: textblock -#: dh_installdocs:71 +#. type: textblock +#: dh_installdocs:65 msgid "" "Install these files as documentation into the first package acted on. (Or in " "all packages if B<-A> is specified)." @@ -2440,18 +2736,21 @@ "actúe. (O en todos si se especifica B<-A>)." # type: =head1 -#: dh_installdocs:76 dh_link:70 dh_makeshlibs:82 dh_shlibdeps:66 +#. type: =head1 +#: dh_installdocs:70 dh_link:70 dh_makeshlibs:82 dh_shlibdeps:66 msgid "EXAMPLES" msgstr "EJEMPLOS" # type: textblock -#: dh_installdocs:78 +#. type: textblock +#: dh_installdocs:72 msgid "This is an example of a debian/package.docs file:" msgstr "" "A continuación se muestra un ejemplo de un fichero debian/paquete.docs:" # type: verbatim -#: dh_installdocs:80 +#. type: verbatim +#: dh_installdocs:74 #, no-wrap msgid "" " README\n" @@ -2471,7 +2770,8 @@ "\n" # type: textblock -#: dh_installdocs:89 +#. type: textblock +#: dh_installdocs:83 msgid "" "Note that dh_installdocs will happily copy entire directory hierarchies if " "you ask it to (similar to cp -a). If it is asked to install a directory, it " @@ -2482,11 +2782,13 @@ "un directorio instalará todos sus contenidos." # type: textblock +#. type: textblock #: dh_installemacsen:5 msgid "dh_installemacsen - register an emacs add on package" msgstr "dh_installemacsen - registra un paquete añadido para emacs" # type: textblock +#. type: textblock #: dh_installemacsen:14 msgid "" "B [S>] [B<-n>] [B<--priority=>I] " @@ -2496,6 +2798,7 @@ "[B<--flavor=>I]" # type: textblock +#. type: textblock #: dh_installemacsen:18 msgid "" "dh_installemacsen is a debhelper program that is responsible for installing " @@ -2507,6 +2810,7 @@ "de construcción del paquete." # type: textblock +#. type: textblock #: dh_installemacsen:22 #, fuzzy msgid "" @@ -2520,6 +2824,7 @@ "> para una explicación acerca de como funciona esto." # type: textblock +#. type: textblock #: dh_installemacsen:27 msgid "" "If a file named debian/package.emacsen-install exists, then it is installed " @@ -2536,12 +2841,20 @@ "paquete.emacsen-startup se instala en etc/emacs/site-start.d/50.el " "(por omisión)." +# type: textblock +#. type: textblock +#: dh_installemacsen:41 dh_installinfo:48 +msgid "Do not modify postinst/prerm scripts." +msgstr "No modifica los scripts de postinst/prerm." + # type: =item +#. type: =item #: dh_installemacsen:43 dh_installwm:36 msgid "B<--priority=>I" msgstr "B<--priority=>I" # type: textblock +#. type: textblock #: dh_installemacsen:45 msgid "Sets the priority number of a site-start.d file. Default is 50." msgstr "" @@ -2549,11 +2862,13 @@ "predeterminado." # type: =item +#. type: =item #: dh_installemacsen:47 msgid "B<--flavor=>I" msgstr "B<--flavor=>I" # type: textblock +#. type: textblock #: dh_installemacsen:49 msgid "" "Sets the flavor a site-start.d file will be installed in. Default is \"emacs" @@ -2563,6 +2878,7 @@ "omisión es \"emacs\", las alternativas son \"xemacs\" y \"emacs20\"." # type: textblock +#. type: textblock #: dh_installexamples:5 msgid "" "dh_installexamples - install example files into package build directories" @@ -2571,6 +2887,7 @@ "construcción" # type: textblock +#. type: textblock #: dh_installexamples:14 msgid "" "B [S>] [B<-A>] [B<-X>I] " @@ -2580,6 +2897,7 @@ "[S>]" # type: textblock +#. type: textblock #: dh_installexamples:18 msgid "" "dh_installexamples is a debhelper program that is responsible for installing " @@ -2590,6 +2908,7 @@ "construcción del paquete." # type: textblock +#. type: textblock #: dh_installexamples:22 msgid "" "Any file names specified as parameters will be installed into the first " @@ -2603,6 +2922,7 @@ "B<-p>, B<-i>, o B<-a>, será el primer paquete especificado por estas." # type: textblock +#. type: textblock #: dh_installexamples:27 msgid "" "Files named debian/package.examples can list other files to be installed." @@ -2610,6 +2930,7 @@ "Los ficheros debian/paquete.examples pueden listar otros ficheros a instalar." # type: textblock +#. type: textblock #: dh_installexamples:35 msgid "" "Install any files specified by command line parameters in ALL packages acted " @@ -2619,6 +2940,7 @@ "órdenes en TODOS los paquetes sobre los que actúe." # type: textblock +#. type: textblock #: dh_installexamples:40 msgid "" "Install these files as examples into the first package acted on. (Or into " @@ -2628,7 +2950,8 @@ "actúe. (O en todos si se especifica B<-A>)." # type: textblock -#: dh_installexamples:45 dh_install:53 dh_movefiles:46 +#. type: textblock +#: dh_installexamples:45 dh_install:100 dh_movefiles:46 msgid "" "Exclude files that contain \"item\" anywhere in their filename from being " "installed." @@ -2637,6 +2960,7 @@ "instalarán." # type: textblock +#. type: textblock #: dh_installexamples:52 msgid "" "Note that dh_installexamples will happily copy entire directory hierarchies " @@ -2648,11 +2972,13 @@ "un directorio instalará todos sus contenidos." # type: textblock +#. type: textblock #: dh_installinfo:5 msgid "dh_installinfo - install and register info files" msgstr "dh_installinfo - instala y registra ficheros info" # type: textblock +#. type: textblock #: dh_installinfo:14 msgid "" "B [S>] [B<-A>] [B<-n>] [S>]" @@ -2661,6 +2987,7 @@ ">>]" # type: textblock +#. type: textblock #: dh_installinfo:18 msgid "" "dh_installinfo is a debhelper program that is responsible for installing " @@ -2670,6 +2997,7 @@ "ficheros info y de registrar los ficheros que instala con install-info." # type: textblock +#. type: textblock #: dh_installinfo:21 #, fuzzy msgid "" @@ -2682,6 +3010,7 @@ "pertenece el fichero info." # type: textblock +#. type: textblock #: dh_installinfo:25 msgid "" "Any filenames specified as parameters will be installed into the first " @@ -2695,6 +3024,7 @@ "será el primer paquete listado en esas opciones." # type: textblock +#. type: textblock #: dh_installinfo:30 msgid "Files named debian/package.info can list other files to be installed." msgstr "" @@ -2702,6 +3032,7 @@ "instalar." # type: textblock +#. type: textblock #: dh_installinfo:32 #, fuzzy msgid "" @@ -2715,6 +3046,7 @@ "L para una explicación acerca de como funciona esto." # type: textblock +#. type: textblock #: dh_installinfo:52 msgid "" "Install these info files into the first package acted on. (Or in all " @@ -2724,12 +3056,14 @@ "todos los paquete si se especifica -A)." # type: textblock +#. type: textblock #: dh_installinit:5 msgid "dh_installinit - install init scripts into package build directories" msgstr "" "dh_installinit - instala scripts de init en los directorios de construcción" # type: textblock +#. type: textblock #: dh_installinit:14 #, fuzzy msgid "" @@ -2740,6 +3074,7 @@ "[B<-r>] [B<-d>] [S I>]" # type: textblock +#. type: textblock #: dh_installinit:18 msgid "" "dh_installinit is a debhelper program that is responsible for installing " @@ -2750,6 +3085,7 @@ "construcción del paquete." # type: textblock +#. type: textblock #: dh_installinit:21 msgid "" "It also automatically generates the postinst and postrm and prerm commands " @@ -2761,6 +3097,7 @@ "de init." # type: textblock +#. type: textblock #: dh_installinit:25 msgid "" "If a file named debian/package.init exists, then it is installed into etc/" @@ -2772,6 +3109,7 @@ "por el nombre del paquete." # type: textblock +#. type: textblock #: dh_installinit:29 msgid "" "If a file named debian/package.default exists, then it is installed into etc/" @@ -2783,17 +3121,20 @@ "\" reemplazado por el nombre del paquete." # type: textblock +#. type: textblock #: dh_installinit:39 msgid "Do not modify postinst/postrm/prerm scripts." msgstr "No modifica los scripts de postinst/postrm/prerm." # type: =item +#. type: =item #: dh_installinit:41 #, fuzzy msgid "B<-o>, B<--onlyscripts>" msgstr "B<-n>, B<--noscripts>" # type: textblock +#. type: textblock #: dh_installinit:43 msgid "" "Only modify postinst/postrm/prerm scripts, do not actually install any init " @@ -2803,12 +3144,14 @@ msgstr "" # type: =item +#. type: =item #: dh_installinit:48 #, fuzzy msgid "B<-R>, B<--restart-after-upgrade>" msgstr "B<-r>, B<--no-restart-on-upgrade>" # type: textblock +#. type: textblock #: dh_installinit:50 msgid "" "Do not stop the init script until after the package upgrade has been " @@ -2817,6 +3160,7 @@ msgstr "" # type: textblock +#. type: textblock #: dh_installinit:54 msgid "" "This can be useful for daemons that should not have a possibly long downtime " @@ -2826,22 +3170,26 @@ msgstr "" # type: =item +#. type: =item #: dh_installinit:59 msgid "B<-r>, B<--no-restart-on-upgrade>" msgstr "B<-r>, B<--no-restart-on-upgrade>" # type: textblock +#. type: textblock #: dh_installinit:61 #, fuzzy msgid "Do not stop init script on upgrade." msgstr "No reinicia el script de init después de una actualización." # type: =item +#. type: =item #: dh_installinit:63 msgid "B<--no-start>" msgstr "B<--no-start>" # type: textblock +#. type: textblock #: dh_installinit:65 msgid "" "Do not start the init script on install or upgrade, or stop it on removal. " @@ -2851,11 +3199,13 @@ "cuando se desinstale. Sólo llama a update-rc.d. Útil para scripts de rcS." # type: =item +#. type: =item #: dh_installinit:68 msgid "B<-d>, B<--remove-d>" msgstr "B<-d>, B<--remove-d>" # type: textblock +#. type: textblock #: dh_installinit:70 msgid "" "Remove trailing \"d\" from the name of the package, and use the result for " @@ -2871,11 +3221,13 @@ "preferencia sobre --init-script)." # type: =item +#. type: =item #: dh_installinit:76 msgid "B<-u>I B<--update-rcd-params=>I" msgstr "B<-u>I B<--update-rcd-params=>I" # type: textblock +#. type: textblock #: dh_installinit:80 msgid "" "Pass \"params\" to L. If not specified, \"defaults\" will be " @@ -2885,6 +3237,7 @@ "\"defaults\" a L." # type: textblock +#. type: textblock #: dh_installinit:85 msgid "" "Install the init script (and default file) using the filename I " @@ -2900,11 +3253,13 @@ "debian/paquete.init y debian/paquete.default, y los instala." # type: =item +#. type: =item #: dh_installinit:91 msgid "B<--init-script=>I" msgstr "B<--init-script=>I" # type: textblock +#. type: textblock #: dh_installinit:93 msgid "" "Use \"scriptname\" as the filename the init script is installed as in etc/" @@ -2922,16 +3277,19 @@ "que instala normalmente." # type: textblock +#. type: textblock #: dh_installinit:100 msgid "This parameter is deprecated, use the --name parameter instead." msgstr "Se desaconseja el uso de esta opción, use --name en su lugar." # type: =item +#. type: =item #: dh_installinit:102 msgid "B<--error-handler=>I" msgstr "B<--error-handler=>I" # type: textblock +#. type: textblock #: dh_installinit:104 msgid "" "Call the named shell function if running the init script fails. The function " @@ -2943,6 +3301,7 @@ "símbolo #DEBHELPER#." # type: textblock +#. type: textblock #: dh_installlogcheck:5 msgid "dh_installlogcheck - install logcheck rulefiles into etc/logcheck/" msgstr "" @@ -2950,11 +3309,13 @@ "logcheck/" # type: textblock +#. type: textblock #: dh_installlogcheck:14 msgid "B [S>]" msgstr "B [S>]" # type: textblock +#. type: textblock #: dh_installlogcheck:18 #, fuzzy msgid "" @@ -2974,6 +3335,7 @@ "instalan si están presentes." # type: verbatim +#. type: verbatim #: dh_installlogcheck:55 #, no-wrap msgid "" @@ -2984,22 +3346,26 @@ " \n" # type: textblock +#. type: textblock #: dh_installlogcheck:59 msgid "Jon Middleton " msgstr "Jon Middleton " # type: textblock +#. type: textblock #: dh_installlogrotate:5 msgid "dh_installlogrotate - install logrotate config files" msgstr "dh_installlogrotate - instala ficheros de configuración de logrotate" # type: textblock +#. type: textblock #: dh_installlogrotate:14 msgid "B [S>] [B<--name=>I]" msgstr "" "B [S>] [B<--name=>I]" # type: textblock +#. type: textblock #: dh_installlogrotate:18 msgid "" "dh_installlogrotate is a debhelper program that is responsible for " @@ -3012,6 +3378,7 @@ "paquete.logrotate." # type: textblock +#. type: textblock #: dh_installlogrotate:28 msgid "" "Look for files named debian/package.name.logrotate and install them as etc/" @@ -3023,16 +3390,19 @@ "instalarlos con el nombre del paquete." # type: textblock +#. type: textblock #: dh_installmanpages:5 msgid "dh_installmanpages - old-style man page installer" msgstr "dh_installmanpages - instalador al viejo estilo de páginas del manual" # type: textblock +#. type: textblock #: dh_installmanpages:15 msgid "B [S>] [S>]" msgstr "B [S>] [S>]" # type: textblock +#. type: textblock #: dh_installmanpages:19 msgid "" "dh_installmanpages is a debhelper program that is responsible for " @@ -3044,6 +3414,7 @@ "los directorios de construcción del paquete." # type: textblock +#. type: textblock #: dh_installmanpages:23 msgid "" "This is a DWIM-style program, with an interface unlike the rest of " @@ -3056,6 +3427,7 @@ "uso de L." # type: textblock +#. type: textblock #: dh_installmanpages:27 msgid "" "dh_installmanpages scans the current directory and all subdirectories for " @@ -3072,6 +3444,7 @@ "instala en los directorios correctos." # type: textblock +#. type: textblock #: dh_installmanpages:33 msgid "" "All filenames specified as parameters will be skipped by " @@ -3083,6 +3456,7 @@ "manual que no quiere instalar." # type: textblock +#. type: textblock #: dh_installmanpages:37 msgid "" "After the man page installation step, dh_installmanpages will check to see " @@ -3096,6 +3470,7 @@ "simbólicos." # type: textblock +#. type: textblock #: dh_installmanpages:46 msgid "" "Do not install these files as man pages, even if they look like valid man " @@ -3105,11 +3480,13 @@ "páginas del manual válidas." # type: =head1 +#. type: =head1 #: dh_installmanpages:51 msgid "BUGS" msgstr "FALLOS" # type: textblock +#. type: textblock #: dh_installmanpages:53 msgid "" "dh_installmanpages will install the man pages it finds into B packages " @@ -3124,11 +3501,13 @@ "lugar)." # type: textblock +#. type: textblock #: dh_installmanpages:58 msgid "Files ending in I<.man> will be ignored." msgstr "Se ignorarán ficheros que terminen con I<.man>." # type: textblock +#. type: textblock #: dh_installmanpages:60 msgid "" "Files specified as parameters that contain spaces in their filenames will " @@ -3138,17 +3517,20 @@ "so se procesarán correctamente." # type: textblock +#. type: textblock #: dh_installman:5 msgid "dh_installman - install man pages into package build directories" msgstr "" "dh_installman - instala páginas de manual en los directorios de construcción" # type: textblock +#. type: textblock #: dh_installman:15 msgid "B [S>] [S>]" msgstr "B [S>] [S>]" # type: textblock +#. type: textblock #: dh_installman:19 msgid "" "dh_installman is a debhelper program that handles installing man pages into " @@ -3172,6 +3554,7 @@ "o falta, probablemente lo adivine mal basándose en la extensión." # type: textblock +#. type: textblock #: dh_installman:29 #, fuzzy msgid "" @@ -3182,6 +3565,7 @@ "ll.8 y .ll_LL.8" # type: textblock +#. type: textblock #: dh_installman:32 #, fuzzy msgid "" @@ -3206,6 +3590,7 @@ "ese tipo." # type: textblock +#. type: textblock #: dh_installman:41 msgid "" "Any man page filenames specified as parameters will be installed into the " @@ -3219,6 +3604,7 @@ "-a, será el primer paquete especificado por estas opciones." # type: textblock +#. type: textblock #: dh_installman:46 msgid "" "Files named debian/package.manpages can list other man pages to be installed." @@ -3227,6 +3613,7 @@ "manual a instalar." # type: textblock +#. type: textblock #: dh_installman:49 msgid "" "After the man page installation step, dh_installman will check to see if any " @@ -3239,6 +3626,7 @@ "\".so\". Si es así, los cambia por enlaces simbólicos." # type: textblock +#. type: textblock #: dh_installman:53 msgid "" "Also, dh_installman will use man to guess the character encoding of each " @@ -3248,11 +3636,13 @@ msgstr "" # type: =item +#. type: =item #: dh_installman:67 msgid "B<--language>=ll" msgstr "" # type: textblock +#. type: textblock #: dh_installman:69 msgid "" "Use this to specify that the man pages being acted on are written in the " @@ -3260,11 +3650,13 @@ msgstr "" # type: =item +#. type: =item #: dh_installman:72 msgid "I" msgstr "I" # type: textblock +#. type: textblock #: dh_installman:74 msgid "" "Install these man pages into the first package acted on. (Or in all packages " @@ -3274,6 +3666,7 @@ "en todos si se a especificado -A)." # type: textblock +#. type: textblock #: dh_installman:81 msgid "" "An older version of this program, L, is still used by " @@ -3287,6 +3680,7 @@ "intuitivo e inconsistente. Use este programa en su lugar." # type: textblock +#. type: textblock #: dh_installmenu:5 msgid "" "dh_installmenu - install debian menu files into package build directories" @@ -3295,11 +3689,13 @@ "construcción" # type: textblock +#. type: textblock #: dh_installmenu:14 msgid "B [S>] [B<-n>]" msgstr "B [S>] [B<-n>]" # type: textblock +#. type: textblock #: dh_installmenu:18 msgid "" "dh_installmenu is a debhelper program that is responsible for installing " @@ -3310,6 +3706,7 @@ "paquete." # type: textblock +#. type: textblock #: dh_installmenu:21 #, fuzzy msgid "" @@ -3318,11 +3715,12 @@ "maintainer scripts by dh_installdeb. See L for an " "explanation of how this works." msgstr "" -"Además genera automáticamente las ordenes de postinst y postrm necesarias " -"para interaccionar con el paquete menu de Debian. Lea L " -"para una explicación acerca de como funciona esto." +"Además genera automáticamente las órdenes de postinst y postrm necesarias " +"para interactuar con los paquetes mime-support y shared-mime-info. Lea " +"L para una explicación acerca de como funciona esto." # type: textblock +#. type: textblock #: dh_installmenu:26 msgid "" "If a file named debian/package.menu exists, then it is installed into usr/" @@ -3334,6 +3732,7 @@ "Debian. Lea L para detalles acerca del formato." # type: textblock +#. type: textblock #: dh_installmenu:30 msgid "" "If a file named debian/package.menu-method exits, then it is installed into " @@ -3345,28 +3744,33 @@ "un fichero de método de menú de Debian." # type: textblock -#: dh_installmenu:40 dh_installmime:37 dh_installmodules:45 dh_makeshlibs:64 +#. type: textblock +#: dh_installmenu:40 dh_installmime:37 dh_installmodules:49 dh_makeshlibs:64 #: dh_python:62 msgid "Do not modify postinst/postrm scripts." msgstr "No modifica los scripts postinst/postrm." # type: textblock +#. type: textblock #: dh_installmenu:82 msgid "L L L" msgstr "L L L" # type: textblock +#. type: textblock #: dh_installmime:5 msgid "dh_installmime - install mime files into package build directories" msgstr "" "dh_installmime - instala ficheros mime en los directorios de construcción" # type: textblock +#. type: textblock #: dh_installmime:14 msgid "B [S>] [B<-n>]" msgstr "B [S>] [B<-n>]" # type: textblock +#. type: textblock #: dh_installmime:18 msgid "" "dh_installmime is a debhelper program that is responsible for installing " @@ -3376,6 +3780,7 @@ "mime en los directorios de construcción del paquete." # type: textblock +#. type: textblock #: dh_installmime:21 #, fuzzy msgid "" @@ -3389,6 +3794,7 @@ "L para una explicación acerca de como funciona esto." # type: textblock +#. type: textblock #: dh_installmime:26 msgid "" "If files named debian/package.mime or debian/package.sharedmimeinfo exist, " @@ -3401,11 +3807,13 @@ "del paquete." # type: textblock +#. type: textblock #: dh_installmodules:5 msgid "dh_installmodules - register modules with modutils" msgstr "dh_installmodules - registra módulos con modutils" # type: textblock +#. type: textblock #: dh_installmodules:16 msgid "" "B [S>] [B<-n>] [B<--name=>I]" @@ -3413,6 +3821,7 @@ "B [S>] [B<-n>] [B<--name=>I]" # type: textblock +#. type: textblock #: dh_installmodules:20 #, fuzzy msgid "" @@ -3423,12 +3832,13 @@ "módulos del núcleo con modutils." # type: textblock +#. type: textblock #: dh_installmodules:23 #, fuzzy msgid "" "Files named debian/package.modprobe will be installed in etc/modprobe.d/" -"package in the package build directory, to be used by module-init-tools's " -"version of modprobe." +"package.conf in the package build directory, to be used by module-init-" +"tools's version of modprobe." msgstr "" "Los ficheros llamados debian/paquete.modules se instalarán como etc/modutils/" "paquete en el directorio de construcción del paquete. Modutils usa estos " @@ -3437,6 +3847,7 @@ "usará la versión module-init-tools de modprobe." # type: textblock +#. type: textblock #: dh_installmodules:27 #, fuzzy msgid "" @@ -3451,8 +3862,18 @@ "para una explicación acerca de como funciona esto." # type: textblock +#. type: textblock #: dh_installmodules:33 msgid "" +"Previous versions of dh_installmodules installed files named etc/modprobe.d/" +"package, code is added to the preinst and postinst to handle the upgrade " +"from the old location." +msgstr "" + +# type: textblock +#. type: textblock +#: dh_installmodules:37 +msgid "" "Previous versions of dh_installmodules also supported files named debian/" "package.modules, which were installed into etc/modutils/package in the " "package build directory. This was for use by modutils, which is no longer in " @@ -3460,7 +3881,8 @@ msgstr "" # type: textblock -#: dh_installmodules:49 +#. type: textblock +#: dh_installmodules:53 #, fuzzy msgid "" "When this parameter is used, dh_installmodules looks for and installs files " @@ -3472,17 +3894,20 @@ "debian/paquete.nombre.modules en vez del usual debian/paquete.modules." # type: textblock +#. type: textblock #: dh_installpam:5 msgid "dh_installpam - install pam support files" msgstr "dh_installpam - instala ficheros de soporte para pam" # type: textblock +#. type: textblock #: dh_installpam:14 msgid "B [S>] [B<--name=>I]" msgstr "" "B [S>] [B<-n>] [B<--name=>I]" # type: textblock +#. type: textblock #: dh_installpam:18 msgid "" "dh_installpam is a debhelper program that is responsible for installing " @@ -3492,6 +3917,7 @@ "usados por PAM en los directorios de construcción del paquete." # type: textblock +#. type: textblock #: dh_installpam:21 msgid "" "If a file named debian/package.pam exists, then it is installed into etc/pam." @@ -3501,6 +3927,7 @@ "paquete en el directorio de construcción del paquete." # type: textblock +#. type: textblock #: dh_installpam:30 msgid "" "Look for files named debian/package.name.pam and install them as etc/pam.d/" @@ -3512,12 +3939,14 @@ "nombre del paquete." # type: textblock +#. type: textblock #: dh_install:5 msgid "dh_install - install files into package build directories" msgstr "" "dh_install - instala ficheros en los directorios de construcción del paquete" # type: textblock +#. type: textblock #: dh_install:15 msgid "" "B [B<-X>I] [B<--autodest>] [B<--sourcedir=>I] " @@ -3527,6 +3956,7 @@ "[S>] [S>]" # type: textblock +#. type: textblock #: dh_install:19 msgid "" "dh_install is a debhelper program that handles installing files into package " @@ -3546,6 +3976,7 @@ "ninguna habilidad especial. Es un reemplazo de la antigua orden dh_movefiles." # type: textblock +#. type: textblock #: dh_install:27 msgid "" "Files named debian/package.install list the files to install into each " @@ -3567,6 +3998,7 @@ "ficheros a instalar (en modo v3 o superior)." # type: textblock +#. type: textblock #: dh_install:36 msgid "" "This program may be used in one of two ways. If you just have a file or two " @@ -3585,20 +4017,23 @@ "los directorios de construcción del paquete correctos." # type: textblock +#. type: textblock #: dh_install:43 msgid "" "From debhelper compatibility level 7 on, dh_install will fall back to " "looking in debian/tmp for files, if it doesn't find them in the current " -"directory (or whereever you've told it to look using --srcdir)." +"directory (or whereever you've told it to look using --sourcedir)." msgstr "" # type: =item -#: dh_install:56 +#. type: =item +#: dh_install:51 msgid "B<--autodest>" msgstr "B<--autodest>" # type: textblock -#: dh_install:58 +#. type: textblock +#: dh_install:53 msgid "" "Guess as the destination directory to install things to. If this is " "specified, you should not list destination directories in debian/package." @@ -3611,7 +4046,8 @@ "siguiente modo:" # type: textblock -#: dh_install:63 +#. type: textblock +#: dh_install:58 msgid "" "Strip off debian/tmp (or the sourcedir if one is given) from the front of " "the filename, if it is present, and install into the dirname of the " @@ -3627,7 +4063,8 @@ "etc/." # type: textblock -#: dh_install:69 +#. type: textblock +#: dh_install:64 msgid "" "Note that if you list exactly one filename or wildcard-pattern on a line by " "itself in a debian/package.install file, with no explicit destination, then " @@ -3640,11 +4077,30 @@ "ha usado esta opción." # type: =item +#. type: =item +#: dh_install:69 +msgid "B<--fail-missing>" +msgstr "B<--fail-missing>" + +# type: textblock +#. type: textblock +#: dh_install:71 +msgid "" +"This option is like --list-missing, except if a file was missed, it will not " +"only list the missing files, but also fail with a nonzero exit code." +msgstr "" +"Esta opción es como --list-missing, excepto que si se olvida un fichero, no " +"sólo se listarán los ficheros olvidados, sino que además se devolverá un " +"código de salida distinto de cero." + +# type: =item +#. type: =item #: dh_install:74 msgid "B<--list-missing>" msgstr "B<--list-missing>" # type: textblock +#. type: textblock #: dh_install:76 msgid "" "This option makes dh_install keep track of the files it installs, and then " @@ -3659,6 +4115,7 @@ "estándar." # type: textblock +#. type: textblock #: dh_install:81 msgid "" "This may be useful if you have a large package and want to make sure that " @@ -3669,6 +4126,7 @@ "programa." # type: textblock +#. type: textblock #: dh_install:84 msgid "" "Note that files that are excluded from being moved via the -X option are not " @@ -3678,27 +4136,14 @@ "X." # type: =item +#. type: =item #: dh_install:87 -msgid "B<--fail-missing>" -msgstr "B<--fail-missing>" - -# type: textblock -#: dh_install:89 -msgid "" -"This option is like --list-missing, except if a file was missed, it will not " -"only list the missing files, but also fail with a nonzero exit code." -msgstr "" -"Esta opción es como --list-missing, excepto que si se olvida un fichero, no " -"sólo se listarán los ficheros olvidados, sino que además se devolverá un " -"código de salida distinto de cero." - -# type: =item -#: dh_install:92 msgid "B<--sourcedir=dir>" msgstr "B<--sourcedir=dir>" # type: textblock -#: dh_install:94 +#. type: textblock +#: dh_install:89 msgid "" "Makes all source files be found under dir. If this is specified, it is akin " "to all the source filenames having \"dir/\" prepended to them." @@ -3707,7 +4152,8 @@ "es parecido a anteponer \"dir/\" a todos los nombres de los ficheros fuente." # type: textblock -#: dh_install:97 +#. type: textblock +#: dh_install:92 msgid "" "To make dh_install behave like the old dh_movefiles, move your package.files " "file to package.install and call dh_install with \"--sourcedir=debian/tmp\" " @@ -3720,11 +4166,13 @@ "de dh_movefiles, excepto en que copiará los ficheros en vez de moverlos." # type: =item +#. type: =item #: dh_install:103 msgid "I" msgstr "I" # type: textblock +#. type: textblock #: dh_install:105 msgid "" "Lists files (or directories) to install and where to install them to. The " @@ -3735,12 +4183,14 @@ "actúe dh_install." # type: =head1 -#: dh_install:241 +#. type: =head1 +#: dh_install:245 msgid "EXAMPLE" msgstr "EJEMPLO" # type: textblock -#: dh_install:243 +#. type: textblock +#: dh_install:247 msgid "" "Suppose your package's upstream Makefile installs a binary, a man page, and " "a library into appropriate subdirectories of debian/tmp. You want to put the " @@ -3755,7 +4205,8 @@ "sourcedir=debian/tmp\". Haga un debian/tal.install que contenga:" # type: verbatim -#: dh_install:249 +#. type: verbatim +#: dh_install:253 #, no-wrap msgid "" " usr/bin\n" @@ -3767,12 +4218,14 @@ "\n" # type: textblock -#: dh_install:252 +#. type: textblock +#: dh_install:256 msgid "While debian/libfoo.install contains:" msgstr "Mientras que debian/libtal.install debe contener:" # type: verbatim -#: dh_install:254 +#. type: verbatim +#: dh_install:258 #, no-wrap msgid "" " usr/lib/libfoo*.so.*\n" @@ -3782,7 +4235,8 @@ "\n" # type: textblock -#: dh_install:256 +#. type: textblock +#: dh_install:260 msgid "" "If you want a libfoo-dev package too, debian/libfoo-dev.install might " "contain:" @@ -3791,7 +4245,8 @@ "que contenga:" # type: verbatim -#: dh_install:258 +#. type: verbatim +#: dh_install:262 #, no-wrap msgid "" " usr/include\n" @@ -3805,12 +4260,14 @@ "\n" # type: =head1 -#: dh_install:262 +#. type: =head1 +#: dh_install:266 msgid "LIMITATIONS" msgstr "LIMITACIONES" # type: verbatim -#: dh_install:264 +#. type: verbatim +#: dh_install:268 #, no-wrap msgid "" "dh_install cannot rename files or directories, it can only install them\n" @@ -3824,16 +4281,19 @@ " \n" # type: textblock +#. type: textblock #: dh_installppp:5 msgid "dh_installppp - install ppp ip-up and ip-down files" msgstr "dh_installppp - instala los ficheros ip-up e ip-down de ppp" # type: textblock +#. type: textblock #: dh_installppp:14 msgid "B [S>] [B<--name=>I]" msgstr "B [S>] [B<--name=>I]" # type: textblock +#. type: textblock #: dh_installppp:18 msgid "" "dh_installppp is a debhelper program that is responsible for installing ppp " @@ -3844,6 +4304,7 @@ "paquete." # type: textblock +#. type: textblock #: dh_installppp:21 msgid "" "If a file named debian/package.ppp.ip-up exists, then it is installed into " @@ -3855,6 +4316,7 @@ "debian/package.ppp.ip-down se instalan en etc/ppp/ip-down.d/paquete." # type: textblock +#. type: textblock #: dh_installppp:32 msgid "" "Look for files named debian/package.name.ppp.ip-* and install them as etc/" @@ -3866,11 +4328,13 @@ "el nombre del paquete." # type: textblock +#. type: textblock #: dh_installwm:5 msgid "dh_installwm - register a window manager" msgstr "dh_installwm - registra un gestor de ventanas" # type: textblock +#. type: textblock #: dh_installwm:14 msgid "" "B [S>] [B<-n>] [B<--priority=>I] " @@ -3880,6 +4344,7 @@ "[S>]" # type: textblock +#. type: textblock #: dh_installwm:18 #, fuzzy msgid "" @@ -3894,6 +4359,7 @@ "alternatives(8)>" # type: textblock +#. type: textblock #: dh_installwm:24 msgid "" "Any window manager programs specified as parameters will be registered in " @@ -3907,6 +4373,7 @@ "será el primer paquete especificado por estas opciones." # type: textblock +#. type: textblock #: dh_installwm:29 msgid "" "Files named debian/package.wm can list other window manager programs to " @@ -3916,6 +4383,7 @@ "a registrar." # type: textblock +#. type: textblock #: dh_installwm:38 msgid "" "Set the priority of the window manager. Default is 20, which is too low for " @@ -3928,6 +4396,7 @@ "correcto." # type: textblock +#. type: textblock #: dh_installwm:44 msgid "Do not modify postinst/postrm scripts. Turns this command into a no-op." msgstr "" @@ -3935,11 +4404,13 @@ "hace nada." # type: =item +#. type: =item #: dh_installwm:46 msgid "I" msgstr "I" # type: textblock +#. type: textblock #: dh_installwm:48 msgid "" "The commands used to run the window manager or window managers you want to " @@ -3949,16 +4420,19 @@ "registrar." # type: textblock +#. type: textblock #: dh_installxfonts:5 msgid "dh_installxfonts - register X fonts" msgstr "dh_installxfonts - registra tipos de letra para X" # type: textblock +#. type: textblock #: dh_installxfonts:14 msgid "B [S>]" msgstr "B [S>]" # type: textblock +#. type: textblock #: dh_installxfonts:18 msgid "" "dh_installxfonts is a debhelper program that is responsible for registering " @@ -3970,6 +4444,7 @@ "fonts.scale sean reconstruidos adecuadamente durante la instalación." # type: textblock +#. type: textblock #: dh_installxfonts:22 #, fuzzy msgid "" @@ -3986,6 +4461,7 @@ "construcción del paquete." # type: textblock +#. type: textblock #: dh_installxfonts:28 #, fuzzy msgid "" @@ -3998,6 +4474,7 @@ "Depends}.)" # type: textblock +#. type: textblock #: dh_installxfonts:32 #, fuzzy msgid "" @@ -4011,6 +4488,7 @@ "para una explicación acerca de como funciona esto." # type: textblock +#. type: textblock #: dh_installxfonts:39 msgid "" "See L, L, and L para más información acerca de la instalación de tipos de letra para X." # type: textblock +#. type: textblock #: dh_installxfonts:42 msgid "" "See Debian policy, section 11.8.5. for details about doing fonts the Debian " @@ -4029,12 +4508,14 @@ "manejar los tipos de letra al estilo de Debian." # type: textblock +#. type: textblock #: dh_link:5 msgid "dh_link - create symlinks in package build directories" msgstr "" "dh_link - crea enlace simbólicos en directorios de construcción de paquetes" # type: textblock +#. type: textblock #: dh_link:15 #, fuzzy msgid "" @@ -4044,6 +4525,7 @@ "B [S>] [B<-A>] [S>]" # type: textblock +#. type: textblock #: dh_link:19 msgid "" "dh_link is a debhelper program that creates symlinks in package build " @@ -4053,6 +4535,7 @@ "directorios de construcción de paquetes." # type: textblock +#. type: textblock #: dh_link:22 msgid "" "dh_link accepts a list of pairs of source and destination files. The source " @@ -4066,6 +4549,7 @@ "número igual de ficheros origen y destino." # type: textblock +#. type: textblock #: dh_link:27 msgid "" "The list can be specified in two ways. A file named debian/package.links can " @@ -4088,6 +4572,7 @@ "especificado en estos parámetros." # type: textblock +#. type: textblock #: dh_link:36 msgid "" "Be sure you B specify the full filename to both the source and " @@ -4099,6 +4584,7 @@ "usando algo como L)." # type: textblock +#. type: textblock #: dh_link:40 msgid "" "dh_link will generate symlinks that comply with debian policy - absolute " @@ -4112,6 +4598,7 @@ "necesario para ubicar los enlaces." # type: textblock +#. type: textblock #: dh_link:45 #, fuzzy msgid "" @@ -4123,6 +4610,7 @@ "(sólo v4)." # type: textblock +#. type: textblock #: dh_link:54 msgid "" "Create any links specified by command line parameters in ALL packages acted " @@ -4132,6 +4620,7 @@ "en TODOS los paquetes sobre los que se actúa, no solamente en el primero." # type: textblock +#. type: textblock #: dh_link:59 #, fuzzy msgid "" @@ -4142,11 +4631,13 @@ "de ser listados en el fichero md5sums." # type: =item +#. type: =item #: dh_link:62 msgid "I" msgstr "I" # type: textblock +#. type: textblock #: dh_link:64 msgid "" "Create a file named \"destination\" as a link to a file named \"source\". Do " @@ -4159,6 +4650,7 @@ "especifica -A)." # type: verbatim +#. type: verbatim #: dh_link:72 #, no-wrap msgid "" @@ -4169,11 +4661,13 @@ "\n" # type: textblock +#. type: textblock #: dh_link:74 msgid "Make bar.1 be a symlink to foo.1" msgstr "Hace de bar.1 un enlace simbólico a foo.1" # type: verbatim +#. type: verbatim #: dh_link:76 #, fuzzy, no-wrap msgid "" @@ -4186,6 +4680,7 @@ "\n" # type: textblock +#. type: textblock #: dh_link:79 #, fuzzy msgid "" @@ -4196,17 +4691,20 @@ "simbólico a la página de manual de X foo.1x" # type: textblock +#. type: textblock #: dh_listpackages:5 msgid "dh_listpackages - list binary packages debhelper will act on" msgstr "" "dh_listpackages - lista paquetes binarios sobre los que actuará debhelper" # type: textblock +#. type: textblock #: dh_listpackages:14 msgid "B [S>]" msgstr "B [S>]" # type: textblock +#. type: textblock #: dh_listpackages:18 msgid "" "dh_listpackages is a debhelper program that outputs a list of all binary " @@ -4221,6 +4719,7 @@ "especifican las mismas opciones." # type: textblock +#. type: textblock #: dh_makeshlibs:5 #, fuzzy msgid "" @@ -4228,6 +4727,7 @@ msgstr "dh_makeshlibs - crea automáticamente fichero shlibs" # type: textblock +#. type: textblock #: dh_makeshlibs:14 #, fuzzy msgid "" @@ -4238,6 +4738,7 @@ "[dependencias]>] [B<-n>] [B<-X>I]" # type: textblock +#. type: textblock #: dh_makeshlibs:18 msgid "" "dh_makeshlibs is a debhelper program that automatically scans for shared " @@ -4248,6 +4749,7 @@ "encuentra." # type: textblock +#. type: textblock #: dh_makeshlibs:21 #, fuzzy msgid "" @@ -4259,6 +4761,7 @@ "bibliotecas compartidas." # type: textblock +#. type: textblock #: dh_makeshlibs:24 msgid "" "If a L symbol file is found in debian/package.symbols " @@ -4267,11 +4770,13 @@ msgstr "" # type: =item +#. type: =item #: dh_makeshlibs:32 msgid "B<-m>I, B<--major=>I" msgstr "B<-m>I, B<--major=>I" # type: textblock +#. type: textblock #: dh_makeshlibs:34 msgid "" "Instead of trying to guess the major number of the library with objdump, use " @@ -4285,16 +4790,19 @@ "nombres de fichero de las bibliotecas en lugar de usar objdump." # type: =item +#. type: =item #: dh_makeshlibs:39 msgid "B<-V>, B<-V>I" msgstr "B<-V>, B<-V>I" # type: =item +#. type: =item #: dh_makeshlibs:41 msgid "B<--version-info>, B<--version-info=>I" msgstr "B<--version-info>, B<--version-info=>I" # type: textblock +#. type: textblock #: dh_makeshlibs:43 msgid "" "By default, the shlibs file generated by this program does not make packages " @@ -4321,6 +4829,7 @@ "de dependencia exacta requerida (asegúrese de incluir el nombre del paquete)." # type: textblock +#. type: textblock #: dh_makeshlibs:54 msgid "" "Beware of using -V without any parameters; this is a conservative setting " @@ -4340,6 +4849,7 @@ "actualización." # type: textblock +#. type: textblock #: dh_makeshlibs:68 msgid "" "Exclude files that contain \"item\" anywhere in their filename or directory " @@ -4349,12 +4859,14 @@ "o directorio de ser tratados como bibliotecas compartidas." # type: =item +#. type: =item #: dh_makeshlibs:71 #, fuzzy msgid "B<--add-udeb=>I" msgstr "B<--name=>I" # type: textblock +#. type: textblock #: dh_makeshlibs:73 msgid "" "Create an additional line for udebs in the shlibs file and use \"udeb\" as " @@ -4363,17 +4875,20 @@ msgstr "" # type: textblock +#. type: textblock #: dh_makeshlibs:78 #, fuzzy msgid "Pass \"params\" to L." msgstr "Pasa \"parámetros\" a L." # type: =item +#. type: =item #: dh_makeshlibs:86 msgid "dh_makeshlibs" msgstr "dh_makeshlibs" # type: verbatim +#. type: verbatim #: dh_makeshlibs:88 #, no-wrap msgid "" @@ -4388,11 +4903,13 @@ "\n" # type: =item +#. type: =item #: dh_makeshlibs:92 msgid "dh_makeshlibs -V" msgstr "dh_makeshlibs -V" # type: verbatim +#. type: verbatim #: dh_makeshlibs:94 #, no-wrap msgid "" @@ -4407,11 +4924,13 @@ "\n" # type: =item +#. type: =item #: dh_makeshlibs:98 msgid "dh_makeshlibs -V 'libfoobar1 (>= 1.0)'" msgstr "dh_makeshlibs -V 'libfoobar1 (>= 1.0)'" # type: verbatim +#. type: verbatim #: dh_makeshlibs:100 #, no-wrap msgid "" @@ -4424,11 +4943,13 @@ "\n" # type: textblock +#. type: textblock #: dh_md5sums:5 msgid "dh_md5sums - generate DEBIAN/md5sums file" msgstr "dh_md5sums - genera el fichero DEBIAN/md5sums" # type: textblock +#. type: textblock #: dh_md5sums:15 msgid "" "B [S>] [B<-x>] [B<-X>I] [B<--include-" @@ -4438,6 +4959,7 @@ "include-conffiles>]" # type: textblock +#. type: textblock #: dh_md5sums:19 msgid "" "dh_md5sums is a debhelper program that is responsible for generating a " @@ -4449,6 +4971,7 @@ "paquete. Estos ficheros son usados por el paquete debsums." # type: textblock +#. type: textblock #: dh_md5sums:23 msgid "" "All files in DEBIAN/ are omitted from the md5sums file, as are all conffiles " @@ -4459,17 +4982,20 @@ "conffiles)." # type: textblock +#. type: textblock #: dh_md5sums:26 msgid "The md5sums file is installed with proper permissions and ownerships." msgstr "" "El fichero md5sums es instalado con los permisos y propietarios adecuados." # type: =item +#. type: =item #: dh_md5sums:32 msgid "B<-x>, B<--include-conffiles>" msgstr "B<-x>, B<--include-conffiles>" # type: textblock +#. type: textblock #: dh_md5sums:34 msgid "" "Include conffiles in the md5sums list. Note that this information is " @@ -4479,6 +5005,7 @@ "redundante puesto que esta incluida en otro lugar de los paquetes debian." # type: textblock +#. type: textblock #: dh_md5sums:39 msgid "" "Exclude files that contain \"item\" anywhere in their filename from being " @@ -4488,11 +5015,13 @@ "de ser listados en el fichero md5sums." # type: textblock +#. type: textblock #: dh_movefiles:5 msgid "dh_movefiles - move files out of debian/tmp into subpackages" msgstr "dh_movefiles - mueve ficheros de debian/tmp en subpaquetes" # type: textblock +#. type: textblock #: dh_movefiles:14 msgid "" "B [S>] [B<--sourcedir=>I] [B<-" @@ -4502,6 +5031,7 @@ "X>I] S>]" # type: textblock +#. type: textblock #: dh_movefiles:18 msgid "" "dh_movefiles is a debhelper program that is responsible for moving files out " @@ -4516,6 +5046,7 @@ "dividirlos en subpaquetes." # type: textblock +#. type: textblock #: dh_movefiles:23 msgid "" "Files named debian/package.files list the files to be moved, separated by " @@ -4532,6 +5063,7 @@ "primer paquete que actuar dh_movefiles." # type: textblock +#. type: textblock #: dh_movefiles:29 #, fuzzy msgid "" @@ -4542,11 +5074,13 @@ "más." # type: =item +#. type: =item #: dh_movefiles:36 msgid "B<--sourcedir=>I" msgstr "B<--sourcedir=>I" # type: textblock +#. type: textblock #: dh_movefiles:38 #, fuzzy msgid "" @@ -4563,6 +5097,7 @@ "empezar con un `/'." # type: textblock +#. type: textblock #: dh_movefiles:51 msgid "" "Lists files to move. The filenames listed should be relative to debian/tmp/. " @@ -4577,6 +5112,7 @@ "colocarlos." # type: textblock +#. type: textblock #: dh_movefiles:60 msgid "" "Note that files are always moved out of debian/tmp by default (even if you " @@ -4596,18 +5132,21 @@ "por dh_clean." # type: textblock +#. type: textblock #: dh_perl:5 #, fuzzy msgid "dh_perl - calculates perl dependencies and cleans up after MakeMaker" msgstr "dh_perl - calcula dependencias de perl" # type: textblock +#. type: textblock #: dh_perl:16 msgid "B [S>] [B<-d>] [S>]" msgstr "" "B [S>] [B<-d>] [S>]" # type: textblock +#. type: textblock #: dh_perl:20 msgid "" "dh_perl is a debhelper program that is responsible for generating the ${perl:" @@ -4617,6 +5156,7 @@ "substituciones ${perl:Depends} y añadirlas a los ficheros substvars." # type: textblock +#. type: textblock #: dh_perl:23 msgid "" "The program will look at perl scripts and modules in your package, and will " @@ -4630,6 +5170,7 @@ "usted ubique la señal \"${perl:Depends}\"." # type: textblock +#. type: textblock #: dh_perl:28 msgid "" "dh_perl also cleans up empty directories that MakeMaker can generate when " @@ -4637,11 +5178,13 @@ msgstr "" # type: =item +#. type: =item #: dh_perl:35 msgid "B<-d>" msgstr "B<-d>" # type: textblock +#. type: textblock #: dh_perl:37 msgid "" "In some specific cases you may want to depend on perl-base rather than the " @@ -4656,6 +5199,7 @@ "incluidos en el sistema base." # type: textblock +#. type: textblock #: dh_perl:42 msgid "" "Note that this flag may cause no dependency on perl-base to be generated at " @@ -4667,11 +5211,13 @@ "puede obviar, a menos que se requiera una dependencia de versiones." # type: =item +#. type: =item #: dh_perl:46 msgid "B<-V>" msgstr "B<-V>" # type: textblock +#. type: textblock #: dh_perl:48 msgid "" "By default, scripts and architecture independent modules don't depend on any " @@ -4683,11 +5229,13 @@ "actual del paquete perl (o perl-base con -d) sea especificada." # type: =item +#. type: =item #: dh_perl:52 msgid "I" msgstr "I" # type: textblock +#. type: textblock #: dh_perl:54 msgid "" "If your package installs perl modules in non-standard directories, you can " @@ -4700,21 +5248,25 @@ "vendorlib y vendorarch por omisión." # type: textblock +#. type: textblock #: dh_perl:63 dh_strip:76 msgid "Debian policy, version 3.0.1" msgstr "Normas de Debian, versión 3.0.1" # type: textblock +#. type: textblock #: dh_perl:65 msgid "Perl policy, version 1.18" msgstr "Normas de Perl, versión 1.18" # type: textblock +#. type: textblock #: dh_perl:160 msgid "Brendan O'Dea " msgstr "Brendan O'Dea " # type: textblock +#. type: textblock #: dh_python:5 msgid "" "dh_python - calculates python dependencies and adds postinst and prerm " @@ -4724,6 +5276,7 @@ "prerm" # type: textblock +#. type: textblock #: dh_python:15 msgid "" "B [S>] [B<-n>] [B<-V> I] " @@ -4733,6 +5286,7 @@ "módulos...>>]" # type: textblock +#. type: textblock #: dh_python:19 msgid "" "Note: This program is deprecated. You should use dh_pysupport or " @@ -4741,6 +5295,7 @@ msgstr "" # type: textblock +#. type: textblock #: dh_python:23 msgid "" "dh_python is a debhelper program that is responsible for generating the " @@ -4752,6 +5307,7 @@ "También añadirá un script postinst y un prerm de ser necesario." # type: textblock +#. type: textblock #: dh_python:27 msgid "" "The program will look at python scripts and modules in your package, and " @@ -4768,6 +5324,7 @@ "Depends}\"." # type: textblock +#. type: textblock #: dh_python:33 msgid "" "If some modules need to be byte-compiled at install time, appropriate " @@ -4779,6 +5336,7 @@ "ya compilados, se eliminarán." # type: textblock +#. type: textblock #: dh_python:37 msgid "If you use this program, your package should build-depend on python." msgstr "" @@ -4786,11 +5344,13 @@ "dependencias de construcción." # type: =item +#. type: =item #: dh_python:43 msgid "I" msgstr "I" # type: textblock +#. type: textblock #: dh_python:45 msgid "" "If your package installs python modules in non-standard directories, you can " @@ -4806,6 +5366,7 @@ "usr/share/games/$PACKAGE y /usr/lib/python?.?/site-packages." # type: textblock +#. type: textblock #: dh_python:51 msgid "" "Note: only /usr/lib/site-python, /usr/lib/python?.?/site-packages and the " @@ -4816,11 +5377,13 @@ "mediante la línea de órdenes." # type: =item +#. type: =item #: dh_python:54 msgid "B<-V> I" msgstr "B<-V> I" # type: textblock +#. type: textblock #: dh_python:56 msgid "" "If the .py files your package ships are meant to be used by a specific " @@ -4832,37 +5395,44 @@ "deseada. No lo use si instala módulos en /usr/lib/site-python." # type: textblock +#. type: textblock #: dh_python:68 msgid "Debian policy, version 3.5.7" msgstr "Normas de Debian, versión 3.5.7" # type: textblock +#. type: textblock #: dh_python:70 msgid "Python policy, version 0.3.7" msgstr "Normas de Python, versión 0.3.7" # type: textblock +#. type: textblock #: dh_python:290 msgid "Josselin Mouette " msgstr "Josselin Mouette " # type: textblock +#. type: textblock #: dh_python:292 msgid "most ideas stolen from Brendan O'Dea " msgstr "muchas de las ideas tomadas de Brendan O'Dea " # type: textblock +#. type: textblock #: dh_scrollkeeper:5 msgid "dh_scrollkeeper - generate ScrollKeeper registration scripts" msgstr "dh_scrollkeeper - genera programas de registro de ScrollKeeper" # type: textblock +#. type: textblock #: dh_scrollkeeper:14 msgid "B [S>] [B<-n>] [S>]" msgstr "" "B [S>] [B<-n>] [S>]" # type: textblock +#. type: textblock #: dh_scrollkeeper:18 msgid "" "B is a debhelper program that handles correctly registering " @@ -4873,6 +5443,7 @@ "paquetes y que usan ScrollKeeper." # type: textblock +#. type: textblock #: dh_scrollkeeper:22 #, fuzzy msgid "" @@ -4888,6 +5459,7 @@ "programa Debhelper de desarrollador." # type: textblock +#. type: textblock #: dh_scrollkeeper:28 msgid "" "It will also change any DTD declarations in the OMF and DocBook files to " @@ -4900,16 +5472,19 @@ "construcción del paquete." # type: textblock +#. type: textblock #: dh_scrollkeeper:38 msgid "Do not modify F/F scripts." msgstr "No modifica programas F/F." # type: textblock +#. type: textblock #: dh_shlibdeps:5 msgid "dh_shlibdeps - calculate shared library dependencies" msgstr "dh_shlibdeps - calcula dependencias de bibliotecas compartidas" # type: textblock +#. type: textblock #: dh_shlibdeps:15 msgid "" "B [S>] [B<-L>I] [B<-" @@ -4919,6 +5494,7 @@ "l>I] [B<-X>I] [S I>]" # type: textblock +#. type: textblock #: dh_shlibdeps:19 msgid "" "dh_shlibdeps is a debhelper program that is responsible for calculating " @@ -4928,6 +5504,7 @@ "dependencias en bibliotecas compartidas de los paquetes." # type: textblock +#. type: textblock #: dh_shlibdeps:22 msgid "" "This program is merely a wrapper around L that calls it " @@ -4939,16 +5516,19 @@ "lista de ejecutables ELF y bibliotecas compartidas que ha encontrado." # type: =item +#. type: =item #: dh_shlibdeps:30 msgid "B<-u>I, B<--dpkg-shlibdeps-params=>I" msgstr "B<-u>I, B<--dpkg-shlibdeps-params=>I" # type: textblock +#. type: textblock #: dh_shlibdeps:34 msgid "Pass \"params\" to L." msgstr "Pasa \"params\" a L." # type: textblock +#. type: textblock #: dh_shlibdeps:38 msgid "" "Exclude files that contain \"item\" anywhere in their filename from being " @@ -4963,17 +5543,20 @@ "cosa." # type: =item +#. type: =item #: dh_shlibdeps:43 msgid "B<-l>I[:directory:directory:..]" msgstr "B<-l>I[:directorio:directorio:..]" # type: textblock +#. type: textblock #: dh_shlibdeps:45 msgid "" "With recent versions of dpkg-shlibdeps, this option is generally not needed." msgstr "" # type: textblock +#. type: textblock #: dh_shlibdeps:48 #, fuzzy msgid "" @@ -4990,11 +5573,13 @@ "para el beneficio de dpkg-shlibdeps." # type: =item +#. type: =item #: dh_shlibdeps:55 msgid "B<-L>I, B<--libpackage=>I" msgstr "B<-L>I, B<--libpackage=>I" # type: textblock +#. type: textblock #: dh_shlibdeps:57 msgid "" "With recent versions of dpkg-shlibdeps, this option is generally not needed, " @@ -5002,6 +5587,7 @@ msgstr "" # type: textblock +#. type: textblock #: dh_shlibdeps:60 msgid "" "It tells dpkg-shlibdeps (via its -S parameter) to look first in the package " @@ -5010,6 +5596,7 @@ msgstr "" # type: textblock +#. type: textblock #: dh_shlibdeps:68 msgid "" "Suppose that your source package produces libfoo1, libfoo-dev, and libfoo-" @@ -5022,6 +5609,7 @@ "dh_shlibdeps:" # type: verbatim +#. type: verbatim #: dh_shlibdeps:72 #, fuzzy, no-wrap msgid "" @@ -5034,6 +5622,7 @@ "\n" # type: textblock +#. type: textblock #: dh_shlibdeps:75 msgid "" "This will have the effect of generating automatically a shlibs file for " @@ -5045,6 +5634,7 @@ "calcular la información de dependencias en bibliotecas compartidas." # type: textblock +#. type: textblock #: dh_shlibdeps:80 msgid "" "If a libbar1 package is also produced, that is an alternate build of libfoo, " @@ -5053,22 +5643,25 @@ msgstr "" # type: verbatim +#. type: verbatim #: dh_shlibdeps:84 #, fuzzy, no-wrap msgid "" "\tdh_shlibdeps -Llibbar1 -l/usr/lib/bar\n" -"\n" +"\t\n" msgstr "" "\tdh_makeshlibs\n" "\tdh_shlibdeps -L libfoo1 -l debian/libfoo1/usr/lib\n" "\n" # type: textblock -#: dh_shlibdeps:161 +#. type: textblock +#: dh_shlibdeps:165 msgid "L, L" msgstr "L, L" # type: textblock +#. type: textblock #: dh_strip:5 msgid "" "dh_strip - strip executables, shared libraries, and some static libraries" @@ -5077,6 +5670,7 @@ "algunas bibliotecas estáticas" # type: textblock +#. type: textblock #: dh_strip:15 msgid "" "B [S>] [B<-X>I] [--dbg-package=package] " @@ -5086,6 +5680,7 @@ "package=paquete] [--keep-debug]" # type: textblock +#. type: textblock #: dh_strip:19 msgid "" "dh_strip is a debhelper program that is responsible for stripping " @@ -5097,6 +5692,7 @@ "usadas para depuración." # type: textblock +#. type: textblock #: dh_strip:23 msgid "" "This program examines your package build directories and works out what to " @@ -5116,6 +5712,7 @@ "y hará lo correcto en la mayoría de casos." # type: textblock +#. type: textblock #: dh_strip:31 msgid "" "Since it is very hard to automatically guess if a file is a module, and hard " @@ -5127,6 +5724,7 @@ "de eliminar los símbolos de módulos binarios como los ficheros .o." # type: textblock +#. type: textblock #: dh_strip:41 msgid "" "Exclude files that contain \"item\" anywhere in their filename from being " @@ -5138,11 +5736,13 @@ "una lista de cosas a excluir." # type: =item +#. type: =item #: dh_strip:45 msgid "B<--dbg-package=>I" msgstr "B<--dbg-package=>I" # type: textblock +#. type: textblock #: dh_strip:47 msgid "" "Causes dh_strip to save debug symbols stripped from the packages it acts on " @@ -5155,6 +5755,7 @@ "independientes en el directorio de construcción para el paquete \"-dbg\"." # type: textblock +#. type: textblock #: dh_strip:51 #, fuzzy msgid "" @@ -5165,6 +5766,7 @@ "paquetetal-dbg con símbolos de depuración, use dh_strip --dbg-to=tal-dbg." # type: textblock +#. type: textblock #: dh_strip:54 msgid "" "Note that this option behaves significantly different in debhelper " @@ -5181,11 +5783,13 @@ "paquetescon \"-dbg\" al final de su nombre" # type: =item +#. type: =item #: dh_strip:60 msgid "B<-k>, B<--keep-debug>" msgstr "B<-k>, B<--keep-debug>" # type: textblock +#. type: textblock #: dh_strip:62 msgid "" "Debug symbols will be retained, but split into an independent file in usr/" @@ -5198,6 +5802,7 @@ "opción es más flexible." # type: textblock +#. type: textblock #: dh_strip:70 #, fuzzy msgid "" @@ -5209,16 +5814,19 @@ "eliminará nada, conforme a las normas de Debian." # type: textblock +#. type: textblock #: dh_suidregister:5 msgid "dh_suidregister - obsolete suid registration program" msgstr "dh_suidregister - programa obsoleto de registro suid" # type: textblock +#. type: textblock #: dh_suidregister:9 dh_undocumented:14 msgid "Do not run!" msgstr "¡No lo ejecute!" # type: textblock +#. type: textblock #: dh_suidregister:13 msgid "" "This program used to register suid and sgid files with L, " @@ -5232,11 +5840,13 @@ "este programa no debe ser usado." # type: =head1 +#. type: =head1 #: dh_suidregister:18 msgid "CONVERTING TO STATOVERRIDE" msgstr "CONVERTIR A STATOVERRIDE" # type: textblock +#. type: textblock #: dh_suidregister:20 msgid "" "Converting a package that uses this program to use the new statoverride " @@ -5249,6 +5859,7 @@ "fichero control, como sigue:" # type: verbatim +#. type: verbatim #: dh_suidregister:25 #, no-wrap msgid "" @@ -5259,6 +5870,7 @@ "\n" # type: textblock +#. type: textblock #: dh_suidregister:27 msgid "" "The conflicts is only necessary if your package used to register things with " @@ -5270,17 +5882,20 @@ "a este programa de su fichero rules." # type: textblock +#. type: textblock #: dh_testdir:5 msgid "dh_testdir - test directory before building debian package" msgstr "" "dh_testdir - comprueba el directorio antes de construir el paquete debian" # type: textblock +#. type: textblock #: dh_testdir:14 msgid "B [S>] [S>]" msgstr "B [S>] [S>]" # type: textblock +#. type: textblock #: dh_testdir:18 msgid "" "dh_testdir tries to make sure that you are in the correct directory when " @@ -5294,21 +5909,25 @@ "especifique. En caso contrario finaliza con un error." # type: textblock +#. type: textblock #: dh_testdir:29 msgid "Test for the existence of these files too." msgstr "Comprueba también la existencia de estos ficheros." # type: textblock +#. type: textblock #: dh_testroot:5 msgid "dh_testroot - ensure that a package is built as root" msgstr "dh_testroot - asegura que el paquete sea construido como superusuario" # type: textblock +#. type: textblock #: dh_testroot:9 msgid "B [S>]" msgstr "B [S>]" # type: textblock +#. type: textblock #: dh_testroot:13 msgid "" "dh_testroot simply checks to see if you are root. If not, it exits with an " @@ -5320,6 +5939,7 @@ "aunque usted puede usar L" # type: textblock +#. type: textblock #: dh_testversion:5 msgid "" "dh_testversion - ensure that the correct version of debhelper is installed" @@ -5327,12 +5947,14 @@ "dh_testversion - asegura que esté instalada la versión correcta de debhelper" # type: textblock +#. type: textblock #: dh_testversion:14 msgid "B [S>] [I] [I]" msgstr "" "B [S>] [I] [I]" # type: textblock +#. type: textblock #: dh_testversion:18 msgid "" "Note: This program is deprecated. You should use build dependencies instead." @@ -5341,6 +5963,7 @@ "dependencias de construcción." # type: textblock +#. type: textblock #: dh_testversion:21 msgid "" "dh_testversion compares the version of debhelper against the version you " @@ -5350,6 +5973,7 @@ "especifique, y si no coinciden finaliza con un mensaje de error." # type: textblock +#. type: textblock #: dh_testversion:24 msgid "" "You can use this in your debian/rules files if a new debhelper feature is " @@ -5362,6 +5986,7 @@ "versión necesita." # type: textblock +#. type: textblock #: dh_testversion:28 msgid "" "Be sure not to overuse dh_testversion. If debhelper version 9.5 introduces a " @@ -5377,11 +6002,13 @@ "necesidad de usar dh_testversion." # type: =item +#. type: =item #: dh_testversion:38 msgid "I" msgstr "I" # type: textblock +#. type: textblock #: dh_testversion:40 msgid "" "Optional comparison operator used in comparing the versions. If not " @@ -5393,11 +6020,13 @@ "comparación vea dkpg --help." # type: =item +#. type: =item #: dh_testversion:44 msgid "I" msgstr "I" # type: textblock +#. type: textblock #: dh_testversion:46 msgid "" "Version number to compare against the current version of debhelper. If not " @@ -5407,12 +6036,14 @@ "Si no es especificado, dh_testversion no hace nada." # type: textblock +#. type: textblock #: dh_undocumented:5 msgid "dh_undocumented - obsolete undocumented.7 symlink program" msgstr "" "dh_undocumented - programa obsoleto de enlace simbólico a undocumented.7" # type: textblock +#. type: textblock #: dh_undocumented:18 msgid "" "This program used to make symlinks to the undocumented.7 man page for man " @@ -5426,16 +6057,19 @@ "debido a eso este programa no hace nada y no debe ser usado." # type: textblock +#. type: textblock #: dh_usrlocal:5 msgid "dh_usrlocal - migrate usr/local directories to maintainer scripts" msgstr "dh_usrlocal - migra directorios usr/local a programas de desarrollador" # type: textblock +#. type: textblock #: dh_usrlocal:17 msgid "B [S>] [B<-n>]" msgstr "B [S>] [B<-n>]" # type: textblock +#. type: textblock #: dh_usrlocal:21 msgid "" "dh_usrlocal is a debhelper program that can be used for building packages " @@ -5445,6 +6079,7 @@ "paquetes que proveerán un subdirectorio en /usr/local cuando se instalen." # type: textblock +#. type: textblock #: dh_usrlocal:24 #, fuzzy msgid "" @@ -5464,6 +6099,7 @@ "una explicación de las partes de programas Debhelper de desarrollador." # type: textblock +#. type: textblock #: dh_usrlocal:32 msgid "" "If the directories found in the build tree have unusual owners, groups, or " @@ -5482,36 +6118,53 @@ "modo de los directorios en /usr/local." # type: textblock +#. type: textblock #: dh_usrlocal:45 msgid "Do not modify F/F scripts." msgstr "No modifica programas F/F." # type: textblock +#. type: textblock #: dh_usrlocal:57 msgid "Debian policy, version 2.2" msgstr "Normas de Debian, versión 2.2" # type: textblock +#. type: textblock #: dh_usrlocal:122 msgid "Andrew Stribblehill " msgstr "Andrew Stribblehill " # type: textblock -#: debhelper.pod:401 -msgid "" -"dh_install, if --sourcedir is not specified, will first look for files in " -"debian/tmp, and then will look in the current directory. This allows " -"dh_install to interoperate with dh_auto_install without needing any special " -"parameters." -msgstr "" +#~ msgid "dh_desktop - Register .desktop files" +#~ msgstr "dh_desktop - Registra ficheros .desktop" # type: textblock -#: dh_install:43 -msgid "" -"From debhelper compatibility level 7 on, if --sourcedir is not specified, " -"dh_install will install files from debian/tmp if the directory contains the " -"files. Otherwise, it will install files from the current directory." -msgstr "" +#~ msgid "" +#~ "dh_desktop is a debhelper program that registers .desktop files. " +#~ "Currently this program does not handle installation of the files, though " +#~ "it may do so at a later date. It takes care of adding maintainer script " +#~ "fragments to call F." +#~ msgstr "" +#~ "dh_desktop es un programa de debhelper que registra ficheros .desktop. " +#~ "En la actualidad no gestiona la instalación de los ficheros, aunque puede " +#~ "que lo haga en un futuro. Se preocupa de añadir los fragmentos necesario " +#~ "para llamar a F en los scripts del desarrollador." + +# type: textblock +#, fuzzy +#~ msgid "" +#~ "If a file named debian/package.menu-method exits, then it is installed " +#~ "into etc/menu-methods/package in the package build directory. This is a " +#~ "debian menu method file. In this case, dh_installmenu also automatically " +#~ "generates the postinst and postrm commands needed to interface with the " +#~ "debian menu package. These commands are inserted into the maintainer " +#~ "scripts by dh_installdeb. See L for an explanation of " +#~ "how this works." +#~ msgstr "" +#~ "Además genera automáticamente las ordenes de postinst y postrm necesarias " +#~ "para interaccionar con el paquete menu de Debian. Lea L " +#~ "para una explicación acerca de como funciona esto." # type: textblock #, fuzzy diff -Nru /tmp/dw3Ca5Y5kB/debhelper-7.0.13ubuntu1/man/po4a/po/fr.po /tmp/6Spl0vlPX2/debhelper-7.2.8ubuntu~intrepid~ppa1/man/po4a/po/fr.po --- debhelper-7.0.13ubuntu1/man/po4a/po/fr.po 2008-06-26 12:13:47.000000000 +0100 +++ debhelper-7.2.8ubuntu~intrepid~ppa1/man/po4a/po/fr.po 2009-04-20 21:15:47.000000000 +0100 @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: debhelper manpages\n" -"POT-Creation-Date: 2008-06-25 03:37-0400\n" +"POT-Creation-Date: 2009-04-20 16:15-0300\n" "PO-Revision-Date: 2006-11-19 20:50+0100\n" "Last-Translator: Valery Perrin \n" "Language-Team: French \n" @@ -13,6 +13,7 @@ "X-Generator: KBabel 1.9.1\n" # type: =head1 +#. type: =head1 #: debhelper.pod:1 dh_builddeb:3 dh_clean:3 dh_compress:3 dh_desktop:3 #: dh_fixperms:3 dh_gconf:3 dh_gencontrol:3 dh_installcatalogs:3 #: dh_installchangelogs:3 dh_installcron:3 dh_installdebconf:3 dh_installdeb:3 @@ -28,11 +29,13 @@ msgstr "NOM" # type: textblock +#. type: textblock #: debhelper.pod:3 msgid "debhelper - the debhelper tool suite" msgstr "debhelper - ensemble d'outils regroupés sous le nom de debhelper" # type: =head1 +#. type: =head1 #: debhelper.pod:5 dh_builddeb:12 dh_clean:12 dh_compress:13 dh_desktop:12 #: dh_fixperms:12 dh_gconf:12 dh_gencontrol:12 dh_installcatalogs:14 #: dh_installchangelogs:12 dh_installcron:12 dh_installdebconf:12 @@ -49,6 +52,7 @@ msgstr "SYNOPSIS" # type: textblock +#. type: textblock #: debhelper.pod:7 msgid "" "BI<*> [B<-v>] [B<-a>] [B<-i>] [B<-s>] [B<--no-act>] [B<-ppackage>] [B<-" @@ -58,6 +62,7 @@ "Npaquet] [-Ptmpdir>]" # type: =head1 +#. type: =head1 #: debhelper.pod:9 dh_builddeb:16 dh_clean:16 dh_compress:17 dh_desktop:16 #: dh_fixperms:16 dh_gconf:16 dh_gencontrol:16 dh_installcatalogs:18 #: dh_installchangelogs:16 dh_installcron:16 dh_installdebconf:16 @@ -74,6 +79,7 @@ msgstr "DESCRIPTION" # type: textblock +#. type: textblock #: debhelper.pod:11 msgid "" "Debhelper is used to help you build a debian package. The philosophy behind " @@ -95,6 +101,7 @@ "règles." # type: textblock +#. type: textblock #: debhelper.pod:19 #, fuzzy msgid "" @@ -108,6 +115,7 @@ "dans F" # type: textblock +#. type: textblock #: debhelper.pod:23 msgid "" "To create a new debian package using debhelper, you can just copy one of the " @@ -124,11 +132,13 @@ "cours sur la construction d'un premier paquet avec debhelper." # type: =head1 +#. type: =head1 #: debhelper.pod:29 msgid "DEBHELPER COMMANDS" msgstr "COMMANDES DE DEBHELPER" # type: textblock +#. type: textblock #: debhelper.pod:31 msgid "" "Here is the complete list of available debhelper commands. See their man " @@ -138,11 +148,13 @@ "pages de manuel respectives pour obtenir des informations complémentaires." # type: textblock +#. type: textblock #: debhelper.pod:36 msgid "#LIST#" msgstr "#LIST#" # type: textblock +#. type: textblock #: debhelper.pod:40 msgid "" "If a program's name starts with \"dh_\", and the program is not on the above " @@ -155,11 +167,13 @@ "décrits dans cette page." # type: =head1 +#. type: =head1 #: debhelper.pod:44 msgid "DEBHELPER CONFIG FILES" msgstr "FICHIERS DE CONFIGURATION DE DEBHELPER" # type: textblock +#. type: textblock #: debhelper.pod:46 msgid "" "Many debhelper commands make use of files in F to control what they " @@ -178,6 +192,7 @@ "est, bien sûr, à remplacer par le nom du paquet concerné)." # type: textblock +#. type: textblock #: debhelper.pod:53 msgid "" "For example, dh_installdocs uses files named debian/package.docs to list the " @@ -196,6 +211,7 @@ "des paires fichier/destination voire des formats légèrement plus compliqués." # type: textblock +#. type: textblock #: debhelper.pod:60 msgid "" "Note that if a package is the first (or only) binary package listed in " @@ -207,6 +223,7 @@ "aucun fichier debian/paquet.toto n'est présent." # type: textblock +#. type: textblock #: debhelper.pod:64 #, fuzzy msgid "" @@ -223,6 +240,7 @@ "préférence aux autres fichiers plus généraux." # type: textblock +#. type: textblock #: debhelper.pod:70 msgid "" "In many cases, these config files are used to specify various types of " @@ -234,10 +252,11 @@ "indiquer divers types de S documentation, fichiers d'exemples à " "installer, fichiers à déplacer et ainsi de suite. Lorsque cela se justifie, " "dans des cas comme ceux-ci, il est possible d'employer les jokers (wildcard) " -"standard de l'interpréteur de commandes (shell) (S<« ? »>, S<« * »> et " -"S<« [..] »>)." +"standard de l'interpréteur de commandes (shell) (S<« ? »>, S<« * »> et S<« [..] " +"»>)." # type: textblock +#. type: textblock #: debhelper.pod:75 msgid "" "You can also put comments in these files; lines beginning with \"#\" are " @@ -247,22 +266,26 @@ "lignes débutant par S<« # »> sont ignorées." # type: =head1 +#. type: =head1 #: debhelper.pod:78 msgid "SHARED DEBHELPER OPTIONS" msgstr "OPTIONS PARTAGÉES DE DEBHELPER" # type: textblock +#. type: textblock #: debhelper.pod:80 msgid "" "The following command line options are supported by all debhelper programs." msgstr "Tous les programmes de debhelper acceptent les options S" # type: =item +#. type: =item #: debhelper.pod:84 msgid "B<-v>, B<--verbose>" msgstr "B<-v>, B<--verbose>" # type: textblock +#. type: textblock #: debhelper.pod:86 msgid "" "Verbose mode: show all commands that modify the package build directory." @@ -271,11 +294,13 @@ "de construction du paquet." # type: =item +#. type: =item #: debhelper.pod:88 msgid "B<--no-act>" msgstr "B<--no-act>" # type: textblock +#. type: textblock #: debhelper.pod:90 msgid "" "Do not really do anything. If used with -v, the result is that the command " @@ -286,31 +311,37 @@ "fait." # type: =item +#. type: =item #: debhelper.pod:93 msgid "B<-a>, B<--arch>" msgstr "B<-a>, B<--arch>" # type: textblock +#. type: textblock #: debhelper.pod:95 msgid "Act on all architecture dependent packages." msgstr "Construit tous les paquets dépendants d'une architecture." # type: =item +#. type: =item #: debhelper.pod:97 msgid "B<-i>, B<--indep>" msgstr "B<-i>, B<--indep>" # type: textblock +#. type: textblock #: debhelper.pod:99 msgid "Act on all architecture independent packages." msgstr "Construit tous les paquets indépendants de l'architecture." # type: =item +#. type: =item #: debhelper.pod:101 msgid "B<->I, B<--package=>I" msgstr "B<-p>I, B<--package=>I" # type: textblock +#. type: textblock #: debhelper.pod:103 msgid "" "Act on the package named \"package\". This option may be specified multiple " @@ -320,11 +351,13 @@ "de faire agir debhelper sur plusieurs paquets." # type: =item +#. type: =item #: debhelper.pod:106 msgid "B<-s>, B<--same-arch>" msgstr "B<-s>, B<--same-arch>" # type: textblock +#. type: textblock #: debhelper.pod:108 msgid "" "This is a smarter version of the -a flag, that is used in some rare " @@ -339,17 +372,19 @@ "quelques rares cas. Grâce à cette option, si le fichier de contrôle du " "paquet comporte le champ S<« Architecture: i386 »>, debhelper ne construira " "pas le paquet pour d'autres architectures. De cette façon, cette option " -"construit tous les paquets marqués S<«Architecture: any »> ainsi que tous " -"les paquets dont l'architecture mentionnée correspond à l'architecture " -"courante. Ce comportement est à l'opposé de l'option -a, qui construit " -"seulement les paquets qui ne sont pas indépendants de l'architecture." +"construit tous les paquets marqués S<«Architecture: any »> ainsi que tous les " +"paquets dont l'architecture mentionnée correspond à l'architecture courante. " +"Ce comportement est à l'opposé de l'option -a, qui construit seulement les " +"paquets qui ne sont pas indépendants de l'architecture." # type: =item +#. type: =item #: debhelper.pod:116 msgid "B<-N>I, B<--no-package=>I" msgstr "B<-N>I, B<--no-package=>I" # type: textblock +#. type: textblock #: debhelper.pod:118 msgid "" "Do not act on the specified package even if an -a, -i, or -p option lists " @@ -359,13 +394,32 @@ "a, -i ou -p l'impliquait." # type: =item +#. type: =item #: debhelper.pod:121 #, fuzzy +msgid "B<--remaining-packages>" +msgstr "B<--mainpackage=>I" + +#. type: textblock +#: debhelper.pod:123 +msgid "" +"Do not act on the packages which have already been acted on by this " +"debhelper command earlier (i.e. if the command is present in the package " +"debhelper log). For example, if you need to call the command with special " +"options only for a couple of binary packages, pass this option to the last " +"call of the command to process the rest of packages with default settings." +msgstr "" + +# type: =item +#. type: =item +#: debhelper.pod:129 +#, fuzzy msgid "B<--ignore=>I" msgstr "B<--name=>I" # type: textblock -#: debhelper.pod:123 +#. type: textblock +#: debhelper.pod:131 msgid "" "Ignore the specified file. This can be used if debian/ contains a debhelper " "config file that a debhelper command should not act on. Note that debian/" @@ -374,19 +428,22 @@ msgstr "" # type: textblock -#: debhelper.pod:128 +#. type: textblock +#: debhelper.pod:136 msgid "" "For example, if upstream ships a debian/init that you don't want " "dh_installinit to install, use --ignore=debian/init" msgstr "" # type: =item -#: debhelper.pod:131 +#. type: =item +#: debhelper.pod:139 msgid "B<-P>I, B<--tmpdir=>I" msgstr "B<-P>I, B<--tmpdir=>I" # type: textblock -#: debhelper.pod:133 +#. type: textblock +#: debhelper.pod:141 msgid "" "Use \"tmpdir\" for package build directory. The default is debian/" msgstr "" @@ -394,12 +451,14 @@ "défaut, le répertoire utilisé est S<« debian/I »>" # type: =item -#: debhelper.pod:135 +#. type: =item +#: debhelper.pod:143 msgid "B<--mainpackage=>I" msgstr "B<--mainpackage=>I" # type: textblock -#: debhelper.pod:137 +#. type: textblock +#: debhelper.pod:145 msgid "" "This little-used option changes the package which debhelper considers the " "\"main package\", that is, the first one listed in debian/control, and the " @@ -413,12 +472,14 @@ "control." # type: =head1 -#: debhelper.pod:144 +#. type: =head1 +#: debhelper.pod:152 msgid "COMMON DEBHELPER OPTIONS" msgstr "OPTIONS COURANTES DE DEBHELPER" # type: textblock -#: debhelper.pod:146 +#. type: textblock +#: debhelper.pod:154 msgid "" "The following command line options are supported by some debhelper " "programs. See the man page of each program for a complete explanation of " @@ -429,25 +490,29 @@ "complète du rôle de ces options." # type: =item -#: debhelper.pod:152 +#. type: =item +#: debhelper.pod:160 msgid "B<-n>" msgstr "B<-n>" # type: textblock -#: debhelper.pod:154 +#. type: textblock +#: debhelper.pod:162 msgid "Do not modify postinst/postrm/etc scripts." msgstr "" "Ne pas modifier les scripts de maintenance du paquet (postinst, postrm, " "etc.)." # type: =item -#: debhelper.pod:156 dh_compress:42 dh_makeshlibs:66 dh_md5sums:37 +#. type: =item +#: debhelper.pod:164 dh_compress:42 dh_makeshlibs:66 dh_md5sums:37 #: dh_shlibdeps:36 dh_strip:39 msgid "B<-X>I, B<--exclude=>I" msgstr "B<-X>I<élément>, B<--exclude=>I<élément>" # type: textblock -#: debhelper.pod:158 +#. type: textblock +#: debhelper.pod:166 msgid "" "Exclude an item from processing. This option may be used multiple times, to " "exclude more than one thing." @@ -456,13 +521,15 @@ "plusieurs fois afin d'exclure plusieurs éléments." # type: =item -#: debhelper.pod:161 dh_compress:50 dh_installdirs:32 dh_installdocs:55 +#. type: =item +#: debhelper.pod:169 dh_compress:50 dh_installdirs:32 dh_installdocs:53 #: dh_installexamples:33 dh_installinfo:41 dh_installman:62 dh_link:52 msgid "B<-A>, B<--all>" msgstr "B<-A>, B<--all>" # type: textblock -#: debhelper.pod:163 +#. type: textblock +#: debhelper.pod:171 msgid "" "Makes files or other items that are specified on the command line take " "effect in ALL packages acted on, not just the first." @@ -471,21 +538,24 @@ "commande concernent TOUS les paquets construits et pas seulement le premier." # type: =head1 -#: debhelper.pod:168 dh_installcatalogs:52 dh_installdocs:87 +#. type: =head1 +#: debhelper.pod:176 dh_installcatalogs:52 dh_installdocs:81 #: dh_installemacsen:54 dh_installexamples:50 dh_installinfo:57 -#: dh_installinit:110 dh_installman:79 dh_installmime:41 dh_installmodules:56 +#: dh_installinit:110 dh_installman:79 dh_installmime:41 dh_installmodules:60 #: dh_installwm:53 dh_installxfonts:37 dh_movefiles:58 dh_scrollkeeper:42 #: dh_strip:68 dh_usrlocal:49 msgid "NOTES" msgstr "REMARQUES" # type: =head2 -#: debhelper.pod:170 +#. type: =head2 +#: debhelper.pod:178 msgid "Multiple binary package support" msgstr "Prise en charge de plusieurs paquets binaires" # type: textblock -#: debhelper.pod:172 +#. type: textblock +#: debhelper.pod:180 msgid "" "If your source package generates more than one binary package, debhelper " "programs will default to acting on all binary packages when run. If your " @@ -504,7 +574,8 @@ "dans la cible binary-indep." # type: textblock -#: debhelper.pod:180 +#. type: textblock +#: debhelper.pod:188 msgid "" "To facilitate this, as well as give you more control over which packages are " "acted on by debhelper programs, all debhelper programs accept the B<-a>, B<-" @@ -519,12 +590,14 @@ "paquets énumérés dans le fichier de contrôle." # type: =head2 -#: debhelper.pod:186 +#. type: =head2 +#: debhelper.pod:194 msgid "Automatic generation of debian install scripts" msgstr "Génération automatique des scripts Debian de maintenance du paquet" # type: textblock -#: debhelper.pod:188 +#. type: textblock +#: debhelper.pod:196 msgid "" "Some debhelper commands will automatically generate parts of debian " "maintainer scripts. If you want these automatically generated things " @@ -536,12 +609,13 @@ "Certaines commandes de debhelper produisent automatiquement des lignes de " "codes de maintenance du paquet. Pour les inclure dans vos propres scripts de " "maintenance du paquet, il convient d'ajouter S<« #DEBHELPER# »> à l'endroit " -"où les lignes de code générées devront être insérées. S<« #DEBHELPER# »> " -"sera remplacé, par les lignes de code générées automatiquement, lors de " +"où les lignes de code générées devront être insérées. S<« #DEBHELPER# »> sera " +"remplacé, par les lignes de code générées automatiquement, lors de " "l'exécution de dh_installdeb." # type: textblock -#: debhelper.pod:195 +#. type: textblock +#: debhelper.pod:203 msgid "" "If a script does not exist at all and debhelper needs to add something to " "it, then debhelper will create the complete script." @@ -550,7 +624,8 @@ "quelque chose, alors debhelper créera le script de maintenance complètement." # type: textblock -#: debhelper.pod:198 +#. type: textblock +#: debhelper.pod:206 msgid "" "All debhelper commands that automatically generate code in this way let it " "be disabled by the -n parameter (see above)." @@ -560,7 +635,8 @@ "(voir ci-dessus)." # type: textblock -#: debhelper.pod:201 +#. type: textblock +#: debhelper.pod:209 msgid "" "Note that the inserted code will be shell code, so you cannot directly use " "it in a perl script. If you would like to embed it into a perl script, here " @@ -574,7 +650,8 @@ "la commande set.)" # type: verbatim -#: debhelper.pod:206 +#. type: verbatim +#: debhelper.pod:214 #, no-wrap msgid "" " my $temp=\"set -e\\nset -- @ARGV\\n\" . << 'EOF';\n" @@ -592,12 +669,14 @@ "\n" # type: =head2 -#: debhelper.pod:212 +#. type: =head2 +#: debhelper.pod:220 msgid "Automatic generation of miscellaneous dependencies." msgstr "Génération automatique des diverses dépendances." # type: textblock -#: debhelper.pod:214 +#. type: textblock +#: debhelper.pod:222 msgid "" "Some debhelper commands may make the generated package need to depend on " "some other packages. For example, if you use L, your " @@ -616,7 +695,8 @@ "offre une solution d'automatisation." # type: textblock -#: debhelper.pod:222 +#. type: textblock +#: debhelper.pod:230 msgid "" "All commands of this type, besides documenting what dependencies may be " "needed on their man pages, will automatically generate a substvar called " @@ -630,7 +710,8 @@ "des dépendances induites par debhelper." # type: textblock -#: debhelper.pod:227 +#. type: textblock +#: debhelper.pod:235 msgid "" "This is entirely independent of the standard ${shlibs:Depends} generated by " "L, and the ${perl:Depends} generated by L. " @@ -643,12 +724,14 @@ "si les conjectures de debhelper ne correspondent pas la réalité." # type: =head2 -#: debhelper.pod:232 +#. type: =head2 +#: debhelper.pod:240 msgid "Package build directories" msgstr "Répertoires de construction du paquet" # type: textblock -#: debhelper.pod:234 +#. type: textblock +#: debhelper.pod:242 msgid "" "By default, all debhelper programs assume that the temporary directory used " "for assembling the tree of files in a package is debian/." @@ -658,7 +741,8 @@ "est debian/I." # type: textblock -#: debhelper.pod:237 +#. type: textblock +#: debhelper.pod:245 msgid "" "Sometimes, you might want to use some other temporary directory. This is " "supported by the -P flag. For example, \"dh_installdocs -Pdebian/tmp\", will " @@ -677,12 +761,14 @@ "l'unique paquet binaire à construire." # type: =head2 -#: debhelper.pod:245 +#. type: =head2 +#: debhelper.pod:253 msgid "Debhelper compatibility levels" msgstr "Niveaux de compatibilité de debhelper" # type: textblock -#: debhelper.pod:247 +#. type: textblock +#: debhelper.pod:255 msgid "" "From time to time, major non-backwards-compatible changes need to be made to " "debhelper, to keep it clean and well-designed as needs change and its author " @@ -701,7 +787,8 @@ "comportement de diverses manières." # type: textblock -#: debhelper.pod:254 +#. type: textblock +#: debhelper.pod:262 #, fuzzy msgid "" "Tell debhelper what compatibility level to use by writing a number to debian/" @@ -712,7 +799,8 @@ "S" # type: verbatim -#: debhelper.pod:257 +#. type: verbatim +#: debhelper.pod:265 #, fuzzy, no-wrap msgid "" " % echo 7 > debian/compat\n" @@ -722,7 +810,8 @@ "\n" # type: textblock -#: debhelper.pod:259 +#. type: textblock +#: debhelper.pod:267 msgid "" "Unless otherwise indicated, all debhelper documentation assumes that you are " "using the most recent compatibility level, and in most cases does not " @@ -739,17 +828,20 @@ "compatibilité antérieurs." # type: textblock -#: debhelper.pod:266 +#. type: textblock +#: debhelper.pod:274 msgid "These are the available compatibility levels:" msgstr "Les niveaux de compatibilité sont les S" # type: =item -#: debhelper.pod:270 +#. type: =item +#: debhelper.pod:278 msgid "V1" msgstr "V1" # type: textblock -#: debhelper.pod:272 +#. type: textblock +#: debhelper.pod:280 msgid "" "This is the original debhelper compatibility level, and so it is the default " "one. In this mode, debhelper will use debian/tmp as the package tree " @@ -762,17 +854,20 @@ "et debian/I pour tous les autres. Ce mode est déconseillé." # type: textblock -#: debhelper.pod:277 debhelper.pod:284 debhelper.pod:307 +#. type: textblock +#: debhelper.pod:285 debhelper.pod:292 debhelper.pod:315 debhelper.pod:344 msgid "This mode is deprecated." msgstr "Ce mode est déconseillé." # type: =item -#: debhelper.pod:279 +#. type: =item +#: debhelper.pod:287 msgid "V2" msgstr "V2" # type: textblock -#: debhelper.pod:281 +#. type: textblock +#: debhelper.pod:289 msgid "" "In this mode, debhelper will consistently use debian/ as the " "package tree directory for every package that is built." @@ -781,26 +876,30 @@ "répertoire de l'arborescence de chaque paquet construit." # type: =item -#: debhelper.pod:286 +#. type: =item +#: debhelper.pod:294 msgid "V3" msgstr "V3" # type: textblock -#: debhelper.pod:288 +#. type: textblock +#: debhelper.pod:296 msgid "This mode works like V2, with the following additions:" msgstr "Ce mode fonctionne comme V2 mais avec les ajouts S" # type: =item -#: debhelper.pod:292 debhelper.pod:297 debhelper.pod:301 debhelper.pod:315 -#: debhelper.pod:320 debhelper.pod:325 debhelper.pod:330 debhelper.pod:342 -#: debhelper.pod:346 debhelper.pod:351 debhelper.pod:355 debhelper.pod:367 -#: debhelper.pod:372 debhelper.pod:378 debhelper.pod:384 debhelper.pod:399 -#: debhelper.pod:406 debhelper.pod:410 debhelper.pod:414 +#. type: =item +#: debhelper.pod:300 debhelper.pod:305 debhelper.pod:309 debhelper.pod:323 +#: debhelper.pod:328 debhelper.pod:333 debhelper.pod:338 debhelper.pod:352 +#: debhelper.pod:356 debhelper.pod:361 debhelper.pod:365 debhelper.pod:377 +#: debhelper.pod:382 debhelper.pod:388 debhelper.pod:394 debhelper.pod:409 +#: debhelper.pod:416 debhelper.pod:420 debhelper.pod:424 msgid "-" msgstr "-" # type: textblock -#: debhelper.pod:294 +#. type: textblock +#: debhelper.pod:302 msgid "" "Debhelper config files support globbing via * and ?, when appropriate. To " "turn this off and use those characters raw, just prefix with a backslash." @@ -811,14 +910,16 @@ "oblique (backslash)." # type: textblock -#: debhelper.pod:299 +#. type: textblock +#: debhelper.pod:307 msgid "dh_makeshlibs makes the postinst and postrm scripts call ldconfig." msgstr "" "Les scripts de maintenance du paquet (postinst et postrm) feront appel à " "ldconfig quand dh_makeshlibs sera lancé." # type: textblock -#: debhelper.pod:303 +#. type: textblock +#: debhelper.pod:311 msgid "" "Every file in etc/ is automatically flagged as a conffile by dh_installdeb." msgstr "" @@ -826,17 +927,20 @@ "fichier de configuration." # type: =item -#: debhelper.pod:309 +#. type: =item +#: debhelper.pod:317 msgid "V4" msgstr "V4" # type: textblock -#: debhelper.pod:311 +#. type: textblock +#: debhelper.pod:319 msgid "Changes from V3 are:" msgstr "Les changements par rapport à la version 3 S" # type: textblock -#: debhelper.pod:317 +#. type: textblock +#: debhelper.pod:325 msgid "" "dh_makeshlibs -V will not include the debian part of the version number in " "the generated dependency line in the shlibs file." @@ -845,7 +949,8 @@ "ligne de dépendance produite dans le fichier shlibs." # type: textblock -#: debhelper.pod:322 +#. type: textblock +#: debhelper.pod:330 msgid "" "You are encouraged to put the new ${misc:Depends} into debian/control to " "supplement the ${shlibs:Depends} field." @@ -854,7 +959,8 @@ "control pour compléter ${shlibs:Depends}." # type: textblock -#: debhelper.pod:327 +#. type: textblock +#: debhelper.pod:335 msgid "" "dh_fixperms will make all files in bin/ directories and in etc/init.d " "executable." @@ -863,32 +969,37 @@ "init.d." # type: textblock -#: debhelper.pod:332 +#. type: textblock +#: debhelper.pod:340 msgid "dh_link will correct existing links to conform with policy." msgstr "" "dh_link corrigera les liens existants pour les rendre conformes à la Charte " "Debian." # type: =item -#: debhelper.pod:336 +#. type: =item +#: debhelper.pod:346 msgid "V5" msgstr "V5" # type: textblock -#: debhelper.pod:338 +#. type: textblock +#: debhelper.pod:348 #, fuzzy msgid "Changes from V4 are:" msgstr "Les changements par rapport à la version 3 S" # type: textblock -#: debhelper.pod:344 +#. type: textblock +#: debhelper.pod:354 msgid "Comments are ignored in debhelper config files." msgstr "" "Les commentaires sont ignorés dans les fichiers de configuration de " "debhelper." # type: textblock -#: debhelper.pod:348 +#. type: textblock +#: debhelper.pod:358 msgid "" "dh_strip --dbg-package now specifies the name of a package to put debugging " "symbols in, not the packages to take the symbols from." @@ -898,37 +1009,43 @@ "symboles." # type: textblock -#: debhelper.pod:353 +#. type: textblock +#: debhelper.pod:363 msgid "dh_installdocs skips installing empty files." msgstr "dh_installdocs saute l'installation des fichiers vides." # type: textblock -#: debhelper.pod:357 +#. type: textblock +#: debhelper.pod:367 msgid "dh_install errors out if wildcards expand to nothing." msgstr "" "dh_install génère des erreurs si les jokers (wildcards) ne correspondent à " "rien." # type: =item -#: debhelper.pod:361 +#. type: =item +#: debhelper.pod:371 msgid "V6" msgstr "" # type: textblock -#: debhelper.pod:363 +#. type: textblock +#: debhelper.pod:373 #, fuzzy msgid "Changes from V5 are:" msgstr "Les changements par rapport à la version 3 S" # type: textblock -#: debhelper.pod:369 +#. type: textblock +#: debhelper.pod:379 msgid "" -"Commands that generate maintainer script fragements will order the " -"fragements in reverse order for the prerm and postrm scripts." +"Commands that generate maintainer script fragments will order the fragments " +"in reverse order for the prerm and postrm scripts." msgstr "" # type: textblock -#: debhelper.pod:374 +#. type: textblock +#: debhelper.pod:384 #, fuzzy msgid "" "dh_installwm will install a slave manpage link for x-window-manager.1.gz, if " @@ -936,7 +1053,8 @@ msgstr "dh_installwm - inscrit un gestionnaire de fenêtre (window manager)" # type: textblock -#: debhelper.pod:380 +#. type: textblock +#: debhelper.pod:390 msgid "" "dh_builddeb did not previously delete everything matching DH_ALWAYS_EXCLUDE, " "if it was set to a list of things to exclude, such as \"CVS:.svn:.git\". Now " @@ -944,19 +1062,22 @@ msgstr "" # type: textblock -#: debhelper.pod:386 +#. type: textblock +#: debhelper.pod:396 msgid "" "dh_installman allows overwriting existing man pages in the package build " "directory. In previous compatibility levels it silently refuses to do this." msgstr "" # type: =item -#: debhelper.pod:391 +#. type: =item +#: debhelper.pod:401 msgid "V7" msgstr "" # type: textblock -#: debhelper.pod:393 +#. type: textblock +#: debhelper.pod:403 #, fuzzy msgid "This is the recommended mode of operation." msgstr "" @@ -964,44 +1085,51 @@ "version V4 S" # type: textblock -#: debhelper.pod:395 +#. type: textblock +#: debhelper.pod:405 #, fuzzy msgid "Changes from V6 are:" msgstr "Les changements par rapport à la version 3 S" # type: textblock -#: debhelper.pod:401 +#. type: textblock +#: debhelper.pod:411 msgid "" "dh_install, will fall back to looking for files in debian/tmp if it doesn't " "find them in the current directory (or wherever you tell it look using --" -"srcdir). This allows dh_install to interoperate with dh_auto_install, which " -"installs to debian/tmp, without needing any special parameters." +"sourcedir). This allows dh_install to interoperate with dh_auto_install, " +"which installs to debian/tmp, without needing any special parameters." msgstr "" # type: textblock -#: debhelper.pod:408 +#. type: textblock +#: debhelper.pod:418 msgid "dh_clean will read debian/clean and delete files listed there." msgstr "" # type: textblock -#: debhelper.pod:412 +#. type: textblock +#: debhelper.pod:422 msgid "dh_clean will delete toplevel *-stamp files." msgstr "" # type: textblock -#: debhelper.pod:416 +#. type: textblock +#: debhelper.pod:426 msgid "" "dh_installchangelogs will guess at what file is the upstream changelog if " "none is specified." msgstr "" # type: =head2 -#: debhelper.pod:423 +#. type: =head2 +#: debhelper.pod:433 msgid "Doc directory symlinks" msgstr "Liens symboliques vers le répertoire de documentation" # type: textblock -#: debhelper.pod:425 +#. type: textblock +#: debhelper.pod:435 msgid "" "Sometimes it is useful to make a package not contain a /usr/share/doc/" "package directory at all, instead placing just a dangling symlink in the " @@ -1020,16 +1148,18 @@ "résultat, il suffit d'omettre l'installation du répertoire de documentation " "dans le paquet et d'employer dh_link pour générer le lien symbolique (ou le " "faire manuellement). Dans ce cas debhelper devrait se comporter " -"correctement, c'est-à-dire remarquer qu'il s'agit d'un lien symbolique S<« " -"en l'air »> et ne pas essayer d'installer un fichier copyright ou changelog." +"correctement, c'est-à-dire remarquer qu'il s'agit d'un lien symbolique S<« en " +"l'air »> et ne pas essayer d'installer un fichier copyright ou changelog." # type: =head2 -#: debhelper.pod:434 +#. type: =head2 +#: debhelper.pod:444 msgid "udebs" msgstr "udebs" # type: textblock -#: debhelper.pod:436 +#. type: textblock +#: debhelper.pod:446 msgid "" "Debhelper includes support for udebs. To create a udeb with debhelper, add " "\"XC-Package-Type: udeb\" to the package's stanza in debian/control, and " @@ -1048,12 +1178,14 @@ "les scripts de configuration, etc." # type: =head2 -#: debhelper.pod:443 +#. type: =head2 +#: debhelper.pod:453 msgid "Other notes" msgstr "Autres remarques" # type: textblock -#: debhelper.pod:445 +#. type: textblock +#: debhelper.pod:455 msgid "" "In general, if any debhelper program needs a directory to exist under " "debian/, it will create it. I haven't bothered to document this in all the " @@ -1070,7 +1202,8 @@ "fichiers menu, etc." # type: textblock -#: debhelper.pod:451 +#. type: textblock +#: debhelper.pod:461 #, fuzzy msgid "" "Once your package uses debhelper to build, be sure to add debhelper to your " @@ -1086,7 +1219,8 @@ "le paquet emploie le niveau 5 de S" # type: verbatim -#: debhelper.pod:457 +#. type: verbatim +#: debhelper.pod:467 #, fuzzy, no-wrap msgid "" " Build-Depends: debhelper (>= 7)\n" @@ -1096,17 +1230,20 @@ "\n" # type: =head1 -#: debhelper.pod:459 +#. type: =head1 +#: debhelper.pod:469 msgid "ENVIRONMENT" msgstr "VARIABLES D'ENVIRONNEMENT" # type: =item -#: debhelper.pod:463 +#. type: =item +#: debhelper.pod:473 msgid "DH_VERBOSE" msgstr "DH_VERBOSE" # type: textblock -#: debhelper.pod:465 +#. type: textblock +#: debhelper.pod:475 msgid "" "Set to 1 to enable verbose mode. Debhelper will output every command it runs " "that modifies files on the build system." @@ -1115,12 +1252,14 @@ "commande exécutée qui modifie des fichiers." # type: =item -#: debhelper.pod:468 +#. type: =item +#: debhelper.pod:478 msgid "DH_COMPAT" msgstr "DH_COMPAT" # type: textblock -#: debhelper.pod:470 +#. type: textblock +#: debhelper.pod:480 msgid "" "Temporarily specifies what compatibility level debhelper should run at, " "overriding any value in debian/compat." @@ -1129,28 +1268,41 @@ "fonctionner. Cette valeur supplante la valeur précisée dans debian/compat." # type: =item -#: debhelper.pod:473 +#. type: =item +#: debhelper.pod:483 msgid "DH_NO_ACT" msgstr "DH_NO_ACT" # type: textblock -#: debhelper.pod:475 +#. type: textblock +#: debhelper.pod:485 msgid "Set to 1 to enable no-act mode." msgstr "Mettre cette variable à 1 pour activer le mode simulation (no-act)." # type: =item -#: debhelper.pod:477 +#. type: =item +#: debhelper.pod:487 msgid "DH_OPTIONS" msgstr "DH_OPTIONS" # type: textblock -#: debhelper.pod:479 +#. type: textblock +#: debhelper.pod:489 msgid "" "Anything in this variable will be prepended to the command line arguments of " -"all debhelper commands. This is useful in some situations, for example, if " -"you need to pass -p to all debhelper commands that will be run. One good way " -"to set DH_OPTIONS is by using \"Target-specific Variable Values\" in your " -"debian/rules file. See the make documentation for details on doing this." +"all debhelper commands. Command-specific options will be ignored by commands " +"that do not support them." +msgstr "" + +# type: textblock +#. type: textblock +#: debhelper.pod:493 +#, fuzzy +msgid "" +"This is useful in some situations, for example, if you need to pass -p to " +"all debhelper commands that will be run. One good way to set DH_OPTIONS is " +"by using \"Target-specific Variable Values\" in your debian/rules file. See " +"the make documentation for details on doing this." msgstr "" "Le contenu de cette variable sera ajouté au début des arguments de chaque " "ligne de commande de debhelper. Ce comportement est utile dans quelques " @@ -1161,12 +1313,14 @@ "cette méthode." # type: =item -#: debhelper.pod:485 +#. type: =item +#: debhelper.pod:498 msgid "DH_ALWAYS_EXCLUDE" msgstr "DH_ALWAYS_EXCLUDE" # type: textblock -#: debhelper.pod:487 +#. type: textblock +#: debhelper.pod:500 msgid "" "If set, this adds the value the variable is set to to the -X options of all " "commands that support the -X option. Moreover, dh_builddeb will rm -rf " @@ -1178,7 +1332,8 @@ "construction de paquet." # type: textblock -#: debhelper.pod:491 +#. type: textblock +#: debhelper.pod:504 msgid "" "This can be useful if you are doing a build from a CVS source tree, in which " "case setting DH_ALWAYS_EXCLUDE=CVS will prevent any CVS directories from " @@ -1196,7 +1351,8 @@ "soit l'endroit où le paquet est construit." # type: textblock -#: debhelper.pod:498 +#. type: textblock +#: debhelper.pod:511 msgid "" "Multiple things to exclude can be separated with colons, as in " "DH_ALWAYS_EXCLUDE=CVS:.svn" @@ -1205,81 +1361,90 @@ "dans DH_ALWAYS_EXCLUDE=CVS:.svn" # type: =head1 -#: debhelper.pod:503 dh_builddeb:85 dh_clean:129 dh_compress:190 dh_desktop:47 -#: dh_fixperms:110 dh_gconf:92 dh_gencontrol:73 dh_installcatalogs:109 -#: dh_installchangelogs:140 dh_installcron:61 dh_installdebconf:118 -#: dh_installdeb:94 dh_installdirs:83 dh_installdocs:237 dh_installemacsen:109 -#: dh_installexamples:103 dh_installinfo:103 dh_installinit:216 +#. type: =head1 +#: debhelper.pod:516 dh_builddeb:87 dh_clean:130 dh_compress:190 dh_desktop:27 +#: dh_fixperms:110 dh_gconf:106 dh_gencontrol:79 dh_installcatalogs:109 +#: dh_installchangelogs:147 dh_installcron:61 dh_installdebconf:118 +#: dh_installdeb:94 dh_installdirs:83 dh_installdocs:223 dh_installemacsen:111 +#: dh_installexamples:103 dh_installinfo:103 dh_installinit:224 #: dh_installlogcheck:51 dh_installlogrotate:50 dh_installmanpages:197 -#: dh_installman:249 dh_installmenu:80 dh_installmime:85 dh_installmodules:116 -#: dh_installpam:52 dh_install:268 dh_installppp:56 dh_installwm:107 -#: dh_installxfonts:86 dh_link:223 dh_listpackages:29 dh_makeshlibs:222 -#: dh_md5sums:86 dh_movefiles:162 dh_perl:152 dh_python:282 dh_scrollkeeper:76 -#: dh_shlibdeps:159 dh_strip:224 dh_suidregister:117 dh_testdir:44 +#: dh_installman:251 dh_installmenu:80 dh_installmime:85 dh_installmodules:124 +#: dh_installpam:52 dh_install:272 dh_installppp:56 dh_installwm:107 +#: dh_installxfonts:86 dh_link:223 dh_listpackages:29 dh_makeshlibs:227 +#: dh_md5sums:89 dh_movefiles:162 dh_perl:152 dh_python:282 dh_scrollkeeper:76 +#: dh_shlibdeps:163 dh_strip:226 dh_suidregister:117 dh_testdir:44 #: dh_testroot:27 dh_testversion:75 dh_undocumented:28 dh_usrlocal:114 msgid "SEE ALSO" msgstr "VOIR AUSSI" # type: =item -#: debhelper.pod:507 +#. type: =item +#: debhelper.pod:520 msgid "F" msgstr "F" # type: textblock -#: debhelper.pod:509 +#. type: textblock +#: debhelper.pod:522 msgid "A set of example debian/rules files that use debhelper." msgstr "" "Un ensemble d'exemples de fichiers debian/rules qui utilisent debhelper." # type: =item -#: debhelper.pod:511 +#. type: =item +#: debhelper.pod:524 msgid "L" msgstr "L" # type: textblock -#: debhelper.pod:513 +#. type: textblock +#: debhelper.pod:526 msgid "Debhelper web site." msgstr "Le site internet de debhelper." # type: =head1 -#: debhelper.pod:517 dh_builddeb:91 dh_clean:135 dh_compress:196 dh_desktop:53 -#: dh_fixperms:116 dh_gconf:98 dh_gencontrol:79 dh_installcatalogs:115 -#: dh_installchangelogs:146 dh_installcron:67 dh_installdebconf:124 -#: dh_installdeb:100 dh_installdirs:89 dh_installdocs:243 -#: dh_installemacsen:115 dh_installexamples:109 dh_installinfo:109 -#: dh_installinit:222 dh_installlogcheck:57 dh_installlogrotate:56 -#: dh_installmanpages:203 dh_installman:255 dh_installmenu:88 -#: dh_installmime:91 dh_installmodules:122 dh_installpam:58 dh_install:274 +#. type: =head1 +#: debhelper.pod:530 dh_builddeb:93 dh_clean:136 dh_compress:196 dh_desktop:33 +#: dh_fixperms:116 dh_gconf:112 dh_gencontrol:85 dh_installcatalogs:115 +#: dh_installchangelogs:153 dh_installcron:67 dh_installdebconf:124 +#: dh_installdeb:100 dh_installdirs:89 dh_installdocs:229 +#: dh_installemacsen:117 dh_installexamples:109 dh_installinfo:109 +#: dh_installinit:230 dh_installlogcheck:57 dh_installlogrotate:56 +#: dh_installmanpages:203 dh_installman:257 dh_installmenu:88 +#: dh_installmime:91 dh_installmodules:130 dh_installpam:58 dh_install:278 #: dh_installppp:62 dh_installwm:113 dh_installxfonts:92 dh_link:229 -#: dh_listpackages:35 dh_makeshlibs:228 dh_md5sums:92 dh_movefiles:168 -#: dh_perl:158 dh_python:288 dh_scrollkeeper:82 dh_shlibdeps:165 dh_strip:230 +#: dh_listpackages:35 dh_makeshlibs:233 dh_md5sums:95 dh_movefiles:168 +#: dh_perl:158 dh_python:288 dh_scrollkeeper:82 dh_shlibdeps:169 dh_strip:232 #: dh_suidregister:123 dh_testdir:50 dh_testroot:33 dh_testversion:81 #: dh_undocumented:34 dh_usrlocal:120 msgid "AUTHOR" msgstr "AUTEUR" # type: textblock -#: debhelper.pod:519 dh_builddeb:93 dh_clean:137 dh_compress:198 -#: dh_fixperms:118 dh_gencontrol:81 dh_installchangelogs:148 dh_installcron:69 +#. type: textblock +#: debhelper.pod:532 dh_builddeb:95 dh_clean:138 dh_compress:198 +#: dh_fixperms:118 dh_gencontrol:87 dh_installchangelogs:155 dh_installcron:69 #: dh_installdebconf:126 dh_installdeb:102 dh_installdirs:91 -#: dh_installdocs:245 dh_installemacsen:117 dh_installexamples:111 -#: dh_installinfo:111 dh_installinit:224 dh_installlogrotate:58 -#: dh_installmanpages:205 dh_installman:257 dh_installmenu:90 -#: dh_installmime:93 dh_installmodules:124 dh_installpam:60 dh_install:276 +#: dh_installdocs:231 dh_installemacsen:119 dh_installexamples:111 +#: dh_installinfo:111 dh_installinit:232 dh_installlogrotate:58 +#: dh_installmanpages:205 dh_installman:259 dh_installmenu:90 +#: dh_installmime:93 dh_installmodules:132 dh_installpam:60 dh_install:280 #: dh_installppp:64 dh_installwm:115 dh_installxfonts:94 dh_link:231 -#: dh_listpackages:37 dh_makeshlibs:230 dh_md5sums:94 dh_movefiles:170 -#: dh_shlibdeps:167 dh_strip:232 dh_suidregister:125 dh_testdir:52 +#: dh_listpackages:37 dh_makeshlibs:235 dh_md5sums:97 dh_movefiles:170 +#: dh_shlibdeps:171 dh_strip:234 dh_suidregister:125 dh_testdir:52 #: dh_testroot:35 dh_testversion:83 dh_undocumented:36 msgid "Joey Hess " msgstr "Joey Hess " # type: textblock +#. type: textblock #: dh_builddeb:5 #, fuzzy msgid "dh_builddeb - build debian binary packages" msgstr "dh_builddeb - Construction des paquets Debian" # type: textblock +#. type: textblock #: dh_builddeb:14 msgid "" "B [S>] [B<--destdir=>I] [B<--" @@ -1289,6 +1454,7 @@ "[B<--filename=>I] [S I>]" # type: textblock +#. type: textblock #: dh_builddeb:18 msgid "" "dh_builddeb simply calls L to build a debian package or " @@ -1298,12 +1464,13 @@ "plusieurs paquet(s) Debian." # type: =head1 -#: dh_builddeb:21 dh_clean:33 dh_compress:38 dh_fixperms:31 dh_gconf:34 +#. type: =head1 +#: dh_builddeb:21 dh_clean:33 dh_compress:38 dh_fixperms:31 dh_gconf:39 #: dh_gencontrol:26 dh_installcatalogs:42 dh_installchangelogs:44 -#: dh_installcron:24 dh_installdebconf:50 dh_installdirs:28 dh_installdocs:51 +#: dh_installcron:24 dh_installdebconf:50 dh_installdirs:28 dh_installdocs:49 #: dh_installemacsen:35 dh_installexamples:29 dh_installinfo:37 #: dh_installinit:33 dh_installlogrotate:22 dh_installmanpages:40 -#: dh_installman:58 dh_installmenu:34 dh_installmime:31 dh_installmodules:39 +#: dh_installman:58 dh_installmenu:34 dh_installmime:31 dh_installmodules:43 #: dh_installpam:24 dh_install:47 dh_installppp:26 dh_installwm:32 dh_link:48 #: dh_makeshlibs:28 dh_md5sums:28 dh_movefiles:32 dh_perl:31 dh_python:39 #: dh_scrollkeeper:32 dh_shlibdeps:26 dh_strip:35 dh_testdir:23 @@ -1312,11 +1479,13 @@ msgstr "OPTIONS" # type: =item +#. type: =item #: dh_builddeb:25 msgid "B<--destdir=>I" msgstr "B<--destdir=>I" # type: textblock +#. type: textblock #: dh_builddeb:27 msgid "" "Use this if you want the generated .deb files to be put in a directory other " @@ -1326,11 +1495,13 @@ "le répertoire par défaut S<« .. »>." # type: =item +#. type: =item #: dh_builddeb:30 msgid "B<--filename=>I" msgstr "B<--filename=>I" # type: textblock +#. type: textblock #: dh_builddeb:32 msgid "" "Use this if you want to force the generated .deb file to have a particular " @@ -1340,58 +1511,65 @@ "fonctionne pas correctement si plus d'un fichier .deb est S" # type: =item +#. type: =item #: dh_builddeb:35 msgid "B<-u>I" msgstr "B<-u> I" # type: =item +#. type: =item #: dh_builddeb:37 dh_gencontrol:32 dh_installdebconf:58 dh_installinit:78 #: dh_makeshlibs:76 dh_shlibdeps:32 msgid "B<--> I" msgstr "B<--> I" # type: textblock +#. type: textblock #: dh_builddeb:39 msgid "Pass I to L when it is used to build the package." msgstr "" "Fournit les I à L lors de la construction du paquet." # type: textblock -#: dh_builddeb:87 dh_clean:131 dh_compress:192 dh_fixperms:112 dh_gconf:94 -#: dh_gencontrol:75 dh_installcatalogs:111 dh_installchangelogs:142 +#. type: textblock +#: dh_builddeb:89 dh_clean:132 dh_compress:192 dh_fixperms:112 dh_gconf:108 +#: dh_gencontrol:81 dh_installcatalogs:111 dh_installchangelogs:149 #: dh_installcron:63 dh_installdebconf:120 dh_installdeb:96 dh_installdirs:85 -#: dh_installdocs:239 dh_installemacsen:111 dh_installexamples:105 -#: dh_installinfo:105 dh_installinit:218 dh_installlogcheck:53 -#: dh_installlogrotate:52 dh_installmanpages:199 dh_installman:251 -#: dh_installmime:87 dh_installmodules:118 dh_installpam:54 dh_install:270 +#: dh_installdocs:225 dh_installemacsen:113 dh_installexamples:105 +#: dh_installinfo:105 dh_installinit:226 dh_installlogcheck:53 +#: dh_installlogrotate:52 dh_installmanpages:199 dh_installman:253 +#: dh_installmime:87 dh_installmodules:126 dh_installpam:54 dh_install:274 #: dh_installppp:58 dh_installwm:109 dh_installxfonts:88 dh_link:225 -#: dh_listpackages:31 dh_makeshlibs:224 dh_md5sums:88 dh_movefiles:164 -#: dh_perl:154 dh_python:284 dh_strip:226 dh_suidregister:119 dh_testdir:46 +#: dh_listpackages:31 dh_makeshlibs:229 dh_md5sums:91 dh_movefiles:164 +#: dh_perl:154 dh_python:284 dh_strip:228 dh_suidregister:119 dh_testdir:46 #: dh_testroot:29 dh_testversion:77 dh_undocumented:30 dh_usrlocal:116 msgid "L" msgstr "L" # type: textblock -#: dh_builddeb:89 dh_clean:133 dh_compress:194 dh_desktop:51 dh_fixperms:114 -#: dh_gconf:96 dh_gencontrol:77 dh_installchangelogs:144 dh_installcron:65 -#: dh_installdebconf:122 dh_installdeb:98 dh_installdirs:87 dh_installdocs:241 -#: dh_installemacsen:113 dh_installexamples:107 dh_installinfo:107 -#: dh_installinit:220 dh_installlogrotate:54 dh_installmanpages:201 -#: dh_installman:253 dh_installmenu:86 dh_installmime:89 dh_installmodules:120 -#: dh_installpam:56 dh_install:272 dh_installppp:60 dh_installwm:111 -#: dh_installxfonts:90 dh_link:227 dh_listpackages:33 dh_makeshlibs:226 -#: dh_md5sums:90 dh_movefiles:166 dh_perl:156 dh_python:286 dh_scrollkeeper:80 -#: dh_shlibdeps:163 dh_strip:228 dh_suidregister:121 dh_testdir:48 +#. type: textblock +#: dh_builddeb:91 dh_clean:134 dh_compress:194 dh_desktop:31 dh_fixperms:114 +#: dh_gconf:110 dh_gencontrol:83 dh_installchangelogs:151 dh_installcron:65 +#: dh_installdebconf:122 dh_installdeb:98 dh_installdirs:87 dh_installdocs:227 +#: dh_installemacsen:115 dh_installexamples:107 dh_installinfo:107 +#: dh_installinit:228 dh_installlogrotate:54 dh_installmanpages:201 +#: dh_installman:255 dh_installmenu:86 dh_installmime:89 dh_installmodules:128 +#: dh_installpam:56 dh_install:276 dh_installppp:60 dh_installwm:111 +#: dh_installxfonts:90 dh_link:227 dh_listpackages:33 dh_makeshlibs:231 +#: dh_md5sums:93 dh_movefiles:166 dh_perl:156 dh_python:286 dh_scrollkeeper:80 +#: dh_shlibdeps:167 dh_strip:230 dh_suidregister:121 dh_testdir:48 #: dh_testroot:31 dh_testversion:79 dh_undocumented:32 dh_usrlocal:118 msgid "This program is a part of debhelper." msgstr "Ce programme fait partie de debhelper." # type: textblock +#. type: textblock #: dh_clean:5 msgid "dh_clean - clean up package build directories" msgstr "dh_clean - nettoie le répertoire de construction du paquet" # type: textblock +#. type: textblock #: dh_clean:14 msgid "" "B [S>] [B<-k>] [B<-d>] [B<-X>I] " @@ -1401,6 +1579,7 @@ "[S>]" # type: verbatim +#. type: verbatim #: dh_clean:18 #, fuzzy, no-wrap msgid "" @@ -1417,6 +1596,7 @@ "\n" # type: textblock +#. type: textblock #: dh_clean:25 #, fuzzy msgid "The debian/clean file can list other files to be removed." @@ -1425,6 +1605,7 @@ "installer." # type: textblock +#. type: textblock #: dh_clean:27 msgid "" "It does not run \"make clean\" to clean up after the build process. Use " @@ -1432,6 +1613,7 @@ msgstr "" # type: textblock +#. type: textblock #: dh_clean:30 msgid "" "dh_clean (or \"dh clean\") should be the last debhelper command run in the " @@ -1439,24 +1621,27 @@ msgstr "" # type: =item +#. type: =item #: dh_clean:37 dh_installchangelogs:48 msgid "B<-k>, B<--keep>" msgstr "B<-k>, B<--keep>" # type: textblock +#. type: textblock #: dh_clean:39 -msgid "" -"This causes L to be run instead of dh_clean, for backwards " -"compatibility." -msgstr "" +#, fuzzy +msgid "This is deprecated, use L instead." +msgstr "Ce paramètre est déconseillé. Il vaut mieux utiliser --name." # type: =item -#: dh_clean:42 +#. type: =item +#: dh_clean:41 msgid "B<-d>, B<--dirs-only>" msgstr "B<-d>, B<--dirs-only>" # type: textblock -#: dh_clean:44 +#. type: textblock +#: dh_clean:43 msgid "" "Only clean the package build directories, do not clean up any other files at " "all." @@ -1465,12 +1650,14 @@ "autre fichier." # type: =item -#: dh_clean:47 +#. type: =item +#: dh_clean:46 msgid "B<-X>I B<--exclude=>I" msgstr "B<-X>I<élément> B<--exclude=>I<élément>" # type: textblock -#: dh_clean:49 +#. type: textblock +#: dh_clean:48 msgid "" "Exclude files that contain \"item\" anywhere in their filename from being " "deleted, even if they would normally be deleted. You may use this option " @@ -1482,17 +1669,20 @@ "d'éléments." # type: =item -#: dh_clean:53 dh_compress:55 dh_installdocs:69 dh_installexamples:38 +#. type: =item +#: dh_clean:52 dh_compress:55 dh_installdocs:63 dh_installexamples:38 #: dh_installinfo:50 dh_installmanpages:44 dh_movefiles:49 dh_testdir:27 msgid "I" msgstr "I" # type: textblock -#: dh_clean:55 +#. type: textblock +#: dh_clean:54 msgid "Delete these files too." msgstr "Supprime également les fichiers listés." # type: textblock +#. type: textblock #: dh_compress:5 msgid "" "dh_compress - compress files and fix symlinks in package build directories" @@ -1501,6 +1691,7 @@ "paquet et modifie les liens symboliques en conséquence" # type: textblock +#. type: textblock #: dh_compress:15 msgid "" "B [S>] [B<-X>I] [B<-A>] [S>]" # type: textblock +#. type: textblock #: dh_compress:19 msgid "" "dh_compress is a debhelper program that is responsible for compressing the " @@ -1524,6 +1716,7 @@ "fichiers comprimés." # type: textblock +#. type: textblock #: dh_compress:24 msgid "" "By default, dh_compress compresses files that debian policy mandates should " @@ -1543,6 +1736,7 @@ "comprimés." # type: textblock +#. type: textblock #: dh_compress:31 #, fuzzy msgid "" @@ -1562,6 +1756,7 @@ "vraiment indispensable." # type: textblock +#. type: textblock #: dh_compress:44 msgid "" "Exclude files that contain \"item\" anywhere in their filename from being " @@ -1570,13 +1765,14 @@ "exclude. You can accomplish the same thing by using a debian/compress file, " "but this is easier." msgstr "" -"Permet d'exclure de la compression les fichiers qui comportent S<« élément " -"»> n'importe où dans leur nom. Par exemple, -X.jpeg exclura de la " -"compression les fichiers d'extension .jpeg. Cette option peut être employée " -"plusieurs fois afin d'exclure une liste d'éléments. Le même résultat peut " -"être obtenu avec un fichier debian/compress, mais -X est plus simple." +"Permet d'exclure de la compression les fichiers qui comportent S<« élément »> " +"n'importe où dans leur nom. Par exemple, -X.jpeg exclura de la compression " +"les fichiers d'extension .jpeg. Cette option peut être employée plusieurs " +"fois afin d'exclure une liste d'éléments. Le même résultat peut être obtenu " +"avec un fichier debian/compress, mais -X est plus simple." # type: textblock +#. type: textblock #: dh_compress:52 msgid "" "Compress all files specified by command line parameters in ALL packages " @@ -1586,64 +1782,56 @@ "TOUS les paquets construits." # type: textblock +#. type: textblock #: dh_compress:57 msgid "Add these files to the list of files to compress." msgstr "Ajoute ces fichiers à la liste des fichiers à comprimer." # type: =head1 +#. type: =head1 #: dh_compress:61 dh_perl:61 dh_python:66 dh_strip:74 dh_usrlocal:55 msgid "CONFORMS TO" msgstr "CONFORMITÉ" # type: textblock +#. type: textblock #: dh_compress:63 msgid "Debian policy, version 3.0" msgstr "Charte Debian, version 3.0" -# type: textblock +#. type: textblock #: dh_desktop:5 -msgid "dh_desktop - Register .desktop files" -msgstr "dh_desktop - inscrit les fichiers .desktop" +msgid "dh_desktop - deprecated no-op" +msgstr "" # type: textblock +#. type: textblock #: dh_desktop:14 #, fuzzy msgid "B [S>]" msgstr "B [S>]" -# type: textblock +#. type: textblock #: dh_desktop:18 msgid "" -"dh_desktop is a debhelper program that registers .desktop files. Currently " -"this program does not handle installation of the files, though it may do so " -"at a later date. It takes care of adding maintainer script fragments to call " -"F." -msgstr "" -"dh_desktop est un programme de la suite debhelper chargé de l'inscription " -"des fichiers .desktop. Actuellement ce programme ne gère pas l'installation " -"des fichiers, mais il pourrait bien le faire un jour. Il prend soin " -"d'ajouter des lignes de code aux scripts de maintenance du paquet afin " -"d'invoquer F." - -# type: textblock -#: dh_desktop:23 -msgid "" -"Note that since F currently only handles mime " -"types, as an optimisation, desktop files not containing MimeType fields will " -"currently be ignored by dh_desktop." +"dh_desktop was a debhelper program that registers .desktop files. However, " +"it no longer does anything, and is now deprecated." msgstr "" # type: textblock -#: dh_desktop:49 dh_scrollkeeper:78 +#. type: textblock +#: dh_desktop:29 dh_scrollkeeper:78 msgid "L" msgstr "L" # type: textblock -#: dh_desktop:55 dh_scrollkeeper:84 +#. type: textblock +#: dh_desktop:35 dh_scrollkeeper:84 msgid "Ross Burton " msgstr "Ross Burton " # type: textblock +#. type: textblock #: dh_fixperms:5 msgid "dh_fixperms - fix permissions of files in package build directories" msgstr "" @@ -1651,11 +1839,13 @@ "construction du paquet" # type: textblock +#. type: textblock #: dh_fixperms:14 msgid "B [S>] [B<-X>I]" msgstr "B [S>] [B<-X>I<élément>]" # type: textblock +#. type: textblock #: dh_fixperms:18 msgid "" "dh_fixperms is a debhelper program that is responsible for setting the " @@ -1667,6 +1857,7 @@ "les fichiers et les sous-répertoires du répertoire de construction du paquet." # type: textblock +#. type: textblock #: dh_fixperms:22 #, fuzzy msgid "" @@ -1690,11 +1881,13 @@ "setgid de tous les fichiers du paquet." # type: =item +#. type: =item #: dh_fixperms:35 msgid "B<-X>I, B<--exclude> I" msgstr "B<-X>I<élément>, B<--exclude> I<élément>" # type: textblock +#. type: textblock #: dh_fixperms:37 msgid "" "Exclude files that contain \"item\" anywhere in their filename from having " @@ -1706,17 +1899,20 @@ "plusieurs fois afin d'exclure une liste d'éléments." # type: textblock +#. type: textblock #: dh_gconf:5 msgid "dh_gconf - generate GConf schema registration scripts" msgstr "dh_gconf - produit les scripts d'enregistrement du schéma GConf" # type: textblock +#. type: textblock #: dh_gconf:14 #, fuzzy msgid "B [S>] [B<--priority=>]" msgstr "B [S>] [B<-p>]" # type: textblock +#. type: textblock #: dh_gconf:18 msgid "" "dh_gconf is a debhelper program that is responsible for registering GConf " @@ -1726,6 +1922,7 @@ "schémas GConf." # type: textblock +#. type: textblock #: dh_gconf:21 msgid "" "It automatically generates the postinst and prerm fragments needed to " @@ -1738,6 +1935,7 @@ "schemas." # type: textblock +#. type: textblock #: dh_gconf:25 msgid "" "If a file named debian/package.gconf-defaults exists, then it is installed " @@ -1752,7 +1950,24 @@ "seront produites pour exécuter update-gconf-defaults." # type: textblock +#. type: textblock #: dh_gconf:30 +#, fuzzy +msgid "" +"If a file named debian/package.gconf-mandatory exists, then it is installed " +"into usr/share/gconf/mandatory/10_package in the package build directory, " +"with \"package\" replaced by the package name, and similar postinst and " +"postrm fragments will be generated." +msgstr "" +"S'il existe un fichier nommé debian/paquet.gconf-defaults, il sera installé " +"dans le répertoire de construction du paquet sous usr/share/gconf/" +"defaults/10_paquet où le mot S<« paquet »> sera remplacé par le nom du " +"paquet. Certaines parties des scripts de maintenance postinst et postrm " +"seront produites pour exécuter update-gconf-defaults." + +# type: textblock +#. type: textblock +#: dh_gconf:35 msgid "" "The gconf-schemas and update-gconf-defaults scripts are provided by the " "gconf2 package. An appropriate dependency will be generated in ${misc:" @@ -1763,12 +1978,14 @@ "Depends}." # type: =item -#: dh_gconf:38 +#. type: =item +#: dh_gconf:43 msgid "B<--priority> I" msgstr "B<--priority> I" # type: textblock -#: dh_gconf:40 +#. type: textblock +#: dh_gconf:45 msgid "" "Use I (which should be a 2-digit number) as the defaults priority " "instead of 10. Higher values than ten can be used by derived distributions " @@ -1780,21 +1997,25 @@ "(50), ou les paquets spécifiques à un site (90)." # type: textblock -#: dh_gconf:100 +#. type: textblock +#: dh_gconf:114 msgid "Ross Burton Josselin Mouette " msgstr "Ross Burton Josselin Mouette " # type: textblock +#. type: textblock #: dh_gencontrol:5 msgid "dh_gencontrol - generate and install control file" msgstr "dh_gencontrol - produit et installe le fichier de contrôle" # type: textblock +#. type: textblock #: dh_gencontrol:14 msgid "B [S>] [S I>]" msgstr "B [S>] [S I>]" # type: textblock +#. type: textblock #: dh_gencontrol:18 msgid "" "dh_gencontrol is a debhelper program that is responsible for generating " @@ -1806,6 +2027,7 @@ "avec les droits appropriés." # type: textblock +#. type: textblock #: dh_gencontrol:22 #, fuzzy msgid "" @@ -1818,27 +2040,32 @@ "quelques options utiles dont S<« -isp »>." # type: =item +#. type: =item #: dh_gencontrol:30 #, fuzzy msgid "B<-u>I, B<--dpkg-gencontrol-params>=I" msgstr "B<-u>I, B<--dpkg-gencontrol-params>I" # type: textblock +#. type: textblock #: dh_gencontrol:34 msgid "Pass \"params\" to L." msgstr "Fournit S<« paramètres »> à L." # type: textblock +#. type: textblock #: dh_installcatalogs:5 msgid "dh_installcatalogs - install and register SGML Catalogs" msgstr "dh_installcatalogs - installe et inscrit les catalogues SGML" # type: textblock +#. type: textblock #: dh_installcatalogs:16 msgid "B [S>] [B<-n>]" msgstr "B [S>] [B<-n>]" # type: textblock +#. type: textblock #: dh_installcatalogs:20 #, fuzzy msgid "" @@ -1851,6 +2078,7 @@ "dès que le socle xml sera disponible.)" # type: textblock +#. type: textblock #: dh_installcatalogs:23 msgid "" "The file F.sgmlcatalogs> contains the catalogs to be " @@ -1867,6 +2095,7 @@ "C doit commencer par F." # type: textblock +#. type: textblock #: dh_installcatalogs:30 msgid "" "Catalogs will be registered in a supercatalog, in F." @@ -1876,6 +2105,7 @@ "I.cat>." # type: textblock +#. type: textblock #: dh_installcatalogs:33 #, fuzzy msgid "" @@ -1894,6 +2124,7 @@ "ajoutées aux scripts de maintenance du paquet." # type: textblock +#. type: textblock #: dh_installcatalogs:39 msgid "" "A dependency on B will be added to C<${misc:Depends}>, so be sure " @@ -1901,14 +2132,16 @@ msgstr "" # type: =item -#: dh_installcatalogs:46 dh_installdebconf:54 dh_installdocs:60 -#: dh_installemacsen:39 dh_installinfo:46 dh_installinit:37 dh_installmenu:38 -#: dh_installmime:35 dh_installmodules:43 dh_installwm:42 dh_makeshlibs:62 -#: dh_python:60 dh_scrollkeeper:36 dh_usrlocal:43 +#. type: =item +#: dh_installcatalogs:46 dh_installdebconf:54 dh_installemacsen:39 +#: dh_installinfo:46 dh_installinit:37 dh_installmenu:38 dh_installmime:35 +#: dh_installmodules:47 dh_installwm:42 dh_makeshlibs:62 dh_python:60 +#: dh_scrollkeeper:36 dh_usrlocal:43 msgid "B<-n>, B<--noscripts>" msgstr "B<-n>, B<--noscripts>" # type: textblock +#. type: textblock #: dh_installcatalogs:48 msgid "Do not modify F/F/F scripts." msgstr "" @@ -1916,8 +2149,9 @@ "F." # type: textblock -#: dh_installcatalogs:54 dh_installdocs:93 dh_installemacsen:56 -#: dh_installinfo:59 dh_installinit:112 dh_installmime:43 dh_installmodules:58 +#. type: textblock +#: dh_installcatalogs:54 dh_installdocs:87 dh_installemacsen:56 +#: dh_installinfo:59 dh_installinit:112 dh_installmime:43 dh_installmodules:62 #: dh_installwm:55 dh_scrollkeeper:44 dh_usrlocal:51 #, fuzzy msgid "" @@ -1931,16 +2165,19 @@ "maintenance du paquet." # type: textblock +#. type: textblock #: dh_installcatalogs:113 msgid "F" msgstr "F" # type: textblock +#. type: textblock #: dh_installcatalogs:117 msgid "Adam Di Carlo " msgstr "Adam Di Carlo " # type: textblock +#. type: textblock #: dh_installchangelogs:5 msgid "" "dh_installchangelogs - install changelogs into package build directories" @@ -1949,13 +2186,18 @@ "(changelog) dans les répertoires de construction du paquet" # type: textblock +#. type: textblock #: dh_installchangelogs:14 -msgid "B [S>] [B<-k>] [I]" +#, fuzzy +msgid "" +"B [S>] [B<-k>] [B<-X>I] " +"[I]" msgstr "" "B [S>] [B<-k>] [I]" # type: textblock +#. type: textblock #: dh_installchangelogs:18 msgid "" "dh_installchangelogs is a debhelper program that is responsible for " @@ -1966,6 +2208,7 @@ "répertoires de construction du paquet." # type: textblock +#. type: textblock #: dh_installchangelogs:21 msgid "" "dh_installchangelogs determines if the package is a debian native package, " @@ -1983,6 +2226,7 @@ "debian/changelog." # type: textblock +#. type: textblock #: dh_installchangelogs:28 msgid "" "Parallelling the debian changelog handling, this program also takes care of " @@ -1995,6 +2239,7 @@ "Un fichier debian/paquet.NEWS peut également être utilisé." # type: textblock +#. type: textblock #: dh_installchangelogs:33 msgid "" "An upstream changelog file may be specified as an option. If none is " @@ -2003,6 +2248,7 @@ msgstr "" # type: textblock +#. type: textblock #: dh_installchangelogs:37 #, fuzzy msgid "" @@ -2019,6 +2265,7 @@ "html2text »> afin de produire le fichier usr/share/doc/paquet/changelog." # type: textblock +#. type: textblock #: dh_installchangelogs:50 msgid "" "Keep the original name of the upstream changelog. This will be accomplished " @@ -2028,34 +2275,56 @@ "package refers to the changelog file." msgstr "" "Conserve le nom original du journal amont. Ce résultat est obtenu en " -"installant le journal amont sous le nom S<« changelog »> et en créant un " -"lien symbolique portant le nom d'origine et pointant sur le fichier S<« " -"changelog »>. Cela peut être utile si le journal amont porte un nom " -"inhabituel ou si d'autres éléments de documentation du paquet se réfèrent à " -"ce fichier." +"installant le journal amont sous le nom S<« changelog »> et en créant un lien " +"symbolique portant le nom d'origine et pointant sur le fichier S<« changelog " +"»>. Cela peut être utile si le journal amont porte un nom inhabituel ou si " +"d'autres éléments de documentation du paquet se réfèrent à ce fichier." + +# type: =item +#. type: =item +#: dh_installchangelogs:56 dh_installdocs:58 dh_installexamples:43 +#: dh_install:98 dh_link:57 dh_movefiles:44 +msgid "B<-Xitem>, B<--exclude=item>" +msgstr "B<-Xélément>, B<--exclude=élément>" + +# type: textblock +#. type: textblock +#: dh_installchangelogs:58 +#, fuzzy +msgid "" +"Exclude upstream changelog files that contain \"item\" anywhere in their " +"filename from being installed." +msgstr "" +"Exclut du traitement les fichiers qui comportent S<« élément »> n'importe où " +"dans leur nom." # type: =item -#: dh_installchangelogs:56 +#. type: =item +#: dh_installchangelogs:61 msgid "I" msgstr "I" # type: textblock -#: dh_installchangelogs:58 +#. type: textblock +#: dh_installchangelogs:63 msgid "Install this file as the upstream changelog." msgstr "" "Installe ce fichier en tant que journal amont de suivi des modifications." # type: textblock +#. type: textblock #: dh_installcron:5 msgid "dh_installcron - install cron scripts into etc/cron.*" msgstr "dh_installcron - installe les scripts cron dans etc/cron.*" # type: textblock +#. type: textblock #: dh_installcron:14 msgid "B [S>] [B<--name=>I]" msgstr "B [S>] [B<--name=>I]" # type: textblock +#. type: textblock #: dh_installcron:18 msgid "" "dh_installcron is a debhelper program that is responsible for installing " @@ -2070,12 +2339,14 @@ "debian/paquet.cron.d." # type: =item +#. type: =item #: dh_installcron:28 dh_installinit:83 dh_installlogrotate:26 -#: dh_installmodules:47 dh_installpam:28 dh_installppp:30 +#: dh_installmodules:51 dh_installpam:28 dh_installppp:30 msgid "B<--name=>I" msgstr "B<--name=>I" # type: textblock +#. type: textblock #: dh_installcron:30 msgid "" "Look for files named debian/package.name.cron.* and install them as etc/cron." @@ -2087,6 +2358,7 @@ "installer en leur donnant le nom du paquet." # type: textblock +#. type: textblock #: dh_installdebconf:5 msgid "" "dh_installdebconf - install files used by debconf in package build " @@ -2096,6 +2368,7 @@ "répertoires de construction du paquet" # type: textblock +#. type: textblock #: dh_installdebconf:14 msgid "" "B [S>] [B<-n>] [S I>]" @@ -2104,6 +2377,7 @@ "I>]" # type: textblock +#. type: textblock #: dh_installdebconf:18 msgid "" "dh_installdebconf is a debhelper program that is responsible for installing " @@ -2114,6 +2388,7 @@ "paquet." # type: textblock +#. type: textblock #: dh_installdebconf:21 #, fuzzy msgid "" @@ -2127,6 +2402,7 @@ "d'insertion de lignes de code." # type: textblock +#. type: textblock #: dh_installdebconf:26 msgid "" "Files named debian/package.config and debian/package.templates are installed " @@ -2149,6 +2425,7 @@ "langage de l'interpréteur de commandes (shell)." # type: textblock +#. type: textblock #: dh_installdebconf:35 msgid "" "Note that if you use debconf, your package probably needs to depend on it " @@ -2158,6 +2435,7 @@ "dépendre, ce programme ajoute cette dépendance à ${misc:Depends}." # type: textblock +#. type: textblock #: dh_installdebconf:38 msgid "" "Note that for your config script to be called by dpkg, your postinst needs " @@ -2171,11 +2449,13 @@ "correctement." # type: =head1 +#. type: =head1 #: dh_installdebconf:43 msgid "LOCALIZED TEMPLATE FILES" msgstr "FICHIERS D'ADAPTATION LINGUISTIQUE" # type: textblock +#. type: textblock #: dh_installdebconf:45 msgid "" "This program will look to see if you have a debian/po directory and if so " @@ -2189,26 +2469,31 @@ "sa construction (build-depend), de po-debconf." # type: textblock +#. type: textblock #: dh_installdebconf:56 msgid "Do not modify postrm script." msgstr "Empêche la modification du script de maintenance postrm." # type: textblock +#. type: textblock #: dh_installdebconf:60 msgid "Pass the params to po2debconf." msgstr "Passe les paramètres à po2debconf." # type: textblock +#. type: textblock #: dh_installdeb:5 msgid "dh_installdeb - install files into the DEBIAN directory" msgstr "dh_installdeb - installe des fichiers dans le répertoire DEBIAN" # type: textblock +#. type: textblock #: dh_installdeb:14 msgid "B [S>]" msgstr "B [S>]" # type: textblock +#. type: textblock #: dh_installdeb:18 msgid "" "dh_installdeb is a debhelper program that is responsible for installing " @@ -2221,6 +2506,7 @@ "fichiers." # type: verbatim +#. type: verbatim #: dh_installdeb:22 #, fuzzy, no-wrap msgid "" @@ -2245,6 +2531,7 @@ "\n" # type: textblock +#. type: textblock #: dh_installdeb:32 msgid "" "The postinst, preinst, postrm, and prerm are handled specially: If a " @@ -2259,14 +2546,15 @@ "Les scripts de maintenance postinst, preinst, postrm et prerm sont gérés de " "manière S s'il existe un fichier nommé debian/I." "I