]> git.donarmstrong.com Git - debhelper.git/commitdiff
Add a Makefile and simplify this package's own rules file using all the new toys.
authorJoey Hess <joey@kodama.kitenet.net>
Wed, 23 Apr 2008 19:51:42 +0000 (15:51 -0400)
committerJoey Hess <joey@kodama.kitenet.net>
Wed, 23 Apr 2008 19:51:42 +0000 (15:51 -0400)
Makefile [new file with mode: 0644]
debian/changelog
debian/docs [new file with mode: 0644]
debian/examples [new file with mode: 0644]
debian/manpages [new file with mode: 0644]
debian/rules
dh_auto_clean
man/po4a/po/debhelper.pot
man/po4a/po/es.po
man/po4a/po/fr.po

diff --git a/Makefile b/Makefile
new file mode 100644 (file)
index 0000000..ec7e590
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,72 @@
+# This generates a list of synopses of debhelper commands, and substitutes
+# it in to the #LIST# line on the man page fed to it on stdin. Must be passed
+# parameters of all the executables or pod files to get the synopses from.
+# For correct conversion of pod tags (like S< >) #LIST# must be substituted in
+# the pod file and not in the troff file.
+MAKEMANLIST=perl -e ' \
+               undef $$/; \
+               foreach (@ARGV) { \
+                       open (IN, $$_) or die "$$_: $$!"; \
+                       $$file=<IN>; \
+                       close IN; \
+                       if ($$file=~m/=head1 .*?\n\n(.*?) - (.*?)\n\n/s) { \
+                               $$collect.="=item $$1(1)\n\n$$2\n\n"; \
+                       } \
+               } \
+               END { \
+                       while (<STDIN>) { \
+                               s/\#LIST\#/$$collect/; \
+                               print; \
+                       }; \
+               }'
+
+# Figure out the `current debhelper version.
+VERSION=$(shell expr "`dpkg-parsechangelog |grep Version:`" : '.*Version: \(.*\)')
+
+PERLLIBDIR=$(shell perl -MConfig -e 'print $$Config{vendorlib}')/Debian/Debhelper
+
+POD2MAN=pod2man -c Debhelper -r "$(VERSION)"
+
+# l10n to be built is determined from .po files
+LANGS=$(notdir $(basename $(wildcard man/po4a/po/*.po)))
+
+build: version
+       find . -maxdepth 1 -type f -perm +100 -name "dh_*" \
+               -exec $(POD2MAN) {} {}.1 \;
+       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 
+       set -e; \
+       for lang in $(LANGS); do \
+               dir=man/$$lang; \
+               for file in $$dir/dh_*.pod; do \
+                       prog=`basename $$file | sed 's/.pod//'`; \
+                       $(POD2MAN) $$file $$prog.$$lang.1; \
+               done; \
+               cat $$dir/debhelper.pod | \
+                       $(MAKEMANLIST) `find $$dir -type f -maxdepth 1 -name "dh_*.pod" | sort` | \
+                       $(POD2MAN) --name="debhelper" --section=7 > debhelper.$$lang.7; \
+       done
+
+version:
+       printf "package Debian::Debhelper::Dh_Version;\n\$$version='$(VERSION)';\n1" > \
+               Debian/Debhelper/Dh_Version.pm
+
+clean:
+       rm -f *.1 *.7 Debian/Debhelper/Dh_Version.pm
+       po4a --rm-translations --rm-backups man/po4a/po4a.cfg
+       for lang in $(LANGS); do \
+               if [ -e man/$$lang ]; then rmdir man/$$lang; fi; \
+       done;
+
+install:
+       install -d $(DESTDIR)/usr/bin \
+               $(DESTDIR)/usr/share/debhelper/autoscripts \
+               $(DESTDIR)$(PERLLIBDIR)
+       install $(shell find -maxdepth 1 -mindepth 1 -name dh_\* |grep -v \.1\$) $(DESTDIR)/usr/bin
+       install autoscripts/* $(DESTDIR)/usr/share/debhelper/autoscripts
+       install Debian/Debhelper/*.pm $(DESTDIR)$(PERLLIBDIR)
+
+test: version
+       ./run perl -MTest::Harness -e 'runtests grep { ! /CVS/ && ! /\.svn/ } @ARGV' t/*
index e033527c9aa9c5e6645edaab3c3048a0ed3589e6..692b4ea73aa52ea0cf91f770456821260c20f9a8 100644 (file)
@@ -24,6 +24,8 @@ debhelper (7.0.0) UNRELEASED; urgency=low
     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.
+  * Add a Makefile and simplify this package's own rules file using
+    all the new toys.
 
  -- Joey Hess <joeyh@debian.org>  Tue, 22 Apr 2008 17:54:20 -0400
 
diff --git a/debian/docs b/debian/docs
new file mode 100644 (file)
index 0000000..30d29de
--- /dev/null
@@ -0,0 +1 @@
+doc/*
diff --git a/debian/examples b/debian/examples
new file mode 100644 (file)
index 0000000..e39721e
--- /dev/null
@@ -0,0 +1 @@
+examples/*
diff --git a/debian/manpages b/debian/manpages
new file mode 100644 (file)
index 0000000..5a7b08e
--- /dev/null
@@ -0,0 +1,2 @@
+*.1
+*.7
index a65392431028154c1020c5626ff38a1081efdef8..a8f577d6cede95a12a154ccd600accfb0a3d3751 100755 (executable)
@@ -1,92 +1,26 @@
 #!/usr/bin/make -f
-# This is _not_ a good example of a debhelper rules file.
-# See examples/ for some good examples.
+# 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.
 
-# This generates a list of synopses of debhelper commands, and substitutes
-# it in to the #LIST# line on the man page fed to it on stdin. Must be passed
-# parameters of all the executables or pod files to get the synopses from.
-# (Like I said, this is not a good example of a debhelper rules file..)
-# For correct conversion of pod tags (like S< >) #LIST# must be substituted in
-# the pod file and not in the troff file.
-MAKEMANLIST=perl -e ' \
-               undef $$/; \
-               foreach (@ARGV) { \
-                       open (IN, $$_) or die "$$_: $$!"; \
-                       $$file=<IN>; \
-                       close IN; \
-                       if ($$file=~m/=head1 .*?\n\n(.*?) - (.*?)\n\n/s) { \
-                               $$collect.="=item $$1(1)\n\n$$2\n\n"; \
-                       } \
-               } \
-               END { \
-                       while (<STDIN>) { \
-                               s/\#LIST\#/$$collect/; \
-                               print; \
-                       }; \
-               }'
-
-# Figure out the `current debhelper version.
-VERSION=$(shell expr "`dpkg-parsechangelog |grep Version:`" : '.*Version: \(.*\)')
-
-PERLLIBDIR=$(shell perl -MConfig -e 'print $$Config{vendorlib}')
-
-POD2MAN=pod2man -c Debhelper -r "$(VERSION)"
-
-# l10n to be built is determined from .po files
-LANGS=$(notdir $(basename $(wildcard man/po4a/po/*.po)))
-
-version:
-       printf "package Debian::Debhelper::Dh_Version;\n\$$version='$(VERSION)';\n1" > \
-               Debian/Debhelper/Dh_Version.pm
-
-build: version test build-stamp
-build-stamp:
-       find . -maxdepth 1 -type f -perm +100 -name "dh_*" \
-               -exec $(POD2MAN) {} {}.1 \;
-       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 
-       set -e; \
-       for lang in $(LANGS); do \
-               dir=man/$$lang; \
-               for file in $$dir/dh_*.pod; do \
-                       prog=`basename $$file | sed 's/.pod//'`; \
-                       $(POD2MAN) $$file $$prog.$$lang.1; \
-               done; \
-               cat $$dir/debhelper.pod | \
-                       $(MAKEMANLIST) `find $$dir -type f -maxdepth 1 -name "dh_*.pod" | sort` | \
-                       $(POD2MAN) --name="debhelper" --section=7 > debhelper.$$lang.7; \
-       done
-       
-       touch build-stamp
+build:
+       ./run dh_auto_configure
+       ./run dh_auto_build
+       ./run dh_auto_test
 
 clean:
        ./run dh_testdir
        ./run dh_testroot
-       ./run dh_clean *.1 *.7 *-stamp Debian/Debhelper/Dh_Version.pm
-       po4a --rm-translations --rm-backups man/po4a/po4a.cfg
-       for lang in $(LANGS); do \
-               if [ -e man/$$lang ]; then rmdir man/$$lang; fi; \
-       done;
-
-test: version test-stamp
-test-stamp:
-       ./run dh_clean
-       ./run perl -MTest::Harness -e 'runtests grep { ! /CVS/ && ! /\.svn/ } @ARGV' t/*
+       ./run dh_auto_clean
        ./run dh_clean
-       touch test-stamp
 
 binary-indep: build
        ./run dh_testdir
        ./run dh_testroot
        ./run dh_clean -k
-       ./run dh_install -X .1 dh_* usr/bin
-       ./run dh_install Debian/Debhelper/*.pm $(PERLLIBDIR)/Debian/Debhelper/
-       ./run dh_install autoscripts usr/share/debhelper
-       ./run dh_installdocs doc/*
-       ./run dh_installexamples examples/*
-       ./run dh_installman *.1 *.7
+       ./run dh_installdocs
+       ./run dh_installexamples
+       ./run dh_installman
        ./run dh_installchangelogs
        ./run dh_link
        ./run dh_compress
index aa16c724951797313d8c9319c342c85eccebb416..222edecadb48be38a051acf1be67a4e807d1be1f 100755 (executable)
@@ -49,6 +49,7 @@ if (-e "Makefile" || -e "makefile" || -e "GNUmakefile") {
                # "Making target".
                my $ret=`LANG=C $ENV{MAKE} --question $target 2>/dev/null`;
                chomp $ret;
+               print ">>$ret for $target\n";
                if ($ret =~ /^Making \Q$target\E/m) {
                        doit($ENV{MAKE}, $target, @{$dh{U_PARAMS}});
                        last;
index 6ad9b02bd5808ea157b9b2dead0fde1b4245a318..1326431235e94d42bef8658d85d7ccf17ebd8027 100644 (file)
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2008-03-25 14:08-0400\n"
+"POT-Creation-Date: 2008-04-23 15:36-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -582,7 +582,7 @@ msgid "This mode works like V2, with the following additions:"
 msgstr ""
 
 # type: =item
-#: debhelper.pod:296 debhelper.pod:301 debhelper.pod:305 debhelper.pod:319 debhelper.pod:324 debhelper.pod:329 debhelper.pod:334 debhelper.pod:346 debhelper.pod:350 debhelper.pod:355 debhelper.pod:359 debhelper.pod:372 debhelper.pod:377 debhelper.pod:383 debhelper.pod:389
+#: debhelper.pod:296 debhelper.pod:301 debhelper.pod:305 debhelper.pod:319 debhelper.pod:324 debhelper.pod:329 debhelper.pod:334 debhelper.pod:346 debhelper.pod:350 debhelper.pod:355 debhelper.pod:359 debhelper.pod:371 debhelper.pod:376 debhelper.pod:382 debhelper.pod:388 debhelper.pod:403
 msgid "-"
 msgstr ""
 
@@ -678,25 +678,25 @@ msgstr ""
 
 # type: textblock
 #: debhelper.pod:367
-msgid "This is the recommended mode of operation. It does everything V5 does, plus:"
+msgid "Changes from V5 are:"
 msgstr ""
 
 # type: textblock
-#: debhelper.pod:374
+#: debhelper.pod:373
 msgid ""
 "Commands that generate maintainer script fragements will order the "
 "fragements in reverse order for the prerm and postrm scripts."
 msgstr ""
 
 # type: textblock
-#: debhelper.pod:379
+#: debhelper.pod:378
 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:385
+#: debhelper.pod:384
 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 "
@@ -704,19 +704,43 @@ msgid ""
 msgstr ""
 
 # type: textblock
-#: debhelper.pod:391
+#: debhelper.pod:390
 msgid ""
 "dh_installman allows overwriting existing man pages in the package build "
 "directory. In previous compatability levels it silently refuses to do this."
 msgstr ""
 
+# type: =item
+#: debhelper.pod:395
+msgid "V7"
+msgstr ""
+
+# type: textblock
+#: debhelper.pod:397
+msgid "This is the recommended mode of operation."
+msgstr ""
+
+# type: textblock
+#: debhelper.pod:399
+msgid "Changes from V6 are:"
+msgstr ""
+
+# type: textblock
+#: debhelper.pod:405
+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: =head2
-#: debhelper.pod:398
+#: debhelper.pod:414
 msgid "Doc directory symlinks"
 msgstr ""
 
 # type: textblock
-#: debhelper.pod:400
+#: debhelper.pod:416
 msgid ""
 "Sometimes it is useful to make a package not contain a "
 "/usr/share/doc/package directory at all, instead placing just a dangling "
@@ -730,12 +754,12 @@ msgid ""
 msgstr ""
 
 # type: =head2
-#: debhelper.pod:409
+#: debhelper.pod:425
 msgid "udebs"
 msgstr ""
 
 # type: textblock
-#: debhelper.pod:411
+#: debhelper.pod:427
 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 "
@@ -746,12 +770,12 @@ msgid ""
 msgstr ""
 
 # type: =head2
-#: debhelper.pod:418
+#: debhelper.pod:434
 msgid "Other notes"
 msgstr ""
 
 # type: textblock
-#: debhelper.pod:420
+#: debhelper.pod:436
 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 "
@@ -762,7 +786,7 @@ msgid ""
 msgstr ""
 
 # type: textblock
-#: debhelper.pod:426
+#: debhelper.pod:442
 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 "
@@ -771,7 +795,7 @@ msgid ""
 msgstr ""
 
 # type: verbatim
-#: debhelper.pod:432
+#: debhelper.pod:448
 #, no-wrap
 msgid ""
 "  Build-Depends: debhelper (>= 6)\n"
@@ -779,51 +803,51 @@ msgid ""
 msgstr ""
 
 # type: =head1
-#: debhelper.pod:434
+#: debhelper.pod:450
 msgid "ENVIRONMENT"
 msgstr ""
 
 # type: =item
-#: debhelper.pod:438
+#: debhelper.pod:454
 msgid "DH_VERBOSE"
 msgstr ""
 
 # type: textblock
-#: debhelper.pod:440
+#: debhelper.pod:456
 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:443
+#: debhelper.pod:459
 msgid "DH_COMPAT"
 msgstr ""
 
 # type: textblock
-#: debhelper.pod:445
+#: debhelper.pod:461
 msgid ""
 "Temporarily specifies what compatibility level debhelper should run at, "
 "overriding any value in debian/compat."
 msgstr ""
 
 # type: =item
-#: debhelper.pod:448
+#: debhelper.pod:464
 msgid "DH_NO_ACT"
 msgstr ""
 
 # type: textblock
-#: debhelper.pod:450
+#: debhelper.pod:466
 msgid "Set to 1 to enable no-act mode."
 msgstr ""
 
 # type: =item
-#: debhelper.pod:452
+#: debhelper.pod:468
 msgid "DH_OPTIONS"
 msgstr ""
 
 # type: textblock
-#: debhelper.pod:454
+#: debhelper.pod:470
 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 "
@@ -833,12 +857,12 @@ msgid ""
 msgstr ""
 
 # type: =item
-#: debhelper.pod:460
+#: debhelper.pod:476
 msgid "DH_ALWAYS_EXCLUDE"
 msgstr ""
 
 # type: textblock
-#: debhelper.pod:462
+#: debhelper.pod:478
 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 "
@@ -846,7 +870,7 @@ msgid ""
 msgstr ""
 
 # type: textblock
-#: debhelper.pod:466
+#: debhelper.pod:482
 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 "
@@ -857,44 +881,44 @@ msgid ""
 msgstr ""
 
 # type: textblock
-#: debhelper.pod:473
+#: debhelper.pod:489
 msgid ""
 "Multiple things to exclude can be separated with colons, as in "
 "DH_ALWAYS_EXCLUDE=CVS:.svn"
 msgstr ""
 
 # type: =head1
-#: debhelper.pod:478 dh_builddeb:85 dh_clean:106 dh_compress:189 dh_desktop:47 dh_fixperms:110 dh_gconf:90 dh_gencontrol:73 dh_installcatalogs:111 dh_installchangelogs:125 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:197 dh_installlogcheck:51 dh_installlogrotate:50 dh_installmanpages:197 dh_installman:246 dh_installmenu:80 dh_installmime:85 dh_installmodules:116 dh_installpam:52 dh_install:251 dh_installppp:56 dh_installwm:107 dh_installxfonts:86 dh_link:223 dh_listpackages:28 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:43 dh_testroot:26 dh_testversion:74 dh_undocumented:28 dh_usrlocal:114
+#: debhelper.pod:494 dh_builddeb:85 dh_clean:109 dh_compress:189 dh_desktop:47 dh_fixperms:110 dh_gconf:90 dh_gencontrol:73 dh_installcatalogs:111 dh_installchangelogs:125 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:197 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:28 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:43 dh_testroot:26 dh_testversion:74 dh_undocumented:28 dh_usrlocal:114
 msgid "SEE ALSO"
 msgstr ""
 
 # type: =item
-#: debhelper.pod:482
+#: debhelper.pod:498
 msgid "F</usr/share/doc/debhelper/examples/>"
 msgstr ""
 
 # type: textblock
-#: debhelper.pod:484
+#: debhelper.pod:500
 msgid "A set of example debian/rules files that use debhelper."
 msgstr ""
 
 # type: =item
-#: debhelper.pod:486
+#: debhelper.pod:502
 msgid "L<http://kitenet.net/~joey/code/debhelper/>"
 msgstr ""
 
 # type: textblock
-#: debhelper.pod:488
+#: debhelper.pod:504
 msgid "Debhelper web site."
 msgstr ""
 
 # type: =head1
-#: debhelper.pod:492 dh_builddeb:91 dh_clean:112 dh_compress:195 dh_desktop:53 dh_fixperms:116 dh_gconf:96 dh_gencontrol:79 dh_installcatalogs:117 dh_installchangelogs:131 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:203 dh_installlogcheck:57 dh_installlogrotate:56 dh_installmanpages:203 dh_installman:252 dh_installmenu:88 dh_installmime:91 dh_installmodules:122 dh_installpam:58 dh_install:257 dh_installppp:62 dh_installwm:113 dh_installxfonts:92 dh_link:229 dh_listpackages:34 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:49 dh_testroot:32 dh_testversion:80 dh_undocumented:34 dh_usrlocal:120
+#: debhelper.pod:508 dh_builddeb:91 dh_clean:115 dh_compress:195 dh_desktop:53 dh_fixperms:116 dh_gconf:96 dh_gencontrol:79 dh_installcatalogs:117 dh_installchangelogs:131 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:203 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:34 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:49 dh_testroot:32 dh_testversion:80 dh_undocumented:34 dh_usrlocal:120
 msgid "AUTHOR"
 msgstr ""
 
 # type: textblock
-#: debhelper.pod:494 dh_builddeb:93 dh_clean:114 dh_compress:197 dh_fixperms:118 dh_gencontrol:81 dh_installchangelogs:133 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:205 dh_installlogrotate:58 dh_installmanpages:205 dh_installman:254 dh_installmenu:90 dh_installmime:93 dh_installmodules:124 dh_installpam:60 dh_install:259 dh_installppp:64 dh_installwm:115 dh_installxfonts:94 dh_link:231 dh_listpackages:36 dh_makeshlibs:230 dh_md5sums:94 dh_movefiles:170 dh_shlibdeps:167 dh_strip:232 dh_suidregister:125 dh_testdir:51 dh_testroot:34 dh_testversion:82 dh_undocumented:36
+#: debhelper.pod:510 dh_builddeb:93 dh_clean:117 dh_compress:197 dh_fixperms:118 dh_gencontrol:81 dh_installchangelogs:133 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:205 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:36 dh_makeshlibs:230 dh_md5sums:94 dh_movefiles:170 dh_shlibdeps:167 dh_strip:232 dh_suidregister:125 dh_testdir:51 dh_testroot:34 dh_testversion:82 dh_undocumented:36
 msgid "Joey Hess <joeyh@debian.org>"
 msgstr ""
 
@@ -918,7 +942,7 @@ msgid ""
 msgstr ""
 
 # type: =head1
-#: dh_builddeb:21 dh_clean:25 dh_compress:38 dh_fixperms:31 dh_gconf:34 dh_gencontrol:26 dh_installcatalogs:44 dh_installchangelogs:40 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:43 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
+#: dh_builddeb:21 dh_clean:28 dh_compress:38 dh_fixperms:31 dh_gconf:34 dh_gencontrol:26 dh_installcatalogs:44 dh_installchangelogs:40 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
 msgid "OPTIONS"
 msgstr ""
 
@@ -962,12 +986,12 @@ msgid "Pass I<params> to L<dpkg-deb(1)> when it is used to build the package."
 msgstr ""
 
 # type: textblock
-#: dh_builddeb:87 dh_clean:108 dh_compress:191 dh_fixperms:112 dh_gconf:92 dh_gencontrol:75 dh_installcatalogs:113 dh_installchangelogs:127 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:199 dh_installlogcheck:53 dh_installlogrotate:52 dh_installmanpages:199 dh_installman:248 dh_installmime:87 dh_installmodules:118 dh_installpam:54 dh_install:253 dh_installppp:58 dh_installwm:109 dh_installxfonts:88 dh_link:225 dh_listpackages:30 dh_makeshlibs:224 dh_md5sums:88 dh_movefiles:164 dh_perl:154 dh_python:284 dh_strip:226 dh_suidregister:119 dh_testdir:45 dh_testroot:28 dh_testversion:76 dh_undocumented:30 dh_usrlocal:116
+#: dh_builddeb:87 dh_clean:111 dh_compress:191 dh_fixperms:112 dh_gconf:92 dh_gencontrol:75 dh_installcatalogs:113 dh_installchangelogs:127 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:199 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:30 dh_makeshlibs:224 dh_md5sums:88 dh_movefiles:164 dh_perl:154 dh_python:284 dh_strip:226 dh_suidregister:119 dh_testdir:45 dh_testroot:28 dh_testversion:76 dh_undocumented:30 dh_usrlocal:116
 msgid "L<debhelper(7)>"
 msgstr ""
 
 # type: textblock
-#: dh_builddeb:89 dh_clean:110 dh_compress:193 dh_desktop:51 dh_fixperms:114 dh_gconf:94 dh_gencontrol:77 dh_installchangelogs:129 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:201 dh_installlogrotate:54 dh_installmanpages:201 dh_installman:250 dh_installmenu:86 dh_installmime:89 dh_installmodules:120 dh_installpam:56 dh_install:255 dh_installppp:60 dh_installwm:111 dh_installxfonts:90 dh_link:227 dh_listpackages:32 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:47 dh_testroot:30 dh_testversion:78 dh_undocumented:32 dh_usrlocal:118
+#: dh_builddeb:89 dh_clean:113 dh_compress:193 dh_desktop:51 dh_fixperms:114 dh_gconf:94 dh_gencontrol:77 dh_installchangelogs:129 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:201 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:32 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:47 dh_testroot:30 dh_testversion:78 dh_undocumented:32 dh_usrlocal:118
 msgid "This program is a part of debhelper."
 msgstr ""
 
@@ -995,17 +1019,24 @@ msgid ""
 "debhelper commands. It also removes common files that should not appear in "
 "a\n"
 "debian diff:\n"
-"  #*# *~ DEADJOE *.orig *.rej *.SUMS TAGS core .deps/* *.P\n"
+"  #*# *~ DEADJOE *.orig *.rej *.SUMS TAGS .deps/* *.P\n"
 "\n"
 msgstr ""
 
+# type: textblock
+#: dh_clean:25
+msgid ""
+"It does not run \"make clean\" to clean up after the build process. Use "
+"L<dh_auto_clean(1)> to do that."
+msgstr ""
+
 # type: =item
-#: dh_clean:29 dh_installchangelogs:44
+#: dh_clean:32 dh_installchangelogs:44
 msgid "B<-k>, B<--keep>"
 msgstr ""
 
 # type: textblock
-#: dh_clean:31
+#: dh_clean:34
 msgid ""
 "Do not delete debian/files. When do you want to use this? Anytime you have a "
 "debian/rules that has 2 binary targets that build different .deb packages; "
@@ -1017,24 +1048,24 @@ msgid ""
 msgstr ""
 
 # type: =item
-#: dh_clean:39
+#: dh_clean:42
 msgid "B<-d>, B<--dirs-only>"
 msgstr ""
 
 # type: textblock
-#: dh_clean:41
+#: dh_clean:44
 msgid ""
 "Only clean the package build directories, do not clean up any other files at "
 "all."
 msgstr ""
 
 # type: =item
-#: dh_clean:44
+#: dh_clean:47
 msgid "B<-X>I<item> B<--exclude=>I<item>"
 msgstr ""
 
 # type: textblock
-#: dh_clean:46
+#: dh_clean:49
 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 "
@@ -1042,12 +1073,12 @@ msgid ""
 msgstr ""
 
 # type: =item
-#: dh_clean:50 dh_compress:55 dh_installdocs:69 dh_installexamples:38 dh_installinfo:50 dh_installmanpages:44 dh_movefiles:49 dh_testdir:27
+#: dh_clean:53 dh_compress:55 dh_installdocs:69 dh_installexamples:38 dh_installinfo:50 dh_installmanpages:44 dh_movefiles:49 dh_testdir:27
 msgid "I<file ...>"
 msgstr ""
 
 # type: textblock
-#: dh_clean:52
+#: dh_clean:55
 msgid "Delete these files too."
 msgstr ""
 
@@ -1755,7 +1786,7 @@ msgid "Do not modify postinst/prerm scripts."
 msgstr ""
 
 # type: =item
-#: dh_installdocs:64 dh_installexamples:43 dh_install:47 dh_link:57 dh_movefiles:44
+#: dh_installdocs:64 dh_installexamples:43 dh_install:51 dh_link:57 dh_movefiles:44
 msgid "B<-Xitem>, B<--exclude=item>"
 msgstr ""
 
@@ -1922,7 +1953,7 @@ msgid ""
 msgstr ""
 
 # type: textblock
-#: dh_installexamples:45 dh_install:49 dh_movefiles:46
+#: dh_installexamples:45 dh_install:53 dh_movefiles:46
 msgid ""
 "Exclude files that contain \"item\" anywhere in their filename from being "
 "installed."
@@ -2622,13 +2653,21 @@ msgid ""
 "directories and files from there into the proper package build directories."
 msgstr ""
 
+# type: textblock
+#: dh_install:43
+msgid ""
+"From debhelper compatability 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 ""
+
 # type: =item
-#: dh_install:52
+#: dh_install:56
 msgid "B<--autodest>"
 msgstr ""
 
 # type: textblock
-#: dh_install:54
+#: dh_install:58
 msgid ""
 "Guess as the destination directory to install things to. If this is "
 "specified, you should not list destination directories in "
@@ -2637,7 +2676,7 @@ msgid ""
 msgstr ""
 
 # type: textblock
-#: dh_install:59
+#: dh_install:63
 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 "
@@ -2647,7 +2686,7 @@ msgid ""
 msgstr ""
 
 # type: textblock
-#: dh_install:65
+#: dh_install:69
 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 "
@@ -2656,12 +2695,12 @@ msgid ""
 msgstr ""
 
 # type: =item
-#: dh_install:70
+#: dh_install:74
 msgid "B<--list-missing>"
 msgstr ""
 
 # type: textblock
-#: dh_install:72
+#: dh_install:76
 msgid ""
 "This option makes dh_install keep track of the files it installs, and then "
 "at the end, compare that list with the files in the source directory. If any "
@@ -2670,45 +2709,45 @@ msgid ""
 msgstr ""
 
 # type: textblock
-#: dh_install:77
+#: 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
-#: dh_install:80
+#: dh_install:84
 msgid ""
 "Note that files that are excluded from being moved via the -X option are not "
 "warned about."
 msgstr ""
 
 # type: =item
-#: dh_install:83
+#: dh_install:87
 msgid "B<--fail-missing>"
 msgstr ""
 
 # type: textblock
-#: dh_install:85
+#: 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:88
+#: dh_install:92
 msgid "B<--sourcedir=dir>"
 msgstr ""
 
 # type: textblock
-#: dh_install:90
+#: dh_install:94
 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:93
+#: dh_install:97
 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\" "
@@ -2717,24 +2756,24 @@ msgid ""
 msgstr ""
 
 # type: =item
-#: dh_install:99
+#: dh_install:103
 msgid "I<file [...] dest>"
 msgstr ""
 
 # type: textblock
-#: dh_install:101
+#: 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:224
+#: dh_install:241
 msgid "EXAMPLE"
 msgstr ""
 
 # type: textblock
-#: dh_install:226
+#: dh_install:243
 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 "
@@ -2744,7 +2783,7 @@ msgid ""
 msgstr ""
 
 # type: verbatim
-#: dh_install:232
+#: dh_install:249
 #, no-wrap
 msgid ""
 "  usr/bin\n"
@@ -2753,12 +2792,12 @@ msgid ""
 msgstr ""
 
 # type: textblock
-#: dh_install:235
+#: dh_install:252
 msgid "While debian/libfoo.install contains:"
 msgstr ""
 
 # type: verbatim
-#: dh_install:237
+#: dh_install:254
 #, no-wrap
 msgid ""
 "  usr/lib/libfoo*.so.*\n"
@@ -2766,14 +2805,14 @@ msgid ""
 msgstr ""
 
 # type: textblock
-#: dh_install:239
+#: dh_install:256
 msgid ""
 "If you want a libfoo-dev package too, debian/libfoo-dev.install might "
 "contain:"
 msgstr ""
 
 # type: verbatim
-#: dh_install:241
+#: dh_install:258
 #, no-wrap
 msgid ""
 "  usr/include\n"
@@ -2783,12 +2822,12 @@ msgid ""
 msgstr ""
 
 # type: =head1
-#: dh_install:245
+#: dh_install:262
 msgid "LIMITATIONS"
 msgstr ""
 
 # type: verbatim
-#: dh_install:247
+#: dh_install:264
 #, no-wrap
 msgid ""
 "dh_install cannot rename files or directories, it can only install them\n"
index 302a211eff4247cfbb03dcae5f8b3a3d6fe895a3..d9d238e890ab7591010607972b1090b6f24cf223 100644 (file)
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2008-03-25 14:08-0400\n"
+"POT-Creation-Date: 2008-04-23 15:36-0400\n"
 "PO-Revision-Date: 2005-09-18 00:11+0200\n"
 "Last-Translator: Rubén Porras Campo <debian-l10n-spanish@lists.debian.org>\n"
 "Language-Team: SPANISH <debian-l10n-spanish@lists.debian.org>\n"
@@ -788,8 +788,8 @@ msgstr "Este modo funciona como el V2 con los siguientes a
 # type: =item
 #: debhelper.pod:296 debhelper.pod:301 debhelper.pod:305 debhelper.pod:319
 #: debhelper.pod:324 debhelper.pod:329 debhelper.pod:334 debhelper.pod:346
-#: debhelper.pod:350 debhelper.pod:355 debhelper.pod:359 debhelper.pod:372
-#: debhelper.pod:377 debhelper.pod:383 debhelper.pod:389
+#: debhelper.pod:350 debhelper.pod:355 debhelper.pod:359 debhelper.pod:371
+#: debhelper.pod:376 debhelper.pod:382 debhelper.pod:388 debhelper.pod:403
 msgid "-"
 msgstr "-"
 
@@ -904,21 +904,18 @@ msgstr ""
 
 # type: textblock
 #: debhelper.pod:367
-#, fuzzy
-msgid ""
-"This is the recommended mode of operation. It does everything V5 does, plus:"
+msgid "Changes from V5 are:"
 msgstr ""
-"Este es el modo de operación aconsejado. Hace lo mismo que V3 y además:"
 
 # type: textblock
-#: debhelper.pod:374
+#: debhelper.pod:373
 msgid ""
 "Commands that generate maintainer script fragements will order the "
 "fragements in reverse order for the prerm and postrm scripts."
 msgstr ""
 
 # type: textblock
-#: debhelper.pod:379
+#: debhelper.pod:378
 #, fuzzy
 msgid ""
 "dh_installwm will install a slave manpage link for x-window-manager.1.gz, if "
@@ -926,7 +923,7 @@ msgid ""
 msgstr "dh_installwm - registra un gestor de ventanas"
 
 # type: textblock
-#: debhelper.pod:385
+#: debhelper.pod:384
 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 "
@@ -934,19 +931,45 @@ msgid ""
 msgstr ""
 
 # type: textblock
-#: debhelper.pod:391
+#: debhelper.pod:390
 msgid ""
 "dh_installman allows overwriting existing man pages in the package build "
 "directory. In previous compatability levels it silently refuses to do this."
 msgstr ""
 
+# type: =item
+#: debhelper.pod:395
+msgid "V7"
+msgstr ""
+
+# type: textblock
+#: debhelper.pod:397
+#, 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:399
+msgid "Changes from V6 are:"
+msgstr ""
+
+# type: textblock
+#: debhelper.pod:405
+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: =head2
-#: debhelper.pod:398
+#: debhelper.pod:414
 msgid "Doc directory symlinks"
 msgstr "Enlaces a los directorios Doc"
 
 # type: textblock
-#: debhelper.pod:400
+#: debhelper.pod:416
 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 "
@@ -968,12 +991,12 @@ msgstr ""
 "colgante y no tratará de instalar un fichero de copyright o changelog."
 
 # type: =head2
-#: debhelper.pod:409
+#: debhelper.pod:425
 msgid "udebs"
 msgstr "udebs"
 
 # type: textblock
-#: debhelper.pod:411
+#: debhelper.pod:427
 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 "
@@ -991,12 +1014,12 @@ msgstr ""
 "preinst, postrm, prerm, y de configuración, etc."
 
 # type: =head2
-#: debhelper.pod:418
+#: debhelper.pod:434
 msgid "Other notes"
 msgstr "Otras notas"
 
 # type: textblock
-#: debhelper.pod:420
+#: debhelper.pod:436
 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 "
@@ -1012,7 +1035,7 @@ msgstr ""
 "archivos del menú, etc."
 
 # type: textblock
-#: debhelper.pod:426
+#: debhelper.pod:442
 #, fuzzy
 msgid ""
 "Once your package uses debhelper to build, be sure to add debhelper to your "
@@ -1027,7 +1050,7 @@ msgstr ""
 "paquete usa el nivel de compatibilidad 4:"
 
 # type: verbatim
-#: debhelper.pod:432
+#: debhelper.pod:448
 #, fuzzy, no-wrap
 msgid ""
 "  Build-Depends: debhelper (>= 6)\n"
@@ -1037,17 +1060,17 @@ msgstr ""
 "\n"
 
 # type: =head1
-#: debhelper.pod:434
+#: debhelper.pod:450
 msgid "ENVIRONMENT"
 msgstr "ENTORNO"
 
 # type: =item
-#: debhelper.pod:438
+#: debhelper.pod:454
 msgid "DH_VERBOSE"
 msgstr "DH_VERBOSE"
 
 # type: textblock
-#: debhelper.pod:440
+#: debhelper.pod:456
 msgid ""
 "Set to 1 to enable verbose mode. Debhelper will output every command it runs "
 "that modifies files on the build system."
@@ -1057,12 +1080,12 @@ msgstr ""
 "construcción."
 
 # type: =item
-#: debhelper.pod:443
+#: debhelper.pod:459
 msgid "DH_COMPAT"
 msgstr "DH_COMPAT"
 
 # type: textblock
-#: debhelper.pod:445
+#: debhelper.pod:461
 msgid ""
 "Temporarily specifies what compatibility level debhelper should run at, "
 "overriding any value in debian/compat."
@@ -1071,22 +1094,22 @@ msgstr ""
 "debhelper, ignorando cualquier valor en debian/compat."
 
 # type: =item
-#: debhelper.pod:448
+#: debhelper.pod:464
 msgid "DH_NO_ACT"
 msgstr "DH_NO_ACT"
 
 # type: textblock
-#: debhelper.pod:450
+#: debhelper.pod:466
 msgid "Set to 1 to enable no-act mode."
 msgstr "Poner a 1 para habilitar el modo no-act."
 
 # type: =item
-#: debhelper.pod:452
+#: debhelper.pod:468
 msgid "DH_OPTIONS"
 msgstr "DH_OPTIONS"
 
 # type: textblock
-#: debhelper.pod:454
+#: debhelper.pod:470
 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 "
@@ -1102,12 +1125,12 @@ msgstr ""
 "Lea la documentación de make para los detalles sobre como hacer esto."
 
 # type: =item
-#: debhelper.pod:460
+#: debhelper.pod:476
 msgid "DH_ALWAYS_EXCLUDE"
 msgstr "DH_ALWAYS_EXCLUDE"
 
 # type: textblock
-#: debhelper.pod:462
+#: debhelper.pod:478
 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 "
@@ -1118,7 +1141,7 @@ msgstr ""
 "coincida con el valor en el árbol de construcción."
 
 # type: textblock
-#: debhelper.pod:466
+#: debhelper.pod:482
 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 "
@@ -1135,7 +1158,7 @@ msgstr ""
 "sitio donde se construya el paquete."
 
 # type: textblock
-#: debhelper.pod:473
+#: debhelper.pod:489
 msgid ""
 "Multiple things to exclude can be separated with colons, as in "
 "DH_ALWAYS_EXCLUDE=CVS:.svn"
@@ -1144,14 +1167,14 @@ msgstr ""
 "puntos, p. ej.: DH_ALWAYS_EXCLUDE=CVS:.svn"
 
 # type: =head1
-#: debhelper.pod:478 dh_builddeb:85 dh_clean:106 dh_compress:189 dh_desktop:47
+#: debhelper.pod:494 dh_builddeb:85 dh_clean:109 dh_compress:189 dh_desktop:47
 #: dh_fixperms:110 dh_gconf:90 dh_gencontrol:73 dh_installcatalogs:111
 #: dh_installchangelogs:125 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:197
 #: dh_installlogcheck:51 dh_installlogrotate:50 dh_installmanpages:197
-#: dh_installman:246 dh_installmenu:80 dh_installmime:85 dh_installmodules:116
-#: dh_installpam:52 dh_install:251 dh_installppp:56 dh_installwm:107
+#: 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:28 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:43
@@ -1160,34 +1183,34 @@ msgid "SEE ALSO"
 msgstr "VÉASE ADEMÁS"
 
 # type: =item
-#: debhelper.pod:482
+#: debhelper.pod:498
 msgid "F</usr/share/doc/debhelper/examples/>"
 msgstr "F</usr/share/doc/debhelper/examples/>"
 
 # type: textblock
-#: debhelper.pod:484
+#: debhelper.pod:500
 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:486
+#: debhelper.pod:502
 msgid "L<http://kitenet.net/~joey/code/debhelper/>"
 msgstr "L<http://kitenet.net/~joey/code/debhelper/>"
 
 # type: textblock
-#: debhelper.pod:488
+#: debhelper.pod:504
 msgid "Debhelper web site."
 msgstr "Web de Debhelper."
 
 # type: =head1
-#: debhelper.pod:492 dh_builddeb:91 dh_clean:112 dh_compress:195 dh_desktop:53
+#: debhelper.pod:508 dh_builddeb:91 dh_clean:115 dh_compress:195 dh_desktop:53
 #: dh_fixperms:116 dh_gconf:96 dh_gencontrol:79 dh_installcatalogs:117
 #: dh_installchangelogs:131 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:203 dh_installlogcheck:57 dh_installlogrotate:56
-#: dh_installmanpages:203 dh_installman:252 dh_installmenu:88
-#: dh_installmime:91 dh_installmodules:122 dh_installpam:58 dh_install:257
+#: 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:34 dh_makeshlibs:228 dh_md5sums:92 dh_movefiles:168
 #: dh_perl:158 dh_python:288 dh_scrollkeeper:82 dh_shlibdeps:165 dh_strip:230
@@ -1197,13 +1220,13 @@ msgid "AUTHOR"
 msgstr "AUTOR"
 
 # type: textblock
-#: debhelper.pod:494 dh_builddeb:93 dh_clean:114 dh_compress:197
+#: debhelper.pod:510 dh_builddeb:93 dh_clean:117 dh_compress:197
 #: dh_fixperms:118 dh_gencontrol:81 dh_installchangelogs:133 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:205 dh_installlogrotate:58
-#: dh_installmanpages:205 dh_installman:254 dh_installmenu:90
-#: dh_installmime:93 dh_installmodules:124 dh_installpam:60 dh_install:259
+#: 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:36 dh_makeshlibs:230 dh_md5sums:94 dh_movefiles:170
 #: dh_shlibdeps:167 dh_strip:232 dh_suidregister:125 dh_testdir:51
@@ -1235,13 +1258,13 @@ msgstr ""
 "paquetes Debian."
 
 # type: =head1
-#: dh_builddeb:21 dh_clean:25 dh_compress:38 dh_fixperms:31 dh_gconf:34
+#: dh_builddeb:21 dh_clean:28 dh_compress:38 dh_fixperms:31 dh_gconf:34
 #: dh_gencontrol:26 dh_installcatalogs:44 dh_installchangelogs:40
 #: 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:43 dh_installppp:26 dh_installwm:32 dh_link:48
+#: 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
@@ -1293,13 +1316,13 @@ msgid "Pass I<params> to L<dpkg-deb(1)> when it is used to build the package."
 msgstr "Pasa I<parámetros> a L<dpkg-deb(1)> cuando se construye el paquete."
 
 # type: textblock
-#: dh_builddeb:87 dh_clean:108 dh_compress:191 dh_fixperms:112 dh_gconf:92
+#: dh_builddeb:87 dh_clean:111 dh_compress:191 dh_fixperms:112 dh_gconf:92
 #: dh_gencontrol:75 dh_installcatalogs:113 dh_installchangelogs:127
 #: 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:199 dh_installlogcheck:53
-#: dh_installlogrotate:52 dh_installmanpages:199 dh_installman:248
-#: dh_installmime:87 dh_installmodules:118 dh_installpam:54 dh_install:253
+#: 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:30 dh_makeshlibs:224 dh_md5sums:88 dh_movefiles:164
 #: dh_perl:154 dh_python:284 dh_strip:226 dh_suidregister:119 dh_testdir:45
@@ -1308,13 +1331,13 @@ msgid "L<debhelper(7)>"
 msgstr "L<debhelper(7)>"
 
 # type: textblock
-#: dh_builddeb:89 dh_clean:110 dh_compress:193 dh_desktop:51 dh_fixperms:114
+#: dh_builddeb:89 dh_clean:113 dh_compress:193 dh_desktop:51 dh_fixperms:114
 #: dh_gconf:94 dh_gencontrol:77 dh_installchangelogs:129 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:201 dh_installlogrotate:54 dh_installmanpages:201
-#: dh_installman:250 dh_installmenu:86 dh_installmime:89 dh_installmodules:120
-#: dh_installpam:56 dh_install:255 dh_installppp:60 dh_installwm:111
+#: 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:32 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:47
@@ -1338,14 +1361,14 @@ msgstr ""
 
 # type: verbatim
 #: dh_clean:18
-#, no-wrap
+#, fuzzy, 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"
 "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"
 "debian diff:\n"
-"  #*# *~ DEADJOE *.orig *.rej *.SUMS TAGS core .deps/* *.P\n"
+"  #*# *~ DEADJOE *.orig *.rej *.SUMS TAGS .deps/* *.P\n"
 "\n"
 msgstr ""
 "dh_clean es un programa de debhelper responsable de limpiar ficheros y\n"
@@ -1356,13 +1379,20 @@ msgstr ""
 "  #*# *~ DEADJOE *.orig *.rej *.SUMS TAGS core .deps/* *.P\n"
 "\n"
 
+# type: textblock
+#: dh_clean:25
+msgid ""
+"It does not run \"make clean\" to clean up after the build process. Use "
+"L<dh_auto_clean(1)> to do that."
+msgstr ""
+
 # type: =item
-#: dh_clean:29 dh_installchangelogs:44
+#: dh_clean:32 dh_installchangelogs:44
 msgid "B<-k>, B<--keep>"
 msgstr "B<-k>, B<--keep>"
 
 # type: textblock
-#: dh_clean:31
+#: dh_clean:34
 msgid ""
 "Do not delete debian/files. When do you want to use this? Anytime you have a "
 "debian/rules that has 2 binary targets that build different .deb packages; "
@@ -1380,12 +1410,12 @@ msgstr ""
 "cambios sólo contendrán los del último paquete binario construido."
 
 # type: =item
-#: dh_clean:39
+#: dh_clean:42
 msgid "B<-d>, B<--dirs-only>"
 msgstr "B<-d>, B<--dirs-only>"
 
 # type: textblock
-#: dh_clean:41
+#: dh_clean:44
 msgid ""
 "Only clean the package build directories, do not clean up any other files at "
 "all."
@@ -1394,12 +1424,12 @@ msgstr ""
 "otro tipo de ficheros en absoluto."
 
 # type: =item
-#: dh_clean:44
+#: dh_clean:47
 msgid "B<-X>I<item> B<--exclude=>I<item>"
 msgstr "B<-X>I<elemento> B<--exclude=>I<elemento>"
 
 # type: textblock
-#: dh_clean:46
+#: dh_clean:49
 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 "
@@ -1410,13 +1440,13 @@ msgstr ""
 "opción si quiere excluir una lista de ficheros."
 
 # type: =item
-#: dh_clean:50 dh_compress:55 dh_installdocs:69 dh_installexamples:38
+#: dh_clean:53 dh_compress:55 dh_installdocs:69 dh_installexamples:38
 #: dh_installinfo:50 dh_installmanpages:44 dh_movefiles:49 dh_testdir:27
 msgid "I<file ...>"
 msgstr "I<fichero ...>"
 
 # type: textblock
-#: dh_clean:52
+#: dh_clean:55
 msgid "Delete these files too."
 msgstr "Borra también estos ficheros."
 
@@ -2363,7 +2393,7 @@ 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:47 dh_link:57
+#: 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>"
@@ -2587,7 +2617,7 @@ msgstr ""
 "actúe. (O en todos si se especifica B<-A>)."
 
 # type: textblock
-#: dh_installexamples:45 dh_install:49 dh_movefiles:46
+#: dh_installexamples:45 dh_install:53 dh_movefiles:46
 msgid ""
 "Exclude files that contain \"item\" anywhere in their filename from being "
 "installed."
@@ -3518,13 +3548,21 @@ msgstr ""
 "después usar dh_install para copiar los directorios y ficheros desde ahí a "
 "los directorios de construcción del paquete correctos."
 
+# type: textblock
+#: dh_install:43
+msgid ""
+"From debhelper compatability 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 ""
+
 # type: =item
-#: dh_install:52
+#: dh_install:56
 msgid "B<--autodest>"
 msgstr "B<--autodest>"
 
 # type: textblock
-#: dh_install:54
+#: dh_install:58
 msgid ""
 "Guess as the destination directory to install things to. If this is "
 "specified, you should not list destination directories in debian/package."
@@ -3537,7 +3575,7 @@ msgstr ""
 "siguiente modo:"
 
 # type: textblock
-#: dh_install:59
+#: dh_install:63
 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 "
@@ -3553,7 +3591,7 @@ msgstr ""
 "etc/."
 
 # type: textblock
-#: dh_install:65
+#: dh_install:69
 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 "
@@ -3566,12 +3604,12 @@ msgstr ""
 "ha usado esta opción."
 
 # type: =item
-#: dh_install:70
+#: dh_install:74
 msgid "B<--list-missing>"
 msgstr "B<--list-missing>"
 
 # type: textblock
-#: dh_install:72
+#: dh_install:76
 msgid ""
 "This option makes dh_install keep track of the files it installs, and then "
 "at the end, compare that list with the files in the source directory. If any "
@@ -3585,7 +3623,7 @@ msgstr ""
 "estándar."
 
 # type: textblock
-#: dh_install:77
+#: 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."
@@ -3595,7 +3633,7 @@ msgstr ""
 "programa."
 
 # type: textblock
-#: dh_install:80
+#: dh_install:84
 msgid ""
 "Note that files that are excluded from being moved via the -X option are not "
 "warned about."
@@ -3604,12 +3642,12 @@ msgstr ""
 "X."
 
 # type: =item
-#: dh_install:83
+#: dh_install:87
 msgid "B<--fail-missing>"
 msgstr "B<--fail-missing>"
 
 # type: textblock
-#: dh_install:85
+#: 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."
@@ -3619,12 +3657,12 @@ msgstr ""
 "código de salida distinto de cero."
 
 # type: =item
-#: dh_install:88
+#: dh_install:92
 msgid "B<--sourcedir=dir>"
 msgstr "B<--sourcedir=dir>"
 
 # type: textblock
-#: dh_install:90
+#: dh_install:94
 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."
@@ -3633,7 +3671,7 @@ msgstr ""
 "es parecido a anteponer \"dir/\" a todos los nombres de los ficheros fuente."
 
 # type: textblock
-#: dh_install:93
+#: dh_install:97
 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\" "
@@ -3646,12 +3684,12 @@ msgstr ""
 "de dh_movefiles, excepto en que copiará los ficheros en vez de moverlos."
 
 # type: =item
-#: dh_install:99
+#: dh_install:103
 msgid "I<file [...] dest>"
 msgstr "I<file [...] dest>"
 
 # type: textblock
-#: dh_install:101
+#: 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."
@@ -3661,12 +3699,12 @@ msgstr ""
 "actúe dh_install."
 
 # type: =head1
-#: dh_install:224
+#: dh_install:241
 msgid "EXAMPLE"
 msgstr "EJEMPLO"
 
 # type: textblock
-#: dh_install:226
+#: dh_install:243
 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 "
@@ -3681,7 +3719,7 @@ msgstr ""
 "sourcedir=debian/tmp\". Haga un debian/tal.install que contenga:"
 
 # type: verbatim
-#: dh_install:232
+#: dh_install:249
 #, no-wrap
 msgid ""
 "  usr/bin\n"
@@ -3693,12 +3731,12 @@ msgstr ""
 "\n"
 
 # type: textblock
-#: dh_install:235
+#: dh_install:252
 msgid "While debian/libfoo.install contains:"
 msgstr "Mientras que debian/libtal.install debe contener:"
 
 # type: verbatim
-#: dh_install:237
+#: dh_install:254
 #, no-wrap
 msgid ""
 "  usr/lib/libfoo*.so.*\n"
@@ -3708,7 +3746,7 @@ msgstr ""
 "\n"
 
 # type: textblock
-#: dh_install:239
+#: dh_install:256
 msgid ""
 "If you want a libfoo-dev package too, debian/libfoo-dev.install might "
 "contain:"
@@ -3717,7 +3755,7 @@ msgstr ""
 "que contenga:"
 
 # type: verbatim
-#: dh_install:241
+#: dh_install:258
 #, no-wrap
 msgid ""
 "  usr/include\n"
@@ -3731,12 +3769,12 @@ msgstr ""
 "\n"
 
 # type: =head1
-#: dh_install:245
+#: dh_install:262
 msgid "LIMITATIONS"
 msgstr "LIMITACIONES"
 
 # type: verbatim
-#: dh_install:247
+#: dh_install:264
 #, no-wrap
 msgid ""
 "dh_install cannot rename files or directories, it can only install them\n"
index 69d58a4d0c2cb1f9162f9167231c7e84542dda2e..f3acdc750b0013fd739c29dd272df40938ae9d7d 100644 (file)
@@ -3,7 +3,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: debhelper manpages\n"
-"POT-Creation-Date: 2008-03-25 14:08-0400\n"
+"POT-Creation-Date: 2008-04-23 15:36-0400\n"
 "PO-Revision-Date: 2006-11-19 20:50+0100\n"
 "Last-Translator: Valery Perrin <valery.perrin.debian@free.fr>\n"
 "Language-Team: French <debian-l10n-french@lists.debian.org>\n"
@@ -802,8 +802,8 @@ msgstr "Ce mode fonctionne comme V2 mais avec les ajouts S<suivants :>"
 # type: =item
 #: debhelper.pod:296 debhelper.pod:301 debhelper.pod:305 debhelper.pod:319
 #: debhelper.pod:324 debhelper.pod:329 debhelper.pod:334 debhelper.pod:346
-#: debhelper.pod:350 debhelper.pod:355 debhelper.pod:359 debhelper.pod:372
-#: debhelper.pod:377 debhelper.pod:383 debhelper.pod:389
+#: debhelper.pod:350 debhelper.pod:355 debhelper.pod:359 debhelper.pod:371
+#: debhelper.pod:376 debhelper.pod:382 debhelper.pod:388 debhelper.pod:403
 msgid "-"
 msgstr "-"
 
@@ -925,21 +925,18 @@ msgstr ""
 # type: textblock
 #: debhelper.pod:367
 #, fuzzy
-msgid ""
-"This is the recommended mode of operation. It does everything V5 does, plus:"
-msgstr ""
-"C'est la version dont l'usage est recommandé. Elle fait la même chose que la "
-"version V4 S<plus :>"
+msgid "Changes from V5 are:"
+msgstr "Les changements par rapport à la version 3 S<sont :>"
 
 # type: textblock
-#: debhelper.pod:374
+#: debhelper.pod:373
 msgid ""
 "Commands that generate maintainer script fragements will order the "
 "fragements in reverse order for the prerm and postrm scripts."
 msgstr ""
 
 # type: textblock
-#: debhelper.pod:379
+#: debhelper.pod:378
 #, fuzzy
 msgid ""
 "dh_installwm will install a slave manpage link for x-window-manager.1.gz, if "
@@ -947,7 +944,7 @@ msgid ""
 msgstr "dh_installwm - inscrit un gestionnaire de fenêtre (window manager)"
 
 # type: textblock
-#: debhelper.pod:385
+#: debhelper.pod:384
 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 "
@@ -955,19 +952,47 @@ msgid ""
 msgstr ""
 
 # type: textblock
-#: debhelper.pod:391
+#: debhelper.pod:390
 msgid ""
 "dh_installman allows overwriting existing man pages in the package build "
 "directory. In previous compatability levels it silently refuses to do this."
 msgstr ""
 
+# type: =item
+#: debhelper.pod:395
+msgid "V7"
+msgstr ""
+
+# type: textblock
+#: debhelper.pod:397
+#, fuzzy
+msgid "This is the recommended mode of operation."
+msgstr ""
+"C'est la version dont l'usage est recommandé. Elle fait la même chose que la "
+"version V4 S<plus :>"
+
+# type: textblock
+#: debhelper.pod:399
+#, fuzzy
+msgid "Changes from V6 are:"
+msgstr "Les changements par rapport à la version 3 S<sont :>"
+
+# type: textblock
+#: debhelper.pod:405
+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: =head2
-#: debhelper.pod:398
+#: debhelper.pod:414
 msgid "Doc directory symlinks"
 msgstr "Liens symboliques vers le répertoire de documentation"
 
 # type: textblock
-#: debhelper.pod:400
+#: debhelper.pod:416
 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 "
@@ -990,12 +1015,12 @@ msgstr ""
 "l'air »> et ne pas essayer d'installer un fichier copyright ou changelog."
 
 # type: =head2
-#: debhelper.pod:409
+#: debhelper.pod:425
 msgid "udebs"
 msgstr "udebs"
 
 # type: textblock
-#: debhelper.pod:411
+#: debhelper.pod:427
 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 "
@@ -1014,12 +1039,12 @@ msgstr ""
 "les scripts de configuration, etc."
 
 # type: =head2
-#: debhelper.pod:418
+#: debhelper.pod:434
 msgid "Other notes"
 msgstr "Autres remarques"
 
 # type: textblock
-#: debhelper.pod:420
+#: debhelper.pod:436
 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 "
@@ -1036,7 +1061,7 @@ msgstr ""
 "fichiers menu, etc."
 
 # type: textblock
-#: debhelper.pod:426
+#: debhelper.pod:442
 #, fuzzy
 msgid ""
 "Once your package uses debhelper to build, be sure to add debhelper to your "
@@ -1052,7 +1077,7 @@ msgstr ""
 "le paquet emploie le niveau 5 de S<compatibilité :>"
 
 # type: verbatim
-#: debhelper.pod:432
+#: debhelper.pod:448
 #, fuzzy, no-wrap
 msgid ""
 "  Build-Depends: debhelper (>= 6)\n"
@@ -1062,17 +1087,17 @@ msgstr ""
 "\n"
 
 # type: =head1
-#: debhelper.pod:434
+#: debhelper.pod:450
 msgid "ENVIRONMENT"
 msgstr "VARIABLES D'ENVIRONNEMENT"
 
 # type: =item
-#: debhelper.pod:438
+#: debhelper.pod:454
 msgid "DH_VERBOSE"
 msgstr "DH_VERBOSE"
 
 # type: textblock
-#: debhelper.pod:440
+#: debhelper.pod:456
 msgid ""
 "Set to 1 to enable verbose mode. Debhelper will output every command it runs "
 "that modifies files on the build system."
@@ -1081,12 +1106,12 @@ msgstr ""
 "commande exécutée qui modifie des fichiers."
 
 # type: =item
-#: debhelper.pod:443
+#: debhelper.pod:459
 msgid "DH_COMPAT"
 msgstr "DH_COMPAT"
 
 # type: textblock
-#: debhelper.pod:445
+#: debhelper.pod:461
 msgid ""
 "Temporarily specifies what compatibility level debhelper should run at, "
 "overriding any value in debian/compat."
@@ -1095,22 +1120,22 @@ msgstr ""
 "fonctionner. Cette valeur supplante la valeur précisée dans debian/compat."
 
 # type: =item
-#: debhelper.pod:448
+#: debhelper.pod:464
 msgid "DH_NO_ACT"
 msgstr "DH_NO_ACT"
 
 # type: textblock
-#: debhelper.pod:450
+#: debhelper.pod:466
 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:452
+#: debhelper.pod:468
 msgid "DH_OPTIONS"
 msgstr "DH_OPTIONS"
 
 # type: textblock
-#: debhelper.pod:454
+#: debhelper.pod:470
 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 "
@@ -1127,12 +1152,12 @@ msgstr ""
 "cette méthode."
 
 # type: =item
-#: debhelper.pod:460
+#: debhelper.pod:476
 msgid "DH_ALWAYS_EXCLUDE"
 msgstr "DH_ALWAYS_EXCLUDE"
 
 # type: textblock
-#: debhelper.pod:462
+#: debhelper.pod:478
 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 "
@@ -1144,7 +1169,7 @@ msgstr ""
 "construction de paquet."
 
 # type: textblock
-#: debhelper.pod:466
+#: debhelper.pod:482
 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 "
@@ -1162,7 +1187,7 @@ msgstr ""
 "soit l'endroit où le paquet est construit."
 
 # type: textblock
-#: debhelper.pod:473
+#: debhelper.pod:489
 msgid ""
 "Multiple things to exclude can be separated with colons, as in "
 "DH_ALWAYS_EXCLUDE=CVS:.svn"
@@ -1171,14 +1196,14 @@ msgstr ""
 "dans DH_ALWAYS_EXCLUDE=CVS:.svn"
 
 # type: =head1
-#: debhelper.pod:478 dh_builddeb:85 dh_clean:106 dh_compress:189 dh_desktop:47
+#: debhelper.pod:494 dh_builddeb:85 dh_clean:109 dh_compress:189 dh_desktop:47
 #: dh_fixperms:110 dh_gconf:90 dh_gencontrol:73 dh_installcatalogs:111
 #: dh_installchangelogs:125 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:197
 #: dh_installlogcheck:51 dh_installlogrotate:50 dh_installmanpages:197
-#: dh_installman:246 dh_installmenu:80 dh_installmime:85 dh_installmodules:116
-#: dh_installpam:52 dh_install:251 dh_installppp:56 dh_installwm:107
+#: 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:28 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:43
@@ -1187,35 +1212,35 @@ msgid "SEE ALSO"
 msgstr "VOIR AUSSI"
 
 # type: =item
-#: debhelper.pod:482
+#: debhelper.pod:498
 msgid "F</usr/share/doc/debhelper/examples/>"
 msgstr "F</usr/share/doc/debhelper/examples/>"
 
 # type: textblock
-#: debhelper.pod:484
+#: debhelper.pod:500
 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:486
+#: debhelper.pod:502
 msgid "L<http://kitenet.net/~joey/code/debhelper/>"
 msgstr "L<http://kitenet.net/~joey/code/debhelper/>"
 
 # type: textblock
-#: debhelper.pod:488
+#: debhelper.pod:504
 msgid "Debhelper web site."
 msgstr "Le site internet de debhelper."
 
 # type: =head1
-#: debhelper.pod:492 dh_builddeb:91 dh_clean:112 dh_compress:195 dh_desktop:53
+#: debhelper.pod:508 dh_builddeb:91 dh_clean:115 dh_compress:195 dh_desktop:53
 #: dh_fixperms:116 dh_gconf:96 dh_gencontrol:79 dh_installcatalogs:117
 #: dh_installchangelogs:131 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:203 dh_installlogcheck:57 dh_installlogrotate:56
-#: dh_installmanpages:203 dh_installman:252 dh_installmenu:88
-#: dh_installmime:91 dh_installmodules:122 dh_installpam:58 dh_install:257
+#: 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:34 dh_makeshlibs:228 dh_md5sums:92 dh_movefiles:168
 #: dh_perl:158 dh_python:288 dh_scrollkeeper:82 dh_shlibdeps:165 dh_strip:230
@@ -1225,13 +1250,13 @@ msgid "AUTHOR"
 msgstr "AUTEUR"
 
 # type: textblock
-#: debhelper.pod:494 dh_builddeb:93 dh_clean:114 dh_compress:197
+#: debhelper.pod:510 dh_builddeb:93 dh_clean:117 dh_compress:197
 #: dh_fixperms:118 dh_gencontrol:81 dh_installchangelogs:133 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:205 dh_installlogrotate:58
-#: dh_installmanpages:205 dh_installman:254 dh_installmenu:90
-#: dh_installmime:93 dh_installmodules:124 dh_installpam:60 dh_install:259
+#: 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:36 dh_makeshlibs:230 dh_md5sums:94 dh_movefiles:170
 #: dh_shlibdeps:167 dh_strip:232 dh_suidregister:125 dh_testdir:51
@@ -1263,13 +1288,13 @@ msgstr ""
 "plusieurs paquet(s) Debian."
 
 # type: =head1
-#: dh_builddeb:21 dh_clean:25 dh_compress:38 dh_fixperms:31 dh_gconf:34
+#: dh_builddeb:21 dh_clean:28 dh_compress:38 dh_fixperms:31 dh_gconf:34
 #: dh_gencontrol:26 dh_installcatalogs:44 dh_installchangelogs:40
 #: 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:43 dh_installppp:26 dh_installwm:32 dh_link:48
+#: 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
@@ -1322,13 +1347,13 @@ msgstr ""
 "Fournit les I<paramètres> à L<dpkg-deb(1)> lors de la construction du paquet."
 
 # type: textblock
-#: dh_builddeb:87 dh_clean:108 dh_compress:191 dh_fixperms:112 dh_gconf:92
+#: dh_builddeb:87 dh_clean:111 dh_compress:191 dh_fixperms:112 dh_gconf:92
 #: dh_gencontrol:75 dh_installcatalogs:113 dh_installchangelogs:127
 #: 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:199 dh_installlogcheck:53
-#: dh_installlogrotate:52 dh_installmanpages:199 dh_installman:248
-#: dh_installmime:87 dh_installmodules:118 dh_installpam:54 dh_install:253
+#: 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:30 dh_makeshlibs:224 dh_md5sums:88 dh_movefiles:164
 #: dh_perl:154 dh_python:284 dh_strip:226 dh_suidregister:119 dh_testdir:45
@@ -1337,13 +1362,13 @@ msgid "L<debhelper(7)>"
 msgstr "L<debhelper(7)>"
 
 # type: textblock
-#: dh_builddeb:89 dh_clean:110 dh_compress:193 dh_desktop:51 dh_fixperms:114
+#: dh_builddeb:89 dh_clean:113 dh_compress:193 dh_desktop:51 dh_fixperms:114
 #: dh_gconf:94 dh_gencontrol:77 dh_installchangelogs:129 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:201 dh_installlogrotate:54 dh_installmanpages:201
-#: dh_installman:250 dh_installmenu:86 dh_installmime:89 dh_installmodules:120
-#: dh_installpam:56 dh_install:255 dh_installppp:60 dh_installwm:111
+#: 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:32 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:47
@@ -1367,27 +1392,34 @@ msgstr ""
 
 # type: verbatim
 #: dh_clean:18
-#, no-wrap
+#, fuzzy, 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"
 "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"
 "debian diff:\n"
-"  #*# *~ DEADJOE *.orig *.rej *.SUMS TAGS core .deps/* *.P\n"
+"  #*# *~ DEADJOE *.orig *.rej *.SUMS TAGS .deps/* *.P\n"
 "\n"
 msgstr ""
 "dh_clean est le programme de la suite debhelper chargé du nettoyage, après la construction du paquet. Il supprime les répertoires de construction, ainsi que d'autres fichiers y compris debian/files. Il supprime aussi tous les résidus laissés par les autres commandes de debhelper, ainsi que les dossiers communs qui ne doivent pas apparaître dans un diff S<Debian :>\n"
 " #*# *~ DEADJOE *.orig *.rej *.SUMS TAGS core .deps/* *.P\n"
 "\n"
 
+# type: textblock
+#: dh_clean:25
+msgid ""
+"It does not run \"make clean\" to clean up after the build process. Use "
+"L<dh_auto_clean(1)> to do that."
+msgstr ""
+
 # type: =item
-#: dh_clean:29 dh_installchangelogs:44
+#: dh_clean:32 dh_installchangelogs:44
 msgid "B<-k>, B<--keep>"
 msgstr "B<-k>, B<--keep>"
 
 # type: textblock
-#: dh_clean:31
+#: dh_clean:34
 msgid ""
 "Do not delete debian/files. When do you want to use this? Anytime you have a "
 "debian/rules that has 2 binary targets that build different .deb packages; "
@@ -1406,12 +1438,12 @@ msgstr ""
 "ne contiendrait que le dernier paquet binaire construit."
 
 # type: =item
-#: dh_clean:39
+#: dh_clean:42
 msgid "B<-d>, B<--dirs-only>"
 msgstr "B<-d>, B<--dirs-only>"
 
 # type: textblock
-#: dh_clean:41
+#: dh_clean:44
 msgid ""
 "Only clean the package build directories, do not clean up any other files at "
 "all."
@@ -1420,12 +1452,12 @@ msgstr ""
 "autre fichier."
 
 # type: =item
-#: dh_clean:44
+#: dh_clean:47
 msgid "B<-X>I<item> B<--exclude=>I<item>"
 msgstr "B<-X>I<élément> B<--exclude=>I<élément>"
 
 # type: textblock
-#: dh_clean:46
+#: dh_clean:49
 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 "
@@ -1437,13 +1469,13 @@ msgstr ""
 "d'éléments."
 
 # type: =item
-#: dh_clean:50 dh_compress:55 dh_installdocs:69 dh_installexamples:38
+#: dh_clean:53 dh_compress:55 dh_installdocs:69 dh_installexamples:38
 #: dh_installinfo:50 dh_installmanpages:44 dh_movefiles:49 dh_testdir:27
 msgid "I<file ...>"
 msgstr "I<fichier ...>"
 
 # type: textblock
-#: dh_clean:52
+#: dh_clean:55
 msgid "Delete these files too."
 msgstr "Supprime également les fichiers listés."
 
@@ -2413,7 +2445,7 @@ msgid "Do not modify postinst/prerm scripts."
 msgstr "Empêche la modification des scripts de maintenance postinst et prerm."
 
 # type: =item
-#: dh_installdocs:64 dh_installexamples:43 dh_install:47 dh_link:57
+#: dh_installdocs:64 dh_installexamples:43 dh_install:51 dh_link:57
 #: dh_movefiles:44
 msgid "B<-Xitem>, B<--exclude=item>"
 msgstr "B<-Xélément>, B<--exclude=élément>"
@@ -2641,7 +2673,7 @@ msgstr ""
 "construit (ou dans tous les paquets si -A est spécifié)."
 
 # type: textblock
-#: dh_installexamples:45 dh_install:49 dh_movefiles:46
+#: dh_installexamples:45 dh_install:53 dh_movefiles:46
 msgid ""
 "Exclude files that contain \"item\" anywhere in their filename from being "
 "installed."
@@ -3607,13 +3639,21 @@ msgstr ""
 "emplacement temporaire vers les répertoires de construction appropriés de "
 "chaque paquet."
 
+# type: textblock
+#: dh_install:43
+msgid ""
+"From debhelper compatability 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 ""
+
 # type: =item
-#: dh_install:52
+#: dh_install:56
 msgid "B<--autodest>"
 msgstr "B<--autodest>"
 
 # type: textblock
-#: dh_install:54
+#: dh_install:58
 msgid ""
 "Guess as the destination directory to install things to. If this is "
 "specified, you should not list destination directories in debian/package."
@@ -3627,7 +3667,7 @@ msgstr ""
 "répertoires de destination selon la règle S<suivante :>"
 
 # type: textblock
-#: dh_install:59
+#: dh_install:63
 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 "
@@ -3643,7 +3683,7 @@ msgstr ""
 "installer est debian/tmp/etc/passwd, il sera copié dans debian/paquet/etc/."
 
 # type: textblock
-#: dh_install:65
+#: dh_install:69
 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 "
@@ -3656,12 +3696,12 @@ msgstr ""
 "destination, même en l'absence de l'option B<--autodest>."
 
 # type: =item
-#: dh_install:70
+#: dh_install:74
 msgid "B<--list-missing>"
 msgstr "B<--list-missing>"
 
 # type: textblock
-#: dh_install:72
+#: dh_install:76
 msgid ""
 "This option makes dh_install keep track of the files it installs, and then "
 "at the end, compare that list with the files in the source directory. If any "
@@ -3675,7 +3715,7 @@ msgstr ""
 "stderr."
 
 # type: textblock
-#: dh_install:77
+#: 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."
@@ -3685,7 +3725,7 @@ msgstr ""
 "fichiers récemment ajoutés dans la version."
 
 # type: textblock
-#: dh_install:80
+#: dh_install:84
 msgid ""
 "Note that files that are excluded from being moved via the -X option are not "
 "warned about."
@@ -3694,12 +3734,12 @@ msgstr ""
 "message d'erreur."
 
 # type: =item
-#: dh_install:83
+#: dh_install:87
 msgid "B<--fail-missing>"
 msgstr "B<--fail-missing>"
 
 # type: textblock
-#: dh_install:85
+#: 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."
@@ -3709,12 +3749,12 @@ msgstr ""
 "echec du programme avec une valeur de retour différente de zéro."
 
 # type: =item
-#: dh_install:88
+#: dh_install:92
 msgid "B<--sourcedir=dir>"
 msgstr "B<--sourcedir=répertoire>"
 
 # type: textblock
-#: dh_install:90
+#: dh_install:94
 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."
@@ -3724,7 +3764,7 @@ msgstr ""
 "soient préfixés par S<« répertoire »>."
 
 # type: textblock
-#: dh_install:93
+#: dh_install:97
 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\" "
@@ -3738,12 +3778,12 @@ msgstr ""
 "fichiers au lieu de les déplacer."
 
 # type: =item
-#: dh_install:99
+#: dh_install:103
 msgid "I<file [...] dest>"
 msgstr "I<fichier [...] destination>"
 
 # type: textblock
-#: dh_install:101
+#: 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."
@@ -3753,12 +3793,12 @@ msgstr ""
 "paquet traité par dh_install."
 
 # type: =head1
-#: dh_install:224
+#: dh_install:241
 msgid "EXAMPLE"
 msgstr "EXEMPLE"
 
 # type: textblock
-#: dh_install:226
+#: dh_install:243
 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 "
@@ -3774,7 +3814,7 @@ msgstr ""
 "debian/toto.install qui S<contienne :>"
 
 # type: verbatim
-#: dh_install:232
+#: dh_install:249
 #, no-wrap
 msgid ""
 "  usr/bin\n"
@@ -3786,12 +3826,12 @@ msgstr ""
 "\n"
 
 # type: textblock
-#: dh_install:235
+#: dh_install:252
 msgid "While debian/libfoo.install contains:"
 msgstr "Tandis que debian/libtoto.install devra S<contenir :>"
 
 # type: verbatim
-#: dh_install:237
+#: dh_install:254
 #, no-wrap
 msgid ""
 "  usr/lib/libfoo*.so.*\n"
@@ -3801,7 +3841,7 @@ msgstr ""
 "\n"
 
 # type: textblock
-#: dh_install:239
+#: dh_install:256
 msgid ""
 "If you want a libfoo-dev package too, debian/libfoo-dev.install might "
 "contain:"
@@ -3810,7 +3850,7 @@ msgstr ""
 "dev.install devra S<contenir :>"
 
 # type: verbatim
-#: dh_install:241
+#: dh_install:258
 #, no-wrap
 msgid ""
 "  usr/include\n"
@@ -3824,12 +3864,12 @@ msgstr ""
 "\n"
 
 # type: =head1
-#: dh_install:245
+#: dh_install:262
 msgid "LIMITATIONS"
 msgstr "LIMITES"
 
 # type: verbatim
-#: dh_install:247
+#: dh_install:264
 #, no-wrap
 msgid ""
 "dh_install cannot rename files or directories, it can only install them\n"