git-gui: support Git Gui.app under OS X 10.5
The Tk Framework moved its location in 10.5 compared to 10.4 Signed-off-by: Jay Soffian <jaysoffian@gmail.com> Tested-by: Seth Falcon <seth@userprimary.net> Signed-off-by: Shawn O. Pearce <spearce@spearce.org>maint
parent
3b8f19a02c
commit
20a87ecc58
15
Makefile
15
Makefile
|
@ -13,6 +13,7 @@ GIT-VERSION-FILE: .FORCE-GIT-VERSION-FILE
|
||||||
|
|
||||||
uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
|
uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
|
||||||
uname_O := $(shell sh -c 'uname -o 2>/dev/null || echo not')
|
uname_O := $(shell sh -c 'uname -o 2>/dev/null || echo not')
|
||||||
|
uname_R := $(shell sh -c 'uname -r 2>/dev/null || echo not')
|
||||||
|
|
||||||
SCRIPT_SH = git-gui.sh
|
SCRIPT_SH = git-gui.sh
|
||||||
GITGUI_MAIN := git-gui
|
GITGUI_MAIN := git-gui
|
||||||
|
@ -93,7 +94,14 @@ endif
|
||||||
|
|
||||||
TCL_PATH ?= tclsh
|
TCL_PATH ?= tclsh
|
||||||
TCLTK_PATH ?= wish
|
TCLTK_PATH ?= wish
|
||||||
|
|
||||||
|
ifeq ($(uname_S),Darwin)
|
||||||
TKFRAMEWORK = /Library/Frameworks/Tk.framework/Resources/Wish.app
|
TKFRAMEWORK = /Library/Frameworks/Tk.framework/Resources/Wish.app
|
||||||
|
ifeq ($(shell expr "$(uname_R)" : '9\.'),2)
|
||||||
|
TKFRAMEWORK = /System/Library/Frameworks/Tk.framework/Resources/Wish\ Shell.app
|
||||||
|
endif
|
||||||
|
TKEXECUTABLE = $(shell basename "$(TKFRAMEWORK)" .app)
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(findstring $(MAKEFLAGS),s),s)
|
ifeq ($(findstring $(MAKEFLAGS),s),s)
|
||||||
QUIET_GEN =
|
QUIET_GEN =
|
||||||
|
@ -147,7 +155,7 @@ git-gui: GIT-VERSION-FILE GIT-GUI-VARS
|
||||||
echo then >>$@+ && \
|
echo then >>$@+ && \
|
||||||
echo ' 'echo \'git-gui version '$(GITGUI_VERSION)'\' >>$@+ && \
|
echo ' 'echo \'git-gui version '$(GITGUI_VERSION)'\' >>$@+ && \
|
||||||
echo else >>$@+ && \
|
echo else >>$@+ && \
|
||||||
echo ' 'exec \''$(libdir_SQ)/Git Gui.app/Contents/MacOS/Wish'\' \
|
echo ' 'exec \''$(libdir_SQ)/Git Gui.app/Contents/MacOS/$(subst \,,$(TKEXECUTABLE))'\' \
|
||||||
'"$$0" "$$@"' >>$@+ && \
|
'"$$0" "$$@"' >>$@+ && \
|
||||||
echo fi >>$@+ && \
|
echo fi >>$@+ && \
|
||||||
chmod +x $@+ && \
|
chmod +x $@+ && \
|
||||||
|
@ -157,14 +165,15 @@ Git\ Gui.app: GIT-VERSION-FILE GIT-GUI-VARS \
|
||||||
macosx/Info.plist \
|
macosx/Info.plist \
|
||||||
macosx/git-gui.icns \
|
macosx/git-gui.icns \
|
||||||
macosx/AppMain.tcl \
|
macosx/AppMain.tcl \
|
||||||
$(TKFRAMEWORK)/Contents/MacOS/Wish
|
$(TKFRAMEWORK)/Contents/MacOS/$(TKEXECUTABLE)
|
||||||
$(QUIET_GEN)rm -rf '$@' '$@'+ && \
|
$(QUIET_GEN)rm -rf '$@' '$@'+ && \
|
||||||
mkdir -p '$@'+/Contents/MacOS && \
|
mkdir -p '$@'+/Contents/MacOS && \
|
||||||
mkdir -p '$@'+/Contents/Resources/Scripts && \
|
mkdir -p '$@'+/Contents/Resources/Scripts && \
|
||||||
cp '$(subst ','\'',$(TKFRAMEWORK))/Contents/MacOS/Wish' \
|
cp '$(subst ','\'',$(subst \,,$(TKFRAMEWORK)/Contents/MacOS/$(TKEXECUTABLE)))' \
|
||||||
'$@'+/Contents/MacOS && \
|
'$@'+/Contents/MacOS && \
|
||||||
cp macosx/git-gui.icns '$@'+/Contents/Resources && \
|
cp macosx/git-gui.icns '$@'+/Contents/Resources && \
|
||||||
sed -e 's/@@GITGUI_VERSION@@/$(GITGUI_VERSION)/g' \
|
sed -e 's/@@GITGUI_VERSION@@/$(GITGUI_VERSION)/g' \
|
||||||
|
-e 's/@@GITGUI_TKEXECUTABLE@@/$(TKEXECUTABLE)/g' \
|
||||||
macosx/Info.plist \
|
macosx/Info.plist \
|
||||||
>'$@'+/Contents/Info.plist && \
|
>'$@'+/Contents/Info.plist && \
|
||||||
sed -e 's|@@gitexecdir@@|$(gitexecdir_SQ)|' \
|
sed -e 's|@@gitexecdir@@|$(gitexecdir_SQ)|' \
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<key>CFBundleDevelopmentRegion</key>
|
<key>CFBundleDevelopmentRegion</key>
|
||||||
<string>English</string>
|
<string>English</string>
|
||||||
<key>CFBundleExecutable</key>
|
<key>CFBundleExecutable</key>
|
||||||
<string>Wish</string>
|
<string>@@GITGUI_TKEXECUTABLE@@</string>
|
||||||
<key>CFBundleGetInfoString</key>
|
<key>CFBundleGetInfoString</key>
|
||||||
<string>Git Gui @@GITGUI_VERSION@@ © 2006-2007 Shawn Pearce, et. al.</string>
|
<string>Git Gui @@GITGUI_VERSION@@ © 2006-2007 Shawn Pearce, et. al.</string>
|
||||||
<key>CFBundleIconFile</key>
|
<key>CFBundleIconFile</key>
|
||||||
|
|
Loading…
Reference in New Issue