]> git.donarmstrong.com Git - debhelper.git/blob - dh_link
r190: Initial Import
[debhelper.git] / dh_link
1 #!/usr/bin/perl -w
2 #
3 # Generate symlinks in debian packages, reading debian/links. The
4 # file contains pairs of files and symlinks.
5
6 BEGIN { push @INC, "debian", "/usr/lib/debhelper" }
7 use Dh_Lib;
8 init();
9
10 foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
11         $TMP=tmpdir($PACKAGE);
12         $file=pkgfile($PACKAGE,"links");
13
14         undef @links;
15         if ($file) {
16                 @links=filearray($file);
17         }
18
19         # Make sure it has pairs of symlinks and destinations. If it
20         # doesn't, $#links will be _odd_ (not even, -- it's zero-based).
21         if (int($#links/2) eq $#links/2) {
22                 error("$file lists a link without a destination.");
23         }
24
25         if (($PACKAGE eq $dh{FIRSTPACKAGE} || $dh{PARAMS_ALL}) && @ARGV) {
26                 push @links, @ARGV;
27         }
28
29         # Same test as above, including arguments this time.
30         if (int($#links/2) eq $#links/2) {
31                 error("parameters list a link without a destination.");
32         }
33
34         while (@links) {
35                 $dest=pop @links;
36                 $src=pop @links;
37
38                 # Make sure the directory the link will be in exists.
39                 $basedir=Dh_Lib::dirname("$TMP/$dest");
40                 if (! -e $basedir) {
41                         doit("install","-d",$basedir);
42                 }
43                 
44                 # Policy says that if the link is all within one toplevel
45                 # directory, it should be relative. If it's between
46                 # top level directories, leave it absolute.
47                 @src_dirs=split(m:/+:,$src);
48                 @dest_dirs=split(m:/+:,$dest);
49                 if ($src_dirs[0] eq $dest_dirs[0]) {
50                         # Figure out how much of a path $src and $dest
51                         # share in common.
52                         for ($x=0; $x<$#src_dirs && $src_dirs[$x] eq $dest_dirs[$x]; $x++) {}
53
54                         # Build up the new src.
55                         $src="";
56                         for (1..$#dest_dirs - $x) {
57                                 $src.="../";
58                         }
59                         for ($x .. $#src_dirs) {
60                                 $src.=$src_dirs[$_]."/";
61                         }
62                         $src=~s:/$::;
63                 }
64                 
65                 doit("ln","-sf",$src,"$TMP/$dest");
66         }
67 }