5 dh_makeshlibs - automatically create shlibs file and call dpkg-gensymbols
10 use Debian::Debhelper::Dh_Lib;
14 B<dh_makeshlibs> [S<I<debhelper options>>] [B<-m>I<major>] [B<-V>I<[dependencies]>] [B<-n>] [B<-X>I<item>] [S<B<--> I<params>>]
18 dh_makeshlibs is a debhelper program that automatically scans for shared
19 libraries, and generates a shlibs file for the libraries it finds.
21 It also adds a call to ldconfig in the postinst and postrm scripts (in
22 V3 mode and above only) to any packages in which it finds shared libraries.
28 =item debian/I<package>.symbols
30 =item debian/I<package>.symbols.I<arch>
32 These symbols files, if present, are passed to L<dpkg-gensymbols(1)> to
33 be processed and installed. Use the I<arch> specific names if you need
34 to provide different symbols files for different architectures.
42 =item B<-m>I<major>, B<--major=>I<major>
44 Instead of trying to guess the major number of the library with objdump,
45 use the major number specified after the -m parameter. This is much less
46 useful than it used to be, back in the bad old days when this program
47 looked at library filenames rather than using objdump.
49 =item B<-V>, B<-V>I<dependencies>
51 =item B<--version-info>, B<--version-info=>I<dependencies>
53 By default, the shlibs file generated by this program does not make packages
54 depend on any particular version of the package containing the shared
55 library. It may be necessary for you to add some version dependancy
56 information to the shlibs file. If -V is specified with no dependency
57 information, the current upstream version of the package is plugged into a
58 dependency that looks like "packagename (>= packageversion)". Note that in
59 debhelper compatibility levels before v4, the debian part of the package
60 version number is also included. If -V is specified with parameters, the
61 parameters can be used to specify the exact dependency information needed
62 (be sure to include the package name).
64 Beware of using -V without any parameters; this is a conservative setting
65 that always ensures that other packages' shared library dependencies are at
66 least as tight as they need to be (unless your library is prone to changing
67 ABI without updating the upstream version number), so that if the
68 maintainer screws up then they won't break. The flip side is that packages
69 might end up with dependencies that are too tight and so find it harder to
72 =item B<-n>, B<--noscripts>
74 Do not modify postinst/postrm scripts.
76 =item B<-X>I<item>, B<--exclude=>I<item>
78 Exclude files that contain "item" anywhere in their filename or directory
79 from being treated as shared libraries.
81 =item B<--add-udeb=>I<udeb>
83 Create an additional line for udebs in the shlibs file and use "udeb" as the
84 package name for udebs to depend on instead of the regular library package.
88 Pass "params" to L<dpkg-gensymbols(1)>.
98 Assuming this is a package named libfoobar1, generates a shlibs file that
100 libfoobar 1 libfoobar1
102 =item dh_makeshlibs -V
104 Assuming the current version of the package is 1.1-3, generates a shlibs
105 file that looks something like:
106 libfoobar 1 libfoobar1 (>= 1.1)
108 =item dh_makeshlibs -V 'libfoobar1 (>= 1.0)'
110 Generates a shlibs file that looks something like:
111 libfoobar 1 libfoobar1 (>= 1.0)
118 "m=s", => \$dh{M_PARAMS},
119 "major=s" => \$dh{M_PARAMS},
120 "version-info:s" => \$dh{V_FLAG},
121 "add-udeb=s" => \$dh{SHLIBS_UDEB},
124 foreach my $package (@{$dh{DOPACKAGES}}) {
125 next if is_udeb($package);
127 my $tmp=tmpdir($package);
130 my $need_ldconfig = 0;
132 doit("rm", "-f", "$tmp/DEBIAN/shlibs");
134 # So, we look for files or links to existing files with names that
135 # match "*.so*". Matching *.so.* is not good enough because of
136 # broken crap like db3. And we only look at real files not
137 # symlinks, so we don't accidentually add shlibs data to -dev
138 # packages. This may have a few false positives, which is ok,
139 # because only if we can get a library name and a major number from
140 # objdump is anything actually added.
142 my (@udeb_lines, @lib_files);
143 if (defined($dh{EXCLUDE_FIND}) && $dh{EXCLUDE_FIND} ne '') {
144 $exclude="! \\( $dh{EXCLUDE_FIND} \\) ";
146 open (FIND, "find $tmp -type f \\( -name '*.so' -or -name '*.so.*' \\) $exclude |");
148 my ($library, $major);
150 my $objdump=`objdump -p $_`;
151 if ($objdump=~m/\s+SONAME\s+(.+)\.so\.(.+)/) {
152 # proper soname format
156 elsif ($objdump=~m/\s+SONAME\s+(.+)-(.+)\.so/) {
157 # idiotic crap soname format
162 if (defined($dh{M_PARAMS}) && $dh{M_PARAMS} ne '') {
163 $major=$dh{M_PARAMS};
166 if (! -d "$tmp/DEBIAN") {
167 doit("install","-d","$tmp/DEBIAN");
170 if ($dh{V_FLAG_SET}) {
171 if ($dh{V_FLAG} ne '') {
175 # Call isnative becuase it sets $dh{VERSION}
178 my $version = $dh{VERSION};
179 # Old compatibility levels include the
180 # debian revision, while new do not.
182 # Remove debian version, if any.
183 $version =~ s/-[^-]+$//;
185 $deps="$package (>= $version)";
188 if (defined($library) && defined($major) && defined($deps) &&
189 $library ne '' && $major ne '' && $deps ne '') {
191 # Prevent duplicate lines from entering the file.
192 my $line="$library $major $deps";
193 if (! $seen{$line}) {
195 complex_doit("echo '$line' >>$tmp/DEBIAN/shlibs");
196 if (defined($dh{SHLIBS_UDEB}) && $dh{SHLIBS_UDEB} ne '') {
197 my $udeb_deps = $deps;
198 $udeb_deps =~ s/\Q$package\E/$dh{SHLIBS_UDEB}/e;
199 $line="udeb: "."$library $major $udeb_deps";
200 push @udeb_lines, $line;
207 # Write udeb: lines last.
208 foreach (@udeb_lines) {
209 complex_doit("echo '$_' >>$tmp/DEBIAN/shlibs");
213 if (! compat(2) && ! $dh{NOSCRIPTS} && $need_ldconfig) {
214 autoscript($package,"postinst","postinst-makeshlibs");
215 autoscript($package,"postrm","postrm-makeshlibs");
218 if (-e "$tmp/DEBIAN/shlibs") {
219 doit("chmod",644,"$tmp/DEBIAN/shlibs");
220 doit("chown","0:0","$tmp/DEBIAN/shlibs");
223 # dpkg-gensymbols files
224 my $symbols=pkgfile($package, "symbols");
226 # -I is used rather than using dpkg-gensymbols
227 # own search for symbols files, since that search
228 # is not 100% compatible with debhelper. (For example,
229 # this supports --ignore being used.)
230 doit("dpkg-gensymbols", "-p$package", "-I$symbols",
231 "-P$tmp", (map { "-e$_" } @lib_files),
233 if (-s "$tmp/DEBIAN/symbols" == 0) {
234 doit("rm", "-f", "$tmp/DEBIAN/symbols");
243 This program is a part of debhelper.
247 Joey Hess <joeyh@debian.org>