X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=dh_installinfo;h=91ca96bbc10abc33ebde04d481d9ab3c018ec588;hb=e2a6d4cec4a7ee952cf6a7f250d80f1d75a38f95;hp=146aede996a4802571836ec99e0baff473e52b8b;hpb=c577623cfbfa6aedbe12da4b96759864ae6f466d;p=debhelper.git diff --git a/dh_installinfo b/dh_installinfo index 146aede..91ca96b 100755 --- a/dh_installinfo +++ b/dh_installinfo @@ -1,61 +1,87 @@ #!/usr/bin/perl -w -# -# Reads debian/info, installs all files listed there into /usr/share/info -# and puts appropriate commands into the postinst. +=head1 NAME + +dh_installinfo - install info files + +=cut + +use strict; use Debian::Debhelper::Dh_Lib; + +=head1 SYNOPSIS + +B [S>] [B<-A>] [S ...>] + +=head1 DESCRIPTION + +B is a debhelper program that is responsible for installing +info files into F in the package build directory. + +=head1 FILES + +=over 4 + +=item debian/I.info + +List info files to be installed. + +=back + +=head1 OPTIONS + +=over 4 + +=item B<-A>, B<--all> + +Install all files specified by command line parameters in ALL packages +acted on. + +=item I ... + +Install these info files into the first package acted on. (Or in +all packages if B<-A> is specified). + +=back + +=cut + init(); -foreach $PACKAGE (@{$dh{DOPACKAGES}}) { - $TMP=tmpdir($PACKAGE); - $file=pkgfile($PACKAGE,"info"); +foreach my $package (@{$dh{DOPACKAGES}}) { + my $tmp=tmpdir($package); + my $file=pkgfile($package,"info"); - undef @info; + my @info; if ($file) { @info=filearray($file, "."); } - if (($PACKAGE eq $dh{FIRSTPACKAGE} || $dh{PARAMS_ALL}) && @ARGV) { + if (($package eq $dh{FIRSTPACKAGE} || $dh{PARAMS_ALL}) && @ARGV) { push @info, @ARGV; } if (@info) { - if ( ! -d "$TMP/usr/share/info") { - doit("install","-d","$TMP/usr/share/info"); - } - doit("cp",@info,"$TMP/usr/share/info"); - doit("chmod","-R", "go=rX","$TMP/usr/share/info/"); - doit("chmod","-R", "u+rw","$TMP/usr/share/info/"); - } - - foreach $file (@info) { - # Only register with install-info if this is a head file in - # a tree of info files. - if ($file !~ /-\d+$/ && ! $dh{NOSCRIPTS}) { - # Figure out what section this file goes in. - my $section=''; - open (IN, "<$file") || die "$file: $!"; - while () { - if (/INFO-DIR-SECTION\s+(.*)/) { - $section=$1; - last; - } - } - close IN; - - my $fn="/usr/share/info/".Debian::Debhelper::Dh_Lib::basename($file); - - if ($section ne '') { - $section=~s:/:\\/:g; # allow / in section. - autoscript($PACKAGE,"postinst","postinst-info", - "s/#SECTION#/$section/g;s:#FILE#:$fn:"); - } - else { - autoscript($PACKAGE,"postinst","postinst-info-nosection", - "s:#FILE#:$fn:"); - } - autoscript($PACKAGE,"prerm","prerm-info", "s:#FILE#:$fn:"); + if ( ! -d "$tmp/usr/share/info") { + doit("install","-d","$tmp/usr/share/info"); } + doit("cp",@info,"$tmp/usr/share/info"); + doit("chmod","-R", "go=rX","$tmp/usr/share/info/"); + doit("chmod","-R", "u+rw","$tmp/usr/share/info/"); + # For transition, could be removed later. + addsubstvar($package, "misc:Depends", "dpkg (>= 1.15.4) | install-info"); } } + +=head1 SEE ALSO + +L + +This program is a part of debhelper. + +=head1 AUTHOR + +Joey Hess + +=cut