summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--autoscripts/postinst-scrollkeeper3
-rw-r--r--autoscripts/postrm-gconf10
-rw-r--r--autoscripts/postrm-scrollkeeper3
-rw-r--r--debian/changelog26
-rwxr-xr-xdh11
-rwxr-xr-xdh_compress10
-rwxr-xr-xdh_fixperms6
-rwxr-xr-xdh_gconf2
-rwxr-xr-xdh_scrollkeeper58
-rwxr-xr-xdh_shlibdeps2
-rwxr-xr-xdh_strip3
-rw-r--r--doc/TODO2
-rw-r--r--man/po4a/po/debhelper.pot88
-rw-r--r--man/po4a/po/es.po162
-rw-r--r--man/po4a/po/fr.po168
15 files changed, 248 insertions, 306 deletions
diff --git a/autoscripts/postinst-scrollkeeper b/autoscripts/postinst-scrollkeeper
deleted file mode 100644
index b2180493..00000000
--- a/autoscripts/postinst-scrollkeeper
+++ /dev/null
@@ -1,3 +0,0 @@
-if [ "$1" = "configure" ] && which scrollkeeper-update >/dev/null 2>&1; then
- scrollkeeper-update -q
-fi
diff --git a/autoscripts/postrm-gconf b/autoscripts/postrm-gconf
deleted file mode 100644
index c05eb43d..00000000
--- a/autoscripts/postrm-gconf
+++ /dev/null
@@ -1,10 +0,0 @@
-if [ "$1" = purge ]; then
- OLD_DIR=/etc/gconf/schemas
- SCHEMA_FILES="#SCHEMAS#"
- if [ -d $OLD_DIR ]; then
- for SCHEMA in $SCHEMA_FILES; do
- rm -f $OLD_DIR/$SCHEMA
- done
- rmdir -p --ignore-fail-on-non-empty $OLD_DIR
- fi
-fi
diff --git a/autoscripts/postrm-scrollkeeper b/autoscripts/postrm-scrollkeeper
deleted file mode 100644
index 47b71544..00000000
--- a/autoscripts/postrm-scrollkeeper
+++ /dev/null
@@ -1,3 +0,0 @@
-if [ "$1" = "remove" ] && which scrollkeeper-update >/dev/null 2>&1; then
- scrollkeeper-update -q
-fi
diff --git a/debian/changelog b/debian/changelog
index 021f7877..4fe56307 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -18,6 +18,32 @@ debhelper (7.3.0) UNRELEASED; urgency=low
-- Joey Hess <joeyh@debian.org> Mon, 20 Apr 2009 16:26:08 -0400
+debhelper (7.2.16) unstable; urgency=low
+
+ * dh_gconf: Add missed half of postrm fragment removal. Closes: #531035
+
+ -- Joey Hess <joeyh@debian.org> Thu, 11 Jun 2009 12:50:33 -0400
+
+debhelper (7.2.15) unstable; urgency=low
+
+ * dh_strip, dh_shlibdeps: Add support for OCaml shared libraries.
+ (Stephane Glondu) Closes: #527272, #532701
+ * dh_compress: Avoid compressing .svg and .sgvz files, since these
+ might be used as images on a html page, and also to avoid needing
+ to special case the .svgz extension when compressing svg.
+ Closes: #530253
+ * dh_scrollkeeper: Now a deprecated no-op. Closes: #530806
+ * dh_gconf: Remove postrm fragment that handled schema migration
+ from /etc to /usr. Closes: #531035
+
+ -- Joey Hess <joeyh@debian.org> Wed, 10 Jun 2009 17:14:07 -0400
+
+debhelper (7.2.14) unstable; urgency=low
+
+ * dh: Avoid writing log after override_dh_clean is run. Closes: #529228
+
+ -- Joey Hess <joeyh@debian.org> Mon, 18 May 2009 12:49:32 -0400
+
debhelper (7.2.13) unstable; urgency=low
* dh_auto_configure: Pass --skipdeps safely via PERL_AUTOINSTALL.
diff --git a/dh b/dh
index 701f588e..35fedbb0 100755
--- a/dh
+++ b/dh
@@ -252,7 +252,6 @@ $sequences{install} = [@{$sequences{build}}, qw{
dh_gconf
dh_icons
dh_perl
- dh_scrollkeeper
dh_usrlocal
dh_link
@@ -471,9 +470,13 @@ sub run {
# Need to handle logging for overriden commands here,
# because the actual debhelper command may not have
# been run by the rules file target.
- my %packages=map { $_ => 1 } @packages;
- map { delete $packages{$_} } @exclude;
- write_log($override_command, keys %packages);
+ # (But avoid logging for dh_clean since it removes
+ # the log earlier.)
+ if ($override_command ne 'dh_clean') {
+ my %packages=map { $_ => 1 } @packages;
+ map { delete $packages{$_} } @exclude;
+ write_log($override_command, keys %packages);
+ }
}
}
}
diff --git a/dh_compress b/dh_compress
index 575d3bcb..3d6c1b69 100755
--- a/dh_compress
+++ b/dh_compress
@@ -24,9 +24,10 @@ to the new files.
By default, dh_compress compresses files that debian policy mandates should
be compressed, namely all files in usr/share/info, usr/share/man,
usr/X11R6/man, files in usr/share/doc that are larger than 4k in size,
-(except the copyright file, .html and .css files, and files that appear to be
-already compressed based on their extensions), and all changelog files. Plus
-PCF fonts underneath usr/X11R6/lib/X11/fonts/ and usr/share/fonts/X11/
+(except the copyright file, .html and .css files, image files, and files
+that appear to be already compressed based on their extensions), and all
+changelog files. Plus PCF fonts underneath usr/X11R6/lib/X11/fonts/ and
+usr/share/fonts/X11/
If a debian/package.compress file exists, the default files are not
compressed. Instead, the debian/packages.compress is ran as a shell
@@ -42,7 +43,7 @@ debian/package.compress file if you really need to.
=item B<-X>I<item>, B<--exclude=>I<item>
Exclude files that contain "item" anywhere in their filename from being
-compressed. For example, -X.jpeg will exclude jpeg files from compression.
+compressed. For example, -X.tiff will exclude tiff files from compression.
You may use this option multiple times to build up a list of things to
exclude. You can accomplish the same thing by using a debian/compress file,
but this is easier.
@@ -102,6 +103,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
! -iname "*.tgz" ! -iname "*.z" ! -iname "*.bz2" \\
! -iname "*-gz" ! -iname "*-z" ! -iname "*_z" \\
! -iname "*.jar" ! -iname "*.zip" ! -iname "*.css" \\
+ ! -iname "*.svg" ! -iname "*.svgz" \\
! -name "index.sgml" \\
! -name "copyright" 2>/dev/null || true;
find usr/X11R6/lib/X11/fonts usr/share/fonts/X11 -type f -name "*.pcf" 2>/dev/null || true;
diff --git a/dh_fixperms b/dh_fixperms
index 6fa50652..10261493 100755
--- a/dh_fixperms
+++ b/dh_fixperms
@@ -24,9 +24,9 @@ dh_fixperms makes all files in usr/share/doc in the package build directory
the permissions of all man pages to mode 644. It makes all files be owned
by root, and it removes group and other write permission from all files. It
removes execute permissions from any libraries, headers, perl modules, or
-desktop files that have it set. It makes all files in bin/ directories,
-/usr/games/ and etc/init.d executable (since v4). Finally, it removes the
-setuid and setgid bits from all files in the package.
+desktop files that have it set. It makes all files in the standard bin and
+sbin directories, usr/games/ and etc/init.d executable (since v4). Finally,
+it removes the setuid and setgid bits from all files in the package.
=head1 OPTIONS
diff --git a/dh_gconf b/dh_gconf
index 8c30de73..df8573a3 100755
--- a/dh_gconf
+++ b/dh_gconf
@@ -67,7 +67,6 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
doit("mkdir","-p","$tmp/usr/share/gconf/mandatory");
doit("install","-p","-m644",$mandatory,"$tmp/usr/share/gconf/mandatory/${priority}_$package");
autoscript($package,"postinst","postinst-gconf-defaults","s%#OPT#%--mandatory%");
- autoscript($package,"postrm","postrm-gconf-defaults","s%#OPT#%--mandatory%");
addsubstvar($package, "misc:Depends", "gconf2 (>= 2.24.0-5)");
$gconf_dep = 1;
}
@@ -97,7 +96,6 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
if ($schemas ne '') {
autoscript($package,"postinst","postinst-gconf","s%#SCHEMAS#%$schemas%");
autoscript($package,"prerm","prerm-gconf","s%#SCHEMAS#%$schemas%");
- autoscript($package,"postrm","postrm-gconf","s%#SCHEMAS#%$schemas%");
addsubstvar($package, "misc:Depends", "gconf2 (>= 2.10.1-2)") unless $gconf_dep;
}
}
diff --git a/dh_scrollkeeper b/dh_scrollkeeper
index d2e2145e..c40e77df 100755
--- a/dh_scrollkeeper
+++ b/dh_scrollkeeper
@@ -2,7 +2,7 @@
=head1 NAME
-dh_scrollkeeper - generate ScrollKeeper registration scripts
+dh_scrollkeeper - deprecated no-op
=cut
@@ -15,63 +15,15 @@ B<dh_scrollkeeper> [S<I<debhelper options>>] [B<-n>] [S<I<directory>>]
=head1 DESCRIPTION
-B<dh_scrollkeeper> is a debhelper program that handles correctly
-registering OMF files that it finds in package build trees with
-ScrollKeeper.
-
-This command automatically adds maintainer script snippets for registering
-and unregistering files with ScrollKeeper (unless B<-n> is used). These
-snippets are inserted into the maintainer scripts by dh_installdeb. See
-L<dh_installdeb(1)> for an explanation of Debhelper maintainer script
-snippets.
-
-It will also change any DTD declarations in the OMF and DocBook files
-to refer to local files instead of remote URLs. This change does not
-modify the source files, but the files in the package build tree.
-
-=head1 OPTIONS
-
-=over 4
-
-=item B<-n>, B<--noscripts>
-
-Do not modify F<postinst>/F<postrm> scripts.
-
-=back
-
-=head1 NOTES
-
-Note that this command is not idempotent. L<dh_prep(1)> should be
-called between invocations of this command. Otherwise, it may cause
-multiple instances of the same text to be added to maintainer scripts.
+dh_scrollkeeper was a debhelper program that handled
+registering OMF files for ScrollKeeper. However, it no longer does
+anything, and is now deprecated.
=cut
init();
-# This is a list of paths where DocBook files might be stored.
-my @xml_paths = (
- 'usr/share/gnome/help' # GNOME Help
-);
-
-# Append the remaining command line arguments
-push @xml_paths, @ARGV if @ARGV;
-
-foreach my $package (@{$dh{DOPACKAGES}}) {
- my $tmp=tmpdir($package);
-
- # Only run if there have been OMF files installed
- if (-d "$tmp/usr/share/omf") {
- # Get a list of the OMF files
- my @omf_files = `find $tmp/usr/share/omf -type f -printf '%p\n'`;
- if (@omf_files) {
- if (! $dh{NOSCRIPTS}) {
- autoscript($package,"postinst","postinst-scrollkeeper");
- autoscript($package,"postrm","postrm-scrollkeeper");
- }
- }
- }
-}
+warning("This program is deprecated, and does nothing anymore.");
=head1 SEE ALSO
diff --git a/dh_shlibdeps b/dh_shlibdeps
index 7b974eb8..3ab89818 100755
--- a/dh_shlibdeps
+++ b/dh_shlibdeps
@@ -121,7 +121,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
if (defined($dh{EXCLUDE_FIND}) && $dh{EXCLUDE_FIND} ne '') {
$find_options="! \\( $dh{EXCLUDE_FIND} \\)";
}
- foreach my $file (split(/\n/,`find $tmp -type f \\( -perm +111 -or -name "*.so*" \\) $find_options -print`)) {
+ foreach my $file (split(/\n/,`find $tmp -type f \\( -perm +111 -or -name "*.so*" -or -name "*.cmxs" \\) $find_options -print`)) {
# Prune directories that contain separated debug symbols.
next if $file=~m!^\Q$tmp\E/usr/lib/debug/(lib|lib64|usr|bin|sbin|opt|dev|emul)/!;
# TODO this is slow, optimize. Ie, file can run once on
diff --git a/dh_strip b/dh_strip
index 2c667bb7..cfa26653 100755
--- a/dh_strip
+++ b/dh_strip
@@ -115,7 +115,8 @@ sub testfile {
return if $fn=~m/debug\/.*\.so/;
# Does its filename look like a shared library?
- if (m/.*\.so.*?/) {
+ # (*.cmxs are OCaml native code shared libraries)
+ if (m/.*\.(so.*?|cmxs$)/) {
# Ok, do the expensive test.
my $type=get_file_type($_);
if ($type=~m/.*ELF.*shared.*/) {
diff --git a/doc/TODO b/doc/TODO
index b534af50..3092736b 100644
--- a/doc/TODO
+++ b/doc/TODO
@@ -30,4 +30,4 @@ Deprecated:
* Convert warning about unknown command-line options back to an error.
Need to wait a while (from Oct 2008) to ensure that most rules files
that pass unknown options to commands are fixed.
-* dh_desktop. Remove eventually..
+* dh_desktop, dh_scrollkeeper. Remove eventually..
diff --git a/man/po4a/po/debhelper.pot b/man/po4a/po/debhelper.pot
index 5763bfba..80c175de 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: 2009-05-12 14:52-0300\n"
+"POT-Creation-Date: 2009-06-10 17:14-0300\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"
@@ -336,7 +336,7 @@ msgid "Do not modify postinst/postrm/etc scripts."
msgstr ""
#. type: =item
-#: debhelper.pod:165 dh_compress:42 dh_makeshlibs:66 dh_md5sums:37 dh_shlibdeps:36 dh_strip:39
+#: debhelper.pod:165 dh_compress:43 dh_makeshlibs:66 dh_md5sums:37 dh_shlibdeps:36 dh_strip:39
msgid "B<-X>I<item>, B<--exclude=>I<item>"
msgstr ""
@@ -348,7 +348,7 @@ msgid ""
msgstr ""
#. type: =item
-#: debhelper.pod:170 dh_compress:50 dh_installdirs:32 dh_installdocs:53 dh_installexamples:33 dh_installinfo:41 dh_installman:62 dh_link:52
+#: debhelper.pod:170 dh_compress:51 dh_installdirs:32 dh_installdocs:53 dh_installexamples:33 dh_installinfo:41 dh_installman:62 dh_link:52
msgid "B<-A>, B<--all>"
msgstr ""
@@ -360,7 +360,7 @@ msgid ""
msgstr ""
#. type: =head1
-#: debhelper.pod:177 dh_installcatalogs:52 dh_installdocs:81 dh_installemacsen:54 dh_installexamples:50 dh_installinfo:57 dh_installinit:110 dh_installman:79 dh_installmime:41 dh_installmodules:60 dh_installwm:53 dh_installxfonts:37 dh_movefiles:58 dh_scrollkeeper:42 dh_strip:68 dh_usrlocal:49
+#: debhelper.pod:177 dh_installcatalogs:52 dh_installdocs:81 dh_installemacsen:54 dh_installexamples:50 dh_installinfo:57 dh_installinit:110 dh_installman:79 dh_installmime:41 dh_installmodules:60 dh_installwm:53 dh_installxfonts:37 dh_movefiles:58 dh_strip:68 dh_usrlocal:49
msgid "NOTES"
msgstr ""
@@ -920,7 +920,7 @@ msgid ""
msgstr ""
#. type: =head1
-#: debhelper.pod:517 dh_builddeb:87 dh_clean:130 dh_compress:190 dh_desktop:27 dh_fixperms:122 dh_gconf:106 dh_gencontrol:79 dh_installcatalogs:109 dh_installchangelogs:147 dh_installcron:61 dh_installdebconf:118 dh_installdeb:94 dh_installdirs:83 dh_installdocs:223 dh_installemacsen:111 dh_installexamples:103 dh_installinfo:103 dh_installinit:224 dh_installlogcheck:51 dh_installlogrotate:50 dh_installmanpages:197 dh_installman:251 dh_installmenu:80 dh_installmime:85 dh_installmodules:124 dh_installpam:52 dh_install:272 dh_installppp:56 dh_installwm:107 dh_installxfonts:86 dh_link:223 dh_listpackages:29 dh_makeshlibs:227 dh_md5sums:89 dh_movefiles:162 dh_perl:152 dh_python:282 dh_scrollkeeper:76 dh_shlibdeps:163 dh_strip:226 dh_suidregister:117 dh_testdir:44 dh_testroot:27 dh_testversion:75 dh_undocumented:28 dh_usrlocal:114
+#: debhelper.pod:517 dh_builddeb:87 dh_clean:130 dh_compress:192 dh_desktop:27 dh_fixperms:122 dh_gconf:105 dh_gencontrol:79 dh_installcatalogs:109 dh_installchangelogs:147 dh_installcron:61 dh_installdebconf:118 dh_installdeb:94 dh_installdirs:83 dh_installdocs:223 dh_installemacsen:111 dh_installexamples:103 dh_installinfo:103 dh_installinit:224 dh_installlogcheck:51 dh_installlogrotate:50 dh_installmanpages:197 dh_installman:251 dh_installmenu:80 dh_installmime:85 dh_installmodules:124 dh_installpam:52 dh_install:272 dh_installppp:56 dh_installwm:107 dh_installxfonts:86 dh_link:223 dh_listpackages:29 dh_makeshlibs:227 dh_md5sums:89 dh_movefiles:162 dh_perl:152 dh_python:282 dh_scrollkeeper:28 dh_shlibdeps:163 dh_strip:227 dh_suidregister:117 dh_testdir:44 dh_testroot:27 dh_testversion:75 dh_undocumented:28 dh_usrlocal:114
msgid "SEE ALSO"
msgstr ""
@@ -945,12 +945,12 @@ msgid "Debhelper web site."
msgstr ""
#. type: =head1
-#: debhelper.pod:531 dh_builddeb:93 dh_clean:136 dh_compress:196 dh_desktop:33 dh_fixperms:128 dh_gconf:112 dh_gencontrol:85 dh_installcatalogs:115 dh_installchangelogs:153 dh_installcron:67 dh_installdebconf:124 dh_installdeb:100 dh_installdirs:89 dh_installdocs:229 dh_installemacsen:117 dh_installexamples:109 dh_installinfo:109 dh_installinit:230 dh_installlogcheck:57 dh_installlogrotate:56 dh_installmanpages:203 dh_installman:257 dh_installmenu:88 dh_installmime:91 dh_installmodules:130 dh_installpam:58 dh_install:278 dh_installppp:62 dh_installwm:113 dh_installxfonts:92 dh_link:229 dh_listpackages:35 dh_makeshlibs:233 dh_md5sums:95 dh_movefiles:168 dh_perl:158 dh_python:288 dh_scrollkeeper:82 dh_shlibdeps:169 dh_strip:232 dh_suidregister:123 dh_testdir:50 dh_testroot:33 dh_testversion:81 dh_undocumented:34 dh_usrlocal:120
+#: debhelper.pod:531 dh_builddeb:93 dh_clean:136 dh_compress:198 dh_desktop:33 dh_fixperms:128 dh_gconf:111 dh_gencontrol:85 dh_installcatalogs:115 dh_installchangelogs:153 dh_installcron:67 dh_installdebconf:124 dh_installdeb:100 dh_installdirs:89 dh_installdocs:229 dh_installemacsen:117 dh_installexamples:109 dh_installinfo:109 dh_installinit:230 dh_installlogcheck:57 dh_installlogrotate:56 dh_installmanpages:203 dh_installman:257 dh_installmenu:88 dh_installmime:91 dh_installmodules:130 dh_installpam:58 dh_install:278 dh_installppp:62 dh_installwm:113 dh_installxfonts:92 dh_link:229 dh_listpackages:35 dh_makeshlibs:233 dh_md5sums:95 dh_movefiles:168 dh_perl:158 dh_python:288 dh_scrollkeeper:34 dh_shlibdeps:169 dh_strip:233 dh_suidregister:123 dh_testdir:50 dh_testroot:33 dh_testversion:81 dh_undocumented:34 dh_usrlocal:120
msgid "AUTHOR"
msgstr ""
#. type: textblock
-#: debhelper.pod:533 dh_builddeb:95 dh_clean:138 dh_compress:198 dh_fixperms:130 dh_gencontrol:87 dh_installchangelogs:155 dh_installcron:69 dh_installdebconf:126 dh_installdeb:102 dh_installdirs:91 dh_installdocs:231 dh_installemacsen:119 dh_installexamples:111 dh_installinfo:111 dh_installinit:232 dh_installlogrotate:58 dh_installmanpages:205 dh_installman:259 dh_installmenu:90 dh_installmime:93 dh_installmodules:132 dh_installpam:60 dh_install:280 dh_installppp:64 dh_installwm:115 dh_installxfonts:94 dh_link:231 dh_listpackages:37 dh_makeshlibs:235 dh_md5sums:97 dh_movefiles:170 dh_shlibdeps:171 dh_strip:234 dh_suidregister:125 dh_testdir:52 dh_testroot:35 dh_testversion:83 dh_undocumented:36
+#: debhelper.pod:533 dh_builddeb:95 dh_clean:138 dh_compress:200 dh_fixperms:130 dh_gencontrol:87 dh_installchangelogs:155 dh_installcron:69 dh_installdebconf:126 dh_installdeb:102 dh_installdirs:91 dh_installdocs:231 dh_installemacsen:119 dh_installexamples:111 dh_installinfo:111 dh_installinit:232 dh_installlogrotate:58 dh_installmanpages:205 dh_installman:259 dh_installmenu:90 dh_installmime:93 dh_installmodules:132 dh_installpam:60 dh_install:280 dh_installppp:64 dh_installwm:115 dh_installxfonts:94 dh_link:231 dh_listpackages:37 dh_makeshlibs:235 dh_md5sums:97 dh_movefiles:170 dh_shlibdeps:171 dh_strip:235 dh_suidregister:125 dh_testdir:52 dh_testroot:35 dh_testversion:83 dh_undocumented:36
msgid "Joey Hess <joeyh@debian.org>"
msgstr ""
@@ -974,7 +974,7 @@ msgid ""
msgstr ""
#. type: =head1
-#: dh_builddeb:21 dh_clean:33 dh_compress:38 dh_fixperms:31 dh_gconf:39 dh_gencontrol:26 dh_installcatalogs:42 dh_installchangelogs:44 dh_installcron:24 dh_installdebconf:50 dh_installdirs:28 dh_installdocs:49 dh_installemacsen:35 dh_installexamples:29 dh_installinfo:37 dh_installinit:33 dh_installlogrotate:22 dh_installmanpages:40 dh_installman:58 dh_installmenu:34 dh_installmime:31 dh_installmodules:43 dh_installpam:24 dh_install:47 dh_installppp:26 dh_installwm:32 dh_link:48 dh_makeshlibs:28 dh_md5sums:28 dh_movefiles:32 dh_perl:31 dh_python:39 dh_scrollkeeper:32 dh_shlibdeps:26 dh_strip:35 dh_testdir:23 dh_testversion:34 dh_usrlocal:39
+#: dh_builddeb:21 dh_clean:33 dh_compress:39 dh_fixperms:31 dh_gconf:39 dh_gencontrol:26 dh_installcatalogs:42 dh_installchangelogs:44 dh_installcron:24 dh_installdebconf:50 dh_installdirs:28 dh_installdocs:49 dh_installemacsen:35 dh_installexamples:29 dh_installinfo:37 dh_installinit:33 dh_installlogrotate:22 dh_installmanpages:40 dh_installman:58 dh_installmenu:34 dh_installmime:31 dh_installmodules:43 dh_installpam:24 dh_install:47 dh_installppp:26 dh_installwm:32 dh_link:48 dh_makeshlibs:28 dh_md5sums:28 dh_movefiles:32 dh_perl:31 dh_python:39 dh_shlibdeps:26 dh_strip:35 dh_testdir:23 dh_testversion:34 dh_usrlocal:39
msgid "OPTIONS"
msgstr ""
@@ -1018,12 +1018,12 @@ msgid "Pass I<params> to L<dpkg-deb(1)> when it is used to build the package."
msgstr ""
#. type: textblock
-#: dh_builddeb:89 dh_clean:132 dh_compress:192 dh_fixperms:124 dh_gconf:108 dh_gencontrol:81 dh_installcatalogs:111 dh_installchangelogs:149 dh_installcron:63 dh_installdebconf:120 dh_installdeb:96 dh_installdirs:85 dh_installdocs:225 dh_installemacsen:113 dh_installexamples:105 dh_installinfo:105 dh_installinit:226 dh_installlogcheck:53 dh_installlogrotate:52 dh_installmanpages:199 dh_installman:253 dh_installmime:87 dh_installmodules:126 dh_installpam:54 dh_install:274 dh_installppp:58 dh_installwm:109 dh_installxfonts:88 dh_link:225 dh_listpackages:31 dh_makeshlibs:229 dh_md5sums:91 dh_movefiles:164 dh_perl:154 dh_python:284 dh_strip:228 dh_suidregister:119 dh_testdir:46 dh_testroot:29 dh_testversion:77 dh_undocumented:30 dh_usrlocal:116
+#: dh_builddeb:89 dh_clean:132 dh_compress:194 dh_fixperms:124 dh_gconf:107 dh_gencontrol:81 dh_installcatalogs:111 dh_installchangelogs:149 dh_installcron:63 dh_installdebconf:120 dh_installdeb:96 dh_installdirs:85 dh_installdocs:225 dh_installemacsen:113 dh_installexamples:105 dh_installinfo:105 dh_installinit:226 dh_installlogcheck:53 dh_installlogrotate:52 dh_installmanpages:199 dh_installman:253 dh_installmime:87 dh_installmodules:126 dh_installpam:54 dh_install:274 dh_installppp:58 dh_installwm:109 dh_installxfonts:88 dh_link:225 dh_listpackages:31 dh_makeshlibs:229 dh_md5sums:91 dh_movefiles:164 dh_perl:154 dh_python:284 dh_strip:229 dh_suidregister:119 dh_testdir:46 dh_testroot:29 dh_testversion:77 dh_undocumented:30 dh_usrlocal:116
msgid "L<debhelper(7)>"
msgstr ""
#. type: textblock
-#: dh_builddeb:91 dh_clean:134 dh_compress:194 dh_desktop:31 dh_fixperms:126 dh_gconf:110 dh_gencontrol:83 dh_installchangelogs:151 dh_installcron:65 dh_installdebconf:122 dh_installdeb:98 dh_installdirs:87 dh_installdocs:227 dh_installemacsen:115 dh_installexamples:107 dh_installinfo:107 dh_installinit:228 dh_installlogrotate:54 dh_installmanpages:201 dh_installman:255 dh_installmenu:86 dh_installmime:89 dh_installmodules:128 dh_installpam:56 dh_install:276 dh_installppp:60 dh_installwm:111 dh_installxfonts:90 dh_link:227 dh_listpackages:33 dh_makeshlibs:231 dh_md5sums:93 dh_movefiles:166 dh_perl:156 dh_python:286 dh_scrollkeeper:80 dh_shlibdeps:167 dh_strip:230 dh_suidregister:121 dh_testdir:48 dh_testroot:31 dh_testversion:79 dh_undocumented:32 dh_usrlocal:118
+#: dh_builddeb:91 dh_clean:134 dh_compress:196 dh_desktop:31 dh_fixperms:126 dh_gconf:109 dh_gencontrol:83 dh_installchangelogs:151 dh_installcron:65 dh_installdebconf:122 dh_installdeb:98 dh_installdirs:87 dh_installdocs:227 dh_installemacsen:115 dh_installexamples:107 dh_installinfo:107 dh_installinit:228 dh_installlogrotate:54 dh_installmanpages:201 dh_installman:255 dh_installmenu:86 dh_installmime:89 dh_installmodules:128 dh_installpam:56 dh_install:276 dh_installppp:60 dh_installwm:111 dh_installxfonts:90 dh_link:227 dh_listpackages:33 dh_makeshlibs:231 dh_md5sums:93 dh_movefiles:166 dh_perl:156 dh_python:286 dh_scrollkeeper:32 dh_shlibdeps:167 dh_strip:231 dh_suidregister:121 dh_testdir:48 dh_testroot:31 dh_testversion:79 dh_undocumented:32 dh_usrlocal:118
msgid "This program is a part of debhelper."
msgstr ""
@@ -1110,7 +1110,7 @@ msgid ""
msgstr ""
#. type: =item
-#: dh_clean:52 dh_compress:55 dh_installdocs:63 dh_installexamples:38 dh_installinfo:50 dh_installmanpages:44 dh_movefiles:49 dh_testdir:27
+#: dh_clean:52 dh_compress:56 dh_installdocs:63 dh_installexamples:38 dh_installinfo:50 dh_installmanpages:44 dh_movefiles:49 dh_testdir:27
msgid "I<file ...>"
msgstr ""
@@ -1146,14 +1146,14 @@ msgid ""
"By default, dh_compress compresses files that debian policy mandates should "
"be compressed, namely all files in usr/share/info, usr/share/man, "
"usr/X11R6/man, files in usr/share/doc that are larger than 4k in size, "
-"(except the copyright file, .html and .css files, and files that appear to "
-"be already compressed based on their extensions), and all changelog "
-"files. Plus PCF fonts underneath usr/X11R6/lib/X11/fonts/ and "
+"(except the copyright file, .html and .css files, image files, and files "
+"that appear to be already compressed based on their extensions), and all "
+"changelog files. Plus PCF fonts underneath usr/X11R6/lib/X11/fonts/ and "
"usr/share/fonts/X11/"
msgstr ""
#. type: textblock
-#: dh_compress:31
+#: dh_compress:32
msgid ""
"If a debian/package.compress file exists, the default files are not "
"compressed. Instead, the debian/packages.compress is ran as a shell script, "
@@ -1164,34 +1164,34 @@ msgid ""
msgstr ""
#. type: textblock
-#: dh_compress:44
+#: dh_compress:45
msgid ""
"Exclude files that contain \"item\" anywhere in their filename from being "
-"compressed. For example, -X.jpeg will exclude jpeg files from compression. "
+"compressed. For example, -X.tiff will exclude tiff files from compression. "
"You may use this option multiple times to build up a list of things to "
"exclude. You can accomplish the same thing by using a debian/compress file, "
"but this is easier."
msgstr ""
#. type: textblock
-#: dh_compress:52
+#: dh_compress:53
msgid ""
"Compress all files specified by command line parameters in ALL packages "
"acted on."
msgstr ""
#. type: textblock
-#: dh_compress:57
+#: dh_compress:58
msgid "Add these files to the list of files to compress."
msgstr ""
#. type: =head1
-#: dh_compress:61 dh_perl:61 dh_python:66 dh_strip:74 dh_usrlocal:55
+#: dh_compress:62 dh_perl:61 dh_python:66 dh_strip:74 dh_usrlocal:55
msgid "CONFORMS TO"
msgstr ""
#. type: textblock
-#: dh_compress:63
+#: dh_compress:64
msgid "Debian policy, version 3.0"
msgstr ""
@@ -1213,12 +1213,12 @@ msgid ""
msgstr ""
#. type: textblock
-#: dh_desktop:29 dh_scrollkeeper:78
+#: dh_desktop:29 dh_scrollkeeper:30
msgid "L<debhelper>"
msgstr ""
#. type: textblock
-#: dh_desktop:35 dh_scrollkeeper:84
+#: dh_desktop:35 dh_scrollkeeper:36
msgid "Ross Burton <ross@burtonini.com>"
msgstr ""
@@ -1248,9 +1248,9 @@ msgid ""
"the permissions of all man pages to mode 644. It makes all files be owned by "
"root, and it removes group and other write permission from all files. It "
"removes execute permissions from any libraries, headers, perl modules, or "
-"desktop files that have it set. It makes all files in bin/ directories, "
-"/usr/games/ and etc/init.d executable (since v4). Finally, it removes the "
-"setuid and setgid bits from all files in the package."
+"desktop files that have it set. It makes all files in the standard bin and "
+"sbin directories, usr/games/ and etc/init.d executable (since v4). Finally, "
+"it removes the setuid and setgid bits from all files in the package."
msgstr ""
#. type: =item
@@ -1331,7 +1331,7 @@ msgid ""
msgstr ""
#. type: textblock
-#: dh_gconf:114
+#: dh_gconf:113
msgid "Ross Burton <ross@burtonini.com> Josselin Mouette <joss@debian.org>"
msgstr ""
@@ -1424,7 +1424,7 @@ msgid ""
msgstr ""
#. type: =item
-#: dh_installcatalogs:46 dh_installdebconf:54 dh_installemacsen:39 dh_installinfo:46 dh_installinit:37 dh_installmenu:38 dh_installmime:35 dh_installmodules:47 dh_installwm:42 dh_makeshlibs:62 dh_python:60 dh_scrollkeeper:36 dh_usrlocal:43
+#: dh_installcatalogs:46 dh_installdebconf:54 dh_installemacsen:39 dh_installinfo:46 dh_installinit:37 dh_installmenu:38 dh_installmime:35 dh_installmodules:47 dh_installwm:42 dh_makeshlibs:62 dh_python:60 dh_usrlocal:43
msgid "B<-n>, B<--noscripts>"
msgstr ""
@@ -1434,7 +1434,7 @@ msgid "Do not modify F<postinst>/F<postrm>/F<prerm> scripts."
msgstr ""
#. type: textblock
-#: dh_installcatalogs:54 dh_installdocs:87 dh_installemacsen:56 dh_installinfo:59 dh_installinit:112 dh_installmime:43 dh_installmodules:62 dh_installwm:55 dh_scrollkeeper:44 dh_usrlocal:51
+#: dh_installcatalogs:54 dh_installdocs:87 dh_installemacsen:56 dh_installinfo:59 dh_installinit:112 dh_installmime:43 dh_installmodules:62 dh_installwm:55 dh_usrlocal:51
msgid ""
"Note that this command is not idempotent. L<dh_prep(1)> should be called "
"between invocations of this command. Otherwise, it may cause multiple "
@@ -3688,7 +3688,7 @@ msgstr ""
#. type: textblock
#: dh_scrollkeeper:5
-msgid "dh_scrollkeeper - generate ScrollKeeper registration scripts"
+msgid "dh_scrollkeeper - deprecated no-op"
msgstr ""
#. type: textblock
@@ -3699,31 +3699,9 @@ msgstr ""
#. type: textblock
#: dh_scrollkeeper:18
msgid ""
-"B<dh_scrollkeeper> is a debhelper program that handles correctly registering "
-"OMF files that it finds in package build trees with ScrollKeeper."
-msgstr ""
-
-#. type: textblock
-#: dh_scrollkeeper:22
-msgid ""
-"This command automatically adds maintainer script snippets for registering "
-"and unregistering files with ScrollKeeper (unless B<-n> is used). These "
-"snippets are inserted into the maintainer scripts by dh_installdeb. See "
-"L<dh_installdeb(1)> for an explanation of Debhelper maintainer script "
-"snippets."
-msgstr ""
-
-#. type: textblock
-#: dh_scrollkeeper:28
-msgid ""
-"It will also change any DTD declarations in the OMF and DocBook files to "
-"refer to local files instead of remote URLs. This change does not modify the "
-"source files, but the files in the package build tree."
-msgstr ""
-
-#. type: textblock
-#: dh_scrollkeeper:38
-msgid "Do not modify F<postinst>/F<postrm> scripts."
+"dh_scrollkeeper was a debhelper program that handled registering OMF files "
+"for ScrollKeeper. However, it no longer does anything, and is now "
+"deprecated."
msgstr ""
#. type: textblock
diff --git a/man/po4a/po/es.po b/man/po4a/po/es.po
index 7285bf90..93cba841 100644
--- a/man/po4a/po/es.po
+++ b/man/po4a/po/es.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-05-12 14:52-0300\n"
+"POT-Creation-Date: 2009-06-10 17:14-0300\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"
@@ -502,7 +502,7 @@ msgstr "No modificar los scripts postinst/postrm/etc."
# type: =item
#. type: =item
-#: debhelper.pod:165 dh_compress:42 dh_makeshlibs:66 dh_md5sums:37
+#: debhelper.pod:165 dh_compress:43 dh_makeshlibs:66 dh_md5sums:37
#: dh_shlibdeps:36 dh_strip:39
msgid "B<-X>I<item>, B<--exclude=>I<item>"
msgstr "B<-X>I<elemento>, B<--exclude=>I<elemento>"
@@ -519,7 +519,7 @@ msgstr ""
# type: =item
#. type: =item
-#: debhelper.pod:170 dh_compress:50 dh_installdirs:32 dh_installdocs:53
+#: debhelper.pod:170 dh_compress:51 dh_installdirs:32 dh_installdocs:53
#: dh_installexamples:33 dh_installinfo:41 dh_installman:62 dh_link:52
msgid "B<-A>, B<--all>"
msgstr "B<-A>, B<--all>"
@@ -539,8 +539,8 @@ msgstr ""
#: debhelper.pod:177 dh_installcatalogs:52 dh_installdocs:81
#: dh_installemacsen:54 dh_installexamples:50 dh_installinfo:57
#: dh_installinit:110 dh_installman:79 dh_installmime:41 dh_installmodules:60
-#: dh_installwm:53 dh_installxfonts:37 dh_movefiles:58 dh_scrollkeeper:42
-#: dh_strip:68 dh_usrlocal:49
+#: dh_installwm:53 dh_installxfonts:37 dh_movefiles:58 dh_strip:68
+#: dh_usrlocal:49
msgid "NOTES"
msgstr "NOTAS"
@@ -1333,8 +1333,8 @@ msgstr ""
# type: =head1
#. type: =head1
-#: debhelper.pod:517 dh_builddeb:87 dh_clean:130 dh_compress:190 dh_desktop:27
-#: dh_fixperms:122 dh_gconf:106 dh_gencontrol:79 dh_installcatalogs:109
+#: debhelper.pod:517 dh_builddeb:87 dh_clean:130 dh_compress:192 dh_desktop:27
+#: dh_fixperms:122 dh_gconf:105 dh_gencontrol:79 dh_installcatalogs:109
#: dh_installchangelogs:147 dh_installcron:61 dh_installdebconf:118
#: dh_installdeb:94 dh_installdirs:83 dh_installdocs:223 dh_installemacsen:111
#: dh_installexamples:103 dh_installinfo:103 dh_installinit:224
@@ -1342,8 +1342,8 @@ msgstr ""
#: dh_installman:251 dh_installmenu:80 dh_installmime:85 dh_installmodules:124
#: dh_installpam:52 dh_install:272 dh_installppp:56 dh_installwm:107
#: dh_installxfonts:86 dh_link:223 dh_listpackages:29 dh_makeshlibs:227
-#: dh_md5sums:89 dh_movefiles:162 dh_perl:152 dh_python:282 dh_scrollkeeper:76
-#: dh_shlibdeps:163 dh_strip:226 dh_suidregister:117 dh_testdir:44
+#: dh_md5sums:89 dh_movefiles:162 dh_perl:152 dh_python:282 dh_scrollkeeper:28
+#: dh_shlibdeps:163 dh_strip:227 dh_suidregister:117 dh_testdir:44
#: dh_testroot:27 dh_testversion:75 dh_undocumented:28 dh_usrlocal:114
msgid "SEE ALSO"
msgstr "VÉASE ADEMÁS"
@@ -1374,8 +1374,8 @@ msgstr "Web de Debhelper."
# type: =head1
#. type: =head1
-#: debhelper.pod:531 dh_builddeb:93 dh_clean:136 dh_compress:196 dh_desktop:33
-#: dh_fixperms:128 dh_gconf:112 dh_gencontrol:85 dh_installcatalogs:115
+#: debhelper.pod:531 dh_builddeb:93 dh_clean:136 dh_compress:198 dh_desktop:33
+#: dh_fixperms:128 dh_gconf:111 dh_gencontrol:85 dh_installcatalogs:115
#: dh_installchangelogs:153 dh_installcron:67 dh_installdebconf:124
#: dh_installdeb:100 dh_installdirs:89 dh_installdocs:229
#: dh_installemacsen:117 dh_installexamples:109 dh_installinfo:109
@@ -1384,7 +1384,7 @@ msgstr "Web de Debhelper."
#: dh_installmime:91 dh_installmodules:130 dh_installpam:58 dh_install:278
#: dh_installppp:62 dh_installwm:113 dh_installxfonts:92 dh_link:229
#: dh_listpackages:35 dh_makeshlibs:233 dh_md5sums:95 dh_movefiles:168
-#: dh_perl:158 dh_python:288 dh_scrollkeeper:82 dh_shlibdeps:169 dh_strip:232
+#: dh_perl:158 dh_python:288 dh_scrollkeeper:34 dh_shlibdeps:169 dh_strip:233
#: dh_suidregister:123 dh_testdir:50 dh_testroot:33 dh_testversion:81
#: dh_undocumented:34 dh_usrlocal:120
msgid "AUTHOR"
@@ -1392,7 +1392,7 @@ msgstr "AUTOR"
# type: textblock
#. type: textblock
-#: debhelper.pod:533 dh_builddeb:95 dh_clean:138 dh_compress:198
+#: debhelper.pod:533 dh_builddeb:95 dh_clean:138 dh_compress:200
#: dh_fixperms:130 dh_gencontrol:87 dh_installchangelogs:155 dh_installcron:69
#: dh_installdebconf:126 dh_installdeb:102 dh_installdirs:91
#: dh_installdocs:231 dh_installemacsen:119 dh_installexamples:111
@@ -1401,7 +1401,7 @@ msgstr "AUTOR"
#: dh_installmime:93 dh_installmodules:132 dh_installpam:60 dh_install:280
#: dh_installppp:64 dh_installwm:115 dh_installxfonts:94 dh_link:231
#: dh_listpackages:37 dh_makeshlibs:235 dh_md5sums:97 dh_movefiles:170
-#: dh_shlibdeps:171 dh_strip:234 dh_suidregister:125 dh_testdir:52
+#: dh_shlibdeps:171 dh_strip:235 dh_suidregister:125 dh_testdir:52
#: dh_testroot:35 dh_testversion:83 dh_undocumented:36
msgid "Joey Hess <joeyh@debian.org>"
msgstr "Joey Hess <joeyh@debian.org>"
@@ -1435,7 +1435,7 @@ msgstr ""
# type: =head1
#. type: =head1
-#: dh_builddeb:21 dh_clean:33 dh_compress:38 dh_fixperms:31 dh_gconf:39
+#: dh_builddeb:21 dh_clean:33 dh_compress:39 dh_fixperms:31 dh_gconf:39
#: dh_gencontrol:26 dh_installcatalogs:42 dh_installchangelogs:44
#: dh_installcron:24 dh_installdebconf:50 dh_installdirs:28 dh_installdocs:49
#: dh_installemacsen:35 dh_installexamples:29 dh_installinfo:37
@@ -1443,8 +1443,7 @@ msgstr ""
#: dh_installman:58 dh_installmenu:34 dh_installmime:31 dh_installmodules:43
#: dh_installpam:24 dh_install:47 dh_installppp:26 dh_installwm:32 dh_link:48
#: dh_makeshlibs:28 dh_md5sums:28 dh_movefiles:32 dh_perl:31 dh_python:39
-#: dh_scrollkeeper:32 dh_shlibdeps:26 dh_strip:35 dh_testdir:23
-#: dh_testversion:34 dh_usrlocal:39
+#: dh_shlibdeps:26 dh_strip:35 dh_testdir:23 dh_testversion:34 dh_usrlocal:39
msgid "OPTIONS"
msgstr "OPCIONES"
@@ -1501,7 +1500,7 @@ msgstr "Pasa I<parámetros> a L<dpkg-deb(1)> cuando se construye el paquete."
# type: textblock
#. type: textblock
-#: dh_builddeb:89 dh_clean:132 dh_compress:192 dh_fixperms:124 dh_gconf:108
+#: dh_builddeb:89 dh_clean:132 dh_compress:194 dh_fixperms:124 dh_gconf:107
#: dh_gencontrol:81 dh_installcatalogs:111 dh_installchangelogs:149
#: dh_installcron:63 dh_installdebconf:120 dh_installdeb:96 dh_installdirs:85
#: dh_installdocs:225 dh_installemacsen:113 dh_installexamples:105
@@ -1510,23 +1509,23 @@ msgstr "Pasa I<parámetros> a L<dpkg-deb(1)> cuando se construye el paquete."
#: dh_installmime:87 dh_installmodules:126 dh_installpam:54 dh_install:274
#: dh_installppp:58 dh_installwm:109 dh_installxfonts:88 dh_link:225
#: dh_listpackages:31 dh_makeshlibs:229 dh_md5sums:91 dh_movefiles:164
-#: dh_perl:154 dh_python:284 dh_strip:228 dh_suidregister:119 dh_testdir:46
+#: dh_perl:154 dh_python:284 dh_strip:229 dh_suidregister:119 dh_testdir:46
#: dh_testroot:29 dh_testversion:77 dh_undocumented:30 dh_usrlocal:116
msgid "L<debhelper(7)>"
msgstr "L<debhelper(7)>"
# type: textblock
#. type: textblock
-#: dh_builddeb:91 dh_clean:134 dh_compress:194 dh_desktop:31 dh_fixperms:126
-#: dh_gconf:110 dh_gencontrol:83 dh_installchangelogs:151 dh_installcron:65
+#: dh_builddeb:91 dh_clean:134 dh_compress:196 dh_desktop:31 dh_fixperms:126
+#: dh_gconf:109 dh_gencontrol:83 dh_installchangelogs:151 dh_installcron:65
#: dh_installdebconf:122 dh_installdeb:98 dh_installdirs:87 dh_installdocs:227
#: dh_installemacsen:115 dh_installexamples:107 dh_installinfo:107
#: dh_installinit:228 dh_installlogrotate:54 dh_installmanpages:201
#: dh_installman:255 dh_installmenu:86 dh_installmime:89 dh_installmodules:128
#: dh_installpam:56 dh_install:276 dh_installppp:60 dh_installwm:111
#: dh_installxfonts:90 dh_link:227 dh_listpackages:33 dh_makeshlibs:231
-#: dh_md5sums:93 dh_movefiles:166 dh_perl:156 dh_python:286 dh_scrollkeeper:80
-#: dh_shlibdeps:167 dh_strip:230 dh_suidregister:121 dh_testdir:48
+#: dh_md5sums:93 dh_movefiles:166 dh_perl:156 dh_python:286 dh_scrollkeeper:32
+#: dh_shlibdeps:167 dh_strip:231 dh_suidregister:121 dh_testdir:48
#: dh_testroot:31 dh_testversion:79 dh_undocumented:32 dh_usrlocal:118
msgid "This program is a part of debhelper."
msgstr "Este programa es parte de debhelper."
@@ -1642,7 +1641,7 @@ msgstr ""
# type: =item
#. type: =item
-#: dh_clean:52 dh_compress:55 dh_installdocs:63 dh_installexamples:38
+#: dh_clean:52 dh_compress:56 dh_installdocs:63 dh_installexamples:38
#: dh_installinfo:50 dh_installmanpages:44 dh_movefiles:49 dh_testdir:27
msgid "I<file ...>"
msgstr "I<fichero ...>"
@@ -1694,9 +1693,9 @@ msgid ""
"By default, dh_compress compresses files that debian policy mandates should "
"be compressed, namely all files in usr/share/info, usr/share/man, usr/X11R6/"
"man, files in usr/share/doc that are larger than 4k in size, (except the "
-"copyright file, .html and .css files, and files that appear to be already "
-"compressed based on their extensions), and all changelog files. Plus PCF "
-"fonts underneath usr/X11R6/lib/X11/fonts/ and usr/share/fonts/X11/"
+"copyright file, .html and .css files, image files, and files that appear to "
+"be already compressed based on their extensions), and all changelog files. "
+"Plus PCF fonts underneath usr/X11R6/lib/X11/fonts/ and usr/share/fonts/X11/"
msgstr ""
"Por omisión, dh_compress comprime los ficheros que las normas de Debian "
"obligan a comprimir, es decir, todos los ficheros en usr/share/info, usr/"
@@ -1708,7 +1707,7 @@ msgstr ""
# type: textblock
#. type: textblock
-#: dh_compress:31
+#: dh_compress:32
#, fuzzy
msgid ""
"If a debian/package.compress file exists, the default files are not "
@@ -1727,10 +1726,11 @@ msgstr ""
# type: textblock
#. type: textblock
-#: dh_compress:44
+#: dh_compress:45
+#, fuzzy
msgid ""
"Exclude files that contain \"item\" anywhere in their filename from being "
-"compressed. For example, -X.jpeg will exclude jpeg files from compression. "
+"compressed. For example, -X.tiff will exclude tiff files from compression. "
"You may use this option multiple times to build up a list of things to "
"exclude. You can accomplish the same thing by using a debian/compress file, "
"but this is easier."
@@ -1742,7 +1742,7 @@ msgstr ""
# type: textblock
#. type: textblock
-#: dh_compress:52
+#: dh_compress:53
msgid ""
"Compress all files specified by command line parameters in ALL packages "
"acted on."
@@ -1752,19 +1752,19 @@ msgstr ""
# type: textblock
#. type: textblock
-#: dh_compress:57
+#: dh_compress:58
msgid "Add these files to the list of files to compress."
msgstr "Añade estos ficheros a la lista de ficheros a comprimir."
# type: =head1
#. type: =head1
-#: dh_compress:61 dh_perl:61 dh_python:66 dh_strip:74 dh_usrlocal:55
+#: dh_compress:62 dh_perl:61 dh_python:66 dh_strip:74 dh_usrlocal:55
msgid "CONFORMS TO"
msgstr "CONFORME A"
# type: textblock
#. type: textblock
-#: dh_compress:63
+#: dh_compress:64
msgid "Debian policy, version 3.0"
msgstr "Normas de Debian, versión 3.0"
@@ -1789,13 +1789,13 @@ msgstr ""
# type: textblock
#. type: textblock
-#: dh_desktop:29 dh_scrollkeeper:78
+#: dh_desktop:29 dh_scrollkeeper:30
msgid "L<debhelper>"
msgstr "L<debhelper(7)>"
# type: textblock
#. type: textblock
-#: dh_desktop:35 dh_scrollkeeper:84
+#: dh_desktop:35 dh_scrollkeeper:36
msgid "Ross Burton <ross@burtonini.com>"
msgstr "Ross Burton <ross@burtonini.com>"
@@ -1835,9 +1835,9 @@ msgid ""
"the permissions of all man pages to mode 644. It makes all files be owned by "
"root, and it removes group and other write permission from all files. It "
"removes execute permissions from any libraries, headers, perl modules, or "
-"desktop files that have it set. It makes all files in bin/ directories, /usr/"
-"games/ and etc/init.d executable (since v4). Finally, it removes the setuid "
-"and setgid bits from all files in the package."
+"desktop files that have it set. It makes all files in the standard bin and "
+"sbin directories, usr/games/ and etc/init.d executable (since v4). Finally, "
+"it removes the setuid and setgid bits from all files in the package."
msgstr ""
"dh_fixperms hace que el modo de todos los ficheros en usr/share/doc en el "
"directorio de construcción del paquete (excluyendo los ficheros en el "
@@ -1956,7 +1956,7 @@ msgstr ""
# type: textblock
#. type: textblock
-#: dh_gconf:114
+#: dh_gconf:113
#, fuzzy
msgid "Ross Burton <ross@burtonini.com> Josselin Mouette <joss@debian.org>"
msgstr "Josselin Mouette <joss@debian.org>"
@@ -2094,7 +2094,7 @@ msgstr ""
#: dh_installcatalogs:46 dh_installdebconf:54 dh_installemacsen:39
#: dh_installinfo:46 dh_installinit:37 dh_installmenu:38 dh_installmime:35
#: dh_installmodules:47 dh_installwm:42 dh_makeshlibs:62 dh_python:60
-#: dh_scrollkeeper:36 dh_usrlocal:43
+#: dh_usrlocal:43
msgid "B<-n>, B<--noscripts>"
msgstr "B<-n>, B<--noscripts>"
@@ -2108,7 +2108,7 @@ msgstr "No modifica los scripts de F<postinst>/F<postrm>/F<prerm>."
#. type: textblock
#: dh_installcatalogs:54 dh_installdocs:87 dh_installemacsen:56
#: dh_installinfo:59 dh_installinit:112 dh_installmime:43 dh_installmodules:62
-#: dh_installwm:55 dh_scrollkeeper:44 dh_usrlocal:51
+#: dh_installwm:55 dh_usrlocal:51
#, fuzzy
msgid ""
"Note that this command is not idempotent. L<dh_prep(1)> should be called "
@@ -5419,11 +5419,10 @@ msgstr "Josselin Mouette <joss@debian.org>"
msgid "most ideas stolen from Brendan O'Dea <bod@debian.org>"
msgstr "muchas de las ideas tomadas de Brendan O'Dea <bod@debian.org>"
-# type: textblock
#. type: textblock
#: dh_scrollkeeper:5
-msgid "dh_scrollkeeper - generate ScrollKeeper registration scripts"
-msgstr "dh_scrollkeeper - genera programas de registro de ScrollKeeper"
+msgid "dh_scrollkeeper - deprecated no-op"
+msgstr ""
# type: textblock
#. type: textblock
@@ -5435,9 +5434,10 @@ msgstr ""
# type: textblock
#. type: textblock
#: dh_scrollkeeper:18
+#, fuzzy
msgid ""
-"B<dh_scrollkeeper> is a debhelper program that handles correctly registering "
-"OMF files that it finds in package build trees with ScrollKeeper."
+"dh_scrollkeeper was a debhelper program that handled registering OMF files "
+"for ScrollKeeper. However, it no longer does anything, and is now deprecated."
msgstr ""
"B<dh_scrollkeeper> es un programa de debhelper que maneja el registro "
"adecuado de ficheros OMF que encuentra en los arboles de construcción de "
@@ -5445,41 +5445,6 @@ msgstr ""
# type: textblock
#. type: textblock
-#: dh_scrollkeeper:22
-#, fuzzy
-msgid ""
-"This command automatically adds maintainer script snippets for registering "
-"and unregistering files with ScrollKeeper (unless B<-n> is used). These "
-"snippets are inserted into the maintainer scripts by dh_installdeb. See "
-"L<dh_installdeb(1)> for an explanation of Debhelper maintainer script "
-"snippets."
-msgstr ""
-"Esta orden añade automáticamente partes del programa de desarrollador para "
-"registro y de-registro de ficheros con ScrollKeeper (a menos que se use la "
-"opción B<-n>). Vea L<dh_installdeb(1)> para explicación sobre las partes del "
-"programa Debhelper de desarrollador."
-
-# type: textblock
-#. type: textblock
-#: dh_scrollkeeper:28
-msgid ""
-"It will also change any DTD declarations in the OMF and DocBook files to "
-"refer to local files instead of remote URLs. This change does not modify the "
-"source files, but the files in the package build tree."
-msgstr ""
-"También cambiará cualquier declaración DTD en los ficheros OMF y DocBook que "
-"se refieran a ficheros locales en lugar de URLs remotas. Este cambio no "
-"modifica los ficheros de origen, a excepción de los ficheros en el árbol de "
-"construcción del paquete."
-
-# type: textblock
-#. type: textblock
-#: dh_scrollkeeper:38
-msgid "Do not modify F<postinst>/F<postrm> scripts."
-msgstr "No modifica programas F<postinst>/F<postrm>."
-
-# type: textblock
-#. type: textblock
#: dh_shlibdeps:5
msgid "dh_shlibdeps - calculate shared library dependencies"
msgstr "dh_shlibdeps - calcula dependencias de bibliotecas compartidas"
@@ -6137,6 +6102,39 @@ msgid "Andrew Stribblehill <ads@debian.org>"
msgstr "Andrew Stribblehill <ads@debian.org>"
# type: textblock
+#~ msgid "dh_scrollkeeper - generate ScrollKeeper registration scripts"
+#~ msgstr "dh_scrollkeeper - genera programas de registro de ScrollKeeper"
+
+# type: textblock
+#, fuzzy
+#~ msgid ""
+#~ "This command automatically adds maintainer script snippets for "
+#~ "registering and unregistering files with ScrollKeeper (unless B<-n> is "
+#~ "used). These snippets are inserted into the maintainer scripts by "
+#~ "dh_installdeb. See L<dh_installdeb(1)> for an explanation of Debhelper "
+#~ "maintainer script snippets."
+#~ msgstr ""
+#~ "Esta orden añade automáticamente partes del programa de desarrollador "
+#~ "para registro y de-registro de ficheros con ScrollKeeper (a menos que se "
+#~ "use la opción B<-n>). Vea L<dh_installdeb(1)> para explicación sobre las "
+#~ "partes del programa Debhelper de desarrollador."
+
+# type: textblock
+#~ msgid ""
+#~ "It will also change any DTD declarations in the OMF and DocBook files to "
+#~ "refer to local files instead of remote URLs. This change does not modify "
+#~ "the source files, but the files in the package build tree."
+#~ msgstr ""
+#~ "También cambiará cualquier declaración DTD en los ficheros OMF y DocBook "
+#~ "que se refieran a ficheros locales en lugar de URLs remotas. Este cambio "
+#~ "no modifica los ficheros de origen, a excepción de los ficheros en el "
+#~ "árbol de construcción del paquete."
+
+# type: textblock
+#~ msgid "Do not modify F<postinst>/F<postrm> scripts."
+#~ msgstr "No modifica programas F<postinst>/F<postrm>."
+
+# type: textblock
#~ msgid "dh_desktop - Register .desktop files"
#~ msgstr "dh_desktop - Registra ficheros .desktop"
diff --git a/man/po4a/po/fr.po b/man/po4a/po/fr.po
index 73830550..5e6fbc55 100644
--- a/man/po4a/po/fr.po
+++ b/man/po4a/po/fr.po
@@ -3,7 +3,7 @@
msgid ""
msgstr ""
"Project-Id-Version: debhelper manpages\n"
-"POT-Creation-Date: 2009-05-12 14:52-0300\n"
+"POT-Creation-Date: 2009-06-10 17:14-0300\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"
@@ -506,7 +506,7 @@ msgstr ""
# type: =item
#. type: =item
-#: debhelper.pod:165 dh_compress:42 dh_makeshlibs:66 dh_md5sums:37
+#: debhelper.pod:165 dh_compress:43 dh_makeshlibs:66 dh_md5sums:37
#: dh_shlibdeps:36 dh_strip:39
msgid "B<-X>I<item>, B<--exclude=>I<item>"
msgstr "B<-X>I<élément>, B<--exclude=>I<élément>"
@@ -523,7 +523,7 @@ msgstr ""
# type: =item
#. type: =item
-#: debhelper.pod:170 dh_compress:50 dh_installdirs:32 dh_installdocs:53
+#: debhelper.pod:170 dh_compress:51 dh_installdirs:32 dh_installdocs:53
#: dh_installexamples:33 dh_installinfo:41 dh_installman:62 dh_link:52
msgid "B<-A>, B<--all>"
msgstr "B<-A>, B<--all>"
@@ -543,8 +543,8 @@ msgstr ""
#: debhelper.pod:177 dh_installcatalogs:52 dh_installdocs:81
#: dh_installemacsen:54 dh_installexamples:50 dh_installinfo:57
#: dh_installinit:110 dh_installman:79 dh_installmime:41 dh_installmodules:60
-#: dh_installwm:53 dh_installxfonts:37 dh_movefiles:58 dh_scrollkeeper:42
-#: dh_strip:68 dh_usrlocal:49
+#: dh_installwm:53 dh_installxfonts:37 dh_movefiles:58 dh_strip:68
+#: dh_usrlocal:49
msgid "NOTES"
msgstr "REMARQUES"
@@ -1363,8 +1363,8 @@ msgstr ""
# type: =head1
#. type: =head1
-#: debhelper.pod:517 dh_builddeb:87 dh_clean:130 dh_compress:190 dh_desktop:27
-#: dh_fixperms:122 dh_gconf:106 dh_gencontrol:79 dh_installcatalogs:109
+#: debhelper.pod:517 dh_builddeb:87 dh_clean:130 dh_compress:192 dh_desktop:27
+#: dh_fixperms:122 dh_gconf:105 dh_gencontrol:79 dh_installcatalogs:109
#: dh_installchangelogs:147 dh_installcron:61 dh_installdebconf:118
#: dh_installdeb:94 dh_installdirs:83 dh_installdocs:223 dh_installemacsen:111
#: dh_installexamples:103 dh_installinfo:103 dh_installinit:224
@@ -1372,8 +1372,8 @@ msgstr ""
#: dh_installman:251 dh_installmenu:80 dh_installmime:85 dh_installmodules:124
#: dh_installpam:52 dh_install:272 dh_installppp:56 dh_installwm:107
#: dh_installxfonts:86 dh_link:223 dh_listpackages:29 dh_makeshlibs:227
-#: dh_md5sums:89 dh_movefiles:162 dh_perl:152 dh_python:282 dh_scrollkeeper:76
-#: dh_shlibdeps:163 dh_strip:226 dh_suidregister:117 dh_testdir:44
+#: dh_md5sums:89 dh_movefiles:162 dh_perl:152 dh_python:282 dh_scrollkeeper:28
+#: dh_shlibdeps:163 dh_strip:227 dh_suidregister:117 dh_testdir:44
#: dh_testroot:27 dh_testversion:75 dh_undocumented:28 dh_usrlocal:114
msgid "SEE ALSO"
msgstr "VOIR AUSSI"
@@ -1405,8 +1405,8 @@ msgstr "Le site internet de debhelper."
# type: =head1
#. type: =head1
-#: debhelper.pod:531 dh_builddeb:93 dh_clean:136 dh_compress:196 dh_desktop:33
-#: dh_fixperms:128 dh_gconf:112 dh_gencontrol:85 dh_installcatalogs:115
+#: debhelper.pod:531 dh_builddeb:93 dh_clean:136 dh_compress:198 dh_desktop:33
+#: dh_fixperms:128 dh_gconf:111 dh_gencontrol:85 dh_installcatalogs:115
#: dh_installchangelogs:153 dh_installcron:67 dh_installdebconf:124
#: dh_installdeb:100 dh_installdirs:89 dh_installdocs:229
#: dh_installemacsen:117 dh_installexamples:109 dh_installinfo:109
@@ -1415,7 +1415,7 @@ msgstr "Le site internet de debhelper."
#: dh_installmime:91 dh_installmodules:130 dh_installpam:58 dh_install:278
#: dh_installppp:62 dh_installwm:113 dh_installxfonts:92 dh_link:229
#: dh_listpackages:35 dh_makeshlibs:233 dh_md5sums:95 dh_movefiles:168
-#: dh_perl:158 dh_python:288 dh_scrollkeeper:82 dh_shlibdeps:169 dh_strip:232
+#: dh_perl:158 dh_python:288 dh_scrollkeeper:34 dh_shlibdeps:169 dh_strip:233
#: dh_suidregister:123 dh_testdir:50 dh_testroot:33 dh_testversion:81
#: dh_undocumented:34 dh_usrlocal:120
msgid "AUTHOR"
@@ -1423,7 +1423,7 @@ msgstr "AUTEUR"
# type: textblock
#. type: textblock
-#: debhelper.pod:533 dh_builddeb:95 dh_clean:138 dh_compress:198
+#: debhelper.pod:533 dh_builddeb:95 dh_clean:138 dh_compress:200
#: dh_fixperms:130 dh_gencontrol:87 dh_installchangelogs:155 dh_installcron:69
#: dh_installdebconf:126 dh_installdeb:102 dh_installdirs:91
#: dh_installdocs:231 dh_installemacsen:119 dh_installexamples:111
@@ -1432,7 +1432,7 @@ msgstr "AUTEUR"
#: dh_installmime:93 dh_installmodules:132 dh_installpam:60 dh_install:280
#: dh_installppp:64 dh_installwm:115 dh_installxfonts:94 dh_link:231
#: dh_listpackages:37 dh_makeshlibs:235 dh_md5sums:97 dh_movefiles:170
-#: dh_shlibdeps:171 dh_strip:234 dh_suidregister:125 dh_testdir:52
+#: dh_shlibdeps:171 dh_strip:235 dh_suidregister:125 dh_testdir:52
#: dh_testroot:35 dh_testversion:83 dh_undocumented:36
msgid "Joey Hess <joeyh@debian.org>"
msgstr "Joey Hess <joeyh@debian.org>"
@@ -1466,7 +1466,7 @@ msgstr ""
# type: =head1
#. type: =head1
-#: dh_builddeb:21 dh_clean:33 dh_compress:38 dh_fixperms:31 dh_gconf:39
+#: dh_builddeb:21 dh_clean:33 dh_compress:39 dh_fixperms:31 dh_gconf:39
#: dh_gencontrol:26 dh_installcatalogs:42 dh_installchangelogs:44
#: dh_installcron:24 dh_installdebconf:50 dh_installdirs:28 dh_installdocs:49
#: dh_installemacsen:35 dh_installexamples:29 dh_installinfo:37
@@ -1474,8 +1474,7 @@ msgstr ""
#: dh_installman:58 dh_installmenu:34 dh_installmime:31 dh_installmodules:43
#: dh_installpam:24 dh_install:47 dh_installppp:26 dh_installwm:32 dh_link:48
#: dh_makeshlibs:28 dh_md5sums:28 dh_movefiles:32 dh_perl:31 dh_python:39
-#: dh_scrollkeeper:32 dh_shlibdeps:26 dh_strip:35 dh_testdir:23
-#: dh_testversion:34 dh_usrlocal:39
+#: dh_shlibdeps:26 dh_strip:35 dh_testdir:23 dh_testversion:34 dh_usrlocal:39
msgid "OPTIONS"
msgstr "OPTIONS"
@@ -1533,7 +1532,7 @@ msgstr ""
# type: textblock
#. type: textblock
-#: dh_builddeb:89 dh_clean:132 dh_compress:192 dh_fixperms:124 dh_gconf:108
+#: dh_builddeb:89 dh_clean:132 dh_compress:194 dh_fixperms:124 dh_gconf:107
#: dh_gencontrol:81 dh_installcatalogs:111 dh_installchangelogs:149
#: dh_installcron:63 dh_installdebconf:120 dh_installdeb:96 dh_installdirs:85
#: dh_installdocs:225 dh_installemacsen:113 dh_installexamples:105
@@ -1542,23 +1541,23 @@ msgstr ""
#: dh_installmime:87 dh_installmodules:126 dh_installpam:54 dh_install:274
#: dh_installppp:58 dh_installwm:109 dh_installxfonts:88 dh_link:225
#: dh_listpackages:31 dh_makeshlibs:229 dh_md5sums:91 dh_movefiles:164
-#: dh_perl:154 dh_python:284 dh_strip:228 dh_suidregister:119 dh_testdir:46
+#: dh_perl:154 dh_python:284 dh_strip:229 dh_suidregister:119 dh_testdir:46
#: dh_testroot:29 dh_testversion:77 dh_undocumented:30 dh_usrlocal:116
msgid "L<debhelper(7)>"
msgstr "L<debhelper(7)>"
# type: textblock
#. type: textblock
-#: dh_builddeb:91 dh_clean:134 dh_compress:194 dh_desktop:31 dh_fixperms:126
-#: dh_gconf:110 dh_gencontrol:83 dh_installchangelogs:151 dh_installcron:65
+#: dh_builddeb:91 dh_clean:134 dh_compress:196 dh_desktop:31 dh_fixperms:126
+#: dh_gconf:109 dh_gencontrol:83 dh_installchangelogs:151 dh_installcron:65
#: dh_installdebconf:122 dh_installdeb:98 dh_installdirs:87 dh_installdocs:227
#: dh_installemacsen:115 dh_installexamples:107 dh_installinfo:107
#: dh_installinit:228 dh_installlogrotate:54 dh_installmanpages:201
#: dh_installman:255 dh_installmenu:86 dh_installmime:89 dh_installmodules:128
#: dh_installpam:56 dh_install:276 dh_installppp:60 dh_installwm:111
#: dh_installxfonts:90 dh_link:227 dh_listpackages:33 dh_makeshlibs:231
-#: dh_md5sums:93 dh_movefiles:166 dh_perl:156 dh_python:286 dh_scrollkeeper:80
-#: dh_shlibdeps:167 dh_strip:230 dh_suidregister:121 dh_testdir:48
+#: dh_md5sums:93 dh_movefiles:166 dh_perl:156 dh_python:286 dh_scrollkeeper:32
+#: dh_shlibdeps:167 dh_strip:231 dh_suidregister:121 dh_testdir:48
#: dh_testroot:31 dh_testversion:79 dh_undocumented:32 dh_usrlocal:118
msgid "This program is a part of debhelper."
msgstr "Ce programme fait partie de debhelper."
@@ -1671,7 +1670,7 @@ msgstr ""
# type: =item
#. type: =item
-#: dh_clean:52 dh_compress:55 dh_installdocs:63 dh_installexamples:38
+#: dh_clean:52 dh_compress:56 dh_installdocs:63 dh_installexamples:38
#: dh_installinfo:50 dh_installmanpages:44 dh_movefiles:49 dh_testdir:27
msgid "I<file ...>"
msgstr "I<fichier ...>"
@@ -1719,13 +1718,14 @@ msgstr ""
# type: textblock
#. type: textblock
#: dh_compress:24
+#, fuzzy
msgid ""
"By default, dh_compress compresses files that debian policy mandates should "
"be compressed, namely all files in usr/share/info, usr/share/man, usr/X11R6/"
"man, files in usr/share/doc that are larger than 4k in size, (except the "
-"copyright file, .html and .css files, and files that appear to be already "
-"compressed based on their extensions), and all changelog files. Plus PCF "
-"fonts underneath usr/X11R6/lib/X11/fonts/ and usr/share/fonts/X11/"
+"copyright file, .html and .css files, image files, and files that appear to "
+"be already compressed based on their extensions), and all changelog files. "
+"Plus PCF fonts underneath usr/X11R6/lib/X11/fonts/ and usr/share/fonts/X11/"
msgstr ""
"Par défaut, dh_compress comprime les fichiers que la Charte Debian indique "
"comme devant être comprimés. Cela concerne tous les fichiers de usr/share/"
@@ -1738,7 +1738,7 @@ msgstr ""
# type: textblock
#. type: textblock
-#: dh_compress:31
+#: dh_compress:32
#, fuzzy
msgid ""
"If a debian/package.compress file exists, the default files are not "
@@ -1758,10 +1758,11 @@ msgstr ""
# type: textblock
#. type: textblock
-#: dh_compress:44
+#: dh_compress:45
+#, fuzzy
msgid ""
"Exclude files that contain \"item\" anywhere in their filename from being "
-"compressed. For example, -X.jpeg will exclude jpeg files from compression. "
+"compressed. For example, -X.tiff will exclude tiff files from compression. "
"You may use this option multiple times to build up a list of things to "
"exclude. You can accomplish the same thing by using a debian/compress file, "
"but this is easier."
@@ -1774,7 +1775,7 @@ msgstr ""
# type: textblock
#. type: textblock
-#: dh_compress:52
+#: dh_compress:53
msgid ""
"Compress all files specified by command line parameters in ALL packages "
"acted on."
@@ -1784,19 +1785,19 @@ msgstr ""
# type: textblock
#. type: textblock
-#: dh_compress:57
+#: dh_compress:58
msgid "Add these files to the list of files to compress."
msgstr "Ajoute ces fichiers à la liste des fichiers à comprimer."
# type: =head1
#. type: =head1
-#: dh_compress:61 dh_perl:61 dh_python:66 dh_strip:74 dh_usrlocal:55
+#: dh_compress:62 dh_perl:61 dh_python:66 dh_strip:74 dh_usrlocal:55
msgid "CONFORMS TO"
msgstr "CONFORMITÉ"
# type: textblock
#. type: textblock
-#: dh_compress:63
+#: dh_compress:64
msgid "Debian policy, version 3.0"
msgstr "Charte Debian, version 3.0"
@@ -1821,13 +1822,13 @@ msgstr ""
# type: textblock
#. type: textblock
-#: dh_desktop:29 dh_scrollkeeper:78
+#: dh_desktop:29 dh_scrollkeeper:30
msgid "L<debhelper>"
msgstr "L<debhelper(7)>"
# type: textblock
#. type: textblock
-#: dh_desktop:35 dh_scrollkeeper:84
+#: dh_desktop:35 dh_scrollkeeper:36
msgid "Ross Burton <ross@burtonini.com>"
msgstr "Ross Burton <ross@burtonini.com>"
@@ -1867,9 +1868,9 @@ msgid ""
"the permissions of all man pages to mode 644. It makes all files be owned by "
"root, and it removes group and other write permission from all files. It "
"removes execute permissions from any libraries, headers, perl modules, or "
-"desktop files that have it set. It makes all files in bin/ directories, /usr/"
-"games/ and etc/init.d executable (since v4). Finally, it removes the setuid "
-"and setgid bits from all files in the package."
+"desktop files that have it set. It makes all files in the standard bin and "
+"sbin directories, usr/games/ and etc/init.d executable (since v4). Finally, "
+"it removes the setuid and setgid bits from all files in the package."
msgstr ""
"dh_fixperms règle à 644 les droits sur tous les fichiers de usr/share/doc à "
"l'exclusion de ceux contenus dans le répertoire examples/. Il règle "
@@ -1999,7 +2000,7 @@ msgstr ""
# type: textblock
#. type: textblock
-#: dh_gconf:114
+#: dh_gconf:113
msgid "Ross Burton <ross@burtonini.com> Josselin Mouette <joss@debian.org>"
msgstr "Ross Burton <ross@burtonini.com> Josselin Mouette <joss@debian.org>"
@@ -2137,7 +2138,7 @@ msgstr ""
#: dh_installcatalogs:46 dh_installdebconf:54 dh_installemacsen:39
#: dh_installinfo:46 dh_installinit:37 dh_installmenu:38 dh_installmime:35
#: dh_installmodules:47 dh_installwm:42 dh_makeshlibs:62 dh_python:60
-#: dh_scrollkeeper:36 dh_usrlocal:43
+#: dh_usrlocal:43
msgid "B<-n>, B<--noscripts>"
msgstr "B<-n>, B<--noscripts>"
@@ -2153,7 +2154,7 @@ msgstr ""
#. type: textblock
#: dh_installcatalogs:54 dh_installdocs:87 dh_installemacsen:56
#: dh_installinfo:59 dh_installinit:112 dh_installmime:43 dh_installmodules:62
-#: dh_installwm:55 dh_scrollkeeper:44 dh_usrlocal:51
+#: dh_installwm:55 dh_usrlocal:51
#, fuzzy
msgid ""
"Note that this command is not idempotent. L<dh_prep(1)> should be called "
@@ -5528,11 +5529,10 @@ msgstr "Josselin Mouette <joss@debian.org>"
msgid "most ideas stolen from Brendan O'Dea <bod@debian.org>"
msgstr "La plupart des idées ont été volées à Brendan O'Dea <bod@debian.org>"
-# type: textblock
#. type: textblock
#: dh_scrollkeeper:5
-msgid "dh_scrollkeeper - generate ScrollKeeper registration scripts"
-msgstr "dh_scrollkeeper - produit les scripts d'enregistrement ScrollKeeper"
+msgid "dh_scrollkeeper - deprecated no-op"
+msgstr ""
# type: textblock
#. type: textblock
@@ -5544,9 +5544,10 @@ msgstr ""
# type: textblock
#. type: textblock
#: dh_scrollkeeper:18
+#, fuzzy
msgid ""
-"B<dh_scrollkeeper> is a debhelper program that handles correctly registering "
-"OMF files that it finds in package build trees with ScrollKeeper."
+"dh_scrollkeeper was a debhelper program that handled registering OMF files "
+"for ScrollKeeper. However, it no longer does anything, and is now deprecated."
msgstr ""
"B<dh_scrollkeeper> est le programme de la suite debhelper chargé de la "
"maintenance, par ScrollKeeper, des inscriptions des fichiers OMF qu'il "
@@ -5554,43 +5555,6 @@ msgstr ""
# type: textblock
#. type: textblock
-#: dh_scrollkeeper:22
-#, fuzzy
-msgid ""
-"This command automatically adds maintainer script snippets for registering "
-"and unregistering files with ScrollKeeper (unless B<-n> is used). These "
-"snippets are inserted into the maintainer scripts by dh_installdeb. See "
-"L<dh_installdeb(1)> for an explanation of Debhelper maintainer script "
-"snippets."
-msgstr ""
-"Cette commande ajoute automatiquement des lignes de code dans les scripts de "
-"maintenance du paquet pour l'inscription et la radiation des fichiers avec "
-"ScrollKeeper (sauf si B<-n > est employé). Voir L<dh_installdeb(1)> pour une "
-"explication sur l'incorporation de lignes de code dans les scripts de "
-"maintenance du paquet."
-
-# type: textblock
-#. type: textblock
-#: dh_scrollkeeper:28
-msgid ""
-"It will also change any DTD declarations in the OMF and DocBook files to "
-"refer to local files instead of remote URLs. This change does not modify the "
-"source files, but the files in the package build tree."
-msgstr ""
-"Ce programme changera également toutes les déclarations de DTD dans les "
-"fichiers OMF et DocBook pour se référer aux fichiers locaux au lieu des URL "
-"distantes. Ce changement ne modifie pas les fichiers source mais les "
-"fichiers du répertoire de construction du paquet."
-
-# type: textblock
-#. type: textblock
-#: dh_scrollkeeper:38
-msgid "Do not modify F<postinst>/F<postrm> scripts."
-msgstr ""
-"Empêche la modification des scripts de maintenance F<postinst> et F<postrm>."
-
-# type: textblock
-#. type: textblock
#: dh_shlibdeps:5
msgid "dh_shlibdeps - calculate shared library dependencies"
msgstr ""
@@ -6267,6 +6231,42 @@ msgid "Andrew Stribblehill <ads@debian.org>"
msgstr "Andrew Stribblehill <ads@debian.org>"
# type: textblock
+#~ msgid "dh_scrollkeeper - generate ScrollKeeper registration scripts"
+#~ msgstr "dh_scrollkeeper - produit les scripts d'enregistrement ScrollKeeper"
+
+# type: textblock
+#, fuzzy
+#~ msgid ""
+#~ "This command automatically adds maintainer script snippets for "
+#~ "registering and unregistering files with ScrollKeeper (unless B<-n> is "
+#~ "used). These snippets are inserted into the maintainer scripts by "
+#~ "dh_installdeb. See L<dh_installdeb(1)> for an explanation of Debhelper "
+#~ "maintainer script snippets."
+#~ msgstr ""
+#~ "Cette commande ajoute automatiquement des lignes de code dans les scripts "
+#~ "de maintenance du paquet pour l'inscription et la radiation des fichiers "
+#~ "avec ScrollKeeper (sauf si B<-n > est employé). Voir L<dh_installdeb(1)> "
+#~ "pour une explication sur l'incorporation de lignes de code dans les "
+#~ "scripts de maintenance du paquet."
+
+# type: textblock
+#~ msgid ""
+#~ "It will also change any DTD declarations in the OMF and DocBook files to "
+#~ "refer to local files instead of remote URLs. This change does not modify "
+#~ "the source files, but the files in the package build tree."
+#~ msgstr ""
+#~ "Ce programme changera également toutes les déclarations de DTD dans les "
+#~ "fichiers OMF et DocBook pour se référer aux fichiers locaux au lieu des "
+#~ "URL distantes. Ce changement ne modifie pas les fichiers source mais les "
+#~ "fichiers du répertoire de construction du paquet."
+
+# type: textblock
+#~ msgid "Do not modify F<postinst>/F<postrm> scripts."
+#~ msgstr ""
+#~ "Empêche la modification des scripts de maintenance F<postinst> et "
+#~ "F<postrm>."
+
+# type: textblock
#~ msgid "dh_desktop - Register .desktop files"
#~ msgstr "dh_desktop - inscrit les fichiers .desktop"