/usr/lib/tcltk/nsf2.0.0/pkgIndex.tcl is in nsf 2.0.0-2.
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 | set __dir__ $dir
foreach index [concat \
[glob -nocomplain [file join $dir * pkgIndex.tcl]] \
[glob -nocomplain [file join $dir * * pkgIndex.tcl]]] {
set dir [file dirname $index]
source $index
}
set dir $__dir__
unset __dir__
package ifneeded nsf 2.0.0 [list load [file join $dir libnsf2.0.0.so] nsf]
|