This file is indexed.

/usr/share/doc/libgsl0ldbl/README.Debian is in libgsl0ldbl 1.16+dfsg-1ubuntu1.

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
33
34
35
			    Documentation

Documentation (in info or pdf format) is no longer provided by the
standard GNU GSL packages. Debian takes a hard stand on the
interpretation of the GNU Free Documentation License (GFDL) and its
so-called 'invariant sections' and considers these to be 'not free'.
As maintainer, my hand was somewhat forced by bugreport #495935. 

Documentation is provided via packages in the non-free archive which,
technically speaking, is not considered a true part of Debian. However,
apt-get and other tools can download from it.

 -- Dirk Eddelbuettel <edd@debian.org>, Tue, 26 Aug 2008 18:21:00 -0500

			    Profiling GSL

Sometimes when writing complex code, you may want to profile it using
gprof. In this case, having libraries with profiling information
compiled in is invaluable. It is possible to build your own .deb
containing profiling libraries, that may be installed on your system
in parallel to the usual libraries. To do this, follow these simple
instructions: 

i) download the gsl source (and the build dependencies if necessary):
apt-get source libgsl0
apt-get build-dep libgsl0
ii) build a binary profiling package:
DEB_BUILD_OPTIONS=buildprof dpkg-buildpackage -b -rfakeroot -us -uc
iii) install the resulting .deb
dpkg -i ../libgsl0-prof_[version]_[arch].deb

Finally, you need to specify -lgsl_p and -lgslcblas_p to link your
program against the profiling libraries.

 -- Matthew Vernon <matthew@debian.org>, Wed, 29 Oct 2008 10:34:19 +0000