[debhelper-devel] [debhelper] 07/12: dh_install: Handle lack of trailing / in paths

Niels Thykier nthykier at moszumanska.debian.org
Sat Jan 20 18:38:36 UTC 2018


This is an automated email from the git hooks/post-receive script.

nthykier pushed a commit to annotated tag Version_9.20130630co2endless10
in repository debhelper.

commit 82e9e2cd6c0a54e8c0d40c69a92fcf54d612e9b9
Author: Dan Nicholson <nicholson at endlessm.com>
Date:   Fri Jun 27 17:21:19 2014 -0700

    dh_install: Handle lack of trailing / in paths
    
    When the install file specifies the entire usr, etc or var directory,
    there's no trailing /.
---
 debian/changelog          |   9 +++
 dh_install                |  12 +--
 dh_installdirs            |  15 ++++
 man/po4a/po/de.po         | 173 +++++++++++++++++++++---------------------
 man/po4a/po/debhelper.pot |  45 ++++++-----
 man/po4a/po/es.po         | 146 +++++++++++++++++++-----------------
 man/po4a/po/fr.po         | 186 ++++++++++++++++++++++++----------------------
 7 files changed, 320 insertions(+), 266 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index b8df70e..7e76e57 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,12 @@
+debhelper (9.20130630co2endless5) eos; urgency=low
+
+  * dh_install: Handle lack of trailing / in paths when the install file
+    specifies the entire usr, etc or var directory.
+  * dh_installdirs: Prepend /endless app prefix to installation directories
+    for eos-app profiles.
+
+ -- Dan Nicholson <nicholson at endlessm.com>  Mon, 30 Jun 2014 07:17:26 -0700
+
 debhelper (9.20130630co2endless4) eos; urgency=low
 
   * dh_install: Handle absolute paths install file specifications. These
diff --git a/dh_install b/dh_install
index aea491d..da74ecc 100755
--- a/dh_install
+++ b/dh_install
@@ -166,17 +166,17 @@ foreach my $package (getpackages()) {
 			$dest=pop @$set;
 
 			# Adjust the destination if app prefix is set.
-			$dest=~s,^/*usr/,${prefix}/, if defined $prefix;
-			$dest=~s,^/*etc/,${prefix}/etc/, if defined $prefix;
-			$dest=~s,^/*var/,${prefix}/var/, if defined $prefix;
+			$dest=~s,^/*usr(/|$),${prefix}$1, if defined $prefix;
+			$dest=~s,^/*etc(/|$),${prefix}/etc$1, if defined $prefix;
+			$dest=~s,^/*var(/|$),${prefix}/var$1, if defined $prefix;
 		}
 
 		my @filelist;
 		foreach my $glob (@$set) {
 			# Adjust the glob if app prefix is set.
-			$glob=~s,^/*usr/,${prefix}/, if defined $prefix;
-			$glob=~s,^/*etc/,${prefix}/etc/, if defined $prefix;
-			$glob=~s,^/*var/,${prefix}/var/, if defined $prefix;
+			$glob=~s,^/*usr(/|$),${prefix}$1, if defined $prefix;
+			$glob=~s,^/*etc(/|$),${prefix}/etc$1, if defined $prefix;
+			$glob=~s,^/*var(/|$),${prefix}/var$1, if defined $prefix;
 
 			my @found = glob "$srcdir/$glob";
 			if (! compat(6)) {
diff --git a/dh_installdirs b/dh_installdirs
index fe5683d..eace5b5 100755
--- a/dh_installdirs
+++ b/dh_installdirs
@@ -18,6 +18,9 @@ B<dh_installdirs> [S<I<debhelper options>>] [B<-A>] [S<I<dir> ...>]
 B<dh_installdirs> is a debhelper program that is responsible for creating
 subdirectories in package build directories.
 
+When the environment variable B<DEB_BUILD_PROFILES> contains B<eos-app>,
+directories will be created in the app specific prefix of F</endless>.
+
 =head1 FILES
 
 =over 4
@@ -69,6 +72,18 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
 	}	
 
 	if (@dirs) {
+		# Adjust the directories for eos-app profiles.
+		if (get_buildprofile("eos-app")) {
+			my $prefix="endless/" . package_eos_app_id($package);
+
+			@dirs=map {
+				s,^/*usr(/|$),${prefix}$1,;
+				s,^/*etc(/|$),${prefix}/etc$1,;
+				s,^/*var(/|$),${prefix}/var$1,;
+				$_
+			} @dirs;
+		}
+
 		# Stick the $tmp onto the front of all the dirs.
 		# This is necessary, for 2 reasons, one to make them 
 		# be in the right directory, but more importantly, it 
diff --git a/man/po4a/po/de.po b/man/po4a/po/de.po
index 8b18e5f..6f4b319 100644
--- a/man/po4a/po/de.po
+++ b/man/po4a/po/de.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: debhelper 9.20120909\n"
 "Report-Msgid-Bugs-To: debhelper at packages.debian.org\n"
-"POT-Creation-Date: 2013-06-24 19:29-0400\n"
+"POT-Creation-Date: 2014-06-30 07:18-0600\n"
 "PO-Revision-Date: 2012-10-22 22:00+0100\n"
 "Last-Translator: Chris Leick <c.leick at vollbio.de>\n"
 "Language-Team: German <debian-l10n-german at lists.debian.org>\n"
@@ -132,11 +132,10 @@ msgid ""
 msgstr ""
 "Um ein neues Debian-Paket unter Benutzung von Debhelper zu erstellen, können "
 "Sie einfach eine Beispielregeldatei kopieren und manuell bearbeiten. Oder "
-"Sie können das Paket B<dh-make> ausprobieren, das einen L<dh_make|"
-"dh_make(1)>-Befehl enthält, der den Prozess teilweise automatisiert. Für "
-"eine behutsamere Einführung enthält das Paket B<maint-guide> ein "
-"Lernprogramm, wie Sie Ihr erstes Paket unter Verwendung von Debhelper "
-"erstellen."
+"Sie können das Paket B<dh-make> ausprobieren, das einen L<dh_make|dh_make(1)"
+">-Befehl enthält, der den Prozess teilweise automatisiert. Für eine "
+"behutsamere Einführung enthält das Paket B<maint-guide> ein Lernprogramm, "
+"wie Sie Ihr erstes Paket unter Verwendung von Debhelper erstellen."
 
 #. type: =head1
 #: debhelper.pod:29
@@ -545,7 +544,7 @@ msgstr ""
 "Text enthält, wird ausgeschlossen."
 
 #. type: =item
-#: debhelper.pod:191 dh_bugfiles:54 dh_compress:59 dh_installdirs:35
+#: debhelper.pod:191 dh_bugfiles:54 dh_compress:59 dh_installdirs:38
 #: dh_installdocs:75 dh_installexamples:36 dh_installinfo:35 dh_installman:65
 #: dh_link:57
 msgid "B<-A>, B<--all>"
@@ -1394,12 +1393,12 @@ msgid ""
 "things, so debhelper offers a way to automate it."
 msgstr ""
 "Einige Debhelper-Befehle könnten dazu führen, dass das erzeugte Paket von "
-"einigen anderen Paketen abhängt. Falls Sie beispielsweise "
-"L<dh_installdebconf(1)> benutzen, wird Ihr Paket von Debconf abhängen "
-"müssen. Oder, falls Sie L<dh_installxfonts(1)> verwenden, wird ihr Paket "
-"generell von einer bestimmten Version der Xutils abhängen. Den Überblick "
-"über diese verschiedenen Abhängigkeiten zu behalten kann lästig sein, da sie "
-"davon abhängen, wie Debhelper Dinge tut, weswegen Debhelper eine Möglichkeit "
+"einigen anderen Paketen abhängt. Falls Sie beispielsweise L<dh_installdebconf"
+"(1)> benutzen, wird Ihr Paket von Debconf abhängen müssen. Oder, falls Sie "
+"L<dh_installxfonts(1)> verwenden, wird ihr Paket generell von einer "
+"bestimmten Version der Xutils abhängen. Den Überblick über diese "
+"verschiedenen Abhängigkeiten zu behalten kann lästig sein, da sie davon "
+"abhängen, wie Debhelper Dinge tut, weswegen Debhelper eine Möglichkeit "
 "bietet, sie zu automatisieren."
 
 #. type: textblock
@@ -1420,9 +1419,9 @@ msgstr ""
 #: debhelper.pod:607
 msgid ""
 "This is entirely independent of the standard B<${shlibs:Depends}> generated "
-"by L<dh_makeshlibs(1)>, and the B<${perl:Depends}> generated by "
-"L<dh_perl(1)>.  You can choose not to use any of these, if debhelper's "
-"guesses don't match reality."
+"by L<dh_makeshlibs(1)>, and the B<${perl:Depends}> generated by L<dh_perl(1)"
+">.  You can choose not to use any of these, if debhelper's guesses don't "
+"match reality."
 msgstr ""
 "Dies ist gänzlich unabhängig von dem vorgegebenen B<${shlibs:Depends}>, das "
 "durch L<dh_makeshlibs(1)> erzeugt wurde und den durch L<dh_perl(1)> "
@@ -1602,14 +1601,14 @@ msgstr ""
 "getrennt werden, wie in B<DH_ALWAYS_EXCLUDE=CVS:.svn>."
 
 #. type: =head1
-#: debhelper.pod:678 dh:969 dh_auto_build:47 dh_auto_clean:50
+#: debhelper.pod:678 dh:970 dh_auto_build:47 dh_auto_clean:50
 #: dh_auto_configure:52 dh_auto_install:92 dh_auto_test:63 dh_bugfiles:124
 #: dh_builddeb:124 dh_clean:142 dh_compress:208 dh_desktop:31 dh_fixperms:127
-#: dh_gconf:101 dh_gencontrol:82 dh_icons:71 dh_install:260
+#: dh_gconf:101 dh_gencontrol:82 dh_icons:71 dh_install:276
 #: dh_installcatalogs:122 dh_installchangelogs:239 dh_installcron:79
-#: dh_installdeb:140 dh_installdebconf:128 dh_installdirs:88
+#: dh_installdeb:140 dh_installdebconf:128 dh_installdirs:103
 #: dh_installdocs:333 dh_installemacsen:126 dh_installexamples:108
-#: dh_installifupdown:71 dh_installinfo:77 dh_installinit:321
+#: dh_installifupdown:71 dh_installinfo:77 dh_installinit:322
 #: dh_installlogcheck:80 dh_installlogrotate:52 dh_installman:263
 #: dh_installmanpages:197 dh_installmenu:89 dh_installmime:63
 #: dh_installmodules:115 dh_installpam:61 dh_installppp:67 dh_installudev:117
@@ -1644,12 +1643,12 @@ msgid "Debhelper web site."
 msgstr "Debhelper-Website"
 
 #. type: =head1
-#: debhelper.pod:692 dh:975 dh_auto_build:53 dh_auto_clean:56
+#: debhelper.pod:692 dh:976 dh_auto_build:53 dh_auto_clean:56
 #: dh_auto_configure:58 dh_auto_install:98 dh_auto_test:69 dh_bugfiles:132
 #: dh_builddeb:130 dh_clean:148 dh_compress:214 dh_desktop:37 dh_fixperms:133
-#: dh_gconf:107 dh_gencontrol:88 dh_icons:77 dh_install:266
+#: dh_gconf:107 dh_gencontrol:88 dh_icons:77 dh_install:282
 #: dh_installcatalogs:128 dh_installchangelogs:245 dh_installcron:85
-#: dh_installdeb:146 dh_installdebconf:134 dh_installdirs:94
+#: dh_installdeb:146 dh_installdebconf:134 dh_installdirs:109
 #: dh_installdocs:339 dh_installemacsen:132 dh_installexamples:114
 #: dh_installifupdown:77 dh_installinfo:83 dh_installlogcheck:86
 #: dh_installlogrotate:58 dh_installman:269 dh_installmanpages:203
@@ -1663,13 +1662,13 @@ msgid "AUTHOR"
 msgstr "AUTOR"
 
 #. type: textblock
-#: debhelper.pod:694 dh:977 dh_auto_build:55 dh_auto_clean:58
+#: debhelper.pod:694 dh:978 dh_auto_build:55 dh_auto_clean:58
 #: dh_auto_configure:60 dh_auto_install:100 dh_auto_test:71 dh_builddeb:132
 #: dh_clean:150 dh_compress:216 dh_fixperms:135 dh_gencontrol:90
-#: dh_install:268 dh_installchangelogs:247 dh_installcron:87 dh_installdeb:148
-#: dh_installdebconf:136 dh_installdirs:96 dh_installdocs:341
+#: dh_install:284 dh_installchangelogs:247 dh_installcron:87 dh_installdeb:148
+#: dh_installdebconf:136 dh_installdirs:111 dh_installdocs:341
 #: dh_installemacsen:134 dh_installexamples:116 dh_installifupdown:79
-#: dh_installinfo:85 dh_installinit:329 dh_installlogrotate:60
+#: dh_installinfo:85 dh_installinit:330 dh_installlogrotate:60
 #: dh_installman:271 dh_installmanpages:205 dh_installmenu:99
 #: dh_installmime:71 dh_installmodules:123 dh_installpam:69 dh_installppp:75
 #: dh_installudev:125 dh_installwm:118 dh_installxfonts:97 dh_link:236
@@ -1767,7 +1766,7 @@ msgstr ""
 #: dh_auto_install:43 dh_auto_test:31 dh_bugfiles:50 dh_builddeb:24
 #: dh_clean:41 dh_compress:48 dh_fixperms:31 dh_gconf:39 dh_gencontrol:26
 #: dh_icons:30 dh_install:59 dh_installcatalogs:49 dh_installchangelogs:59
-#: dh_installcron:40 dh_installdebconf:61 dh_installdirs:31 dh_installdocs:71
+#: dh_installcron:40 dh_installdebconf:61 dh_installdirs:34 dh_installdocs:71
 #: dh_installemacsen:48 dh_installexamples:32 dh_installifupdown:39
 #: dh_installinfo:31 dh_installinit:59 dh_installlogcheck:42
 #: dh_installlogrotate:22 dh_installman:61 dh_installmanpages:40
@@ -2396,38 +2395,39 @@ msgstr ""
 "der letzte in der Sequenz benutzt."
 
 #. type: textblock
-#: dh:971 dh_auto_build:49 dh_auto_clean:52 dh_auto_configure:54
+#: dh:972 dh_auto_build:49 dh_auto_clean:52 dh_auto_configure:54
 #: dh_auto_install:94 dh_auto_test:65 dh_builddeb:126 dh_clean:144
 #: dh_compress:210 dh_fixperms:129 dh_gconf:103 dh_gencontrol:84
-#: dh_install:262 dh_installcatalogs:124 dh_installchangelogs:241
-#: dh_installcron:81 dh_installdeb:142 dh_installdebconf:130 dh_installdirs:90
-#: dh_installdocs:335 dh_installemacsen:128 dh_installexamples:110
-#: dh_installifupdown:73 dh_installinfo:79 dh_installinit:323
-#: dh_installlogcheck:82 dh_installlogrotate:54 dh_installman:265
-#: dh_installmanpages:199 dh_installmime:65 dh_installmodules:117
-#: dh_installpam:63 dh_installppp:69 dh_installudev:119 dh_installwm:112
-#: dh_installxfonts:91 dh_link:230 dh_listpackages:32 dh_makeshlibs:260
-#: dh_md5sums:92 dh_movefiles:172 dh_perl:150 dh_prep:62 dh_python:282
-#: dh_strip:244 dh_suidregister:119 dh_testdir:55 dh_testroot:29
+#: dh_install:278 dh_installcatalogs:124 dh_installchangelogs:241
+#: dh_installcron:81 dh_installdeb:142 dh_installdebconf:130
+#: dh_installdirs:105 dh_installdocs:335 dh_installemacsen:128
+#: dh_installexamples:110 dh_installifupdown:73 dh_installinfo:79
+#: dh_installinit:324 dh_installlogcheck:82 dh_installlogrotate:54
+#: dh_installman:265 dh_installmanpages:199 dh_installmime:65
+#: dh_installmodules:117 dh_installpam:63 dh_installppp:69 dh_installudev:119
+#: dh_installwm:112 dh_installxfonts:91 dh_link:230 dh_listpackages:32
+#: dh_makeshlibs:260 dh_md5sums:92 dh_movefiles:172 dh_perl:150 dh_prep:62
+#: dh_python:282 dh_strip:244 dh_suidregister:119 dh_testdir:55 dh_testroot:29
 #: dh_undocumented:30 dh_usrlocal:118
 msgid "L<debhelper(7)>"
 msgstr "L<debhelper(7)>"
 
 #. type: textblock
-#: dh:973 dh_auto_build:51 dh_auto_clean:54 dh_auto_configure:56
+#: dh:974 dh_auto_build:51 dh_auto_clean:54 dh_auto_configure:56
 #: dh_auto_install:96 dh_auto_test:67 dh_bugfiles:130 dh_builddeb:128
 #: dh_clean:146 dh_compress:212 dh_desktop:35 dh_fixperms:131 dh_gconf:105
-#: dh_gencontrol:86 dh_icons:75 dh_install:264 dh_installchangelogs:243
-#: dh_installcron:83 dh_installdeb:144 dh_installdebconf:132 dh_installdirs:92
-#: dh_installdocs:337 dh_installemacsen:130 dh_installexamples:112
-#: dh_installifupdown:75 dh_installinfo:81 dh_installinit:325
-#: dh_installlogrotate:56 dh_installman:267 dh_installmanpages:201
-#: dh_installmenu:95 dh_installmime:67 dh_installmodules:119 dh_installpam:65
-#: dh_installppp:71 dh_installudev:121 dh_installwm:114 dh_installxfonts:93
-#: dh_link:232 dh_lintian:63 dh_listpackages:34 dh_makeshlibs:262
-#: dh_md5sums:94 dh_movefiles:174 dh_perl:152 dh_prep:64 dh_python:284
-#: dh_scrollkeeper:32 dh_shlibdeps:179 dh_strip:246 dh_suidregister:121
-#: dh_testdir:57 dh_testroot:31 dh_undocumented:32 dh_usrlocal:120
+#: dh_gencontrol:86 dh_icons:75 dh_install:280 dh_installchangelogs:243
+#: dh_installcron:83 dh_installdeb:144 dh_installdebconf:132
+#: dh_installdirs:107 dh_installdocs:337 dh_installemacsen:130
+#: dh_installexamples:112 dh_installifupdown:75 dh_installinfo:81
+#: dh_installinit:326 dh_installlogrotate:56 dh_installman:267
+#: dh_installmanpages:201 dh_installmenu:95 dh_installmime:67
+#: dh_installmodules:119 dh_installpam:65 dh_installppp:71 dh_installudev:121
+#: dh_installwm:114 dh_installxfonts:93 dh_link:232 dh_lintian:63
+#: dh_listpackages:34 dh_makeshlibs:262 dh_md5sums:94 dh_movefiles:174
+#: dh_perl:152 dh_prep:64 dh_python:284 dh_scrollkeeper:32 dh_shlibdeps:179
+#: dh_strip:246 dh_suidregister:121 dh_testdir:57 dh_testroot:31
+#: dh_undocumented:32 dh_usrlocal:120
 msgid "This program is a part of debhelper."
 msgstr "Dieses Programm ist Teil von Debhelper."
 
@@ -2821,7 +2821,7 @@ msgstr ""
 #. type: =head1
 #: dh_bugfiles:22 dh_clean:31 dh_compress:31 dh_gconf:23 dh_install:38
 #: dh_installcatalogs:35 dh_installchangelogs:35 dh_installcron:21
-#: dh_installdeb:22 dh_installdebconf:34 dh_installdirs:21 dh_installdocs:21
+#: dh_installdeb:22 dh_installdebconf:34 dh_installdirs:24 dh_installdocs:21
 #: dh_installemacsen:27 dh_installexamples:22 dh_installifupdown:22
 #: dh_installinfo:21 dh_installinit:27 dh_installlogcheck:21 dh_installman:51
 #: dh_installmenu:25 dh_installmime:21 dh_installmodules:28 dh_installpam:21
@@ -3763,12 +3763,12 @@ msgstr ""
 "installiert, auf das sich F<dh_install> auswirkt."
 
 #. type: =head1
-#: dh_install:254
+#: dh_install:270
 msgid "LIMITATIONS"
 msgstr "EINSCHRÄNKUNGEN"
 
 #. type: verbatim
-#: dh_install:256
+#: dh_install:272
 #, no-wrap
 msgid ""
 "B<dh_install> cannot rename files or directories, it can only install them\n"
@@ -4365,18 +4365,25 @@ msgstr ""
 "B<dh_installdirs> ist ein Debhelper-Programm, das für das Erstellen von "
 "Unterverzeichnissen in den Paketbauverzeichnisse zuständig ist."
 
+#. type: textblock
+#: dh_installdirs:21
+msgid ""
+"When the environment variable B<DEB_BUILD_PROFILES> contains B<eos-app>, "
+"directories will be created in the app specific prefix of F</endless>."
+msgstr ""
+
 #. type: =item
-#: dh_installdirs:25
+#: dh_installdirs:28
 msgid "debian/I<package>.dirs"
 msgstr "debian/I<Paket>.dirs"
 
 #. type: textblock
-#: dh_installdirs:27
+#: dh_installdirs:30
 msgid "Lists directories to be created in I<package>."
 msgstr "listet Verzeichnisse auf, die in I<Paket> erstellt werden"
 
 #. type: textblock
-#: dh_installdirs:37
+#: dh_installdirs:40
 msgid ""
 "Create any directories specified by command line parameters in ALL packages "
 "acted on, not just the first."
@@ -4385,12 +4392,12 @@ msgstr ""
 "wurden, in ALLEN Paketen, auf die es sich auswirkt, nicht nur im ersten."
 
 #. type: =item
-#: dh_installdirs:40
+#: dh_installdirs:43
 msgid "I<dir> ..."
 msgstr "I<Verz> …"
 
 #. type: textblock
-#: dh_installdirs:42
+#: dh_installdirs:45
 msgid ""
 "Create these directories in the package build directory of the first package "
 "acted on. (Or in all packages if B<-A> is specified.)"
@@ -5225,17 +5232,17 @@ msgstr ""
 "F<postinst>-Skripten vor der Markierung B<#DEBHELPER#> bereitgestellt werden."
 
 #. type: =head1
-#: dh_installinit:327
+#: dh_installinit:328
 msgid "AUTHORS"
 msgstr "AUTOREN"
 
 #. type: textblock
-#: dh_installinit:331
+#: dh_installinit:332
 msgid "Steve Langasek <steve.langasek at canonical.com>"
 msgstr "Steve Langasek <steve.langasek at canonical.com>"
 
 #. type: textblock
-#: dh_installinit:333
+#: dh_installinit:334
 msgid "Michael Stapelberg <stapelberg at debian.org>"
 msgstr "Michael Stapelberg <stapelberg at debian.org>"
 
@@ -5530,8 +5537,8 @@ msgstr ""
 #: dh_installmanpages:23
 msgid ""
 "This is a DWIM-style program, with an interface unlike the rest of "
-"debhelper. It is deprecated, and you are encouraged to use "
-"L<dh_installman(1)> instead."
+"debhelper. It is deprecated, and you are encouraged to use L<dh_installman(1)"
+"> instead."
 msgstr ""
 "Dies ist ein Programm im DWIM-Stil mit einer Schnittstelle, die anders als "
 "der Rest von Debhelper ist. Es ist missbilligt und es wird Ihnen empfohlen, "
@@ -5664,8 +5671,8 @@ msgid ""
 "build directory. See L<menufile(5)> for its format."
 msgstr ""
 "Debian-Menüdateien, installiert in usr/share/menu/I<Paket> im "
-"Paketbauverzeichnis. Die Beschreibung ihres Formats finden Sie in "
-"L<menufile(5)>."
+"Paketbauverzeichnis. Die Beschreibung ihres Formats finden Sie in L<menufile"
+"(5)>."
 
 #. type: =item
 #: dh_installmenu:34
@@ -5764,14 +5771,14 @@ msgid ""
 "Kernel modules are searched for in the package build directory and if found, "
 "F<preinst>, F<postinst> and F<postrm> commands are automatically generated "
 "to run B<depmod> and register the modules when the package is installed.  "
-"These commands are inserted into the maintainer scripts by "
-"L<dh_installdeb(1)>."
+"These commands are inserted into the maintainer scripts by L<dh_installdeb(1)"
+">."
 msgstr ""
 "Kernel-Module werden im Paketbauverzeichnis gesucht und falls sie gefunden "
 "werden, werden automatisch die F<preinst>-, F<postinst>- und F<postrm>-"
 "Befehle erzeugt, um B<depmod> auszuführen und die Module zu registrieren, "
-"wenn das Paket installiert wird. Diese Befehle werden durch "
-"L<dh_installdeb(1)> in die Betreuerskripte eingefügt."
+"wenn das Paket installiert wird. Diese Befehle werden durch L<dh_installdeb"
+"(1)> in die Betreuerskripte eingefügt."
 
 #. type: =item
 #: dh_installmodules:32
@@ -6099,8 +6106,8 @@ msgid ""
 "dir(8)> for more information about X font installation."
 msgstr ""
 "Weitere Informationen über die Installation der X-Schriften finden Sie unter "
-"L<update-fonts-alias(8)>, L<update-fonts-scale(8)> und L<update-fonts-"
-"dir(8)>."
+"L<update-fonts-alias(8)>, L<update-fonts-scale(8)> und L<update-fonts-dir(8)"
+">."
 
 #. type: textblock
 #: dh_installxfonts:42
@@ -6152,8 +6159,8 @@ msgstr ""
 #: dh_link:27
 msgid ""
 "Be sure you B<do> specify the full filename to both the source and "
-"destination files (unlike you would do if you were using something like "
-"L<ln(1)>)."
+"destination files (unlike you would do if you were using something like L<ln"
+"(1)>)."
 msgstr ""
 "Stellen Sie sicher, dass Sie den vollständigen Dateinamen sowohl für die "
 "Quell- als auch für die Zieldateien I<angeben> (anderes Vorgehen als bei der "
@@ -6373,11 +6380,11 @@ msgstr ""
 #. type: textblock
 #: dh_makeshlibs:14
 msgid ""
-"B<dh_makeshlibs> [S<I<debhelper options>>] [B<-m>I<major>] [B<-"
-"V>I<[dependencies]>] [B<-n>] [B<-X>I<item>] [S<B<--> I<params>>]"
+"B<dh_makeshlibs> [S<I<debhelper options>>] [B<-m>I<major>] [B<-V>I<"
+"[dependencies]>] [B<-n>] [B<-X>I<item>] [S<B<--> I<params>>]"
 msgstr ""
-"B<dh_makeshlibs> [S<I<Debhelper-Optionen>>] [B<-m>I<Hauptnummer>] [B<-"
-"V>I<[Abhängigkeiten]>] [B<-n>] [B<-X>I<Element>] [S<B<--> I<Parameter>>]"
+"B<dh_makeshlibs> [S<I<Debhelper-Optionen>>] [B<-m>I<Hauptnummer>] [B<-V>I<"
+"[Abhängigkeiten]>] [B<-n>] [B<-X>I<Element>] [S<B<--> I<Parameter>>]"
 
 #. type: textblock
 #: dh_makeshlibs:18
@@ -7477,11 +7484,11 @@ msgid ""
 "in this way is unnecessary, and even harmful, so this program is deprecated "
 "and should not be used."
 msgstr ""
-"Dieses Programm wird benutzt, um SUID- und SGID-Dateien mit "
-"L<suidregister(1)> zu registrieren, aber mit der Einführung von L<dpkg-"
-"statoverride(8)> ist das Registrieren von Dateien auf diese Art nicht mehr "
-"nötig und sogar schädlich, daher ist dieses Programm missbilligt und sollte "
-"nicht mehr verwandt werden."
+"Dieses Programm wird benutzt, um SUID- und SGID-Dateien mit L<suidregister(1)"
+"> zu registrieren, aber mit der Einführung von L<dpkg-statoverride(8)> ist "
+"das Registrieren von Dateien auf diese Art nicht mehr nötig und sogar "
+"schädlich, daher ist dieses Programm missbilligt und sollte nicht mehr "
+"verwandt werden."
 
 #. type: =head1
 #: dh_suidregister:18
diff --git a/man/po4a/po/debhelper.pot b/man/po4a/po/debhelper.pot
index 18339aa..7801508 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: 2013-06-24 19:29-0400\n"
+"POT-Creation-Date: 2014-06-30 07:18-0600\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -387,7 +387,7 @@ msgid ""
 msgstr ""
 
 #. type: =item
-#: debhelper.pod:191 dh_bugfiles:54 dh_compress:59 dh_installdirs:35 dh_installdocs:75 dh_installexamples:36 dh_installinfo:35 dh_installman:65 dh_link:57
+#: debhelper.pod:191 dh_bugfiles:54 dh_compress:59 dh_installdirs:38 dh_installdocs:75 dh_installexamples:36 dh_installinfo:35 dh_installman:65 dh_link:57
 msgid "B<-A>, B<--all>"
 msgstr ""
 
@@ -1185,7 +1185,7 @@ msgid ""
 msgstr ""
 
 #. type: =head1
-#: debhelper.pod:678 dh:969 dh_auto_build:47 dh_auto_clean:50 dh_auto_configure:52 dh_auto_install:92 dh_auto_test:63 dh_bugfiles:124 dh_builddeb:124 dh_clean:142 dh_compress:208 dh_desktop:31 dh_fixperms:127 dh_gconf:101 dh_gencontrol:82 dh_icons:71 dh_install:260 dh_installcatalogs:122 dh_installchangelogs:239 dh_installcron:79 dh_installdeb:140 dh_installdebconf:128 dh_installdirs:88 dh_installdocs:333 dh_installemacsen:126 dh_installexamples:108 dh_installifupdown:71 dh_installinfo:7 [...]
+#: debhelper.pod:678 dh:970 dh_auto_build:47 dh_auto_clean:50 dh_auto_configure:52 dh_auto_install:92 dh_auto_test:63 dh_bugfiles:124 dh_builddeb:124 dh_clean:142 dh_compress:208 dh_desktop:31 dh_fixperms:127 dh_gconf:101 dh_gencontrol:82 dh_icons:71 dh_install:276 dh_installcatalogs:122 dh_installchangelogs:239 dh_installcron:79 dh_installdeb:140 dh_installdebconf:128 dh_installdirs:103 dh_installdocs:333 dh_installemacsen:126 dh_installexamples:108 dh_installifupdown:71 dh_installinfo: [...]
 msgid "SEE ALSO"
 msgstr ""
 
@@ -1210,12 +1210,12 @@ msgid "Debhelper web site."
 msgstr ""
 
 #. type: =head1
-#: debhelper.pod:692 dh:975 dh_auto_build:53 dh_auto_clean:56 dh_auto_configure:58 dh_auto_install:98 dh_auto_test:69 dh_bugfiles:132 dh_builddeb:130 dh_clean:148 dh_compress:214 dh_desktop:37 dh_fixperms:133 dh_gconf:107 dh_gencontrol:88 dh_icons:77 dh_install:266 dh_installcatalogs:128 dh_installchangelogs:245 dh_installcron:85 dh_installdeb:146 dh_installdebconf:134 dh_installdirs:94 dh_installdocs:339 dh_installemacsen:132 dh_installexamples:114 dh_installifupdown:77 dh_installinfo:8 [...]
+#: debhelper.pod:692 dh:976 dh_auto_build:53 dh_auto_clean:56 dh_auto_configure:58 dh_auto_install:98 dh_auto_test:69 dh_bugfiles:132 dh_builddeb:130 dh_clean:148 dh_compress:214 dh_desktop:37 dh_fixperms:133 dh_gconf:107 dh_gencontrol:88 dh_icons:77 dh_install:282 dh_installcatalogs:128 dh_installchangelogs:245 dh_installcron:85 dh_installdeb:146 dh_installdebconf:134 dh_installdirs:109 dh_installdocs:339 dh_installemacsen:132 dh_installexamples:114 dh_installifupdown:77 dh_installinfo: [...]
 msgid "AUTHOR"
 msgstr ""
 
 #. type: textblock
-#: debhelper.pod:694 dh:977 dh_auto_build:55 dh_auto_clean:58 dh_auto_configure:60 dh_auto_install:100 dh_auto_test:71 dh_builddeb:132 dh_clean:150 dh_compress:216 dh_fixperms:135 dh_gencontrol:90 dh_install:268 dh_installchangelogs:247 dh_installcron:87 dh_installdeb:148 dh_installdebconf:136 dh_installdirs:96 dh_installdocs:341 dh_installemacsen:134 dh_installexamples:116 dh_installifupdown:79 dh_installinfo:85 dh_installinit:329 dh_installlogrotate:60 dh_installman:271 dh_installmanpa [...]
+#: debhelper.pod:694 dh:978 dh_auto_build:55 dh_auto_clean:58 dh_auto_configure:60 dh_auto_install:100 dh_auto_test:71 dh_builddeb:132 dh_clean:150 dh_compress:216 dh_fixperms:135 dh_gencontrol:90 dh_install:284 dh_installchangelogs:247 dh_installcron:87 dh_installdeb:148 dh_installdebconf:136 dh_installdirs:111 dh_installdocs:341 dh_installemacsen:134 dh_installexamples:116 dh_installifupdown:79 dh_installinfo:85 dh_installinit:330 dh_installlogrotate:60 dh_installman:271 dh_installmanp [...]
 msgid "Joey Hess <joeyh at debian.org>"
 msgstr ""
 
@@ -1273,7 +1273,7 @@ msgid ""
 msgstr ""
 
 #. type: =head1
-#: dh:41 dh_auto_build:28 dh_auto_clean:30 dh_auto_configure:31 dh_auto_install:43 dh_auto_test:31 dh_bugfiles:50 dh_builddeb:24 dh_clean:41 dh_compress:48 dh_fixperms:31 dh_gconf:39 dh_gencontrol:26 dh_icons:30 dh_install:59 dh_installcatalogs:49 dh_installchangelogs:59 dh_installcron:40 dh_installdebconf:61 dh_installdirs:31 dh_installdocs:71 dh_installemacsen:48 dh_installexamples:32 dh_installifupdown:39 dh_installinfo:31 dh_installinit:59 dh_installlogcheck:42 dh_installlogrotate:22 [...]
+#: dh:41 dh_auto_build:28 dh_auto_clean:30 dh_auto_configure:31 dh_auto_install:43 dh_auto_test:31 dh_bugfiles:50 dh_builddeb:24 dh_clean:41 dh_compress:48 dh_fixperms:31 dh_gconf:39 dh_gencontrol:26 dh_icons:30 dh_install:59 dh_installcatalogs:49 dh_installchangelogs:59 dh_installcron:40 dh_installdebconf:61 dh_installdirs:34 dh_installdocs:71 dh_installemacsen:48 dh_installexamples:32 dh_installifupdown:39 dh_installinfo:31 dh_installinit:59 dh_installlogcheck:42 dh_installlogrotate:22 [...]
 msgid "OPTIONS"
 msgstr ""
 
@@ -1739,12 +1739,12 @@ msgid ""
 msgstr ""
 
 #. type: textblock
-#: dh:971 dh_auto_build:49 dh_auto_clean:52 dh_auto_configure:54 dh_auto_install:94 dh_auto_test:65 dh_builddeb:126 dh_clean:144 dh_compress:210 dh_fixperms:129 dh_gconf:103 dh_gencontrol:84 dh_install:262 dh_installcatalogs:124 dh_installchangelogs:241 dh_installcron:81 dh_installdeb:142 dh_installdebconf:130 dh_installdirs:90 dh_installdocs:335 dh_installemacsen:128 dh_installexamples:110 dh_installifupdown:73 dh_installinfo:79 dh_installinit:323 dh_installlogcheck:82 dh_installlogrota [...]
+#: dh:972 dh_auto_build:49 dh_auto_clean:52 dh_auto_configure:54 dh_auto_install:94 dh_auto_test:65 dh_builddeb:126 dh_clean:144 dh_compress:210 dh_fixperms:129 dh_gconf:103 dh_gencontrol:84 dh_install:278 dh_installcatalogs:124 dh_installchangelogs:241 dh_installcron:81 dh_installdeb:142 dh_installdebconf:130 dh_installdirs:105 dh_installdocs:335 dh_installemacsen:128 dh_installexamples:110 dh_installifupdown:73 dh_installinfo:79 dh_installinit:324 dh_installlogcheck:82 dh_installlogrot [...]
 msgid "L<debhelper(7)>"
 msgstr ""
 
 #. type: textblock
-#: dh:973 dh_auto_build:51 dh_auto_clean:54 dh_auto_configure:56 dh_auto_install:96 dh_auto_test:67 dh_bugfiles:130 dh_builddeb:128 dh_clean:146 dh_compress:212 dh_desktop:35 dh_fixperms:131 dh_gconf:105 dh_gencontrol:86 dh_icons:75 dh_install:264 dh_installchangelogs:243 dh_installcron:83 dh_installdeb:144 dh_installdebconf:132 dh_installdirs:92 dh_installdocs:337 dh_installemacsen:130 dh_installexamples:112 dh_installifupdown:75 dh_installinfo:81 dh_installinit:325 dh_installlogrotate: [...]
+#: dh:974 dh_auto_build:51 dh_auto_clean:54 dh_auto_configure:56 dh_auto_install:96 dh_auto_test:67 dh_bugfiles:130 dh_builddeb:128 dh_clean:146 dh_compress:212 dh_desktop:35 dh_fixperms:131 dh_gconf:105 dh_gencontrol:86 dh_icons:75 dh_install:280 dh_installchangelogs:243 dh_installcron:83 dh_installdeb:144 dh_installdebconf:132 dh_installdirs:107 dh_installdocs:337 dh_installemacsen:130 dh_installexamples:112 dh_installifupdown:75 dh_installinfo:81 dh_installinit:326 dh_installlogrotate [...]
 msgid "This program is a part of debhelper."
 msgstr ""
 
@@ -2029,7 +2029,7 @@ msgid ""
 msgstr ""
 
 #. type: =head1
-#: dh_bugfiles:22 dh_clean:31 dh_compress:31 dh_gconf:23 dh_install:38 dh_installcatalogs:35 dh_installchangelogs:35 dh_installcron:21 dh_installdeb:22 dh_installdebconf:34 dh_installdirs:21 dh_installdocs:21 dh_installemacsen:27 dh_installexamples:22 dh_installifupdown:22 dh_installinfo:21 dh_installinit:27 dh_installlogcheck:21 dh_installman:51 dh_installmenu:25 dh_installmime:21 dh_installmodules:28 dh_installpam:21 dh_installppp:21 dh_installudev:25 dh_installwm:24 dh_link:41 dh_lint [...]
+#: dh_bugfiles:22 dh_clean:31 dh_compress:31 dh_gconf:23 dh_install:38 dh_installcatalogs:35 dh_installchangelogs:35 dh_installcron:21 dh_installdeb:22 dh_installdebconf:34 dh_installdirs:24 dh_installdocs:21 dh_installemacsen:27 dh_installexamples:22 dh_installifupdown:22 dh_installinfo:21 dh_installinit:27 dh_installlogcheck:21 dh_installman:51 dh_installmenu:25 dh_installmime:21 dh_installmodules:28 dh_installpam:21 dh_installppp:21 dh_installudev:25 dh_installwm:24 dh_link:41 dh_lint [...]
 msgid "FILES"
 msgstr ""
 
@@ -2751,12 +2751,12 @@ msgid ""
 msgstr ""
 
 #. type: =head1
-#: dh_install:254
+#: dh_install:270
 msgid "LIMITATIONS"
 msgstr ""
 
 #. type: verbatim
-#: dh_install:256
+#: dh_install:272
 #, no-wrap
 msgid ""
 "B<dh_install> cannot rename files or directories, it can only install them\n"
@@ -3238,30 +3238,37 @@ msgid ""
 "subdirectories in package build directories."
 msgstr ""
 
+#. type: textblock
+#: dh_installdirs:21
+msgid ""
+"When the environment variable B<DEB_BUILD_PROFILES> contains B<eos-app>, "
+"directories will be created in the app specific prefix of F</endless>."
+msgstr ""
+
 #. type: =item
-#: dh_installdirs:25
+#: dh_installdirs:28
 msgid "debian/I<package>.dirs"
 msgstr ""
 
 #. type: textblock
-#: dh_installdirs:27
+#: dh_installdirs:30
 msgid "Lists directories to be created in I<package>."
 msgstr ""
 
 #. type: textblock
-#: dh_installdirs:37
+#: dh_installdirs:40
 msgid ""
 "Create any directories specified by command line parameters in ALL packages "
 "acted on, not just the first."
 msgstr ""
 
 #. type: =item
-#: dh_installdirs:40
+#: dh_installdirs:43
 msgid "I<dir> ..."
 msgstr ""
 
 #. type: textblock
-#: dh_installdirs:42
+#: dh_installdirs:45
 msgid ""
 "Create these directories in the package build directory of the first package "
 "acted on. (Or in all packages if B<-A> is specified.)"
@@ -3916,17 +3923,17 @@ msgid ""
 msgstr ""
 
 #. type: =head1
-#: dh_installinit:327
+#: dh_installinit:328
 msgid "AUTHORS"
 msgstr ""
 
 #. type: textblock
-#: dh_installinit:331
+#: dh_installinit:332
 msgid "Steve Langasek <steve.langasek at canonical.com>"
 msgstr ""
 
 #. type: textblock
-#: dh_installinit:333
+#: dh_installinit:334
 msgid "Michael Stapelberg <stapelberg at debian.org>"
 msgstr ""
 
diff --git a/man/po4a/po/es.po b/man/po4a/po/es.po
index 67abf20..b0b1a04 100644
--- a/man/po4a/po/es.po
+++ b/man/po4a/po/es.po
@@ -31,7 +31,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: debhelper 9.20120609\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-06-24 19:29-0400\n"
+"POT-Creation-Date: 2014-06-30 07:18-0600\n"
 "PO-Revision-Date: 2012-08-20 11:17+0200\n"
 "Last-Translator: Omar Campagne <ocampagne at gmail.com>\n"
 "Language-Team: Debian l10n Spanish <debian-l10n-spanish at lists.debian.org>\n"
@@ -616,7 +616,7 @@ msgstr ""
 
 # type: =item
 #. type: =item
-#: debhelper.pod:191 dh_bugfiles:54 dh_compress:59 dh_installdirs:35
+#: debhelper.pod:191 dh_bugfiles:54 dh_compress:59 dh_installdirs:38
 #: dh_installdocs:75 dh_installexamples:36 dh_installinfo:35 dh_installman:65
 #: dh_link:57
 msgid "B<-A>, B<--all>"
@@ -1534,9 +1534,9 @@ msgstr ""
 #: debhelper.pod:607
 msgid ""
 "This is entirely independent of the standard B<${shlibs:Depends}> generated "
-"by L<dh_makeshlibs(1)>, and the B<${perl:Depends}> generated by "
-"L<dh_perl(1)>.  You can choose not to use any of these, if debhelper's "
-"guesses don't match reality."
+"by L<dh_makeshlibs(1)>, and the B<${perl:Depends}> generated by L<dh_perl(1)"
+">.  You can choose not to use any of these, if debhelper's guesses don't "
+"match reality."
 msgstr ""
 "Esto es totalmente independiente del campo estándar B<${shlibs:Depends}> "
 "generado por L<dh_makeshlibs(1)>, y del B<${perl:Depends}> generada por "
@@ -1729,14 +1729,14 @@ msgstr ""
 
 # type: =head1
 #. type: =head1
-#: debhelper.pod:678 dh:969 dh_auto_build:47 dh_auto_clean:50
+#: debhelper.pod:678 dh:970 dh_auto_build:47 dh_auto_clean:50
 #: dh_auto_configure:52 dh_auto_install:92 dh_auto_test:63 dh_bugfiles:124
 #: dh_builddeb:124 dh_clean:142 dh_compress:208 dh_desktop:31 dh_fixperms:127
-#: dh_gconf:101 dh_gencontrol:82 dh_icons:71 dh_install:260
+#: dh_gconf:101 dh_gencontrol:82 dh_icons:71 dh_install:276
 #: dh_installcatalogs:122 dh_installchangelogs:239 dh_installcron:79
-#: dh_installdeb:140 dh_installdebconf:128 dh_installdirs:88
+#: dh_installdeb:140 dh_installdebconf:128 dh_installdirs:103
 #: dh_installdocs:333 dh_installemacsen:126 dh_installexamples:108
-#: dh_installifupdown:71 dh_installinfo:77 dh_installinit:321
+#: dh_installifupdown:71 dh_installinfo:77 dh_installinit:322
 #: dh_installlogcheck:80 dh_installlogrotate:52 dh_installman:263
 #: dh_installmanpages:197 dh_installmenu:89 dh_installmime:63
 #: dh_installmodules:115 dh_installpam:61 dh_installppp:67 dh_installudev:117
@@ -1774,12 +1774,12 @@ msgstr "Sitio web de Debhelper."
 
 # type: =head1
 #. type: =head1
-#: debhelper.pod:692 dh:975 dh_auto_build:53 dh_auto_clean:56
+#: debhelper.pod:692 dh:976 dh_auto_build:53 dh_auto_clean:56
 #: dh_auto_configure:58 dh_auto_install:98 dh_auto_test:69 dh_bugfiles:132
 #: dh_builddeb:130 dh_clean:148 dh_compress:214 dh_desktop:37 dh_fixperms:133
-#: dh_gconf:107 dh_gencontrol:88 dh_icons:77 dh_install:266
+#: dh_gconf:107 dh_gencontrol:88 dh_icons:77 dh_install:282
 #: dh_installcatalogs:128 dh_installchangelogs:245 dh_installcron:85
-#: dh_installdeb:146 dh_installdebconf:134 dh_installdirs:94
+#: dh_installdeb:146 dh_installdebconf:134 dh_installdirs:109
 #: dh_installdocs:339 dh_installemacsen:132 dh_installexamples:114
 #: dh_installifupdown:77 dh_installinfo:83 dh_installlogcheck:86
 #: dh_installlogrotate:58 dh_installman:269 dh_installmanpages:203
@@ -1794,13 +1794,13 @@ msgstr "AUTOR"
 
 # type: textblock
 #. type: textblock
-#: debhelper.pod:694 dh:977 dh_auto_build:55 dh_auto_clean:58
+#: debhelper.pod:694 dh:978 dh_auto_build:55 dh_auto_clean:58
 #: dh_auto_configure:60 dh_auto_install:100 dh_auto_test:71 dh_builddeb:132
 #: dh_clean:150 dh_compress:216 dh_fixperms:135 dh_gencontrol:90
-#: dh_install:268 dh_installchangelogs:247 dh_installcron:87 dh_installdeb:148
-#: dh_installdebconf:136 dh_installdirs:96 dh_installdocs:341
+#: dh_install:284 dh_installchangelogs:247 dh_installcron:87 dh_installdeb:148
+#: dh_installdebconf:136 dh_installdirs:111 dh_installdocs:341
 #: dh_installemacsen:134 dh_installexamples:116 dh_installifupdown:79
-#: dh_installinfo:85 dh_installinit:329 dh_installlogrotate:60
+#: dh_installinfo:85 dh_installinit:330 dh_installlogrotate:60
 #: dh_installman:271 dh_installmanpages:205 dh_installmenu:99
 #: dh_installmime:71 dh_installmodules:123 dh_installpam:69 dh_installppp:75
 #: dh_installudev:125 dh_installwm:118 dh_installxfonts:97 dh_link:236
@@ -1899,7 +1899,7 @@ msgstr ""
 #: dh_auto_install:43 dh_auto_test:31 dh_bugfiles:50 dh_builddeb:24
 #: dh_clean:41 dh_compress:48 dh_fixperms:31 dh_gconf:39 dh_gencontrol:26
 #: dh_icons:30 dh_install:59 dh_installcatalogs:49 dh_installchangelogs:59
-#: dh_installcron:40 dh_installdebconf:61 dh_installdirs:31 dh_installdocs:71
+#: dh_installcron:40 dh_installdebconf:61 dh_installdirs:34 dh_installdocs:71
 #: dh_installemacsen:48 dh_installexamples:32 dh_installifupdown:39
 #: dh_installinfo:31 dh_installinit:59 dh_installlogcheck:42
 #: dh_installlogrotate:22 dh_installman:61 dh_installmanpages:40
@@ -2533,39 +2533,40 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: dh:971 dh_auto_build:49 dh_auto_clean:52 dh_auto_configure:54
+#: dh:972 dh_auto_build:49 dh_auto_clean:52 dh_auto_configure:54
 #: dh_auto_install:94 dh_auto_test:65 dh_builddeb:126 dh_clean:144
 #: dh_compress:210 dh_fixperms:129 dh_gconf:103 dh_gencontrol:84
-#: dh_install:262 dh_installcatalogs:124 dh_installchangelogs:241
-#: dh_installcron:81 dh_installdeb:142 dh_installdebconf:130 dh_installdirs:90
-#: dh_installdocs:335 dh_installemacsen:128 dh_installexamples:110
-#: dh_installifupdown:73 dh_installinfo:79 dh_installinit:323
-#: dh_installlogcheck:82 dh_installlogrotate:54 dh_installman:265
-#: dh_installmanpages:199 dh_installmime:65 dh_installmodules:117
-#: dh_installpam:63 dh_installppp:69 dh_installudev:119 dh_installwm:112
-#: dh_installxfonts:91 dh_link:230 dh_listpackages:32 dh_makeshlibs:260
-#: dh_md5sums:92 dh_movefiles:172 dh_perl:150 dh_prep:62 dh_python:282
-#: dh_strip:244 dh_suidregister:119 dh_testdir:55 dh_testroot:29
+#: dh_install:278 dh_installcatalogs:124 dh_installchangelogs:241
+#: dh_installcron:81 dh_installdeb:142 dh_installdebconf:130
+#: dh_installdirs:105 dh_installdocs:335 dh_installemacsen:128
+#: dh_installexamples:110 dh_installifupdown:73 dh_installinfo:79
+#: dh_installinit:324 dh_installlogcheck:82 dh_installlogrotate:54
+#: dh_installman:265 dh_installmanpages:199 dh_installmime:65
+#: dh_installmodules:117 dh_installpam:63 dh_installppp:69 dh_installudev:119
+#: dh_installwm:112 dh_installxfonts:91 dh_link:230 dh_listpackages:32
+#: dh_makeshlibs:260 dh_md5sums:92 dh_movefiles:172 dh_perl:150 dh_prep:62
+#: dh_python:282 dh_strip:244 dh_suidregister:119 dh_testdir:55 dh_testroot:29
 #: dh_undocumented:30 dh_usrlocal:118
 msgid "L<debhelper(7)>"
 msgstr "L<debhelper(7)>"
 
 # type: textblock
 #. type: textblock
-#: dh:973 dh_auto_build:51 dh_auto_clean:54 dh_auto_configure:56
+#: dh:974 dh_auto_build:51 dh_auto_clean:54 dh_auto_configure:56
 #: dh_auto_install:96 dh_auto_test:67 dh_bugfiles:130 dh_builddeb:128
 #: dh_clean:146 dh_compress:212 dh_desktop:35 dh_fixperms:131 dh_gconf:105
-#: dh_gencontrol:86 dh_icons:75 dh_install:264 dh_installchangelogs:243
-#: dh_installcron:83 dh_installdeb:144 dh_installdebconf:132 dh_installdirs:92
-#: dh_installdocs:337 dh_installemacsen:130 dh_installexamples:112
-#: dh_installifupdown:75 dh_installinfo:81 dh_installinit:325
-#: dh_installlogrotate:56 dh_installman:267 dh_installmanpages:201
-#: dh_installmenu:95 dh_installmime:67 dh_installmodules:119 dh_installpam:65
-#: dh_installppp:71 dh_installudev:121 dh_installwm:114 dh_installxfonts:93
-#: dh_link:232 dh_lintian:63 dh_listpackages:34 dh_makeshlibs:262
-#: dh_md5sums:94 dh_movefiles:174 dh_perl:152 dh_prep:64 dh_python:284
-#: dh_scrollkeeper:32 dh_shlibdeps:179 dh_strip:246 dh_suidregister:121
-#: dh_testdir:57 dh_testroot:31 dh_undocumented:32 dh_usrlocal:120
+#: dh_gencontrol:86 dh_icons:75 dh_install:280 dh_installchangelogs:243
+#: dh_installcron:83 dh_installdeb:144 dh_installdebconf:132
+#: dh_installdirs:107 dh_installdocs:337 dh_installemacsen:130
+#: dh_installexamples:112 dh_installifupdown:75 dh_installinfo:81
+#: dh_installinit:326 dh_installlogrotate:56 dh_installman:267
+#: dh_installmanpages:201 dh_installmenu:95 dh_installmime:67
+#: dh_installmodules:119 dh_installpam:65 dh_installppp:71 dh_installudev:121
+#: dh_installwm:114 dh_installxfonts:93 dh_link:232 dh_lintian:63
+#: dh_listpackages:34 dh_makeshlibs:262 dh_md5sums:94 dh_movefiles:174
+#: dh_perl:152 dh_prep:64 dh_python:284 dh_scrollkeeper:32 dh_shlibdeps:179
+#: dh_strip:246 dh_suidregister:121 dh_testdir:57 dh_testroot:31
+#: dh_undocumented:32 dh_usrlocal:120
 msgid "This program is a part of debhelper."
 msgstr "Este programa es parte de debhelper."
 
@@ -2967,7 +2968,7 @@ msgstr ""
 #. type: =head1
 #: dh_bugfiles:22 dh_clean:31 dh_compress:31 dh_gconf:23 dh_install:38
 #: dh_installcatalogs:35 dh_installchangelogs:35 dh_installcron:21
-#: dh_installdeb:22 dh_installdebconf:34 dh_installdirs:21 dh_installdocs:21
+#: dh_installdeb:22 dh_installdebconf:34 dh_installdirs:24 dh_installdocs:21
 #: dh_installemacsen:27 dh_installexamples:22 dh_installifupdown:22
 #: dh_installinfo:21 dh_installinit:27 dh_installlogcheck:21 dh_installman:51
 #: dh_installmenu:25 dh_installmime:21 dh_installmodules:28 dh_installpam:21
@@ -3710,8 +3711,8 @@ msgid ""
 msgstr ""
 "Además, genera automáticamente las órdenes de F<postinst> y F<postrm> "
 "necesarias para interactuar con el paquete del B<menú> de Debian. Estas "
-"órdenes se insertan en los scripts del desarrollador mediante "
-"L<dh_installdeb(1)>."
+"órdenes se insertan en los scripts del desarrollador mediante L<dh_installdeb"
+"(1)>."
 
 # type: =item
 #. type: =item
@@ -3996,13 +3997,13 @@ msgstr ""
 
 # type: =head1
 #. type: =head1
-#: dh_install:254
+#: dh_install:270
 msgid "LIMITATIONS"
 msgstr "LIMITACIONES"
 
 # type: verbatim
 #. type: verbatim
-#: dh_install:256
+#: dh_install:272
 #, no-wrap
 msgid ""
 "B<dh_install> cannot rename files or directories, it can only install them\n"
@@ -4651,19 +4652,26 @@ msgstr ""
 "B<dh_installdirs> es un programa de debhelper responsable de crear "
 "subdirectorios en los directorios de construcción del paquete."
 
+#. type: textblock
+#: dh_installdirs:21
+msgid ""
+"When the environment variable B<DEB_BUILD_PROFILES> contains B<eos-app>, "
+"directories will be created in the app specific prefix of F</endless>."
+msgstr ""
+
 #. type: =item
-#: dh_installdirs:25
+#: dh_installdirs:28
 msgid "debian/I<package>.dirs"
 msgstr "debian/I<paquete>.dirs"
 
 #. type: textblock
-#: dh_installdirs:27
+#: dh_installdirs:30
 msgid "Lists directories to be created in I<package>."
 msgstr "Lista los directorios a crear en I<paquete>."
 
 # type: textblock
 #. type: textblock
-#: dh_installdirs:37
+#: dh_installdirs:40
 msgid ""
 "Create any directories specified by command line parameters in ALL packages "
 "acted on, not just the first."
@@ -4673,13 +4681,13 @@ msgstr ""
 
 # type: =item
 #. type: =item
-#: dh_installdirs:40
+#: dh_installdirs:43
 msgid "I<dir> ..."
 msgstr "I<directorio> ..."
 
 # type: textblock
 #. type: textblock
-#: dh_installdirs:42
+#: dh_installdirs:45
 msgid ""
 "Create these directories in the package build directory of the first package "
 "acted on. (Or in all packages if B<-A> is specified.)"
@@ -5597,17 +5605,17 @@ msgstr ""
 
 # type: =head1
 #. type: =head1
-#: dh_installinit:327
+#: dh_installinit:328
 msgid "AUTHORS"
 msgstr "AUTORES"
 
 #. type: textblock
-#: dh_installinit:331
+#: dh_installinit:332
 msgid "Steve Langasek <steve.langasek at canonical.com>"
 msgstr "Steve Langasek <steve.langasek at canonical.com>"
 
 #. type: textblock
-#: dh_installinit:333
+#: dh_installinit:334
 msgid "Michael Stapelberg <stapelberg at debian.org>"
 msgstr ""
 
@@ -5810,10 +5818,10 @@ msgstr ""
 "incorrecta o con la extensión equivocada es porque la página de manual tiene "
 "una sección incorrecta en su línea B<.TH> o B<.Dt>. Edite la página de "
 "manual y corrija la sección, y B<dh_installman> hará lo correcto. Para más "
-"detalles acerca de la sección B<.TH>, consulte L<man(7)> y consulte "
-"L<mdoc(7)> para la sección B<.Dt>. Si parece que B<dh_installman> instala la "
-"página de manual en un directorio como F</usr/share/man/pl/man1/>, es porque "
-"su programa tiene un nombre como F<tal.pl>, y B<dh_installman> asume que "
+"detalles acerca de la sección B<.TH>, consulte L<man(7)> y consulte L<mdoc(7)"
+"> para la sección B<.Dt>. Si parece que B<dh_installman> instala la página "
+"de manual en un directorio como F</usr/share/man/pl/man1/>, es porque su "
+"programa tiene un nombre como F<tal.pl>, y B<dh_installman> asume que "
 "significa que está traducida al polaco. Para evitar esto, utilice B<--"
 "language=C>."
 
@@ -5932,8 +5940,8 @@ msgstr ""
 #: dh_installmanpages:23
 msgid ""
 "This is a DWIM-style program, with an interface unlike the rest of "
-"debhelper. It is deprecated, and you are encouraged to use "
-"L<dh_installman(1)> instead."
+"debhelper. It is deprecated, and you are encouraged to use L<dh_installman(1)"
+"> instead."
 msgstr ""
 "Este es un programa de estilo DWIM (N.T: Del inglés «Do what I mean», es "
 "decir, haz lo que quiero), con una interfaz diferente del resto de los "
@@ -6065,8 +6073,8 @@ msgid ""
 msgstr ""
 "Además, genera automáticamente las órdenes de F<postinst> y F<postrm> "
 "necesarias para interactuar con el paquete del B<menú> de Debian. Estas "
-"órdenes se insertan en los scripts del desarrollador mediante "
-"L<dh_installdeb(1)>."
+"órdenes se insertan en los scripts del desarrollador mediante L<dh_installdeb"
+"(1)>."
 
 #. type: =item
 #: dh_installmenu:29
@@ -6200,8 +6208,8 @@ msgid ""
 "Kernel modules are searched for in the package build directory and if found, "
 "F<preinst>, F<postinst> and F<postrm> commands are automatically generated "
 "to run B<depmod> and register the modules when the package is installed.  "
-"These commands are inserted into the maintainer scripts by "
-"L<dh_installdeb(1)>."
+"These commands are inserted into the maintainer scripts by L<dh_installdeb(1)"
+">."
 msgstr ""
 "Los módulos del núcleo se buscan en el directorio de construcción del "
 "paquete, y si se encuentran, se generan órdenes F<preinst>, F<postinst> y "
@@ -6644,8 +6652,8 @@ msgstr ""
 #: dh_link:27
 msgid ""
 "Be sure you B<do> specify the full filename to both the source and "
-"destination files (unlike you would do if you were using something like "
-"L<ln(1)>)."
+"destination files (unlike you would do if you were using something like L<ln"
+"(1)>)."
 msgstr ""
 "Compruebe que B<ha> definido el nombre completo del fichero para ambos "
 "ficheros, origen y destino (distinto a lo que haría si estuviese utilizando "
@@ -6886,11 +6894,11 @@ msgstr ""
 #. type: textblock
 #: dh_makeshlibs:14
 msgid ""
-"B<dh_makeshlibs> [S<I<debhelper options>>] [B<-m>I<major>] [B<-"
-"V>I<[dependencies]>] [B<-n>] [B<-X>I<item>] [S<B<--> I<params>>]"
+"B<dh_makeshlibs> [S<I<debhelper options>>] [B<-m>I<major>] [B<-V>I<"
+"[dependencies]>] [B<-n>] [B<-X>I<item>] [S<B<--> I<params>>]"
 msgstr ""
-"B<dh_makeshlibs> [S<I<opciones-de-debhelper>>] [B<-m>I<mayor>] [B<-"
-"V>I<[dependencias]>] [B<-n>] [B<-X>I<elemento>] [S<B<--> I<parámetros>>]"
+"B<dh_makeshlibs> [S<I<opciones-de-debhelper>>] [B<-m>I<mayor>] [B<-V>I<"
+"[dependencias]>] [B<-n>] [B<-X>I<elemento>] [S<B<--> I<parámetros>>]"
 
 # type: textblock
 #. type: textblock
diff --git a/man/po4a/po/fr.po b/man/po4a/po/fr.po
index c622dac..7a1d864 100644
--- a/man/po4a/po/fr.po
+++ b/man/po4a/po/fr.po
@@ -4,7 +4,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: debhelper manpages\n"
-"POT-Creation-Date: 2013-06-24 19:29-0400\n"
+"POT-Creation-Date: 2014-06-30 07:18-0600\n"
 "PO-Revision-Date: 2012-11-03 11:13-0400\n"
 "Last-Translator: Valery Perrin <valery.perrin.debian at free.fr>\n"
 "Language-Team: French <debian-l10n-french at lists.debian.org>\n"
@@ -122,9 +122,9 @@ msgid ""
 "examples/>"
 msgstr ""
 "Un fichier F<debian/rules> typique, exploitant debhelper, appellera "
-"séquentiellement plusieurs des commandes de debhelper ou bien utilisera "
-"L<dh(1)> pour automatiser ce processus. Des exemples de fichiers debian/"
-"rules qui exploitent debhelper se trouvent dans F</usr/share/doc/debhelper/"
+"séquentiellement plusieurs des commandes de debhelper ou bien utilisera L<dh"
+"(1)> pour automatiser ce processus. Des exemples de fichiers debian/rules "
+"qui exploitent debhelper se trouvent dans F</usr/share/doc/debhelper/"
 "examples/>"
 
 # type: textblock
@@ -597,7 +597,7 @@ msgstr ""
 
 # type: =item
 #. type: =item
-#: debhelper.pod:191 dh_bugfiles:54 dh_compress:59 dh_installdirs:35
+#: debhelper.pod:191 dh_bugfiles:54 dh_compress:59 dh_installdirs:38
 #: dh_installdocs:75 dh_installexamples:36 dh_installinfo:35 dh_installman:65
 #: dh_link:57
 msgid "B<-A>, B<--all>"
@@ -1506,12 +1506,12 @@ msgid ""
 "things, so debhelper offers a way to automate it."
 msgstr ""
 "Certaines commandes de debhelper peuvent nécessiter des dépendances entre le "
-"paquet construit et d'autres paquets. Par exemple, si "
-"L<dh_installdebconf(1)> est employé, le paquet devra dépendre de debconf. Si "
-"L<dh_installxfonts(1)> est employé, le paquet deviendra dépendant d'une "
-"version particulière de xutils. Maintenir ces dépendances induites peut être "
-"pénible puisqu'elles découlent de la façon dont debhelper travaille. C'est "
-"pourquoi debhelper offre une solution d'automatisation."
+"paquet construit et d'autres paquets. Par exemple, si L<dh_installdebconf(1)"
+"> est employé, le paquet devra dépendre de debconf. Si L<dh_installxfonts(1)"
+"> est employé, le paquet deviendra dépendant d'une version particulière de "
+"xutils. Maintenir ces dépendances induites peut être pénible puisqu'elles "
+"découlent de la façon dont debhelper travaille. C'est pourquoi debhelper "
+"offre une solution d'automatisation."
 
 # type: textblock
 #. type: textblock
@@ -1533,9 +1533,9 @@ msgstr ""
 #: debhelper.pod:607
 msgid ""
 "This is entirely independent of the standard B<${shlibs:Depends}> generated "
-"by L<dh_makeshlibs(1)>, and the B<${perl:Depends}> generated by "
-"L<dh_perl(1)>.  You can choose not to use any of these, if debhelper's "
-"guesses don't match reality."
+"by L<dh_makeshlibs(1)>, and the B<${perl:Depends}> generated by L<dh_perl(1)"
+">.  You can choose not to use any of these, if debhelper's guesses don't "
+"match reality."
 msgstr ""
 "Ce processus est entièrement indépendant de B<${shlibs:Depends}> standard, "
 "produite par L<dh_makeshlibs(1)>, et de B<${perl:Depends}> produite par "
@@ -1729,14 +1729,14 @@ msgstr ""
 
 # type: =head1
 #. type: =head1
-#: debhelper.pod:678 dh:969 dh_auto_build:47 dh_auto_clean:50
+#: debhelper.pod:678 dh:970 dh_auto_build:47 dh_auto_clean:50
 #: dh_auto_configure:52 dh_auto_install:92 dh_auto_test:63 dh_bugfiles:124
 #: dh_builddeb:124 dh_clean:142 dh_compress:208 dh_desktop:31 dh_fixperms:127
-#: dh_gconf:101 dh_gencontrol:82 dh_icons:71 dh_install:260
+#: dh_gconf:101 dh_gencontrol:82 dh_icons:71 dh_install:276
 #: dh_installcatalogs:122 dh_installchangelogs:239 dh_installcron:79
-#: dh_installdeb:140 dh_installdebconf:128 dh_installdirs:88
+#: dh_installdeb:140 dh_installdebconf:128 dh_installdirs:103
 #: dh_installdocs:333 dh_installemacsen:126 dh_installexamples:108
-#: dh_installifupdown:71 dh_installinfo:77 dh_installinit:321
+#: dh_installifupdown:71 dh_installinfo:77 dh_installinit:322
 #: dh_installlogcheck:80 dh_installlogrotate:52 dh_installman:263
 #: dh_installmanpages:197 dh_installmenu:89 dh_installmime:63
 #: dh_installmodules:115 dh_installpam:61 dh_installppp:67 dh_installudev:117
@@ -1775,12 +1775,12 @@ msgstr "Le site internet de debhelper."
 
 # type: =head1
 #. type: =head1
-#: debhelper.pod:692 dh:975 dh_auto_build:53 dh_auto_clean:56
+#: debhelper.pod:692 dh:976 dh_auto_build:53 dh_auto_clean:56
 #: dh_auto_configure:58 dh_auto_install:98 dh_auto_test:69 dh_bugfiles:132
 #: dh_builddeb:130 dh_clean:148 dh_compress:214 dh_desktop:37 dh_fixperms:133
-#: dh_gconf:107 dh_gencontrol:88 dh_icons:77 dh_install:266
+#: dh_gconf:107 dh_gencontrol:88 dh_icons:77 dh_install:282
 #: dh_installcatalogs:128 dh_installchangelogs:245 dh_installcron:85
-#: dh_installdeb:146 dh_installdebconf:134 dh_installdirs:94
+#: dh_installdeb:146 dh_installdebconf:134 dh_installdirs:109
 #: dh_installdocs:339 dh_installemacsen:132 dh_installexamples:114
 #: dh_installifupdown:77 dh_installinfo:83 dh_installlogcheck:86
 #: dh_installlogrotate:58 dh_installman:269 dh_installmanpages:203
@@ -1795,13 +1795,13 @@ msgstr "AUTEUR"
 
 # type: textblock
 #. type: textblock
-#: debhelper.pod:694 dh:977 dh_auto_build:55 dh_auto_clean:58
+#: debhelper.pod:694 dh:978 dh_auto_build:55 dh_auto_clean:58
 #: dh_auto_configure:60 dh_auto_install:100 dh_auto_test:71 dh_builddeb:132
 #: dh_clean:150 dh_compress:216 dh_fixperms:135 dh_gencontrol:90
-#: dh_install:268 dh_installchangelogs:247 dh_installcron:87 dh_installdeb:148
-#: dh_installdebconf:136 dh_installdirs:96 dh_installdocs:341
+#: dh_install:284 dh_installchangelogs:247 dh_installcron:87 dh_installdeb:148
+#: dh_installdebconf:136 dh_installdirs:111 dh_installdocs:341
 #: dh_installemacsen:134 dh_installexamples:116 dh_installifupdown:79
-#: dh_installinfo:85 dh_installinit:329 dh_installlogrotate:60
+#: dh_installinfo:85 dh_installinit:330 dh_installlogrotate:60
 #: dh_installman:271 dh_installmanpages:205 dh_installmenu:99
 #: dh_installmime:71 dh_installmodules:123 dh_installpam:69 dh_installppp:75
 #: dh_installudev:125 dh_installwm:118 dh_installxfonts:97 dh_link:236
@@ -1905,7 +1905,7 @@ msgstr ""
 #: dh_auto_install:43 dh_auto_test:31 dh_bugfiles:50 dh_builddeb:24
 #: dh_clean:41 dh_compress:48 dh_fixperms:31 dh_gconf:39 dh_gencontrol:26
 #: dh_icons:30 dh_install:59 dh_installcatalogs:49 dh_installchangelogs:59
-#: dh_installcron:40 dh_installdebconf:61 dh_installdirs:31 dh_installdocs:71
+#: dh_installcron:40 dh_installdebconf:61 dh_installdirs:34 dh_installdocs:71
 #: dh_installemacsen:48 dh_installexamples:32 dh_installifupdown:39
 #: dh_installinfo:31 dh_installinit:59 dh_installlogcheck:42
 #: dh_installlogrotate:22 dh_installman:61 dh_installmanpages:40
@@ -2102,10 +2102,10 @@ msgid ""
 "can't guess what to do for a strange package. Here's how to avoid running "
 "either and instead run your own commands."
 msgstr ""
-"Parfois les automatismes de L<dh_auto_configure(1)> et de "
-"L<dh_auto_build(1)> n'arrivent pas à deviner ce qu'il faut faire pour "
-"certains paquets tordus. Voici comment indiquer vos propres commandes plutôt "
-"que de laisser faire l'automatisme."
+"Parfois les automatismes de L<dh_auto_configure(1)> et de L<dh_auto_build(1)"
+"> n'arrivent pas à deviner ce qu'il faut faire pour certains paquets tordus. "
+"Voici comment indiquer vos propres commandes plutôt que de laisser faire "
+"l'automatisme."
 
 # type: verbatim
 #. type: verbatim
@@ -2582,39 +2582,40 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: dh:971 dh_auto_build:49 dh_auto_clean:52 dh_auto_configure:54
+#: dh:972 dh_auto_build:49 dh_auto_clean:52 dh_auto_configure:54
 #: dh_auto_install:94 dh_auto_test:65 dh_builddeb:126 dh_clean:144
 #: dh_compress:210 dh_fixperms:129 dh_gconf:103 dh_gencontrol:84
-#: dh_install:262 dh_installcatalogs:124 dh_installchangelogs:241
-#: dh_installcron:81 dh_installdeb:142 dh_installdebconf:130 dh_installdirs:90
-#: dh_installdocs:335 dh_installemacsen:128 dh_installexamples:110
-#: dh_installifupdown:73 dh_installinfo:79 dh_installinit:323
-#: dh_installlogcheck:82 dh_installlogrotate:54 dh_installman:265
-#: dh_installmanpages:199 dh_installmime:65 dh_installmodules:117
-#: dh_installpam:63 dh_installppp:69 dh_installudev:119 dh_installwm:112
-#: dh_installxfonts:91 dh_link:230 dh_listpackages:32 dh_makeshlibs:260
-#: dh_md5sums:92 dh_movefiles:172 dh_perl:150 dh_prep:62 dh_python:282
-#: dh_strip:244 dh_suidregister:119 dh_testdir:55 dh_testroot:29
+#: dh_install:278 dh_installcatalogs:124 dh_installchangelogs:241
+#: dh_installcron:81 dh_installdeb:142 dh_installdebconf:130
+#: dh_installdirs:105 dh_installdocs:335 dh_installemacsen:128
+#: dh_installexamples:110 dh_installifupdown:73 dh_installinfo:79
+#: dh_installinit:324 dh_installlogcheck:82 dh_installlogrotate:54
+#: dh_installman:265 dh_installmanpages:199 dh_installmime:65
+#: dh_installmodules:117 dh_installpam:63 dh_installppp:69 dh_installudev:119
+#: dh_installwm:112 dh_installxfonts:91 dh_link:230 dh_listpackages:32
+#: dh_makeshlibs:260 dh_md5sums:92 dh_movefiles:172 dh_perl:150 dh_prep:62
+#: dh_python:282 dh_strip:244 dh_suidregister:119 dh_testdir:55 dh_testroot:29
 #: dh_undocumented:30 dh_usrlocal:118
 msgid "L<debhelper(7)>"
 msgstr "L<debhelper(7)>"
 
 # type: textblock
 #. type: textblock
-#: dh:973 dh_auto_build:51 dh_auto_clean:54 dh_auto_configure:56
+#: dh:974 dh_auto_build:51 dh_auto_clean:54 dh_auto_configure:56
 #: dh_auto_install:96 dh_auto_test:67 dh_bugfiles:130 dh_builddeb:128
 #: dh_clean:146 dh_compress:212 dh_desktop:35 dh_fixperms:131 dh_gconf:105
-#: dh_gencontrol:86 dh_icons:75 dh_install:264 dh_installchangelogs:243
-#: dh_installcron:83 dh_installdeb:144 dh_installdebconf:132 dh_installdirs:92
-#: dh_installdocs:337 dh_installemacsen:130 dh_installexamples:112
-#: dh_installifupdown:75 dh_installinfo:81 dh_installinit:325
-#: dh_installlogrotate:56 dh_installman:267 dh_installmanpages:201
-#: dh_installmenu:95 dh_installmime:67 dh_installmodules:119 dh_installpam:65
-#: dh_installppp:71 dh_installudev:121 dh_installwm:114 dh_installxfonts:93
-#: dh_link:232 dh_lintian:63 dh_listpackages:34 dh_makeshlibs:262
-#: dh_md5sums:94 dh_movefiles:174 dh_perl:152 dh_prep:64 dh_python:284
-#: dh_scrollkeeper:32 dh_shlibdeps:179 dh_strip:246 dh_suidregister:121
-#: dh_testdir:57 dh_testroot:31 dh_undocumented:32 dh_usrlocal:120
+#: dh_gencontrol:86 dh_icons:75 dh_install:280 dh_installchangelogs:243
+#: dh_installcron:83 dh_installdeb:144 dh_installdebconf:132
+#: dh_installdirs:107 dh_installdocs:337 dh_installemacsen:130
+#: dh_installexamples:112 dh_installifupdown:75 dh_installinfo:81
+#: dh_installinit:326 dh_installlogrotate:56 dh_installman:267
+#: dh_installmanpages:201 dh_installmenu:95 dh_installmime:67
+#: dh_installmodules:119 dh_installpam:65 dh_installppp:71 dh_installudev:121
+#: dh_installwm:114 dh_installxfonts:93 dh_link:232 dh_lintian:63
+#: dh_listpackages:34 dh_makeshlibs:262 dh_md5sums:94 dh_movefiles:174
+#: dh_perl:152 dh_prep:64 dh_python:284 dh_scrollkeeper:32 dh_shlibdeps:179
+#: dh_strip:246 dh_suidregister:121 dh_testdir:57 dh_testroot:31
+#: dh_undocumented:32 dh_usrlocal:120
 msgid "This program is a part of debhelper."
 msgstr "Ce programme fait partie de debhelper."
 
@@ -3049,7 +3050,7 @@ msgstr ""
 #. type: =head1
 #: dh_bugfiles:22 dh_clean:31 dh_compress:31 dh_gconf:23 dh_install:38
 #: dh_installcatalogs:35 dh_installchangelogs:35 dh_installcron:21
-#: dh_installdeb:22 dh_installdebconf:34 dh_installdirs:21 dh_installdocs:21
+#: dh_installdeb:22 dh_installdebconf:34 dh_installdirs:24 dh_installdocs:21
 #: dh_installemacsen:27 dh_installexamples:22 dh_installifupdown:22
 #: dh_installinfo:21 dh_installinit:27 dh_installlogcheck:21 dh_installman:51
 #: dh_installmenu:25 dh_installmime:21 dh_installmodules:28 dh_installpam:21
@@ -4105,13 +4106,13 @@ msgstr ""
 
 # type: =head1
 #. type: =head1
-#: dh_install:254
+#: dh_install:270
 msgid "LIMITATIONS"
 msgstr "LIMITES"
 
 # type: verbatim
 #. type: verbatim
-#: dh_install:256
+#: dh_install:272
 #, no-wrap
 msgid ""
 "B<dh_install> cannot rename files or directories, it can only install them\n"
@@ -4790,21 +4791,28 @@ msgstr ""
 "B<dh_installdirs> est le programme de la suite debhelper chargé de la "
 "création des sous-répertoires dans le répertoire de construction du paquet."
 
+#. type: textblock
+#: dh_installdirs:21
+msgid ""
+"When the environment variable B<DEB_BUILD_PROFILES> contains B<eos-app>, "
+"directories will be created in the app specific prefix of F</endless>."
+msgstr ""
+
 # type: =item
 #. type: =item
-#: dh_installdirs:25
+#: dh_installdirs:28
 msgid "debian/I<package>.dirs"
 msgstr "debian/I<paquet>.dirs"
 
 # type: textblock
 #. type: textblock
-#: dh_installdirs:27
+#: dh_installdirs:30
 msgid "Lists directories to be created in I<package>."
 msgstr "Liste les répertoires à créer dans I<package>."
 
 # type: textblock
 #. type: textblock
-#: dh_installdirs:37
+#: dh_installdirs:40
 msgid ""
 "Create any directories specified by command line parameters in ALL packages "
 "acted on, not just the first."
@@ -4814,13 +4822,13 @@ msgstr ""
 
 # type: =item
 #. type: =item
-#: dh_installdirs:40
+#: dh_installdirs:43
 msgid "I<dir> ..."
 msgstr "I<répertoire> ..."
 
 # type: textblock
 #. type: textblock
-#: dh_installdirs:42
+#: dh_installdirs:45
 msgid ""
 "Create these directories in the package build directory of the first package "
 "acted on. (Or in all packages if B<-A> is specified.)"
@@ -5748,18 +5756,18 @@ msgstr ""
 
 # type: =head1
 #. type: =head1
-#: dh_installinit:327
+#: dh_installinit:328
 msgid "AUTHORS"
 msgstr "AUTEURS"
 
 # type: textblock
 #. type: textblock
-#: dh_installinit:331
+#: dh_installinit:332
 msgid "Steve Langasek <steve.langasek at canonical.com>"
 msgstr "Steve Langasek <steve.langasek at canonical.com>"
 
 #. type: textblock
-#: dh_installinit:333
+#: dh_installinit:334
 msgid "Michael Stapelberg <stapelberg at debian.org>"
 msgstr "Michael Stapelberg <stapelberg at debian.org>"
 
@@ -6098,8 +6106,8 @@ msgstr ""
 #: dh_installmanpages:23
 msgid ""
 "This is a DWIM-style program, with an interface unlike the rest of "
-"debhelper. It is deprecated, and you are encouraged to use "
-"L<dh_installman(1)> instead."
+"debhelper. It is deprecated, and you are encouraged to use L<dh_installman(1)"
+"> instead."
 msgstr ""
 "C'est un programme de style DWIM, possédant une interface différente du "
 "reste de la suite debhelper. Son usage est déconseillé et il faut lui "
@@ -6175,8 +6183,8 @@ msgstr ""
 "B<dh_installmanpages> installe les pages de manuel qu'il trouve dans B<tous> "
 "les paquets traités puisqu'on ne peut pas préciser à quel paquet les pages "
 "de manuel appartiennent. Ce n'est presque jamais ce qui est désiré. (On peut "
-"employer B<-p> pour s'en sortir, mais il vaut mieux utiliser "
-"L<dh_installman(1)>.)"
+"employer B<-p> pour s'en sortir, mais il vaut mieux utiliser L<dh_installman"
+"(1)>.)"
 
 # type: textblock
 #. type: textblock
@@ -6370,15 +6378,15 @@ msgid ""
 "Kernel modules are searched for in the package build directory and if found, "
 "F<preinst>, F<postinst> and F<postrm> commands are automatically generated "
 "to run B<depmod> and register the modules when the package is installed.  "
-"These commands are inserted into the maintainer scripts by "
-"L<dh_installdeb(1)>."
+"These commands are inserted into the maintainer scripts by L<dh_installdeb(1)"
+">."
 msgstr ""
 "Des modules de noyau sont recherchés dans le répertoire de construction du "
 "paquet et, s'il s'en trouve, les commandes des scripts F<preinst>, "
 "F<postinst> et F<postrm> sont automatiquement produites afin d'exécuter "
 "B<depmod> et d'inscrire les modules lors de l'installation du paquet. Ces "
-"commandes sont insérées dans les scripts de maintenance par "
-"L<dh_installdeb(1)>."
+"commandes sont insérées dans les scripts de maintenance par L<dh_installdeb"
+"(1)>."
 
 # type: =item
 #. type: =item
@@ -6642,11 +6650,11 @@ msgid ""
 msgstr ""
 "B<dh_installwm> est le programme de la suite debhelper chargé de produire "
 "les lignes de code pour les fichiers de maintenance F<postinst> et F<prerm> "
-"permettant d'inscrire un gestionnaire de fenêtre avec L<update-"
-"alternatives(8)>. La page de manuel du gestionnaire de fenêtres (window "
-"manager) est également inscrite en tant que lien symbolique esclave (à "
-"partir de la version 6) si elle est trouvée sous F<usr/share/man/man1/> dans "
-"le répertoire de construction du paquet."
+"permettant d'inscrire un gestionnaire de fenêtre avec L<update-alternatives"
+"(8)>. La page de manuel du gestionnaire de fenêtres (window manager) est "
+"également inscrite en tant que lien symbolique esclave (à partir de la "
+"version 6) si elle est trouvée sous F<usr/share/man/man1/> dans le "
+"répertoire de construction du paquet."
 
 # type: =item
 #. type: =item
@@ -6831,12 +6839,12 @@ msgstr ""
 #: dh_link:27
 msgid ""
 "Be sure you B<do> specify the full filename to both the source and "
-"destination files (unlike you would do if you were using something like "
-"L<ln(1)>)."
+"destination files (unlike you would do if you were using something like L<ln"
+"(1)>)."
 msgstr ""
 "Il faut B<absolument> indiquer le nom complet des sources et des "
-"destinations, contrairement à l'usage habituel des commandes telles que "
-"L<ln(1)>."
+"destinations, contrairement à l'usage habituel des commandes telles que L<ln"
+"(1)>."
 
 # type: textblock
 #. type: textblock
@@ -7081,11 +7089,11 @@ msgstr ""
 #. type: textblock
 #: dh_makeshlibs:14
 msgid ""
-"B<dh_makeshlibs> [S<I<debhelper options>>] [B<-m>I<major>] [B<-"
-"V>I<[dependencies]>] [B<-n>] [B<-X>I<item>] [S<B<--> I<params>>]"
+"B<dh_makeshlibs> [S<I<debhelper options>>] [B<-m>I<major>] [B<-V>I<"
+"[dependencies]>] [B<-n>] [B<-X>I<item>] [S<B<--> I<params>>]"
 msgstr ""
-"B<dh_makeshlibs> [I<options de debhelper>] [B<-m>I<numéro-majeur>] [B<-"
-"V>I<[dépendances]>] [B<-n>] [B<-X>I<élément>] [B<--> I<paramètres>]"
+"B<dh_makeshlibs> [I<options de debhelper>] [B<-m>I<numéro-majeur>] [B<-V>I<"
+"[dépendances]>] [B<-n>] [B<-X>I<élément>] [B<--> I<paramètres>]"
 
 # type: textblock
 #. type: textblock
@@ -7143,10 +7151,10 @@ msgid ""
 "processed and installed. Use the I<arch> specific names if you need to "
 "provide different symbols files for different architectures."
 msgstr ""
-"Ces fichiers de symboles, s'ils existent, sont transmis à L<dpkg-"
-"gensymbols(1)> pour être traités et installés. Préciser le nom de "
-"l'architecture avec I<arch> s'il est nécessaire de fournir des fichiers de "
-"symboles différents pour diverses architectures."
+"Ces fichiers de symboles, s'ils existent, sont transmis à L<dpkg-gensymbols"
+"(1)> pour être traités et installés. Préciser le nom de l'architecture avec "
+"I<arch> s'il est nécessaire de fournir des fichiers de symboles différents "
+"pour diverses architectures."
 
 # type: =item
 #. type: =item

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debhelper/debhelper.git




More information about the debhelper-devel mailing list