/usr/lib/blt2.5/pkgIndex.tcl is in tk8.6-blt2.5 2.5.3+dfsg-3.
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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | # Tcl package index file, version 1.0
proc LoadBLT25 { version dir } {
set prefix "lib"
set suffix [info sharedlibextension]
regsub {\.} $version {} version_no_dots
set versuf $version$suffix
# Determine whether to load the full BLT library or
# the "lite" tcl-only version.
if {[package vcompare [info tclversion] 8.2] < 0} {
set taillib ${versuf}.8.0
} elseif {[package vcompare [info tclversion] 8.3] < 0} {
set taillib ${versuf}.8.2
} elseif {[package vcompare [info tclversion] 8.4] < 0} {
set taillib ${versuf}.8.3
} elseif {[package vcompare [info tclversion] 8.5] < 0} {
set taillib ${versuf}.8.4
} elseif {[package vcompare [info tclversion] 8.6] < 0} {
set taillib ${versuf}.8.5
} else {
set taillib ${versuf}.8.6
}
if { [info commands tk] == "tk" } {
set name1 ${prefix}BLT.${taillib}
set name2 ${prefix}BLT${version_no_dots}${suffix}
} else {
set name1 ${prefix}BLTlite.${taillib}
set name2 ${prefix}BLTlite${version_no_dots}${suffix}
}
global tcl_platform
foreach name [list $name1 $name2] {
if { $tcl_platform(platform) == "unix" } {
set library [file join $dir $name]
if { ![file exists $library] } {
# Try the parent directory.
set library [file join [file dirname $dir] $name]
}
if { ![file exists $library] } {
# Default to the path generated at compilation.
set library [file join "/usr/lib" $name]
}
} else {
set library $name
}
if { ![file exists $library] } continue
load $library BLT
break
}
}
set version "2.5"
set patchlevel "2.5.3"
package ifneeded BLT $patchlevel [list LoadBLT25 $version $dir]
# End of package index file
|