Added some code to peer into a data structure in Maemian/Schedule.pm. Also added the
[maemian] / nokia-lintian / collection / override-file
1 #!/usr/bin/perl -w
2 # override-file -- lintian collector script
3
4 # Copyright (C) 1999 by Darren Benham
5 # Derived from debian-readme by Richard Braakman
6
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
11
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16
17 # You should have received a copy of the GNU General Public License
18 # along with this program.  If not, you can find it on the World Wide
19 # Web at http://www.gnu.org/copyleft/gpl.html, or write to the Free
20 # Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
21 # MA 02110-1301, USA.
22
23 use strict;
24
25 ($#ARGV == 1) or fail("syntax: override-file <pkg> <type>");
26 my $pkg = shift;
27 my $type = shift;
28
29 -d "unpacked" or fail("override-file invoked in wrong directory");
30
31 unlink("override");
32
33 # Pick the first of these files that exists.
34 my $file;
35 if ($type eq 'source') {
36     $file = "unpacked/debian/source.lintian-overrides";
37 } else {
38     $file = "unpacked/usr/share/lintian/overrides/$pkg";
39 }
40
41 if ( ! -f $file ) 
42 {       if ( -f $file . ".gz" ) { $file = $file . ".gz"; }
43         else { $file = ''; }
44 }
45
46 if ( $file eq '' ) {
47     # no override found
48 } elsif ($file =~ /\.gz$/) {
49     use lib "$ENV{'LINTIAN_ROOT'}/lib";
50     use Pipeline;
51
52     pipeline((sub { exec 'gzip', '-dc', $file }), "override") == 0
53         or fail("error in gzip");
54 } else {
55     link($file, "override")
56         or fail("cannot link $file to override: $!");
57 }
58
59 exit 0;
60
61 # -----------------------------------
62
63 sub fail {
64     if ($_[0]) {
65         print STDERR "internal error: $_[0]\n";
66     } elsif ($!) {
67         print STDERR "internal error: $!\n";
68     } else {
69         print STDERR "internal error.\n";
70     }
71     exit 1;
72 }