]> git.donarmstrong.com Git - debhelper.git/blob - dh_installman
Merge branch 'dh_overrides'
[debhelper.git] / dh_installman
1 #!/usr/bin/perl -w
2
3 =head1 NAME
4
5 dh_installman - install man pages into package build directories
6
7 =cut
8
9 use strict;
10 use File::Find;
11 use Debian::Debhelper::Dh_Lib;
12
13 =head1 SYNOPSIS
14
15 B<dh_installman> [S<I<debhelper options>>] [S<I<manpage ...>>]
16
17 =head1 DESCRIPTION
18
19 dh_installman is a debhelper program that handles installing
20 man pages into the correct locations in package build directories. You tell
21 it what man pages go in your packages, and it figures out where to
22 install them based on the section field in their .TH line. If you have a
23 properly formatted .TH line, your man page will be installed into the right
24 directory, with the right name (this includes proper handling of pages
25 with a subsection, like "3perl", which are placed in man3, and given an
26 extension of ".3perl"). If your .TH line is incorrect or missing, the program
27 may guess wrong based on the file extension.
28
29 It also supports translated man pages, by looking for extensions
30 like .ll.8 and .ll_LL.8, or by use of the --language switch.
31
32 If dh_installman seems to install a man page into the wrong section or with
33 the wrong extension, this is because the man page has the wrong section
34 listed in its .TH line. Edit the man page and correct the section, and
35 dh_installman will follow suit.  See L<man(7)> for details about the .TH
36 section. If dh_installman seems to install a man page into a directory
37 like /usr/share/man/pl/man1/, that is because your program has a
38 name like "foo.pl", and dh_installman assumes that means it is translated
39 into Polish. Use --language=C to avoid this.
40
41 Any man page filenames specified as parameters will be installed into the
42 first package dh_installman is told to act on. By default, this is the
43 first binary package in debian/control, but if you use -p, -i, or -a flags,
44 it will be the first package specified by those flags.
45
46 Files named debian/package.manpages can list other man pages to be
47 installed.
48
49 After the man page installation step, dh_installman will check to see if
50 any of the man pages in the temporary directories of any of the packages it
51 is acting on contain ".so" links. If so, it changes them to symlinks.
52
53 Also, dh_installman will use man to guess the character encoding of each
54 manual page and convert it to UTF-8. If the guesswork fails for some
55 reason, you can override it using an encoding declaration. See
56 L<manconv(1)> for details.
57
58 =head1 OPTIONS
59
60 =over 4
61
62 =item B<-A>, B<--all>
63
64 Install all files specified by command line parameters in ALL packages
65 acted on.
66
67 =item B<--language>=ll
68
69 Use this to specify that the man pages being acted on are written in the
70 specified language.
71
72 =item I<manpage ...>
73
74 Install these man pages into the first package acted on. (Or in all
75 packages if -A is specified).
76
77 =back
78
79 =head1 NOTES
80
81 An older version of this program, L<dh_installmanpages(1)>, is still used
82 by some packages, and so is still included in debhelper.
83 It is, however, deprecated, due to its counterintuitive and inconsistent
84 interface. Use this program instead.
85
86 =cut
87
88 init(options => {
89         "language=s" => \$dh{LANGUAGE},
90 });
91
92 my @sofiles;
93 my @sodests;
94
95 foreach my $package (@{$dh{DOPACKAGES}}) {
96         next if is_udeb($package);
97
98         my $tmp=tmpdir($package);
99         my $file=pkgfile($package,"manpages");
100         my @manpages;
101
102         @manpages=filearray($file, ".") if $file;
103
104         if (($package eq $dh{FIRSTPACKAGE} || $dh{PARAMS_ALL}) && @ARGV) {
105                 push @manpages, @ARGV;
106         }
107
108         foreach my $page (@manpages) {
109                 my $basename=basename($page);
110
111                 # Support compressed pages.
112                 my $gz='';
113                 if ($basename=~m/(.*)(\.gz)/) {
114                         $basename=$1;
115                         $gz=$2;
116                 }
117
118                 my $section;
119                 # See if there is a .TH entry in the man page. If so,
120                 # we'll pull the section field from that.
121                 if ($gz) {
122                         open (IN, "zcat $page|") or die "$page: $!";
123                 }
124                 else {
125                         open (IN, $page) or die "$page: $!";
126                 }
127                 while (<IN>) {
128                         if (/^\.TH\s+\S+\s+"?(\d+[^"\s]*)"?/) {
129                                 $section=$1;
130                                 last;
131                         }
132                 }
133                 # Failing that, we can try to get it from the filename.
134                 if (! $section) {
135                         ($section)=$basename=~m/.*\.([1-9]\S*)/;
136                 }
137
138                 # Now get the numeric component of the section.
139                 my ($realsection)=$section=~m/^(\d)/ if defined $section;
140                 if (! $realsection) {
141                         error("Could not determine section for $page");
142                 }
143                 
144                 # Get the man page's name -- everything up to the last dot.
145                 my ($instname)=$basename=~m/^(.*)\./;
146         
147                 my $destdir="$tmp/usr/share/man/man$realsection/";
148                 my $langcode;
149                 if (! defined $dh{LANGUAGE} || ! exists $dh{LANGUAGE}) {
150                         # Translated man pages are typically specified by adding the
151                         # language code to the filename, so detect that and
152                         # redirect to appropriate directory, stripping the code.
153                         ($langcode)=$basename=~m/.*\.([a-z][a-z](?:_[A-Z][A-Z])?)\.(?:[1-9]|man)/;
154                 }
155                 elsif ($dh{LANGUAGE} ne 'C') {
156                         $langcode=$dh{LANGUAGE};
157                 }
158                 
159                 if (defined $langcode && $langcode ne '') {
160                         # Strip the language code from the instname.
161                         $instname=~s/\.$langcode$//;
162                 }
163                 
164                 if (defined $langcode && $langcode ne '') {
165                         $destdir="$tmp/usr/share/man/$langcode/man$realsection/";
166                 }
167                 $destdir=~tr:/:/:s; # just for looks
168                 my $instpage="$destdir/$instname.$section";
169
170                 next if -l $instpage;
171                 next if compat(5) && -e $instpage;
172
173                 if (! -d $destdir) {
174                         doit "install","-d",$destdir;
175                 }
176                 if ($gz) {
177                         complex_doit "zcat \Q$page\E > \Q$instpage\E";
178                 }
179                 else {
180                         doit "install","-p","-m644",$page,$instpage;
181                 }
182         }
183
184         # Now the .so conversion.
185         @sofiles=@sodests=();
186         foreach my $dir (qw{usr/share/man usr/X11R6/man}) {
187                 if (-e "$tmp/$dir") {
188                         find(\&find_so_man, "$tmp/$dir");
189                 }
190         }
191         foreach my $sofile (@sofiles) {
192                 my $sodest=shift(@sodests);
193                 doit "rm","-f",$sofile;
194                 doit "ln","-sf",$sodest,$sofile;
195         }
196
197         # Now utf-8 conversion.
198         foreach my $dir (qw{usr/share/man usr/X11R6/man}) {
199                 if (-e "$tmp/$dir") {
200                         find(sub {
201                                 return if ! -f $_ || -l $_;
202                                 my ($tmp, $orig)=($_.".new", $_);
203                                 complex_doit "man --recode UTF-8 ./\Q$orig\E > \Q$tmp\E";
204                                 # recode uncompresses compressed pages
205                                 doit "rm", "-f", $orig if s/\.(gz|Z)$//;
206                                 doit "chmod", 644, $tmp;
207                                 doit "mv", "-f", $tmp, $_;
208                         }, "$tmp/$dir");
209                 }
210         }
211 }
212
213 # Check if a file is a .so man page, for use by File::Find.
214 sub find_so_man {
215         # The -s test is becuase a .so file tends to be small. We don't want
216         # to open every man page. 1024 is arbitrary.
217         if (! -f $_ || -s $_ > 1024 || -s == 0) {
218                 return;
219         }
220
221         # Test first line of file for the .so thing.
222         if (/\.gz$/) {
223                 open (SOTEST, "zcat $_|") or die "$_: $!";
224         }
225         else {
226                 open (SOTEST,$_) || die "$_: $!";
227         }
228         my $l=<SOTEST>;
229         close SOTEST;
230
231         if (! defined $l) {
232                 error("failed to read $_");
233         }
234         
235         if ($l=~m/\.so\s+(.*)\s*/) {
236                 my $solink=$1;
237                 # This test is here to prevent links like ... man8/../man8/foo.8
238                 if (basename($File::Find::dir) eq
239                     dirname($solink)) {
240                         $solink=basename($solink);
241                 }
242                 else {
243                         $solink="../$solink";
244                 }
245         
246                 push @sofiles,"$File::Find::dir/$_";
247                 push @sodests,$solink;
248         }
249 }
250
251 =head1 SEE ALSO
252
253 L<debhelper(7)>
254
255 This program is a part of debhelper.
256
257 =head1 AUTHOR
258
259 Joey Hess <joeyh@debian.org>
260
261 =cut