]> git.donarmstrong.com Git - debhelper.git/blob - dh_gencontrol
r461: * Documented -isp, Closes: #93983
[debhelper.git] / dh_gencontrol
1 #!/usr/bin/perl -w
2
3 =head1 NAME
4
5 dh_gencontrol - generate and install control file
6
7 =cut
8
9 use strict;
10 use Debian::Debhelper::Dh_Lib;
11
12 =head1 SYNOPSIS
13
14   dh_gencontrol [debhelper options] [-uparams] [-- params]
15
16 =head1 DESCRIPTION
17
18 dh_gencontrol is a debhelper program that is responsible for generating
19 control files, and installing them into the DEBIAN directory with the
20 proper permissions.
21
22 This program is merely a wrapper around L<dpkg-gencontrol(1)>, which calls
23 it once for each package being acted on, and passes in some additional
24 useful flags including "-isp".
25
26 =head1 OPTIONS
27
28 =over 4
29
30 =item B<-u>I<params>, B<--dpkg-gencontrol-params>I<params>
31
32 =item B<--> I<params>
33
34 Pass "params" to L<dpkg-gencontrol(1)>.
35
36 =back
37
38 =cut
39
40 init();
41
42 foreach my $package (@{$dh{DOPACKAGES}}) {
43         my $tmp=tmpdir($package);
44         my $ext=pkgext($package);
45         
46         my $changelog=pkgfile($package,'changelog');
47         if (! $changelog) {
48                 $changelog='debian/changelog';
49         }
50
51         if ( ! -d "$tmp/DEBIAN" ) {
52                 doit("install","-o",0,"-g",0,"-d","$tmp/DEBIAN");
53         }
54
55         # Generate and install control file.
56         doit("dpkg-gencontrol","-l$changelog","-isp","-p$package",
57                 "-Tdebian/${ext}substvars","-P$tmp",@{$dh{U_PARAMS}});
58
59         # This chmod is only necessary if the user sets the umask to something odd.
60         doit("chmod","644","$tmp/DEBIAN/control");
61         
62         doit("chown","0.0","$tmp/DEBIAN/control");
63 }
64
65 =head1 SEE ALSO
66
67 L<debhelper(1)>
68
69 This program is a part of debhelper.
70
71 =head1 AUTHOR
72
73 Joey Hess <joeyh@debian.org>
74
75 =cut