Adding side stream changes to Maemian. Working to integrate full upstream libraries...
[maemian] / nokia-lintian / checks / conffiles
1 # conffiles -- lintian check script -*- perl -*-
2
3 # Copyright (C) 1998 Christian Schwarz
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program.  If not, you can find it on the World Wide
17 # Web at http://www.gnu.org/copyleft/gpl.html, or write to the Free
18 # Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
19 # MA 02110-1301, USA.
20
21 package Lintian::conffiles;
22 use strict;
23 use Tags;
24 use Util;
25
26 sub run {
27
28 my $pkg = shift;
29 my $type = shift;
30
31 my $cf = "control/conffiles";
32
33 # conffiles?
34 unless (-f $cf) {
35     return 0;
36 }
37
38 my %conffiles = ();
39
40 open(IN, '<', $cf) or fail("cannot open $cf for reading: $!");
41 while (<IN>) {
42     chop;
43     next if m/^\s*$/o;
44
45     $conffiles{"$_"}++;
46     if ($conffiles{"$_"} > 1) {
47         tag "duplicate-conffile", "$_";
48     }
49
50     if (m,^/?usr/,o) {
51         tag "file-in-usr-marked-as-conffile", "$_";
52     } else {
53         unless (m,^/?etc/,o) {
54             tag "non-etc-file-marked-as-conffile", "$_";
55         }
56     }
57
58     unless (m,^/,o) {
59         tag "relative-conffile", "$_";
60     }
61 }
62 close(IN);
63
64 }
65
66 1;