]> git.donarmstrong.com Git - debhelper.git/blob - dh_link
r1695: * dh_gconf: gconf schemas moved to /usr/share/gconf/schemas. Relocate
[debhelper.git] / dh_link
1 #!/usr/bin/perl -w
2
3 =head1 NAME
4
5 dh_link - create symlinks in 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_link> [S<I<debhelper options>>] [B<-A>] [S<I<source destination ...>>]
16
17 =head1 DESCRIPTION
18
19 dh_link is a debhelper program that creates symlinks in package build
20 directories.
21
22 dh_link accepts a list of pairs of source and destination files. The source
23 files are the already existing files that will be symlinked from. The
24 destination files are the symlinks that will be created. There B<must> be
25 an equal number of source and destination files specified.
26
27 The list can be specified in two ways. A file named debian/package.links
28 can list pairs of files. If you use this file, you should put each pair
29 of files on its own line, and separate the files within the pair with
30 whitespace. Also, pairs of files can be specified as parameters - these
31 pairs will only be created in the package build directory of the first
32 package dh_link is told to act on. By default, this is the first binary
33 package in debian/control, but if you use -p, -i, or -a flags, it will be
34 the first package specified by those flags.
35
36 Be sure you B<do> specify the full filename to both the source and
37 destination files (unlike you would do if you were using something like
38 L<ln(1)>).
39
40 dh_link will generate symlinks that comply with debian policy - absolute
41 when policy says they should be absolute, and relative links with as short
42 a path as possible. It will also create any subdirectories it needs to to put
43 the symlinks in.
44
45 dh_link also scans the package build tree for existing symlinks which do not
46 conform to debian policy, and corrects them (v4 only).
47
48 =head1 OPTIONS
49
50 =over 4
51
52 =item B<-A>, B<--all>
53
54 Create any links specified by command line parameters in ALL packages
55 acted on, not just the first.
56
57 =item I<source destination ...>
58
59 Create a file named "destination" as a link to a file named "source". Do
60 this in the package build directory of the first package acted on.
61 (Or in all packages if -A is specified.)
62
63 =back
64
65 =head1 EXAMPLES
66
67  dh_link usr/share/man/man1/foo.1 usr/share/man/man1/bar.1
68
69 Make bar.1 be a symlink to foo.1
70
71  dh_link var/lib/foo usr/lib/foo \
72    usr/X11R6/man/man1/foo.1x usr/share/man/man1/bar.1
73
74 Make /usr/lib/foo/ be a link to /var/lib/foo/, and bar.1 be a symlink to
75 the X man page foo.1x
76
77 =cut
78
79 # This expand_path expands all path "." and ".." components, but doesn't
80 # resolve symbolic links.
81 sub expand_path {
82         my $start = @_ ? shift : '.';
83         my @pathname = split(m:/+:,$start);
84
85         my $entry;
86         my @respath;
87         foreach $entry (@pathname) {
88                 if ($entry eq '.' || $entry eq '') {
89                         # Do nothing
90                 }
91                 elsif ($entry eq '..') {
92                         if ($#respath == -1) {
93                                 # Do nothing
94                         }
95                         else {
96                                 pop @respath;
97                         }
98                 }
99                 else {
100                         push @respath, $entry;
101                 }
102         }
103
104         my $result;
105         foreach $entry (@respath) {
106                 $result .= '/' . $entry;
107         }
108         return $result;
109 }
110
111
112 init();
113
114 foreach my $package (@{$dh{DOPACKAGES}}) {
115         my $tmp=tmpdir($package);
116         my $file=pkgfile($package,"links");
117
118         my @links;
119         if ($file) {
120                 @links=filearray($file);
121         }
122
123         # Make sure it has pairs of symlinks and destinations. If it
124         # doesn't, $#links will be _odd_ (not even, -- it's zero-based).
125         if (int($#links/2) eq $#links/2) {
126                 error("$file lists a link without a destination.");
127         }
128
129         if (($package eq $dh{FIRSTPACKAGE} || $dh{PARAMS_ALL}) && @ARGV) {
130                 push @links, @ARGV;
131         }
132
133         # Same test as above, including arguments this time.
134         if (int($#links/2) eq $#links/2) {
135                 error("parameters list a link without a destination.");
136         }
137
138         # v4 only and only if there is a temp dir already
139         if (! compat(3) && -e $tmp) {
140                 # Scan for existing links and add them to @links, so they
141                 # are recreated policy conformant.
142                 find(
143                         sub {
144                                 return unless -l;
145                                 my $dir=$File::Find::dir;
146                                 $dir=~s/^\Q$tmp\E//;
147                                 my $target = readlink($_);
148                                 if ($target=~/^\//) {
149                                         push @links, $target;
150                                 }
151                                 else {
152                                         push @links, "$dir/$target";
153                                 }
154                                 push @links, "$dir/$_";
155                                 
156                         },
157                         $tmp);
158         }
159         
160         while (@links) {
161                 my $dest=pop @links;
162                 my $src=expand_path(pop @links);
163
164                 $src=~s:^/::;
165                 $dest=~s:^/::;
166
167                 # Make sure the directory the link will be in exists.
168                 my $basedir=dirname("$tmp/$dest");
169                 if (! -e $basedir) {
170                         doit("install","-d",$basedir);
171                 }
172                 
173                 # Policy says that if the link is all within one toplevel
174                 # directory, it should be relative. If it's between
175                 # top level directories, leave it absolute.
176                 my @src_dirs=split(m:/+:,$src);
177                 my @dest_dirs=split(m:/+:,$dest);
178                 if ($src_dirs[0] eq $dest_dirs[0]) {
179                         # Figure out how much of a path $src and $dest
180                         # share in common.
181                         my $x;
182                         for ($x=0; $x<$#src_dirs && $src_dirs[$x] eq $dest_dirs[$x]; $x++) {}
183                         # Build up the new src.
184                         $src="";
185                         for (1..$#dest_dirs - $x) {
186                                 $src.="../";
187                         }
188                         for ($x .. $#src_dirs) {
189                                 $src.=$src_dirs[$_]."/";
190                         }
191                         $src=~s:/$::;
192                 }
193                 else {
194                         # Make sure it's properly absolute.
195                         $src="/$src";
196                 }
197
198                 if (-d "$tmp/$dest" && ! -l "$tmp/$dest") {
199                         error("link destination $tmp/$dest is a directory");
200                 }
201                 doit("rm", "-f", "$tmp/$dest");
202                 doit("ln","-sf", $src, "$tmp/$dest");
203         }
204 }
205
206 =head1 SEE ALSO
207
208 L<debhelper(7)>
209
210 This program is a part of debhelper.
211
212 =head1 AUTHOR
213
214 Joey Hess <joeyh@debian.org>
215
216 =cut