]> git.donarmstrong.com Git - debhelper.git/blobdiff - dh_installinfo
r423: podized man page
[debhelper.git] / dh_installinfo
index 55deb3625310a63b2e7c363d1b4c0ff75be9cfc4..702f4ee8af78fecbc99dfaf12bbdbaf7f24eae17 100755 (executable)
@@ -3,37 +3,37 @@
 # Reads debian/info, installs all files listed there into /usr/share/info
 # and puts appropriate commands into the postinst.
 
-BEGIN { push @INC, "debian", "/usr/share/debhelper" }
-use Dh_Lib;
+use strict;
+use Debian::Debhelper::Dh_Lib;
 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);
+               @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");
+               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/");
+               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=~/\.info$/ && ! $dh{NOSCRIPTS}) {
+               if ($file !~ /-\d+$/ && ! $dh{NOSCRIPTS}) {
                        # Figure out what section this file goes in.
                        my $section='';
                        open (IN, "<$file") || die "$file: $!";
@@ -45,17 +45,18 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
                        }
                        close IN;
                        
-                       my $fn="/usr/share/info/".Dh_Lib::basename($file);
+                       my $fn="/usr/share/info/".basename($file);
                        
                        if ($section ne '') {
-                               autoscript($PACKAGE,"postinst","postinst-info",
+                               $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",
+                               autoscript($package,"postinst","postinst-info-nosection",
                                        "s:#FILE#:$fn:");
                        }
-                       autoscript($PACKAGE,"prerm","prerm-info", "s:#FILE#:$fn:");
+                       autoscript($package,"prerm","prerm-info", "s:#FILE#:$fn:");
                }
        }
 }