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