summaryrefslogtreecommitdiff
path: root/devel/tkcvs/patches/patch-aa
blob: da7e2d9417e488c444375067fbc0ce8776a1ef44 (plain)
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
$NetBSD: patch-aa,v 1.13 2013/08/21 10:14:54 shattered Exp $

--- doinstall.tcl.orig	2011-11-28 04:59:54.000000000 +0000
+++ doinstall.tcl
@@ -1,7 +1,7 @@
 #!/bin/sh
 #-*-tcl-*-
 # the next line restarts using wish \
-if [ -z "$DISPLAY"  -o "X$1" = "X-nox" ]; then exec tclsh "$0" -- ${1+"$@"}; else exec wish "$0" -- ${1+"$@"}; fi
+exec tclsh "$0" -- ${1+"$@"}
 
 #
 # Usage: doinstall.tcl [-nox] [destination]
@@ -31,23 +31,6 @@ proc show_paths {INSTALLROOT} {
   global LIBDIR BINDIR MANDIR
 
   set_paths $INSTALLROOT
-
-  set msg(1) [file join $BINDIR $TKCVS]
-  set msg(2) [file join $BINDIR $TKDIFF]
-  set msg(3) [file join $LIBDIR tkcvs *.tcl]
-  set msg(4) [file join $LIBDIR tkcvs bitmaps *.gif,xbm]
-  if {$tcl_platform(platform) == "unix"} {
-     set msg(5) [file join $MANDIR tkcvs.1]
-  }
-  foreach m [lsort [array names msg]] {
-    if {[winfo exists .messages.$m]} {
-      destroy .messages.$m
-    }
-    global var$m
-    set var$m $msg($m)
-    label .messages.$m -text $msg($m) -justify left -textvariable var$m
-    pack .messages.$m -side top -anchor w
-  }
 }
 
 proc doinstall { INSTALLROOT } {
@@ -97,13 +80,6 @@ proc doinstall { INSTALLROOT } {
   }
   cd [file join .. ..]
   puts "Finished!"
-
-  if {$X} {
-    destroy .bottom.do
-    destroy .bottom.not
-    button .bottom.done -text "Finished!" -command {destroy .}
-    pack .bottom.done
-  }
 }
 
 ################################################################################
@@ -112,12 +88,7 @@ set usage "Usage: doinstall.tcl \[-nox\]
 set X 1
 
 # Check Tcl/TK version
-if {$tcl_version < 8.3} {
-   tk_dialog .wrongversion "Tcl/Tk too old" \
-   "TkCVS requires Tcl/Tk 8.3 or better!" \
-   error 0 {Bye Bye}
-   exit 1
-}
+# This is done by the package Makefile
 
 # See if the user changed them with command-line args
 set ArgInstallRoot ""