From c003d52881fbd0372d7c4b335f275a1b99fe21c8 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Sun, 17 Jul 2011 16:36:04 -0400 Subject: releasing version 8.9.1 --- man/po4a/po/debhelper.pot | 589 +++++++++++++++++++++++----------------------- 1 file changed, 290 insertions(+), 299 deletions(-) (limited to 'man/po4a/po/debhelper.pot') diff --git a/man/po4a/po/debhelper.pot b/man/po4a/po/debhelper.pot index 8c061011..8c11284e 100644 --- a/man/po4a/po/debhelper.pot +++ b/man/po4a/po/debhelper.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2011-06-24 14:29-0400\n" +"POT-Creation-Date: 2011-07-17 16:31-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -401,7 +401,7 @@ msgstr "" #. type: textblock #: debhelper.pod:194 msgid "" -"All of the BI<*> debhelper programs sets environment variables " +"All of the BI<*> debhelper programs set environment variables " "listed by B, unless they are already set. They support " "DEB_BUILD_OPTIONS=noopt too." msgstr "" @@ -521,154 +521,12 @@ msgid "" msgstr "" #. type: =head1 -#: debhelper.pod:257 dh_auto_test:44 dh_installcatalogs:59 dh_installdocs:116 dh_installemacsen:67 dh_installexamples:53 dh_installinit:133 dh_installman:81 dh_installmime:51 dh_installmodules:60 dh_installudev:55 dh_installwm:54 dh_installxfonts:37 dh_movefiles:64 dh_strip:68 dh_usrlocal:49 -msgid "NOTES" -msgstr "" - -#. type: =head2 -#: debhelper.pod:259 -msgid "Multiple binary package support" -msgstr "" - -#. type: textblock -#: debhelper.pod:261 -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 " -"source package happens to generate one architecture dependent package, and " -"another architecture independent package, this is not the correct behavior, " -"because you need to generate the architecture dependent packages in the " -"binary-arch F target, and the architecture independent " -"packages in the binary-indep F target." -msgstr "" - -#. type: textblock -#: debhelper.pod:269 -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." -msgstr "" - -#. type: =head2 -#: debhelper.pod:275 -msgid "Automatic generation of Debian install scripts" -msgstr "" - -#. type: textblock -#: debhelper.pod:277 -msgid "" -"Some debhelper commands will automatically generate parts of Debian " -"maintainer scripts. If you want these automatically generated things " -"included in your existing Debian maintainer scripts, then you need to add " -"B<#DEBHELPER#> to your scripts, in the place the code should be added. " -"B<#DEBHELPER#> will be replaced by any auto-generated code when you run " -"B." -msgstr "" - -#. type: textblock -#: debhelper.pod:284 -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:287 -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:290 -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 " -"is one way to do that (note that I made sure that $1, $2, etc are set with " -"the set command):" -msgstr "" - -#. type: verbatim -#: debhelper.pod:295 -#, no-wrap -msgid "" -" my $temp=\"set -e\\nset -- @ARGV\\n\" . << 'EOF';\n" -" #DEBHELPER#\n" -" EOF\n" -" system ($temp) / 256 == 0\n" -" \tor die \"Problem with debhelper scripts: $!\";\n" -"\n" -msgstr "" - -#. type: =head2 -#: debhelper.pod:301 -msgid "Automatic generation of miscellaneous dependencies." -msgstr "" - -#. type: textblock -#: debhelper.pod:303 -msgid "" -"Some debhelper commands may make the generated package need to depend on " -"some other packages. For example, if you use L, your " -"package will generally need to depend on debconf. Or if you use " -"L, your package will generally need to depend on a " -"particular version of xutils. Keeping track of these miscellaneous " -"dependencies can be annoying since they are dependant on how debhelper does " -"things, so debhelper offers a way to automate it." -msgstr "" - -#. type: textblock -#: debhelper.pod:311 -msgid "" -"All commands of this type, besides documenting what dependencies may be " -"needed on their man pages, will automatically generate a substvar called " -"B<${misc:Depends}>. If you put that token into your F file, " -"it will be expanded to the dependencies debhelper figures you need." -msgstr "" - -#. type: textblock -#: debhelper.pod:316 -msgid "" -"This is entirely independent of the standard B<${shlibs:Depends}> generated " -"by L, and the B<${perl:Depends}> generated by " -"L. You can choose not to use any of these, if debhelper's " -"guesses don't match reality." -msgstr "" - -#. type: =head2 -#: debhelper.pod:321 -msgid "Package build directories" -msgstr "" - -#. type: textblock -#: debhelper.pod:323 -msgid "" -"By default, all debhelper programs assume that the temporary directory used " -"for assembling the tree of files in a package is debian/I." -msgstr "" - -#. type: textblock -#: debhelper.pod:326 -msgid "" -"Sometimes, you might want to use some other temporary directory. This is " -"supported by the B<-P> flag. For example, \"B\", will use B as the temporary directory. Note " -"that if you use B<-P>, the debhelper programs can only be acting on a single " -"package at a time. So if you have a package that builds many binary " -"packages, you will need to also use the B<-p> flag to specify which binary " -"package the debhelper program will act on." -msgstr "" - -#. type: =head2 -#: debhelper.pod:334 -msgid "Debhelper compatibility levels" +#: debhelper.pod:257 +msgid "COMPATABILITY LEVELS" msgstr "" #. type: textblock -#: debhelper.pod:336 +#: debhelper.pod:259 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 " @@ -679,14 +537,14 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:343 +#: debhelper.pod:266 msgid "" "Tell debhelper what compatibility level to use by writing a number to " "F. For example, to turn on v8 mode:" msgstr "" #. type: verbatim -#: debhelper.pod:346 +#: debhelper.pod:269 #, no-wrap msgid "" " % echo 8 > debian/compat\n" @@ -694,7 +552,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:348 +#: debhelper.pod:271 msgid "" "Unless otherwise indicated, all debhelper documentation assumes that you are " "using the most recent compatibility level, and in most cases does not " @@ -705,17 +563,17 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:355 +#: debhelper.pod:278 msgid "These are the available compatibility levels:" msgstr "" #. type: =item -#: debhelper.pod:359 +#: debhelper.pod:282 msgid "v1" msgstr "" #. type: textblock -#: debhelper.pod:361 +#: debhelper.pod:284 msgid "" "This is the original debhelper compatibility level, and so it is the default " "one. In this mode, debhelper will use F as the package tree " @@ -725,39 +583,39 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:366 debhelper.pod:373 debhelper.pod:396 debhelper.pod:425 +#: debhelper.pod:289 debhelper.pod:296 debhelper.pod:319 debhelper.pod:348 msgid "This mode is deprecated." msgstr "" #. type: =item -#: debhelper.pod:368 +#: debhelper.pod:291 msgid "v2" msgstr "" #. type: textblock -#: debhelper.pod:370 +#: debhelper.pod:293 msgid "" "In this mode, debhelper will consistently use debian/I as the " "package tree directory for every package that is built." msgstr "" #. type: =item -#: debhelper.pod:375 +#: debhelper.pod:298 msgid "v3" msgstr "" #. type: textblock -#: debhelper.pod:377 +#: debhelper.pod:300 msgid "This mode works like v2, with the following additions:" msgstr "" #. type: =item -#: debhelper.pod:381 debhelper.pod:386 debhelper.pod:390 debhelper.pod:404 debhelper.pod:409 debhelper.pod:414 debhelper.pod:419 debhelper.pod:433 debhelper.pod:437 debhelper.pod:442 debhelper.pod:446 debhelper.pod:458 debhelper.pod:463 debhelper.pod:469 debhelper.pod:475 debhelper.pod:488 debhelper.pod:495 debhelper.pod:499 debhelper.pod:503 debhelper.pod:518 debhelper.pod:522 debhelper.pod:530 debhelper.pod:535 debhelper.pod:549 debhelper.pod:554 debhelper.pod:559 +#: debhelper.pod:304 debhelper.pod:309 debhelper.pod:313 debhelper.pod:327 debhelper.pod:332 debhelper.pod:337 debhelper.pod:342 debhelper.pod:356 debhelper.pod:360 debhelper.pod:365 debhelper.pod:369 debhelper.pod:381 debhelper.pod:386 debhelper.pod:392 debhelper.pod:398 debhelper.pod:411 debhelper.pod:418 debhelper.pod:422 debhelper.pod:426 debhelper.pod:441 debhelper.pod:445 debhelper.pod:453 debhelper.pod:458 debhelper.pod:472 debhelper.pod:477 debhelper.pod:482 debhelper.pod:487 msgid "-" msgstr "" #. type: textblock -#: debhelper.pod:383 +#: debhelper.pod:306 msgid "" "Debhelper config files support globbing via B<*> and B, when " "appropriate. To turn this off and use those characters raw, just prefix with " @@ -765,106 +623,106 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:388 +#: debhelper.pod:311 msgid "" "B makes the F and F scripts call " "B." msgstr "" #. type: textblock -#: debhelper.pod:392 +#: debhelper.pod:315 msgid "" "Every file in F is automatically flagged as a conffile by " "B." msgstr "" #. type: =item -#: debhelper.pod:398 +#: debhelper.pod:321 msgid "v4" msgstr "" #. type: textblock -#: debhelper.pod:400 +#: debhelper.pod:323 msgid "Changes from v3 are:" msgstr "" #. type: textblock -#: debhelper.pod:406 +#: debhelper.pod:329 msgid "" "B will not include the Debian part of the version number " "in the generated dependency line in the shlibs file." msgstr "" #. type: textblock -#: debhelper.pod:411 +#: debhelper.pod:334 msgid "" "You are encouraged to put the new B<${misc:Depends}> into F " "to supplement the B<${shlibs:Depends}> field." msgstr "" #. type: textblock -#: debhelper.pod:416 +#: debhelper.pod:339 msgid "" "B will make all files in F directories and in " "F executable." msgstr "" #. type: textblock -#: debhelper.pod:421 +#: debhelper.pod:344 msgid "B will correct existing links to conform with policy." msgstr "" #. type: =item -#: debhelper.pod:427 +#: debhelper.pod:350 msgid "v5" msgstr "" #. type: textblock -#: debhelper.pod:429 +#: debhelper.pod:352 msgid "Changes from v4 are:" msgstr "" #. type: textblock -#: debhelper.pod:435 +#: debhelper.pod:358 msgid "Comments are ignored in debhelper config files." msgstr "" #. type: textblock -#: debhelper.pod:439 +#: debhelper.pod:362 msgid "" "B 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:444 +#: debhelper.pod:367 msgid "B skips installing empty files." msgstr "" #. type: textblock -#: debhelper.pod:448 +#: debhelper.pod:371 msgid "B errors out if wildcards expand to nothing." msgstr "" #. type: =item -#: debhelper.pod:452 +#: debhelper.pod:375 msgid "v6" msgstr "" #. type: textblock -#: debhelper.pod:454 +#: debhelper.pod:377 msgid "Changes from v5 are:" msgstr "" #. type: textblock -#: debhelper.pod:460 +#: debhelper.pod:383 msgid "" "Commands that generate maintainer script fragments will order the fragments " "in reverse order for the F and F scripts." msgstr "" #. type: textblock -#: debhelper.pod:465 +#: debhelper.pod:388 msgid "" "B will install a slave manpage link for " "F, if it sees the man page in F " @@ -872,7 +730,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:471 +#: debhelper.pod:394 msgid "" "B did not previously delete everything matching " "B, if it was set to a list of things to exclude, such as " @@ -880,24 +738,24 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:477 +#: debhelper.pod:400 msgid "" "B 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:482 +#: debhelper.pod:405 msgid "v7" msgstr "" #. type: textblock -#: debhelper.pod:484 +#: debhelper.pod:407 msgid "Changes from v6 are:" msgstr "" #. type: textblock -#: debhelper.pod:490 +#: debhelper.pod:413 msgid "" "B, will fall back to looking for files in F if it " "doesn't find them in the current directory (or wherever you tell it look " @@ -907,44 +765,44 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:497 +#: debhelper.pod:420 msgid "B will read F and delete files listed there." msgstr "" #. type: textblock -#: debhelper.pod:501 +#: debhelper.pod:424 msgid "B will delete toplevel F<*-stamp> files." msgstr "" #. type: textblock -#: debhelper.pod:505 +#: debhelper.pod:428 msgid "" "B will guess at what file is the upstream changelog if " "none is specified." msgstr "" #. type: =item -#: debhelper.pod:510 +#: debhelper.pod:433 msgid "v8" msgstr "" #. type: textblock -#: debhelper.pod:512 +#: debhelper.pod:435 msgid "This is the recommended mode of operation." msgstr "" #. type: textblock -#: debhelper.pod:514 +#: debhelper.pod:437 msgid "Changes from v7 are:" msgstr "" #. type: textblock -#: debhelper.pod:520 +#: debhelper.pod:443 msgid "Commands will fail rather than warning when they are passed unknown options." msgstr "" #. type: textblock -#: debhelper.pod:524 +#: debhelper.pod:447 msgid "" "B will run B on all shared libraries that it " "generates shlibs files for. So B<-X> can be used to exclude libraries. " @@ -954,7 +812,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:532 +#: debhelper.pod:455 msgid "" "B requires the sequence to run be specified as the first parameter, and " "any switches come after it. Ie, use \"B\", not \"BI<*> prefer to use Perl's B in preference to " "F." msgstr "" #. type: =item -#: debhelper.pod:541 +#: debhelper.pod:464 msgid "v9" msgstr "" #. type: textblock -#: debhelper.pod:543 -msgid "This compatability level is still open for development; use with caution." +#: debhelper.pod:466 +msgid "This compatibility level is still open for development; use with caution." msgstr "" #. type: textblock -#: debhelper.pod:545 +#: debhelper.pod:468 msgid "Changes from v8 are:" msgstr "" #. type: textblock -#: debhelper.pod:551 +#: debhelper.pod:474 msgid "" "Multiarch support. In particular, B passes multiarch " "directories to autoconf in --libdir and --libexecdir." msgstr "" #. type: textblock -#: debhelper.pod:556 +#: debhelper.pod:479 msgid "" "dh supports use of standard targets in debian/rules without needing to " "manually define the dependencies between targets there." msgstr "" +#. type: textblock +#: debhelper.pod:484 +msgid "" +"B does not include the source package name in " +"--libexecdir when using autoconf." +msgstr "" + +#. type: textblock +#: debhelper.pod:489 +msgid "B does not default to enabling --with=python-support" +msgstr "" + +#. type: =head1 +#: debhelper.pod:495 dh_auto_test:44 dh_installcatalogs:59 dh_installdocs:116 dh_installemacsen:67 dh_installexamples:53 dh_installinit:133 dh_installman:81 dh_installmime:51 dh_installmodules:60 dh_installudev:55 dh_installwm:54 dh_installxfonts:37 dh_movefiles:64 dh_strip:68 dh_usrlocal:49 +msgid "NOTES" +msgstr "" + +#. type: =head2 +#: debhelper.pod:497 +msgid "Multiple binary package support" +msgstr "" + +#. type: textblock +#: debhelper.pod:499 +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 " +"source package happens to generate one architecture dependent package, and " +"another architecture independent package, this is not the correct behavior, " +"because you need to generate the architecture dependent packages in the " +"binary-arch F target, and the architecture independent " +"packages in the binary-indep F target." +msgstr "" + +#. type: textblock +#: debhelper.pod:507 +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." +msgstr "" + +#. type: =head2 +#: debhelper.pod:513 +msgid "Automatic generation of Debian install scripts" +msgstr "" + +#. type: textblock +#: debhelper.pod:515 +msgid "" +"Some debhelper commands will automatically generate parts of Debian " +"maintainer scripts. If you want these automatically generated things " +"included in your existing Debian maintainer scripts, then you need to add " +"B<#DEBHELPER#> to your scripts, in the place the code should be added. " +"B<#DEBHELPER#> will be replaced by any auto-generated code when you run " +"B." +msgstr "" + +#. type: textblock +#: debhelper.pod:522 +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:525 +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:528 +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 " +"is one way to do that (note that I made sure that $1, $2, etc are set with " +"the set command):" +msgstr "" + +#. type: verbatim +#: debhelper.pod:533 +#, no-wrap +msgid "" +" my $temp=\"set -e\\nset -- @ARGV\\n\" . << 'EOF';\n" +" #DEBHELPER#\n" +" EOF\n" +" system ($temp) / 256 == 0\n" +" \tor die \"Problem with debhelper scripts: $!\";\n" +"\n" +msgstr "" + +#. type: =head2 +#: debhelper.pod:539 +msgid "Automatic generation of miscellaneous dependencies." +msgstr "" + +#. type: textblock +#: debhelper.pod:541 +msgid "" +"Some debhelper commands may make the generated package need to depend on " +"some other packages. For example, if you use L, your " +"package will generally need to depend on debconf. Or if you use " +"L, your package will generally need to depend on a " +"particular version of xutils. Keeping track of these miscellaneous " +"dependencies can be annoying since they are dependent on how debhelper does " +"things, so debhelper offers a way to automate it." +msgstr "" + +#. type: textblock +#: debhelper.pod:549 +msgid "" +"All commands of this type, besides documenting what dependencies may be " +"needed on their man pages, will automatically generate a substvar called " +"B<${misc:Depends}>. If you put that token into your F file, " +"it will be expanded to the dependencies debhelper figures you need." +msgstr "" + +#. type: textblock +#: debhelper.pod:554 +msgid "" +"This is entirely independent of the standard B<${shlibs:Depends}> generated " +"by L, and the B<${perl:Depends}> generated by " +"L. You can choose not to use any of these, if debhelper's " +"guesses don't match reality." +msgstr "" + +#. type: =head2 +#: debhelper.pod:559 +msgid "Package build directories" +msgstr "" + #. type: textblock #: debhelper.pod:561 msgid "" -" does not include the source package name in --libexecdir " -"when using autoconf." +"By default, all debhelper programs assume that the temporary directory used " +"for assembling the tree of files in a package is debian/I." +msgstr "" + +#. type: textblock +#: debhelper.pod:564 +msgid "" +"Sometimes, you might want to use some other temporary directory. This is " +"supported by the B<-P> flag. For example, \"B\", will use B as the temporary directory. Note " +"that if you use B<-P>, the debhelper programs can only be acting on a single " +"package at a time. So if you have a package that builds many binary " +"packages, you will need to also use the B<-p> flag to specify which binary " +"package the debhelper program will act on." msgstr "" #. type: =head2 -#: debhelper.pod:568 +#: debhelper.pod:572 msgid "udebs" msgstr "" #. type: textblock -#: debhelper.pod:570 +#: debhelper.pod:574 msgid "" "Debhelper includes support for udebs. To create a udeb with debhelper, add " "\"B\" to the package's stanza in F, and " @@ -1021,23 +1026,12 @@ msgid "" msgstr "" #. type: =head2 -#: debhelper.pod:577 -msgid "Other notes" -msgstr "" - -#. type: textblock -#: debhelper.pod:579 -msgid "" -"In general, if any debhelper program needs a directory to exist under " -"B, it will create it. I haven't bothered to document this in all " -"the man pages, but for example, B knows to make " -"debian/I/DEBIAN/ before trying to put files there, " -"B knows you need a debian/I/usr/share/menu/ before " -"installing the menu files, etc." +#: debhelper.pod:581 +msgid "Build depends" msgstr "" #. type: textblock -#: debhelper.pod:585 +#: debhelper.pod:583 msgid "" "Once your package uses debhelper to build, be sure to add debhelper to your " "Build-Depends line in F. You should build-depend on a " @@ -1046,7 +1040,7 @@ msgid "" msgstr "" #. type: verbatim -#: debhelper.pod:591 +#: debhelper.pod:589 #, no-wrap msgid "" " Build-Depends: debhelper (>= 7)\n" @@ -1054,51 +1048,51 @@ msgid "" msgstr "" #. type: =head1 -#: debhelper.pod:593 +#: debhelper.pod:591 msgid "ENVIRONMENT" msgstr "" #. type: =item -#: debhelper.pod:597 +#: debhelper.pod:595 msgid "B" msgstr "" #. type: textblock -#: debhelper.pod:599 +#: debhelper.pod:597 msgid "" "Set to B<1> to enable verbose mode. Debhelper will output every command it " "runs that modifies files on the build system." msgstr "" #. type: =item -#: debhelper.pod:602 +#: debhelper.pod:600 msgid "B" msgstr "" #. type: textblock -#: debhelper.pod:604 +#: debhelper.pod:602 msgid "" "Temporarily specifies what compatibility level debhelper should run at, " "overriding any value in F." msgstr "" #. type: =item -#: debhelper.pod:607 +#: debhelper.pod:605 msgid "B" msgstr "" #. type: textblock -#: debhelper.pod:609 +#: debhelper.pod:607 msgid "Set to B<1> to enable no-act mode." msgstr "" #. type: =item -#: debhelper.pod:611 +#: debhelper.pod:609 msgid "B" msgstr "" #. type: textblock -#: debhelper.pod:613 +#: debhelper.pod:611 msgid "" "Anything in this variable will be prepended to the command line arguments of " "all debhelper commands. Command-specific options will be ignored by commands " @@ -1106,7 +1100,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:617 +#: debhelper.pod:615 msgid "" "This is useful in some situations, for example, if you need to pass B<-p> to " "all debhelper commands that will be run. One good way to set B " @@ -1115,12 +1109,12 @@ msgid "" msgstr "" #. type: =item -#: debhelper.pod:622 +#: debhelper.pod:620 msgid "B" msgstr "" #. type: textblock -#: debhelper.pod:624 +#: debhelper.pod:622 msgid "" "If set, this adds the value the variable is set to to the B<-X> options of " "all commands that support the B<-X> option. Moreover, B will " @@ -1128,7 +1122,7 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:628 +#: debhelper.pod:626 msgid "" "This can be useful if you are doing a build from a CVS source tree, in which " "case setting B will prevent any CVS directories from " @@ -1139,44 +1133,44 @@ msgid "" msgstr "" #. type: textblock -#: debhelper.pod:635 +#: debhelper.pod:633 msgid "" "Multiple things to exclude can be separated with colons, as in " "B" msgstr "" #. type: =head1 -#: debhelper.pod:640 dh:872 dh_auto_build:47 dh_auto_clean:50 dh_auto_configure:53 dh_auto_install:85 dh_auto_test:58 dh_bugfiles:122 dh_builddeb:91 dh_clean:139 dh_compress:204 dh_desktop:31 dh_fixperms:129 dh_gconf:99 dh_gencontrol:82 dh_icons:65 dh_install:280 dh_installcatalogs:116 dh_installchangelogs:171 dh_installcron:77 dh_installdeb:144 dh_installdebconf:126 dh_installdirs:86 dh_installdocs:307 dh_installemacsen:124 dh_installexamples:106 dh_installifupdown:69 dh_installinfo:77 dh_installinit:275 dh_installlogcheck:66 dh_installlogrotate:50 dh_installman:258 dh_installmanpages:197 dh_installmenu:87 dh_installmime:95 dh_installmodules:124 dh_installpam:59 dh_installppp:65 dh_installudev:115 dh_installwm:108 dh_installxfonts:87 dh_link:226 dh_lintian:57 dh_listpackages:30 dh_makeshlibs:258 dh_md5sums:90 dh_movefiles:170 dh_perl:146 dh_prep:60 dh_python:280 dh_scrollkeeper:28 dh_shlibdeps:171 dh_strip:230 dh_suidregister:117 dh_testdir:44 dh_testroot:27 dh_undocumented:28 dh_usrlocal:114 +#: debhelper.pod:638 dh:875 dh_auto_build:47 dh_auto_clean:50 dh_auto_configure:53 dh_auto_install:85 dh_auto_test:58 dh_bugfiles:122 dh_builddeb:123 dh_clean:142 dh_compress:204 dh_desktop:31 dh_fixperms:129 dh_gconf:99 dh_gencontrol:82 dh_icons:65 dh_install:279 dh_installcatalogs:116 dh_installchangelogs:171 dh_installcron:77 dh_installdeb:144 dh_installdebconf:126 dh_installdirs:86 dh_installdocs:307 dh_installemacsen:124 dh_installexamples:106 dh_installifupdown:69 dh_installinfo:77 dh_installinit:275 dh_installlogcheck:66 dh_installlogrotate:50 dh_installman:258 dh_installmanpages:197 dh_installmenu:87 dh_installmime:95 dh_installmodules:124 dh_installpam:59 dh_installppp:65 dh_installudev:115 dh_installwm:108 dh_installxfonts:87 dh_link:226 dh_lintian:57 dh_listpackages:30 dh_makeshlibs:258 dh_md5sums:90 dh_movefiles:170 dh_perl:146 dh_prep:60 dh_python:280 dh_scrollkeeper:28 dh_shlibdeps:171 dh_strip:230 dh_suidregister:117 dh_testdir:44 dh_testroot:27 dh_undocumented:28 dh_usrlocal:114 msgid "SEE ALSO" msgstr "" #. type: =item -#: debhelper.pod:644 +#: debhelper.pod:642 msgid "F" msgstr "" #. type: textblock -#: debhelper.pod:646 +#: debhelper.pod:644 msgid "A set of example F files that use debhelper." msgstr "" #. type: =item -#: debhelper.pod:648 +#: debhelper.pod:646 msgid "L" msgstr "" #. type: textblock -#: debhelper.pod:650 +#: debhelper.pod:648 msgid "Debhelper web site." msgstr "" #. type: =head1 -#: debhelper.pod:654 dh:878 dh_auto_build:53 dh_auto_clean:56 dh_auto_configure:59 dh_auto_install:91 dh_auto_test:64 dh_bugfiles:130 dh_builddeb:97 dh_clean:145 dh_compress:210 dh_desktop:37 dh_fixperms:135 dh_gconf:105 dh_gencontrol:88 dh_icons:71 dh_install:286 dh_installcatalogs:122 dh_installchangelogs:177 dh_installcron:83 dh_installdeb:150 dh_installdebconf:132 dh_installdirs:92 dh_installdocs:313 dh_installemacsen:130 dh_installexamples:112 dh_installifupdown:75 dh_installinfo:83 dh_installlogcheck:72 dh_installlogrotate:56 dh_installman:264 dh_installmanpages:203 dh_installmenu:95 dh_installmime:101 dh_installmodules:130 dh_installpam:65 dh_installppp:71 dh_installudev:121 dh_installwm:114 dh_installxfonts:93 dh_link:232 dh_lintian:65 dh_listpackages:36 dh_makeshlibs:264 dh_md5sums:96 dh_movefiles:176 dh_perl:152 dh_prep:66 dh_python:286 dh_scrollkeeper:34 dh_shlibdeps:177 dh_strip:236 dh_suidregister:123 dh_testdir:50 dh_testroot:33 dh_undocumented:34 dh_usrlocal:120 +#: debhelper.pod:652 dh:881 dh_auto_build:53 dh_auto_clean:56 dh_auto_configure:59 dh_auto_install:91 dh_auto_test:64 dh_bugfiles:130 dh_builddeb:129 dh_clean:148 dh_compress:210 dh_desktop:37 dh_fixperms:135 dh_gconf:105 dh_gencontrol:88 dh_icons:71 dh_install:285 dh_installcatalogs:122 dh_installchangelogs:177 dh_installcron:83 dh_installdeb:150 dh_installdebconf:132 dh_installdirs:92 dh_installdocs:313 dh_installemacsen:130 dh_installexamples:112 dh_installifupdown:75 dh_installinfo:83 dh_installlogcheck:72 dh_installlogrotate:56 dh_installman:264 dh_installmanpages:203 dh_installmenu:95 dh_installmime:101 dh_installmodules:130 dh_installpam:65 dh_installppp:71 dh_installudev:121 dh_installwm:114 dh_installxfonts:93 dh_link:232 dh_lintian:65 dh_listpackages:36 dh_makeshlibs:264 dh_md5sums:96 dh_movefiles:176 dh_perl:152 dh_prep:66 dh_python:286 dh_scrollkeeper:34 dh_shlibdeps:177 dh_strip:236 dh_suidregister:123 dh_testdir:50 dh_testroot:33 dh_undocumented:34 dh_usrlocal:120 msgid "AUTHOR" msgstr "" #. type: textblock -#: debhelper.pod:656 dh:880 dh_auto_build:55 dh_auto_clean:58 dh_auto_configure:61 dh_auto_install:93 dh_auto_test:66 dh_builddeb:99 dh_clean:147 dh_compress:212 dh_fixperms:137 dh_gencontrol:90 dh_install:288 dh_installchangelogs:179 dh_installcron:85 dh_installdeb:152 dh_installdebconf:134 dh_installdirs:94 dh_installdocs:315 dh_installemacsen:132 dh_installexamples:114 dh_installifupdown:77 dh_installinfo:85 dh_installinit:283 dh_installlogrotate:58 dh_installman:266 dh_installmanpages:205 dh_installmenu:97 dh_installmime:103 dh_installmodules:132 dh_installpam:67 dh_installppp:73 dh_installudev:123 dh_installwm:116 dh_installxfonts:95 dh_link:234 dh_listpackages:38 dh_makeshlibs:266 dh_md5sums:98 dh_movefiles:178 dh_prep:68 dh_shlibdeps:179 dh_strip:238 dh_suidregister:125 dh_testdir:52 dh_testroot:35 dh_undocumented:36 +#: debhelper.pod:654 dh:883 dh_auto_build:55 dh_auto_clean:58 dh_auto_configure:61 dh_auto_install:93 dh_auto_test:66 dh_builddeb:131 dh_clean:150 dh_compress:212 dh_fixperms:137 dh_gencontrol:90 dh_install:287 dh_installchangelogs:179 dh_installcron:85 dh_installdeb:152 dh_installdebconf:134 dh_installdirs:94 dh_installdocs:315 dh_installemacsen:132 dh_installexamples:114 dh_installifupdown:77 dh_installinfo:85 dh_installinit:283 dh_installlogrotate:58 dh_installman:266 dh_installmanpages:205 dh_installmenu:97 dh_installmime:103 dh_installmodules:132 dh_installpam:67 dh_installppp:73 dh_installudev:123 dh_installwm:116 dh_installxfonts:95 dh_link:234 dh_listpackages:38 dh_makeshlibs:266 dh_md5sums:98 dh_movefiles:178 dh_prep:68 dh_shlibdeps:179 dh_strip:238 dh_suidregister:125 dh_testdir:52 dh_testroot:35 dh_undocumented:36 msgid "Joey Hess " msgstr "" @@ -1431,22 +1425,23 @@ msgstr "" #. type: textblock #: dh:165 msgid "" -"If your package is a Python package, B will use B by " -"default. This is how to use B instead." +"Python tools are not run by dh by default, due to the continual change in " +"that area. (Before compatability level v9, dh does run B.) " +"Here is how to use B." msgstr "" #. type: verbatim -#: dh:168 +#: dh:169 #, no-wrap msgid "" "\t#!/usr/bin/make -f\n" "\t%:\n" -"\t\tdh $@ --with python-central\n" +"\t\tdh $@ --with python2\n" "\n" msgstr "" #. type: textblock -#: dh:172 +#: dh:173 msgid "" "If your package uses autotools and you want to freshen F and " "F with newer versions from the B package at " @@ -1455,7 +1450,7 @@ msgid "" msgstr "" #. type: verbatim -#: dh:177 +#: dh:178 #, no-wrap msgid "" "\t#!/usr/bin/make -f\n" @@ -1465,14 +1460,14 @@ msgid "" msgstr "" #. type: textblock -#: dh:181 +#: dh:182 msgid "" "Here is how to force use of Perl's B build system, which can " "be necessary if debhelper wrongly detects that the package uses MakeMaker." msgstr "" #. type: verbatim -#: dh:185 +#: dh:186 #, no-wrap msgid "" "\t#!/usr/bin/make -f\n" @@ -1482,7 +1477,7 @@ msgid "" msgstr "" #. type: verbatim -#: dh:189 +#: dh:190 #, no-wrap msgid "" "To patch your package using quilt, you can tell B to use quilt's B\n" @@ -1491,7 +1486,7 @@ msgid "" msgstr "" #. type: verbatim -#: dh:192 +#: dh:193 #, no-wrap msgid "" "\t#!/usr/bin/make -f\n" @@ -1501,7 +1496,7 @@ msgid "" msgstr "" #. type: textblock -#: dh:196 +#: dh:197 msgid "" "Here is an example of overriding where the BI<*> commands find the " "package's source, for a package where the source is located in a " @@ -1509,7 +1504,7 @@ msgid "" msgstr "" #. type: verbatim -#: dh:200 +#: dh:201 #, no-wrap msgid "" "\t#!/usr/bin/make -f\n" @@ -1519,14 +1514,14 @@ msgid "" msgstr "" #. type: textblock -#: dh:204 +#: dh:205 msgid "" "And here is an example of how to tell the BI<*> commands to build " "in a subdirectory, which will be removed on B." msgstr "" #. type: verbatim -#: dh:207 +#: dh:208 #, no-wrap msgid "" "\t#!/usr/bin/make -f\n" @@ -1536,14 +1531,14 @@ msgid "" msgstr "" #. type: textblock -#: dh:211 +#: dh:212 msgid "" "If your package can be built in parallel, you can support parallel building " "as follows. Then B will work." msgstr "" #. type: verbatim -#: dh:214 +#: dh:215 #, no-wrap msgid "" "\t#!/usr/bin/make -f\n" @@ -1553,14 +1548,14 @@ msgid "" msgstr "" #. type: textblock -#: dh:218 +#: dh:219 msgid "" "Here is a way to prevent B from running several commands that you don't " "want it to run, by defining empty override targets for each command." msgstr "" #. type: verbatim -#: dh:221 dh:232 dh:249 +#: dh:222 dh:233 dh:250 #, no-wrap msgid "" "\t#!/usr/bin/make -f\n" @@ -1570,7 +1565,7 @@ msgid "" msgstr "" #. type: verbatim -#: dh:225 +#: dh:226 #, no-wrap msgid "" "\t# Commands not to run:\n" @@ -1579,7 +1574,7 @@ msgid "" msgstr "" #. type: textblock -#: dh:228 +#: dh:229 msgid "" "Sometimes, you may need to make an override target only run commands when a " "particular package is being built. This can be accomplished using " @@ -1587,7 +1582,7 @@ msgid "" msgstr "" #. type: verbatim -#: dh:236 +#: dh:237 #, no-wrap msgid "" "\toverride_dh_fixperms:\n" @@ -1599,7 +1594,7 @@ msgid "" msgstr "" #. type: textblock -#: dh:242 +#: dh:243 msgid "" "Finally, remember that you are not limited to using override targets in the " "rules file when using B. You can also explicitly define any of the " @@ -1610,7 +1605,7 @@ msgid "" msgstr "" #. type: verbatim -#: dh:253 +#: dh:254 #, no-wrap msgid "" "\tbuild-indep:\n" @@ -1621,29 +1616,29 @@ msgid "" msgstr "" #. type: textblock -#: dh:258 +#: dh:259 msgid "" "Note that in the example above, dh will arrange for \"debian/rules build\" " "to call your build-indep and build-arch targets. You do not need to " "explicitly define the dependencies in the rules file when using dh with " -"compatability level v9. This example would be more complicated with earlier " -"compatability levels." +"compatibility level v9. This example would be more complicated with earlier " +"compatibility levels." msgstr "" #. type: =head1 -#: dh:264 +#: dh:265 msgid "INTERNALS" msgstr "" #. type: textblock -#: dh:266 +#: dh:267 msgid "" "If you're curious about B's internals, here's how it works under the " "hood." msgstr "" #. type: textblock -#: dh:268 +#: dh:269 msgid "" "Each debhelper command will record when it's successfully run in " "F. (Which B deletes.) So B can " @@ -1652,7 +1647,7 @@ msgid "" msgstr "" #. type: textblock -#: dh:273 +#: dh:274 msgid "" "Each time B is run, it examines the log, and finds the last logged " "command that is in the specified sequence. It then continues with the next " @@ -1661,21 +1656,21 @@ msgid "" msgstr "" #. type: textblock -#: dh:278 +#: dh:279 msgid "" "A sequence can also run dependent targets in debian/rules. For example, the " "\"binary\" sequence runs the \"install\" target." msgstr "" #. type: textblock -#: dh:281 +#: dh:282 msgid "" "B sets environment variables listed by B, unless they " "are already set. It supports DEB_BUILD_OPTIONS=noopt too." msgstr "" #. type: textblock -#: dh:284 +#: dh:285 msgid "" "B uses the B environment variable to pass " "information through to debhelper commands that are run inside override " @@ -1684,12 +1679,12 @@ msgid "" msgstr "" #. type: textblock -#: dh:874 dh_auto_build:49 dh_auto_clean:52 dh_auto_configure:55 dh_auto_install:87 dh_auto_test:60 dh_builddeb:93 dh_clean:141 dh_compress:206 dh_fixperms:131 dh_gconf:101 dh_gencontrol:84 dh_install:282 dh_installcatalogs:118 dh_installchangelogs:173 dh_installcron:79 dh_installdeb:146 dh_installdebconf:128 dh_installdirs:88 dh_installdocs:309 dh_installemacsen:126 dh_installexamples:108 dh_installifupdown:71 dh_installinfo:79 dh_installinit:277 dh_installlogcheck:68 dh_installlogrotate:52 dh_installman:260 dh_installmanpages:199 dh_installmime:97 dh_installmodules:126 dh_installpam:61 dh_installppp:67 dh_installudev:117 dh_installwm:110 dh_installxfonts:89 dh_link:228 dh_listpackages:32 dh_makeshlibs:260 dh_md5sums:92 dh_movefiles:172 dh_perl:148 dh_prep:62 dh_python:282 dh_strip:232 dh_suidregister:119 dh_testdir:46 dh_testroot:29 dh_undocumented:30 dh_usrlocal:116 +#: dh:877 dh_auto_build:49 dh_auto_clean:52 dh_auto_configure:55 dh_auto_install:87 dh_auto_test:60 dh_builddeb:125 dh_clean:144 dh_compress:206 dh_fixperms:131 dh_gconf:101 dh_gencontrol:84 dh_install:281 dh_installcatalogs:118 dh_installchangelogs:173 dh_installcron:79 dh_installdeb:146 dh_installdebconf:128 dh_installdirs:88 dh_installdocs:309 dh_installemacsen:126 dh_installexamples:108 dh_installifupdown:71 dh_installinfo:79 dh_installinit:277 dh_installlogcheck:68 dh_installlogrotate:52 dh_installman:260 dh_installmanpages:199 dh_installmime:97 dh_installmodules:126 dh_installpam:61 dh_installppp:67 dh_installudev:117 dh_installwm:110 dh_installxfonts:89 dh_link:228 dh_listpackages:32 dh_makeshlibs:260 dh_md5sums:92 dh_movefiles:172 dh_perl:148 dh_prep:62 dh_python:282 dh_strip:232 dh_suidregister:119 dh_testdir:46 dh_testroot:29 dh_undocumented:30 dh_usrlocal:116 msgid "L" msgstr "" #. type: textblock -#: dh:876 dh_auto_build:51 dh_auto_clean:54 dh_auto_configure:57 dh_auto_install:89 dh_auto_test:62 dh_bugfiles:128 dh_builddeb:95 dh_clean:143 dh_compress:208 dh_desktop:35 dh_fixperms:133 dh_gconf:103 dh_gencontrol:86 dh_icons:69 dh_install:284 dh_installchangelogs:175 dh_installcron:81 dh_installdeb:148 dh_installdebconf:130 dh_installdirs:90 dh_installdocs:311 dh_installemacsen:128 dh_installexamples:110 dh_installifupdown:73 dh_installinfo:81 dh_installinit:279 dh_installlogrotate:54 dh_installman:262 dh_installmanpages:201 dh_installmenu:93 dh_installmime:99 dh_installmodules:128 dh_installpam:63 dh_installppp:69 dh_installudev:119 dh_installwm:112 dh_installxfonts:91 dh_link:230 dh_lintian:61 dh_listpackages:34 dh_makeshlibs:262 dh_md5sums:94 dh_movefiles:174 dh_perl:150 dh_prep:64 dh_python:284 dh_scrollkeeper:32 dh_shlibdeps:175 dh_strip:234 dh_suidregister:121 dh_testdir:48 dh_testroot:31 dh_undocumented:32 dh_usrlocal:118 +#: dh:879 dh_auto_build:51 dh_auto_clean:54 dh_auto_configure:57 dh_auto_install:89 dh_auto_test:62 dh_bugfiles:128 dh_builddeb:127 dh_clean:146 dh_compress:208 dh_desktop:35 dh_fixperms:133 dh_gconf:103 dh_gencontrol:86 dh_icons:69 dh_install:283 dh_installchangelogs:175 dh_installcron:81 dh_installdeb:148 dh_installdebconf:130 dh_installdirs:90 dh_installdocs:311 dh_installemacsen:128 dh_installexamples:110 dh_installifupdown:73 dh_installinfo:81 dh_installinit:279 dh_installlogrotate:54 dh_installman:262 dh_installmanpages:201 dh_installmenu:93 dh_installmime:99 dh_installmodules:128 dh_installpam:63 dh_installppp:69 dh_installudev:119 dh_installwm:112 dh_installxfonts:91 dh_link:230 dh_lintian:61 dh_listpackages:34 dh_makeshlibs:262 dh_md5sums:94 dh_movefiles:174 dh_perl:150 dh_prep:64 dh_python:284 dh_scrollkeeper:32 dh_shlibdeps:175 dh_strip:234 dh_suidregister:121 dh_testdir:48 dh_testroot:31 dh_undocumented:32 dh_usrlocal:118 msgid "This program is a part of debhelper." msgstr "" @@ -2624,21 +2619,17 @@ msgstr "" msgid "" "Note that this is not the same as the B<--sourcedirectory> option used by " "the BI<*> commands. You rarely need to use this option, since " -"B automatically looks for files in F in debhelper" -msgstr "" - -#. type: textblock -#: dh_install:89 -msgid "compatibility level 7 and above." +"B automatically looks for files in F in debhelper " +"compatibility level 7 and above." msgstr "" #. type: =item -#: dh_install:91 +#: dh_install:90 msgid "B<--autodest>" msgstr "" #. type: textblock -#: dh_install:93 +#: dh_install:92 msgid "" "Guess as the destination directory to install things to. If this is " "specified, you should not list destination directories in " @@ -2647,7 +2638,7 @@ msgid "" msgstr "" #. type: textblock -#: dh_install:98 +#: dh_install:97 msgid "" "Strip off F (or the sourcedir if one is given) from the front of " "the filename, if it is present, and install into the dirname of the " @@ -2657,7 +2648,7 @@ msgid "" msgstr "" #. type: textblock -#: dh_install:104 +#: dh_install:103 msgid "" "Note that if you list exactly one filename or wildcard-pattern on a line by " "itself in a F file, with no explicit destination, " @@ -2666,24 +2657,24 @@ msgid "" msgstr "" #. type: =item -#: dh_install:109 +#: dh_install:108 msgid "I ... I" msgstr "" #. type: textblock -#: dh_install:111 +#: dh_install:110 msgid "" "Lists files (or directories) to install and where to install them to. The " "files will be installed into the first package F acts on." msgstr "" #. type: =head1 -#: dh_install:253 +#: dh_install:252 msgid "EXAMPLE" msgstr "" #. type: textblock -#: dh_install:255 +#: dh_install:254 msgid "" "Suppose your package's upstream F installs a binary, a man page, " "and a library into appropriate subdirectories of F. You want to " @@ -2693,7 +2684,7 @@ msgid "" msgstr "" #. type: verbatim -#: dh_install:261 +#: dh_install:260 #, no-wrap msgid "" " usr/bin\n" @@ -2702,12 +2693,12 @@ msgid "" msgstr "" #. type: textblock -#: dh_install:264 +#: dh_install:263 msgid "While F contains:" msgstr "" #. type: verbatim -#: dh_install:266 +#: dh_install:265 #, no-wrap msgid "" " usr/lib/libfoo*.so.*\n" @@ -2715,14 +2706,14 @@ msgid "" msgstr "" #. type: textblock -#: dh_install:268 +#: dh_install:267 msgid "" "If you want a libfoo-dev package too, F might " "contain:" msgstr "" #. type: verbatim -#: dh_install:270 +#: dh_install:269 #, no-wrap msgid "" " usr/include\n" @@ -2732,12 +2723,12 @@ msgid "" msgstr "" #. type: =head1 -#: dh_install:274 +#: dh_install:273 msgid "LIMITATIONS" msgstr "" #. type: verbatim -#: dh_install:276 +#: dh_install:275 #, no-wrap msgid "" "B cannot rename files or directories, it can only install them\n" @@ -4870,7 +4861,7 @@ msgstr "" msgid "" "By default, the shlibs file generated by this program does not make packages " "depend on any particular version of the package containing the shared " -"library. It may be necessary for you to add some version dependancy " +"library. It may be necessary for you to add some version dependency " "information to the shlibs file. If B<-V> is specified with no dependency " "information, the current upstream version of the package is plugged into a " "dependency that looks like \"I B<(E>= " @@ -5245,9 +5236,9 @@ msgstr "" #. type: textblock #: dh_python:19 msgid "" -"Note: This program is deprecated. You should use B or " -"B instead. This program will do nothing if F " -"or a B F file field exists." +"Note: This program is deprecated. You should use B instead. " +"This program will do nothing if F or a B " +"F file field exists." msgstr "" #. type: textblock -- cgit v1.2.3