2007-05-08 05:35:48 +02:00
|
|
|
# git-gui desktop icon creators
|
|
|
|
# Copyright (C) 2006, 2007 Shawn Pearce
|
|
|
|
|
|
|
|
proc do_windows_shortcut {} {
|
|
|
|
global argv0
|
|
|
|
|
|
|
|
set fn [tk_getSaveFile \
|
|
|
|
-parent . \
|
2007-07-21 14:21:34 +02:00
|
|
|
-title [append "[appname] ([reponame]): " [mc "Create Desktop Icon"]] \
|
2007-05-08 05:35:48 +02:00
|
|
|
-initialfile "Git [reponame].bat"]
|
|
|
|
if {$fn != {}} {
|
2007-07-06 00:39:40 +02:00
|
|
|
if {[file extension $fn] ne {.bat}} {
|
|
|
|
set fn ${fn}.bat
|
|
|
|
}
|
2007-05-08 05:35:48 +02:00
|
|
|
if {[catch {
|
2007-07-09 09:28:41 +02:00
|
|
|
set ge [file normalize [file dirname $::_git]]
|
2007-05-08 05:35:48 +02:00
|
|
|
set fd [open $fn w]
|
|
|
|
puts $fd "@ECHO Entering [reponame]"
|
|
|
|
puts $fd "@ECHO Starting git-gui... please wait..."
|
2007-07-09 09:28:41 +02:00
|
|
|
puts $fd "@SET PATH=$ge;%PATH%"
|
2007-05-08 05:35:48 +02:00
|
|
|
puts $fd "@SET GIT_DIR=[file normalize [gitdir]]"
|
|
|
|
puts -nonewline $fd "@\"[info nameofexecutable]\""
|
|
|
|
puts $fd " \"[file normalize $argv0]\""
|
|
|
|
close $fd
|
|
|
|
} err]} {
|
2007-09-14 07:50:09 +02:00
|
|
|
error_popup [strcat [mc "Cannot write script:"] "\n\n$err"]
|
2007-05-08 05:35:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
proc do_cygwin_shortcut {} {
|
|
|
|
global argv0
|
|
|
|
|
|
|
|
if {[catch {
|
|
|
|
set desktop [exec cygpath \
|
|
|
|
--windows \
|
|
|
|
--absolute \
|
|
|
|
--long-name \
|
|
|
|
--desktop]
|
|
|
|
}]} {
|
|
|
|
set desktop .
|
|
|
|
}
|
|
|
|
set fn [tk_getSaveFile \
|
|
|
|
-parent . \
|
2007-07-21 14:21:34 +02:00
|
|
|
-title [append "[appname] ([reponame]): " [mc "Create Desktop Icon"]] \
|
2007-05-08 05:35:48 +02:00
|
|
|
-initialdir $desktop \
|
|
|
|
-initialfile "Git [reponame].bat"]
|
|
|
|
if {$fn != {}} {
|
2007-07-06 00:39:40 +02:00
|
|
|
if {[file extension $fn] ne {.bat}} {
|
|
|
|
set fn ${fn}.bat
|
|
|
|
}
|
2007-05-08 05:35:48 +02:00
|
|
|
if {[catch {
|
|
|
|
set fd [open $fn w]
|
|
|
|
set sh [exec cygpath \
|
|
|
|
--windows \
|
|
|
|
--absolute \
|
2007-07-09 17:09:27 +02:00
|
|
|
/bin/sh.exe]
|
2007-05-08 05:35:48 +02:00
|
|
|
set me [exec cygpath \
|
|
|
|
--unix \
|
|
|
|
--absolute \
|
|
|
|
$argv0]
|
|
|
|
set gd [exec cygpath \
|
|
|
|
--unix \
|
|
|
|
--absolute \
|
|
|
|
[gitdir]]
|
2007-07-09 09:28:41 +02:00
|
|
|
puts $fd "@ECHO Entering [reponame]"
|
2007-05-08 05:35:48 +02:00
|
|
|
puts $fd "@ECHO Starting git-gui... please wait..."
|
|
|
|
puts -nonewline $fd "@\"$sh\" --login -c \""
|
2007-07-09 17:01:02 +02:00
|
|
|
puts -nonewline $fd "GIT_DIR=[sq $gd]"
|
2007-07-09 09:28:41 +02:00
|
|
|
puts -nonewline $fd " [sq $me]"
|
2007-07-09 17:10:26 +02:00
|
|
|
puts $fd " &\""
|
2007-05-08 05:35:48 +02:00
|
|
|
close $fd
|
|
|
|
} err]} {
|
2007-09-14 07:50:09 +02:00
|
|
|
error_popup [strcat [mc "Cannot write script:"] "\n\n$err"]
|
2007-05-08 05:35:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
proc do_macosx_app {} {
|
|
|
|
global argv0 env
|
|
|
|
|
|
|
|
set fn [tk_getSaveFile \
|
|
|
|
-parent . \
|
2007-07-21 14:21:34 +02:00
|
|
|
-title [append "[appname] ([reponame]): " [mc "Create Desktop Icon"]] \
|
2007-05-08 05:35:48 +02:00
|
|
|
-initialdir [file join $env(HOME) Desktop] \
|
|
|
|
-initialfile "Git [reponame].app"]
|
|
|
|
if {$fn != {}} {
|
2007-07-09 09:28:41 +02:00
|
|
|
if {[file extension $fn] ne {.app}} {
|
|
|
|
set fn ${fn}.app
|
|
|
|
}
|
2007-05-08 05:35:48 +02:00
|
|
|
if {[catch {
|
|
|
|
set Contents [file join $fn Contents]
|
|
|
|
set MacOS [file join $Contents MacOS]
|
|
|
|
set exe [file join $MacOS git-gui]
|
|
|
|
|
|
|
|
file mkdir $MacOS
|
|
|
|
|
|
|
|
set fd [open [file join $Contents Info.plist] w]
|
|
|
|
puts $fd {<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
|
|
<plist version="1.0">
|
|
|
|
<dict>
|
|
|
|
<key>CFBundleDevelopmentRegion</key>
|
|
|
|
<string>English</string>
|
|
|
|
<key>CFBundleExecutable</key>
|
|
|
|
<string>git-gui</string>
|
|
|
|
<key>CFBundleIdentifier</key>
|
|
|
|
<string>org.spearce.git-gui</string>
|
|
|
|
<key>CFBundleInfoDictionaryVersion</key>
|
|
|
|
<string>6.0</string>
|
|
|
|
<key>CFBundlePackageType</key>
|
|
|
|
<string>APPL</string>
|
|
|
|
<key>CFBundleSignature</key>
|
|
|
|
<string>????</string>
|
|
|
|
<key>CFBundleVersion</key>
|
|
|
|
<string>1.0</string>
|
|
|
|
<key>NSPrincipalClass</key>
|
|
|
|
<string>NSApplication</string>
|
|
|
|
</dict>
|
|
|
|
</plist>}
|
|
|
|
close $fd
|
|
|
|
|
|
|
|
set fd [open $exe w]
|
|
|
|
puts $fd "#!/bin/sh"
|
2007-07-09 09:28:41 +02:00
|
|
|
foreach name [lsort [array names env]] {
|
|
|
|
set value $env($name)
|
|
|
|
switch -- $name {
|
|
|
|
GIT_DIR { set value [file normalize [gitdir]] }
|
|
|
|
}
|
|
|
|
|
|
|
|
switch -glob -- $name {
|
|
|
|
SSH_* -
|
|
|
|
GIT_* {
|
|
|
|
puts $fd "if test \"z\$$name\" = z; then"
|
|
|
|
puts $fd " export $name=[sq $value]"
|
|
|
|
puts $fd "fi &&"
|
|
|
|
}
|
2007-05-08 05:35:48 +02:00
|
|
|
}
|
|
|
|
}
|
2007-07-09 09:28:41 +02:00
|
|
|
puts $fd "export PATH=[sq [file dirname $::_git]]:\$PATH &&"
|
|
|
|
puts $fd "cd [sq [file normalize [pwd]]] &&"
|
|
|
|
puts $fd "exec \\"
|
|
|
|
puts $fd " [sq [info nameofexecutable]] \\"
|
|
|
|
puts $fd " [sq [file normalize $argv0]]"
|
2007-05-08 05:35:48 +02:00
|
|
|
close $fd
|
|
|
|
|
|
|
|
file attributes $exe -permissions u+x,g+x,o+x
|
|
|
|
} err]} {
|
2007-09-14 07:50:09 +02:00
|
|
|
error_popup [strcat [mc "Cannot write icon:"] "\n\n$err"]
|
2007-05-08 05:35:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|