blob: d4e41f4d3ee8c95194726daa4a570eecd9041e18 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001# NSIS file to create a self-installing exe for Vim.
2# It requires NSIS version 2.0 or later.
3# Last change: 2004 May 02
4
5# WARNING: if you make changes to this script, look out for $0 to be valid,
6# because uninstall deletes most files in $0.
7
8# Location of gvim_ole.exe, vimd32.exe, GvimExt/*, etc.
9!define VIMSRC "..\src"
10
11# Location of runtime files
12!define VIMRT ".."
13
14# Location of extra tools: diff.exe
15!define VIMTOOLS ..\..
16
17# Comment the next line if you don't have UPX.
18# Get it at http://upx.sourceforge.net
19!define HAVE_UPX
20
21# comment the next line if you do not want to add Native Language Support
22!define HAVE_NLS
23
24!define VER_MAJOR 7
Bram Moolenaar779b74b2006-04-10 14:55:34 +000025!define VER_MINOR 0d
Bram Moolenaar071d4272004-06-13 20:20:40 +000026
27# ----------- No configurable settings below this line -----------
28
29!include UpgradeDLL.nsh # for VisVim.dll
30
31Name "Vim ${VER_MAJOR}.${VER_MINOR}"
32OutFile gvim${VER_MAJOR}${VER_MINOR}.exe
33CRCCheck force
34SetCompressor lzma
35SetDatablockOptimize on
36
37ComponentText "This will install Vim ${VER_MAJOR}.${VER_MINOR} on your computer."
38DirText "Choose a directory to install Vim (must end in 'vim')"
39Icon icons\vim_16c.ico
40# NSIS2 uses a different strategy with six diferent images in a strip...
41#EnabledBitmap icons\enabled.bmp
42#DisabledBitmap icons\disabled.bmp
43UninstallText "This will uninstall Vim ${VER_MAJOR}.${VER_MINOR} from your system."
44UninstallIcon icons\vim_uninst_16c.ico
45
46# On NSIS 2 using the BGGradient causes trouble on Windows 98, in combination
47# with the BringToFront.
48# BGGradient 004000 008200 FFFFFF
49LicenseText "You should read the following before installing:"
50LicenseData ${VIMRT}\doc\uganda.nsis.txt
51
52!ifdef HAVE_UPX
53 !packhdr temp.dat "upx --best --compress-icons=1 temp.dat"
54!endif
55
56# This adds '\vim' to the user choice automagically. The actual value is
57# obtained below with ReadINIStr.
58InstallDir "$PROGRAMFILES\Vim"
59
60# Types of installs we can perform:
61InstType Typical
62InstType Minimal
63InstType Full
64
65SilentInstall normal
66
67# These are the pages we use
68Page license
69Page components
70Page directory "" "" CheckInstallDir
71Page instfiles
72UninstPage uninstConfirm
73UninstPage instfiles
74
75##########################################################
76# Functions
77
78Function .onInit
79 MessageBox MB_YESNO|MB_ICONQUESTION \
80 "This will install Vim ${VER_MAJOR}.${VER_MINOR} on your computer.$\n Continue?" \
81 IDYES NoAbort
82 Abort ; causes installer to quit.
83 NoAbort:
84
85 # run the install program to check for already installed versions
86 SetOutPath $TEMP
87 File /oname=install.exe ${VIMSRC}\installw32.exe
88 ExecWait "$TEMP\install.exe -uninstall-check"
89 Delete $TEMP\install.exe
90
91 # We may have been put to the background when uninstall did something.
92 BringToFront
93
94 # Install will have created a file for us that contains the directory where
95 # we should install. This is $VIM if it's set. This appears to be the only
96 # way to get the value of $VIM here!?
97 ReadINIStr $INSTDIR $TEMP\vimini.ini vimini dir
98 Delete $TEMP\vimini.ini
99
100 # If ReadINIStr failed or did not find a path: use the default dir.
101 StrCmp $INSTDIR "" 0 IniOK
102 StrCpy $INSTDIR "$PROGRAMFILES\Vim"
103 IniOK:
104
105 # Should check for the value of $VIM and use it. Unfortunately I don't know
106 # how to obtain the value of $VIM
107 # IfFileExists "$VIM" 0 No_Vim
108 # StrCpy $INSTDIR "$VIM"
109 # No_Vim:
110
111 # User variables:
112 # $0 - holds the directory the executables are installed to
113 # $1 - holds the parameters to be passed to install.exe. Starts with OLE
114 # registration (since a non-OLE gvim will not complain, and we want to
115 # always register an OLE gvim).
116 # $2 - holds the names to create batch files for
117 StrCpy $0 "$INSTDIR\vim${VER_MAJOR}${VER_MINOR}"
118 StrCpy $1 "-register-OLE"
Bram Moolenaar7fcab2a2006-03-25 21:46:12 +0000119 StrCpy $2 "gvim evim gview gvimdiff vimtutor"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000120
121FunctionEnd
122
123Function .onUserAbort
124 MessageBox MB_YESNO|MB_ICONQUESTION "Abort install?" IDYES NoCancelAbort
125 Abort ; causes installer to not quit.
126 NoCancelAbort:
127FunctionEnd
128
129# We only accept the directory if it ends in "vim". Using .onVerifyInstDir has
130# the disadvantage that the browse dialog is difficult to use.
131Function CheckInstallDir
132 StrCpy $0 $INSTDIR 3 -3
133 StrCmp $0 "vim" PathGood
134 MessageBox MB_OK "The path must end in 'vim'."
135 Abort
136 PathGood:
137FunctionEnd
138
139Function .onInstSuccess
140 WriteUninstaller vim${VER_MAJOR}${VER_MINOR}\uninstall-gui.exe
141 MessageBox MB_YESNO|MB_ICONQUESTION \
142 "The installation process has been successfull. Happy Vimming! \
143 $\n$\n Do you want to see the README file now?" IDNO NoReadme
144 Exec '$0\gvim.exe -R "$0\README.txt"'
145 NoReadme:
146FunctionEnd
147
148Function .onInstFailed
149 MessageBox MB_OK|MB_ICONEXCLAMATION "Installation failed. Better luck next time."
150FunctionEnd
151
152Function un.onUnInstSuccess
153 MessageBox MB_OK|MB_ICONINFORMATION \
154 "Vim ${VER_MAJOR}.${VER_MINOR} has been (partly) removed from your system"
155FunctionEnd
156
157Function un.GetParent
158 Exch $0 ; old $0 is on top of stack
159 Push $1
160 Push $2
161 StrCpy $1 -1
162 loop:
163 StrCpy $2 $0 1 $1
164 StrCmp $2 "" exit
165 StrCmp $2 "\" exit
166 IntOp $1 $1 - 1
167 Goto loop
168 exit:
169 StrCpy $0 $0 $1
170 Pop $2
171 Pop $1
172 Exch $0 ; put $0 on top of stack, restore $0 to original value
173FunctionEnd
174
175##########################################################
176Section "Vim executables and runtime files"
177 SectionIn 1 2 3
178
179 # we need also this here if the user changes the instdir
180 StrCpy $0 "$INSTDIR\vim${VER_MAJOR}${VER_MINOR}"
181
182 SetOutPath $0
183 File /oname=gvim.exe ${VIMSRC}\gvim_ole.exe
184 File /oname=install.exe ${VIMSRC}\installw32.exe
185 File /oname=uninstal.exe ${VIMSRC}\uninstalw32.exe
186 File ${VIMSRC}\vimrun.exe
187 File /oname=xxd.exe ${VIMSRC}\xxdw32.exe
188 File ${VIMTOOLS}\diff.exe
189 File ${VIMRT}\vimtutor.bat
190 File ${VIMRT}\README.txt
191 File ..\uninstal.txt
192 File ${VIMRT}\*.vim
193 File ${VIMRT}\rgb.txt
194
195 SetOutPath $0\colors
196 File ${VIMRT}\colors\*.*
197
198 SetOutPath $0\compiler
199 File ${VIMRT}\compiler\*.*
200
201 SetOutPath $0\doc
202 File ${VIMRT}\doc\*.txt
203 File ${VIMRT}\doc\tags
204
205 SetOutPath $0\ftplugin
206 File ${VIMRT}\ftplugin\*.*
207
208 SetOutPath $0\indent
209 File ${VIMRT}\indent\*.*
210
211 SetOutPath $0\macros
212 File ${VIMRT}\macros\*.*
213
214 SetOutPath $0\plugin
215 File ${VIMRT}\plugin\*.*
216
Bram Moolenaar7fcab2a2006-03-25 21:46:12 +0000217 SetOutPath $0\autoload
218 File ${VIMRT}\autoload\*.*
219
Bram Moolenaar071d4272004-06-13 20:20:40 +0000220 SetOutPath $0\syntax
221 File ${VIMRT}\syntax\*.*
222
Bram Moolenaarc01140a2006-03-24 22:21:52 +0000223 SetOutPath $0\spell
224 File ${VIMRT}\spell\*.txt
225 File ${VIMRT}\spell\*.vim
226 File ${VIMRT}\spell\*.spl
227 File ${VIMRT}\spell\*.sug
228
Bram Moolenaar071d4272004-06-13 20:20:40 +0000229 SetOutPath $0\tools
230 File ${VIMRT}\tools\*.*
231
232 SetOutPath $0\tutor
233 File ${VIMRT}\tutor\*.*
234SectionEnd
235
236##########################################################
237Section "Vim console program (vim.exe)"
238 SectionIn 1 3
239
240 SetOutPath $0
241 ReadRegStr $R0 HKLM \
242 "SOFTWARE\Microsoft\Windows NT\CurrentVersion" CurrentVersion
243 IfErrors 0 lbl_winnt
244 # Windows 95/98/ME
245 File /oname=vim.exe ${VIMSRC}\vimd32.exe
246 Goto lbl_done
247 lbl_winnt:
248 # Windows NT/2000/XT
249 File /oname=vim.exe ${VIMSRC}\vimw32.exe
250 lbl_done:
251 StrCpy $2 "$2 vim view vimdiff"
252SectionEnd
253
254##########################################################
255Section "Create .bat files for command line use"
256 SectionIn 3
257
258 StrCpy $1 "$1 -create-batfiles $2"
259SectionEnd
260
261##########################################################
262Section "Create icons on the Desktop"
263 SectionIn 1 3
264
265 StrCpy $1 "$1 -install-icons"
266SectionEnd
267
268##########################################################
269Section "Add Vim to the Start Menu"
270 SectionIn 1 3
271
272 StrCpy $1 "$1 -add-start-menu"
273SectionEnd
274
275##########################################################
276Section "Add an Edit-with-Vim context menu entry"
277 SectionIn 1 3
278
279 # Be aware of this sequence of events:
280 # - user uninstalls Vim, gvimext.dll can't be removed (it's in use) and
281 # is scheduled to be removed at next reboot.
282 # - user installs Vim in same directory, gvimext.dll still exists.
283 # If we now skip installing gvimext.dll, it will disappear at the next
284 # reboot. Thus when copying gvimext.dll fails always schedule it to be
285 # installed at the next reboot. Can't use UpgradeDLL!
286 # We don't ask the user to reboot, the old dll will keep on working.
287 SetOutPath $0
288 ClearErrors
289 SetOverwrite try
290 File /oname=gvimext.dll ${VIMSRC}\GvimExt\gvimext.dll
291 IfErrors 0 GvimExtDone
292
293 # Can't copy gvimext.dll, create it under another name and rename it on
294 # next reboot.
295 GetTempFileName $3 $0
296 File /oname=$3 ${VIMSRC}\GvimExt\gvimext.dll
297 Rename /REBOOTOK $3 $0\gvimext.dll
298
299 GvimExtDone:
300 SetOverwrite lastused
301
302 # We don't have a separate entry for the "Open With..." menu, assume
303 # the user wants either both or none.
304 StrCpy $1 "$1 -install-popup -install-openwith"
305SectionEnd
306
307##########################################################
308Section "Create a _vimrc if it doesn't exist"
309 SectionIn 1 3
310
311 StrCpy $1 "$1 -create-vimrc"
312SectionEnd
313
314##########################################################
315Section "Create plugin directories in HOME or VIM"
316 SectionIn 1 3
317
318 StrCpy $1 "$1 -create-directories home"
319SectionEnd
320
321##########################################################
322Section "Create plugin directories in VIM"
323 SectionIn 3
324
325 StrCpy $1 "$1 -create-directories vim"
326SectionEnd
327
328##########################################################
329Section "VisVim Extension for MS Visual Studio"
330 SectionIn 3
331
332 SetOutPath $0
333 !insertmacro UpgradeDLL "${VIMSRC}\VisVim\VisVim.dll" "$0\VisVim.dll" "$0"
334 File ${VIMSRC}\VisVim\README_VisVim.txt
335SectionEnd
336
337##########################################################
338!ifdef HAVE_NLS
339 Section "Native Language Support"
340 SectionIn 1 3
341
342 SetOutPath $0\lang
343 File /r ${VIMRT}\lang\*.*
344 SetOutPath $0\keymap
345 File ${VIMRT}\keymap\README.txt
346 File ${VIMRT}\keymap\*.vim
347 SetOutPath $0
348 File ${VIMRT}\libintl.dll
349 SectionEnd
350!endif
351
352##########################################################
353Section -call_install_exe
354 SetOutPath $0
355 ExecWait "$0\install.exe $1"
356SectionEnd
357
358##########################################################
359Section -post
360 BringToFront
361SectionEnd
362
363##########################################################
364Section Uninstall
365 # Apparently $INSTDIR is set to the directory where the uninstaller is
366 # created. Thus the "vim61" directory is included in it.
367 StrCpy $0 "$INSTDIR"
368
369 # If VisVim was installed, unregister the DLL.
370 IfFileExists "$0\VisVim.dll" Has_VisVim No_VisVim
371 Has_VisVim:
372 ExecWait "regsvr32.exe /u /s $0\VisVim.dll"
373
374 No_VisVim:
375
376 # delete the context menu entry and batch files
377 ExecWait "$0\uninstal.exe -nsis"
378
379 # We may have been put to the background when uninstall did something.
380 BringToFront
381
382 # ask the user if the Vim version dir must be removed
383 MessageBox MB_YESNO|MB_ICONQUESTION \
384 "Would you like to delete $0?$\n \
385 $\nIt contains the Vim executables and runtime files." IDNO NoRemoveExes
386
387 Delete /REBOOTOK $0\*.dll
388 ClearErrors
389 # Remove everything but *.dll files. Avoids that
390 # a lot remains when gvimext.dll cannot be deleted.
391 RMDir /r $0\colors
392 RMDir /r $0\compiler
393 RMDir /r $0\doc
394 RMDir /r $0\ftplugin
395 RMDir /r $0\indent
396 RMDir /r $0\macros
397 RMDir /r $0\plugin
398 RMDir /r $0\syntax
399 RMDir /r $0\tools
400 RMDir /r $0\tutor
401 RMDir /r $0\VisVim
402 RMDir /r $0\lang
403 RMDir /r $0\keymap
404 Delete $0\*.exe
405 Delete $0\*.bat
406 Delete $0\*.vim
407 Delete $0\*.txt
408
409 IfErrors ErrorMess NoErrorMess
410 ErrorMess:
411 MessageBox MB_OK|MB_ICONEXCLAMATION \
412 "Some files in $0 have not been deleted!$\nYou must do it manually."
413 NoErrorMess:
414
415 # No error message if the "vim62" directory can't be removed, the
416 # gvimext.dll may still be there.
417 RMDir $0
418
419 NoRemoveExes:
420 # get the parent dir of the installation
421 Push $INSTDIR
422 Call un.GetParent
423 Pop $0
424 StrCpy $1 $0
425
426 # if a plugin dir was created at installation ask the user to remove it
427 # first look in the root of the installation then in HOME
428 IfFileExists $1\vimfiles AskRemove 0
429 ReadEnvStr $1 "HOME"
430 StrCmp $1 "" NoRemove 0
431
432 IfFileExists $1\vimfiles 0 NoRemove
433
434 AskRemove:
435 MessageBox MB_YESNO|MB_ICONQUESTION \
436 "Remove all files in your $1\vimfiles directory? \
437 $\nIf you have created something there that you want to keep, click No" IDNO Fin
438 RMDir /r $1\vimfiles
439 NoRemove:
440
441 # ask the user if the Vim root dir must be removed
442 MessageBox MB_YESNO|MB_ICONQUESTION \
443 "Would you like to remove $0?$\n \
444 $\nIt contains your Vim configuration files!" IDNO NoDelete
445 RMDir /r $0 ; skipped if no
446 NoDelete:
447
448 Fin:
449 Call un.onUnInstSuccess
450
451SectionEnd