mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
eae0a60682
indication of error. Also update to use Tk version 8.2. PR: 14292 Submitted by: Mikhail Teterin <mi@aldan.algebra.com>
33 lines
1013 B
Plaintext
33 lines
1013 B
Plaintext
--- /usr/local/bin/tkfont Tue Oct 12 13:37:45 1999
|
|
+++ tkfont Tue Oct 12 14:27:43 1999
|
|
@@ -33,11 +33,4 @@
|
|
-proc GetFontDirs { } {
|
|
- global FontDirList
|
|
- set TempFileName "/tmp/dirs.list.[pid]"
|
|
- exec /usr/local/lib/tkfont/GetFontDirs > $TempFileName
|
|
- list FontDirList_a
|
|
-
|
|
- set Chan [open $TempFileName r]
|
|
- set chars 1
|
|
- while {$chars > 0} {
|
|
- set chars [gets $Chan onedirname]
|
|
- lappend FontDirList_a $onedirname
|
|
+proc GetFontDirs {} {
|
|
+ global FontDirList errorCode
|
|
+ if {[catch {exec xset -q} result] && $errorCode != "NONE"} {
|
|
+ error $result
|
|
@@ -45,5 +38,8 @@
|
|
- close $Chan
|
|
- exec rm $TempFileName
|
|
- set FontDirList [lreplace $FontDirList_a 0 0 \
|
|
- [string trim [lindex $FontDirList_a 0]]]
|
|
- set FontDirList [lreplace $FontDirList end end]
|
|
+ set lines [split $result \n]
|
|
+ set i [lsearch -exact $lines "Font Path:"]
|
|
+ if {$i == -1} {
|
|
+ error "Output of `xset -q' did not contain\
|
|
+ `Font Path:'\n$result"
|
|
+ }
|
|
+ set dirLine [string trim [lindex $lines [incr i]]]
|
|
+ set FontDirList [split $dirLine ,]
|