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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
diff -urN exmh-2.5/exmh exmh-2.5.conf/exmh
--- exmh-2.5/exmh Thu May 23 10:20:22 2002
+++ exmh-2.5.conf/exmh Thu May 23 10:17:46 2002
@@ -1,4 +1,4 @@
-#!wish -f
+#!/usr/bin/wish -f
#
# TK interface to the MH Mail utility
# Brent Welch <welch@acm.org>
@@ -17,6 +17,34 @@
# The following lines are patched by exmh.install
#CONFIGURATION
+set wish /usr/bin/wish
+set exmh(version) {version 2.5 07/13/2001}
+set exmh(name) exmh
+set exmh(maintainer) welch@acm.org
+set mh_path /usr/bin
+set exmh(slocal) /usr/bin/slocal
+set mime(dir) /usr/bin
+set mailcap_default /etc/mailcap
+set mimetypes_default /etc/mime.types
+set exmh(expect) /usr/bin/expect
+set exmh(expectk) /usr/bin/expectk
+set faces(dir) /usr/lib/faces
+set faces(set,user) {local users usenix misc}
+set faces(set,unknown) {domains unknown}
+set faces(set,news) news
+set faces(defaultDomain) eng.sun.com
+set faces(suffix) {xpm gif xbm}
+set pgp(pgp,path) /usr/bin
+set pgp(pgp5,path) /usr/bin
+set pgp(gpg,path) /usr/bin
+set pgp(pgp6,path) /usr/bin
+set glimpse(path) /usr/bin
+set sound(cmd) /usr/bin/play
+set exmh(library) /usr/lib/exmh-2.5
+set install(dir,bin) /usr/bin
+set install(dir,man) /usr/share/man/man1
+set install(dir,lib) /usr/lib/exmh-2.5
+
#END CONFIGURATION
if [catch {file join a b}] {
diff -urN exmh-2.5/exmh-async exmh-2.5.conf/exmh-async
--- exmh-2.5/exmh-async Thu May 23 10:20:22 2002
+++ exmh-2.5.conf/exmh-async Thu May 23 09:55:34 2002
@@ -1,4 +1,4 @@
-#!wish -f
+#!/usr/bin/wish -f
#
# async editor frontend for exmh
# Arg1: invoking interpreter's name (from [winfo name .])
diff -urN exmh-2.5/exmh-bg exmh-2.5.conf/exmh-bg
--- exmh-2.5/exmh-bg Thu May 23 10:20:22 2002
+++ exmh-2.5.conf/exmh-bg Thu May 23 10:18:18 2002
@@ -1,4 +1,4 @@
-#!wish -f
+#!/usr/bin/wish -f
#
# Background processing script for exmh.
# This does stuff and then sends messages to the background module
@@ -17,6 +17,34 @@
# any specification.
#CONFIGURATION
+set wish /usr/bin/wish
+set exmh(version) {version 2.5 07/13/2001}
+set exmh(name) exmh
+set exmh(maintainer) welch@acm.org
+set mh_path /usr/bin
+set exmh(slocal) /usr/bin/slocal
+set mime(dir) /usr/bin
+set mailcap_default /etc/mailcap
+set mimetypes_default /etc/mime.types
+set exmh(expect) /usr/bin/expect
+set exmh(expectk) /usr/bin/expectk
+set faces(dir) /usr/lib/faces
+set faces(set,user) {local users usenix misc}
+set faces(set,unknown) {domains unknown}
+set faces(set,news) news
+set faces(defaultDomain) eng.sun.com
+set faces(suffix) {xpm gif xbm}
+set pgp(pgp,path) /usr/bin
+set pgp(pgp5,path) /usr/bin
+set pgp(gpg,path) /usr/bin
+set pgp(pgp6,path) /usr/bin
+set glimpse(path) /usr/bin
+set sound(cmd) /usr/bin/play
+set exmh(library) /usr/lib/exmh-2.5
+set install(dir,bin) /usr/bin
+set install(dir,man) /usr/share/man/man1
+set install(dir,lib) /usr/lib/exmh-2.5
+
#END CONFIGURATION
wm withdraw .
diff -urN exmh-2.5/ftp.expect exmh-2.5.conf/ftp.expect
--- exmh-2.5/ftp.expect Thu May 23 10:20:22 2002
+++ exmh-2.5.conf/ftp.expect Thu May 23 09:55:34 2002
@@ -1,6 +1,6 @@
#!/bin/sh
# \
-exec expect -f
+exec /usr/bin/expect -f
set site [lindex $argv 0]
set dir [lindex $argv 1]
|