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