This file is indexed.

/usr/lib/perl5/Gnome2/Wnck/Install/Files.pm is in libgnome2-wnck-perl 0.16-2build3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package Gnome2::Wnck::Install::Files;

$self = {
          'deps' => [
                      'Gtk2',
                      'Cairo',
                      'Pango',
                      'Glib'
                    ],
          'inc' => '-pthread -I/usr/include/pango-1.0 -I/usr/include/cairo -I/usr/include/startup-notification-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/gtk-2.0 -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/harfbuzz -I/usr/include/libwnck-1.0   -DWNCK_I_KNOW_THIS_IS_UNSTABLE',
          'libs' => '-lwnck-1 -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lglib-2.0  ',
          'typemaps' => [
                          'wnck2perl.typemap'
                        ]
        };


# this is for backwards compatiblity
@deps = @{ $self->{deps} };
@typemaps = @{ $self->{typemaps} };
$libs = $self->{libs};
$inc = $self->{inc};

	$CORE = undef;
	foreach (@INC) {
		if ( -f $_ . "/Gnome2/Wnck/Install/Files.pm") {
			$CORE = $_ . "/Gnome2/Wnck/Install/";
			last;
		}
	}

1;