* support/scripts/sdcc.nsi: added lib/pic to the package
[fw/sdcc] / support / scripts / sdcc.nsi
1 # sdcc.nsi - NSIS installer script for SDCC
2 #
3 # Copyright (c) 2003,2004 Borut Razem
4 #
5 # This file is part of sdcc.
6 #
7 #  This software is provided 'as-is', without any express or implied
8 #  warranty.  In no event will the authors be held liable for any damages
9 #  arising from the use of this software.
10 #
11 #  Permission is granted to anyone to use this software for any purpose,
12 #  including commercial applications, and to alter it and redistribute it
13 #  freely, subject to the following restrictions:
14 #
15 #  1. The origin of this software must not be misrepresented; you must not
16 #     claim that you wrote the original software. If you use this software
17 #     in a product, an acknowledgment in the product documentation would be
18 #     appreciated but is not required.
19 #  2. Altered source versions must be plainly marked as such, and must not be
20 #     misrepresented as being the original software.
21 #  3. This notice may not be removed or altered from any source distribution.
22 #
23 #  Borut Razem
24 #  borut.razem@siol.net
25
26 # How to create WIN32 setup.exe
27 #
28 # - unpack WIN32 mingw daily snapshot sdcc-snapshot-i586-mingw32msvc-yyyymmdd.zip
29 #   to a clean directory (the option to create directories should be enambled).
30 #   A sub directory sdcc is created (referenced as PKGDIR in continuation).
31 # - copy files sdcc/support/scripts/sdcc.ico and sdcc/support/scripts/sdcc.nsi
32 #   (this file) from the sdcc CVS snapshot to the PKGDIR directory
33 # - copy file COPYING from the sdcc CVS snapshot to the PKGDIR directory,
34 #   rename it to COPYING.TXT and convert file COPYING to DOS format:
35 #   unix2dos COPYING.TXT
36 # - run NSIS installer from PKGDIR directory:
37 #   "c:\Program Files\NSIS\makensis.exe" sdcc.nsi
38 # - A setup file setup.exe is created in PKGDIR directory.
39 #   Rename it to sdcc_yyyymmdd_setup.exe and upload it
40 #   to sdcc download repository at sourceforge.net
41 #
42 #
43 # How to upload secc setup.exe tosourceforge.net
44 #
45 # Execute following commands from the cmd prompt:
46 # - sftp sdcc.sourceforge.net
47 # - cd /home/groups/s/sd/sdcc/htdocs/snapshots/i586-mingw32msvc-setup
48 # - put sdcc_yyyymmdd_setup.exe
49 # - quit
50
51
52 !include "MUI.nsh"
53
54 SetCompressor lzma
55
56 !define SDCC_ROOT "."
57
58 !define DEV_ROOT "${SDCC_ROOT}"
59
60 !system "unix2dos ${SDCC_ROOT}\doc\ChangeLog_head.txt" = 0
61 !system "unix2dos ${SDCC_ROOT}\doc\README.TXT" = 0
62
63 InstType "Full (Bin, Doc, Lib, Src)"
64 InstType "Medium (Bin, Doc, Lib)"
65 InstType "Compact (Bin, Doc)"
66
67 ;--------------------------------
68 ;Variables
69
70 Var MUI_STARTMENUPAGE_VARIABLE
71
72 ;--------------------------------
73 !define MUI_ABORTWARNING
74
75 !insertmacro MUI_PAGE_WELCOME
76 !insertmacro MUI_PAGE_LICENSE "${SDCC_ROOT}\COPYING.TXT"
77 !define MUI_STARTMENUPAGE_DEFAULTFOLDER "SDCC"
78 !define MUI_STARTMENUPAGE_REGISTRY_ROOT "HKLM"
79 !define MUI_STARTMENUPAGE_REGISTRY_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\SDCC"
80 !define MUI_STARTMENUPAGE_REGISTRY_VALUENAME "NSIS:StartMenuDir"
81 !define MUI_STARTMENUPAGE_NODISABLE
82 !insertmacro MUI_PAGE_STARTMENU Application $MUI_STARTMENUPAGE_VARIABLE
83 !insertmacro MUI_PAGE_COMPONENTS
84 !insertmacro MUI_PAGE_DIRECTORY
85 !insertmacro MUI_PAGE_INSTFILES
86 !insertmacro MUI_PAGE_FINISH
87
88 !insertmacro MUI_UNPAGE_INSTFILES
89
90 !insertmacro MUI_LANGUAGE "English"
91
92 Name "SDCC"
93 BrandingText ""
94 OutFile "setup.exe"
95 InstallDir "$PROGRAMFILES\SDCC"
96 ShowInstDetails show
97 ShowUnInstDetails show
98
99 Function .onInit
100   ;Uninstall the old version, if present
101   ReadRegStr $R0 HKLM \
102   "Software\Microsoft\Windows\CurrentVersion\Uninstall\$(^Name)" \
103   "UninstallString"
104   StrCmp $R0 "" inst
105
106   MessageBox MB_OKCANCEL|MB_ICONEXCLAMATION \
107   "$(^Name) is already installed. $\n$\nClick 'OK' to remove the \
108   previous version or 'Cancel' to cancel this upgrade." \
109   IDOK uninst
110   Abort
111
112 uninst:
113   ; Run the uninstaller
114   ClearErrors
115   ExecWait '$R0 _?=$INSTDIR' ;Do not copy the uninstaller to a temp file
116
117   ;IfErrors no_remove_uninstaller
118   ;  ;You can either use Delete /REBOOTOK in the uninstaller or add some code
119   ;  ;here to remove to remove the uninstaller. Use a registry key to check
120   ;  ;whether the user has chosen to uninstall. If you are using an uninstaller
121   ;  ;components page, make sure all sections are uninstalled.
122   ;no_remove_uninstaller:
123
124   Goto done
125 inst:
126
127   ; Install the new version
128   MessageBox MB_YESNO|MB_ICONQUESTION "This will install $(^Name). Do you wish to continue?" IDYES +2
129   Abort
130
131 done:
132 FunctionEnd
133
134 Section -Common
135   SetOutPath "$INSTDIR"
136   File ".\sdcc.ico"
137   File "${SDCC_ROOT}\COPYING.TXT"
138 SectionEnd
139
140 Section "SDCC application files"
141   SectionIn 1 2 3 RO
142   SetOutPath "$INSTDIR\bin"
143   File "${SDCC_ROOT}\bin\*.exe"
144 SectionEnd
145
146 Section "SDCC documentation"
147   SectionIn 1 2 3
148   SetOutPath "$INSTDIR\doc"
149   File "${SDCC_ROOT}\doc\ChangeLog_head.txt"
150   File "${SDCC_ROOT}\doc\README.TXT"
151 SectionEnd
152
153 Section "SDCC include files"
154   SectionIn 1 2
155   SetOutPath "$INSTDIR\include\asm\default"
156   File "${DEV_ROOT}\include\asm\default\features.h"
157   SetOutPath "$INSTDIR\include\asm\ds390"
158   File "${DEV_ROOT}\include\asm\ds390\features.h"
159   SetOutPath "$INSTDIR\include\asm\gbz80"
160   File "${DEV_ROOT}\include\asm\gbz80\features.h"
161   SetOutPath "$INSTDIR\include\asm\mcs51"
162   File "${DEV_ROOT}\include\asm\mcs51\features.h"
163   SetOutPath "$INSTDIR\include\asm\pic16"
164   File "${DEV_ROOT}\include\asm\pic16\features.h"
165   SetOutPath "$INSTDIR\include\asm\z80"
166   File "${DEV_ROOT}\include\asm\z80\features.h"
167   SetOutPath "$INSTDIR\include\hc08"
168   File "${DEV_ROOT}\include\hc08\*.h"
169   SetOutPath "$INSTDIR\include\mcs51"
170   File "${DEV_ROOT}\include\mcs51\*.h"
171   SetOutPath "$INSTDIR\include\pic16"
172   File "${DEV_ROOT}\include\pic16\*.h"
173   SetOutPath "$INSTDIR\include\z80"
174   File "${DEV_ROOT}\include\z80\*.h"
175   SetOutPath "$INSTDIR\include"
176   File "${DEV_ROOT}\include\*.h"
177 SectionEnd
178
179 Section "SDCC DS390 library"
180   SectionIn 1 2
181   SetOutPath "$INSTDIR\lib\ds390"
182   File "${DEV_ROOT}\lib\ds390\*.asm"
183   File "${DEV_ROOT}\lib\ds390\*.rel"
184   File "${DEV_ROOT}\lib\ds390\*.lib"
185 SectionEnd
186
187 Section "SDCC DS400 library"
188   SectionIn 1 2
189   SetOutPath "$INSTDIR\lib\ds400"
190   File "${DEV_ROOT}\lib\ds400\*.asm"
191   File "${DEV_ROOT}\lib\ds400\*.rel"
192   File "${DEV_ROOT}\lib\ds400\*.lib"
193 SectionEnd
194
195 Section "SDCC GBZ80 library"
196   SectionIn 1 2
197   SetOutPath "$INSTDIR\lib\gbz80"
198   File "${DEV_ROOT}\lib\gbz80\*.asm"
199   File "${DEV_ROOT}\lib\gbz80\*.o"
200   File "${DEV_ROOT}\lib\gbz80\*.lib"
201 SectionEnd
202
203 Section "SDCC Z80 library"
204   SectionIn 1 2
205   SetOutPath "$INSTDIR\lib\z80"
206   File "${DEV_ROOT}\lib\z80\*.asm"
207   File "${DEV_ROOT}\lib\z80\*.o"
208   File "${DEV_ROOT}\lib\z80\*.lib"
209 SectionEnd
210
211 Section "SDCC large model library"
212   SectionIn 1 2
213   SetOutPath "$INSTDIR\lib\large"
214   File "${DEV_ROOT}\lib\large\*.asm"
215   File "${DEV_ROOT}\lib\large\*.rel"
216   File "${DEV_ROOT}\lib\large\*.lib"
217 SectionEnd
218
219 Section "SDCC small model library"
220   SectionIn 1 2
221   SetOutPath "$INSTDIR\lib\small"
222   File "${DEV_ROOT}\lib\small\*.asm"
223   File "${DEV_ROOT}\lib\small\*.rel"
224   File "${DEV_ROOT}\lib\small\*.lib"
225 SectionEnd
226
227 Section "SDCC HC08 library"
228   SectionIn 1 2
229   SetOutPath "$INSTDIR\lib\hc08"
230   File "${DEV_ROOT}\lib\hc08\*.asm"
231   File "${DEV_ROOT}\lib\hc08\*.rel"
232   File "${DEV_ROOT}\lib\hc08\*.lib"
233 SectionEnd
234
235 Section "SDCC PIC16 library"
236   SectionIn 1 2
237   SetOutPath "$INSTDIR\lib\pic16"
238   File "${DEV_ROOT}\lib\pic16\*.o"
239   File "${DEV_ROOT}\lib\pic16\*.lib"
240 SectionEnd
241
242 Section "SDCC PIC library"
243   SectionIn 1 2
244   SetOutPath "$INSTDIR\lib\pic"
245   File "${DEV_ROOT}\lib\pic\*.lib"
246 SectionEnd
247
248 Section "SDCC library sources"
249   SectionIn 1
250   SetOutPath "$INSTDIR\lib\src\ds390\examples"
251   File "${DEV_ROOT}\lib\src\ds390\examples\MOVED"
252
253   SetOutPath "$INSTDIR\lib\src\ds390"
254   File "${DEV_ROOT}\lib\src\ds390\*.c"
255   File "${DEV_ROOT}\lib\src\ds390\libds390.lib"
256   File "${DEV_ROOT}\lib\src\ds390\Makefile"
257   File "${DEV_ROOT}\lib\src\ds390\Makefile.dep"
258
259   SetOutPath "$INSTDIR\lib\src\ds400"
260   File "${DEV_ROOT}\lib\src\ds400\*.c"
261   File "${DEV_ROOT}\lib\src\ds400\libds400.lib"
262   File "${DEV_ROOT}\lib\src\ds400\Makefile"
263   File "${DEV_ROOT}\lib\src\ds400\Makefile.dep"
264
265   SetOutPath "$INSTDIR\lib\src\gbz80"
266   File "${DEV_ROOT}\lib\src\gbz80\*.c"
267   File "${DEV_ROOT}\lib\src\gbz80\*.s"
268   File "${DEV_ROOT}\lib\src\gbz80\gbz80.lib"
269   File "${DEV_ROOT}\lib\src\gbz80\Makefile"
270   File "${DEV_ROOT}\lib\src\gbz80\README"
271
272   SetOutPath "$INSTDIR\lib\src\z80"
273   File "${DEV_ROOT}\lib\src\z80\*.c"
274   File "${DEV_ROOT}\lib\src\z80\*.s"
275   File "${DEV_ROOT}\lib\src\z80\Makefile"
276   File "${DEV_ROOT}\lib\src\z80\README"
277   File "${DEV_ROOT}\lib\src\z80\z80.lib"
278
279   SetOutPath "$INSTDIR\lib\src\hc08"
280   File "${DEV_ROOT}\lib\src\hc08\*.c"
281   File "${DEV_ROOT}\lib\src\hc08\Makefile"
282   File "${DEV_ROOT}\lib\src\hc08\hc08.lib"
283
284   SetOutPath "$INSTDIR\lib\src"
285   File "${DEV_ROOT}\lib\src\*.c"
286 SectionEnd
287
288 Section -Icons
289 !insertmacro MUI_STARTMENU_WRITE_BEGIN Application
290   CreateDirectory "$SMPROGRAMS\$MUI_STARTMENUPAGE_VARIABLE"
291   CreateShortCut "$SMPROGRAMS\$MUI_STARTMENUPAGE_VARIABLE\SDCC on the Web.lnk" "$INSTDIR\sdcc.url" 
292   CreateShortCut "$SMPROGRAMS\$MUI_STARTMENUPAGE_VARIABLE\Uninstall SDCC.lnk" "$INSTDIR\uninstall.exe" 
293   CreateShortCut "$SMPROGRAMS\$MUI_STARTMENUPAGE_VARIABLE\Documentation.lnk" "$INSTDIR\doc\README.TXT" "" "$INSTDIR\sdcc.ico" "" "" "" ""
294   CreateShortCut "$SMPROGRAMS\$MUI_STARTMENUPAGE_VARIABLE\Change Log.lnk" "$INSTDIR\doc\ChangeLog_head.txt" "" "$INSTDIR\sdcc.ico" "" "" "" ""
295   CreateShortCut "$SMPROGRAMS\$MUI_STARTMENUPAGE_VARIABLE\GPL 2 License.lnk" "$INSTDIR\COPYING.TXT" 
296 !insertmacro MUI_STARTMENU_WRITE_END
297 SectionEnd
298
299 Section -INI
300   WriteIniStr "$INSTDIR\sdcc.url" "InternetShortcut" "URL" "http://sdcc.sourceforge.net/"
301 SectionEnd
302
303 Section -PostInstall
304   WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\SDCC" "DisplayName" "SDCC"
305   WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\SDCC" "UninstallString" "$INSTDIR\uninstall.exe"
306   WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\SDCC" "Publisher" "sdcc.sourceforge.net"
307   WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\SDCC" "URLInfoAbout" "http://sdcc.sourceforge.net/"
308   WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\SDCC" "HelpLink" "http://sdcc.sourceforge.net/"
309   WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\SDCC" "URLUpdateInfo" "http://sdcc.sourceforge.net/"
310   WriteUninstaller "$INSTDIR\uninstall.exe"
311 SectionEnd
312
313 Section -AddToPath
314   MessageBox MB_ICONQUESTION|MB_YESNO|MB_DEFBUTTON2 "Do you want to add $INSTDIR\bin to the PATH?" IDNO +3
315     Push "$INSTDIR\bin"
316     Call AddToPath
317 SectionEnd
318
319
320 ;;;; Uninstaller code ;;;;
321
322 Function un.onInit
323   MessageBox MB_ICONQUESTION|MB_YESNO|MB_DEFBUTTON2 "Are you sure you want to completely remove $(^Name) and all of its components?" IDYES +2
324   Abort
325 FunctionEnd
326
327 Function un.onUninstSuccess
328   HideWindow
329   MessageBox MB_ICONINFORMATION|MB_OK "$(^Name) was successfully removed from your computer."
330 FunctionEnd
331
332 Section Uninstall
333   !insertmacro MUI_STARTMENU_GETFOLDER Application $MUI_STARTMENUPAGE_VARIABLE
334
335   Delete "$INSTDIR\sdcc.url"
336
337   DeleteRegValue HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\SDCC" "NSIS:StartMenuDir"
338   DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\SDCC"
339
340   Delete "$INSTDIR\uninstall.exe"
341   Delete "$SMPROGRAMS\$MUI_STARTMENUPAGE_VARIABLE\GPL 2 License.lnk"
342   Delete "$SMPROGRAMS\$MUI_STARTMENUPAGE_VARIABLE\Change Log.lnk"
343   Delete "$SMPROGRAMS\$MUI_STARTMENUPAGE_VARIABLE\Documentation.lnk"
344   Delete "$SMPROGRAMS\$MUI_STARTMENUPAGE_VARIABLE\Uninstall SDCC.lnk"
345   Delete "$SMPROGRAMS\$MUI_STARTMENUPAGE_VARIABLE\SDCC on the Web.lnk"
346
347   Delete "$INSTDIR\lib\src\hc08\*.c"
348   Delete "$INSTDIR\lib\src\hc08\hc08.lib"
349   Delete "$INSTDIR\lib\src\hc08\Makefile"
350
351   Delete "$INSTDIR\lib\src\z80\*.c"
352   Delete "$INSTDIR\lib\src\z80\*.s"
353   Delete "$INSTDIR\lib\src\z80\z80.lib"
354   Delete "$INSTDIR\lib\src\z80\README"
355   Delete "$INSTDIR\lib\src\z80\Makefile"
356
357   Delete "$INSTDIR\lib\src\gbz80\*.c"
358   Delete "$INSTDIR\lib\src\gbz80\*.s"
359   Delete "$INSTDIR\lib\src\gbz80\gbz80.lib"
360   Delete "$INSTDIR\lib\src\gbz80\README"
361   Delete "$INSTDIR\lib\src\gbz80\Makefile"
362
363   Delete "$INSTDIR\lib\src\ds390\*.c"
364   Delete "$INSTDIR\lib\src\ds390\libds390.lib"
365   Delete "$INSTDIR\lib\src\ds390\Makefile.dep"
366   Delete "$INSTDIR\lib\src\ds390\Makefile"
367   Delete "$INSTDIR\lib\src\ds390\examples\MOVED"
368
369   Delete "$INSTDIR\lib\src\ds400\*.c"
370   Delete "$INSTDIR\lib\src\ds400\libds400.lib"
371   Delete "$INSTDIR\lib\src\ds400\Makefile.dep"
372   Delete "$INSTDIR\lib\src\ds400\Makefile"
373
374   Delete "$INSTDIR\lib\src\*.c"
375
376   Delete "$INSTDIR\lib\pic\*.lib"
377
378   Delete "$INSTDIR\lib\pic16\*.o"
379   Delete "$INSTDIR\lib\pic16\*.lib"
380
381   Delete "$INSTDIR\lib\hc08\*.rel"
382   Delete "$INSTDIR\lib\hc08\*.asm"
383   Delete "$INSTDIR\lib\hc08\*.lib"
384
385   Delete "$INSTDIR\lib\z80\*.o"
386   Delete "$INSTDIR\lib\z80\*.asm"
387   Delete "$INSTDIR\lib\z80\*.lib"
388
389   Delete "$INSTDIR\lib\small\*.asm"
390   Delete "$INSTDIR\lib\small\*.rel"
391   Delete "$INSTDIR\lib\small\*.lib"
392
393   Delete "$INSTDIR\lib\large\*.asm"
394   Delete "$INSTDIR\lib\large\*.rel"
395   Delete "$INSTDIR\lib\large\*.lib"
396
397   Delete "$INSTDIR\lib\gbz80\*.asm"
398   Delete "$INSTDIR\lib\gbz80\*.o"
399   Delete "$INSTDIR\lib\gbz80\*.lib"
400
401   Delete "$INSTDIR\lib\ds390\*.asm"
402   Delete "$INSTDIR\lib\ds390\*.rel"
403   Delete "$INSTDIR\lib\ds390\*.lib"
404
405   Delete "$INSTDIR\lib\ds400\*.asm"
406   Delete "$INSTDIR\lib\ds400\*.rel"
407   Delete "$INSTDIR\lib\ds400\*.lib"
408
409   Delete "$INSTDIR\include\asm\z80\*.h"
410   Delete "$INSTDIR\include\asm\pic16\*.h"
411   Delete "$INSTDIR\include\asm\mcs51\*.h"
412   Delete "$INSTDIR\include\asm\gbz80\*.h"
413   Delete "$INSTDIR\include\asm\ds390\*.h"
414   Delete "$INSTDIR\include\asm\default\*.h"
415   Delete "$INSTDIR\include\z80\*.h"
416   Delete "$INSTDIR\include\pic16\*.h"
417   Delete "$INSTDIR\include\mcs51\*.h"
418   Delete "$INSTDIR\include\hc08\*.h"
419   Delete "$INSTDIR\include\*.h"
420
421   Delete "$INSTDIR\doc\README.TXT"
422   Delete "$INSTDIR\doc\ChangeLog_head.txt"
423
424   Delete "$INSTDIR\bin\*.exe"
425
426   Delete "$INSTDIR\COPYING.TXT"
427   Delete "$INSTDIR\sdcc.ico"
428
429   RMDir "$SMPROGRAMS\$MUI_STARTMENUPAGE_VARIABLE"
430
431   RMDir "$INSTDIR\lib\src\z80"
432   RMDir "$INSTDIR\lib\src\gbz80"
433   RMDir "$INSTDIR\lib\src\ds390\examples"
434   RMDir "$INSTDIR\lib\src\ds390"
435   RMDir "$INSTDIR\lib\src\ds400"
436   RMDir "$INSTDIR\lib\src\hc08"
437   RMDir "$INSTDIR\lib\src"
438
439   RMDir "$INSTDIR\lib\pic"
440   RMDir "$INSTDIR\lib\pic16"
441   RMDir "$INSTDIR\lib\z80"
442   RMDir "$INSTDIR\lib\small"
443   RMDir "$INSTDIR\lib\large"
444   RMDir "$INSTDIR\lib\gbz80"
445   RMDir "$INSTDIR\lib\ds390"
446   RMDir "$INSTDIR\lib\ds400"
447   RMDir "$INSTDIR\lib\hc08"
448   RMDir "$INSTDIR\lib"
449
450   RMDir "$INSTDIR\include\asm\z80"
451   RMDir "$INSTDIR\include\asm\pic16"
452   RMDir "$INSTDIR\include\asm\mcs51"
453   RMDir "$INSTDIR\include\asm\gbz80"
454   RMDir "$INSTDIR\include\asm\ds390"
455   RMDir "$INSTDIR\include\asm\default"
456   RMDir "$INSTDIR\include\asm"
457   RMDir "$INSTDIR\include\z80"
458   RMDir "$INSTDIR\include\pic16"
459   RMDir "$INSTDIR\include\mcs51"
460   RMDir "$INSTDIR\include\hc08"
461   RMDir "$INSTDIR\include"
462
463   RMDir "$INSTDIR\doc"
464
465   RMDir "$INSTDIR\bin"
466
467   RMDir "$INSTDIR"
468
469   Push "$INSTDIR\bin"
470   Call un.RemoveFromPath
471
472   SetAutoClose true
473 SectionEnd
474
475 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
476 ; Path Manipulation functions                                                 ;
477 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
478
479 !verbose 3
480 !include "WinMessages.nsh"
481 !verbose 4
482
483 ; AddToPath - Adds the given dir to the search path.
484 ;        Input - head of the stack
485 ;        Note - Win9x systems requires reboot
486
487 Function AddToPath
488   Exch $0
489   Push $1
490   Push $2
491   Push $3
492   Push $4
493
494   ; don't add if the path doesn't exist
495   IfFileExists $0 "" AddToPath_done
496
497   Call IsNT
498   Pop $4
499   StrCmp $4 1 +3
500     ; Not on NT: read PATH from environment variable
501     ReadEnvStr $1 PATH
502     Goto +2
503     ; On NT: read PATH from registry
504     ReadRegStr $1 HKCU "Environment" "PATH"
505   Push "$1;"
506   Push "$0;"
507   Call StrStr
508   Pop $2
509   StrCmp $2 "" "" AddToPath_done
510   Push "$1;"
511   Push "$0\;"
512   Call StrStr
513   Pop $2
514   StrCmp $2 "" "" AddToPath_done
515   GetFullPathName /SHORT $3 $0
516   Push "$1;"
517   Push "$3;"
518   Call StrStr
519   Pop $2
520   StrCmp $2 "" "" AddToPath_done
521   Push "$1;"
522   Push "$3\;"
523   Call StrStr
524   Pop $2
525   StrCmp $2 "" "" AddToPath_done
526
527   StrCmp $4 1 AddToPath_NT
528     ; Not on NT
529     StrCpy $1 $WINDIR 2
530     FileOpen $1 "$1\autoexec.bat" a
531     FileSeek $1 -1 END
532     FileReadByte $1 $2
533     IntCmp $2 26 0 +2 +2 ; DOS EOF
534       FileSeek $1 -1 END ; write over EOF
535     FileWrite $1 "$\r$\nSET PATH=%PATH%;$3$\r$\n"
536     FileClose $1
537     SetRebootFlag true
538     Goto AddToPath_done
539
540   AddToPath_NT:
541     ReadRegStr $1 HKCU "Environment" "PATH"
542     StrCpy $2 $1 1 -1  ; copy last char
543     StrCmp $2 ";" 0 +2 ; if last char == ;
544       StrCpy $1 $1 -1  ; remove last char
545     StrCmp $1 "" AddToPath_NTdoIt
546       StrCpy $0 "$1;$0"
547     AddToPath_NTdoIt:
548       WriteRegExpandStr HKCU "Environment" "PATH" $0
549       SendMessage ${HWND_BROADCAST} ${WM_WININICHANGE} 0 "STR:Environment" /TIMEOUT=5000
550
551   AddToPath_done:
552     Pop $4
553     Pop $3
554     Pop $2
555     Pop $1
556     Pop $0
557 FunctionEnd
558
559 ; RemoveFromPath - Remove a given dir from the path
560 ;     Input: head of the stack
561
562 Function un.RemoveFromPath
563   Exch $0
564   Push $1
565   Push $2
566   Push $3
567   Push $4
568   Push $5
569   Push $6
570
571   IntFmt $6 "%c" 26 ; DOS EOF
572
573   Call un.IsNT
574   Pop $1
575   StrCmp $1 1 unRemoveFromPath_NT
576     ; Not on NT
577     StrCpy $1 $WINDIR 2
578     FileOpen $1 "$1\autoexec.bat" r
579     GetTempFileName $4
580     FileOpen $2 $4 w
581     GetFullPathName /SHORT $0 $0
582     StrCpy $0 "SET PATH=%PATH%;$0"
583     Goto unRemoveFromPath_dosLoop
584
585     unRemoveFromPath_dosLoop:
586       FileRead $1 $3
587       StrCpy $5 $3 1 -1 ; read last char
588       StrCmp $5 $6 0 +2 ; if DOS EOF
589         StrCpy $3 $3 -1 ; remove DOS EOF so we can compare
590       StrCmp $3 "$0$\r$\n" unRemoveFromPath_dosLoopRemoveLine
591       StrCmp $3 "$0$\n" unRemoveFromPath_dosLoopRemoveLine
592       StrCmp $3 "$0" unRemoveFromPath_dosLoopRemoveLine
593       StrCmp $3 "" unRemoveFromPath_dosLoopEnd
594       FileWrite $2 $3
595       Goto unRemoveFromPath_dosLoop
596       unRemoveFromPath_dosLoopRemoveLine:
597         SetRebootFlag true
598         Goto unRemoveFromPath_dosLoop
599
600     unRemoveFromPath_dosLoopEnd:
601       FileClose $2
602       FileClose $1
603       StrCpy $1 $WINDIR 2
604       Delete "$1\autoexec.bat"
605       CopyFiles /SILENT $4 "$1\autoexec.bat"
606       Delete $4
607       Goto unRemoveFromPath_done
608
609   unRemoveFromPath_NT:
610     ReadRegStr $1 HKCU "Environment" "PATH"
611     StrCpy $5 $1 1 -1 ; copy last char
612     StrCmp $5 ";" +2  ; if last char != ;
613       StrCpy $1 "$1;" ; append ;
614     Push $1
615     Push "$0;"
616     Call un.StrStr    ; Find `$0;` in $1
617     Pop $2            ; pos of our dir
618     StrCmp $2 "" unRemoveFromPath_done
619       ; else, it is in path
620       ; $0 - path to add
621       ; $1 - path var
622       StrLen $3 "$0;"
623       StrLen $4 $2
624       StrCpy $5 $1 -$4   ; $5 is now the part before the path to remove
625       StrCpy $6 $2 "" $3 ; $6 is now the part after the path to remove
626       StrCpy $3 $5$6
627
628       StrCpy $5 $3 1 -1  ; copy last char
629       StrCmp $5 ";" 0 +2 ; if last char == ;
630         StrCpy $3 $3 -1  ; remove last char
631
632       StrCmp $3 "" +3
633         ; New PATH not empty: update the registry
634         WriteRegExpandStr HKCU "Environment" "PATH" $3
635         Goto +2
636         ; New PATH empty: remove from the registry
637         DeleteRegValue HKCU "Environment" "PATH"
638       SendMessage ${HWND_BROADCAST} ${WM_WININICHANGE} 0 "STR:Environment" /TIMEOUT=5000
639
640   unRemoveFromPath_done:
641     Pop $6
642     Pop $5
643     Pop $4
644     Pop $3
645     Pop $2
646     Pop $1
647     Pop $0
648 FunctionEnd
649
650 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
651 ;            Utility Functions            ;
652 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
653
654 ; IsNT
655 ; no input
656 ; output, top of the stack = 1 if NT or 0 if not
657 ;
658 ; Usage:
659 ;   Call IsNT
660 ;   Pop $R0
661 ;  ($R0 at this point is 1 or 0)
662
663 !macro IsNT un
664 Function ${un}IsNT
665   Push $0
666   ReadRegStr $0 HKLM "SOFTWARE\Microsoft\Windows NT\CurrentVersion" CurrentVersion
667   StrCmp $0 "" 0 IsNT_yes
668   ; we are not NT.
669   Pop $0
670   Push 0
671   Return
672
673   IsNT_yes:
674     ; NT!!!
675     Pop $0
676     Push 1
677 FunctionEnd
678 !macroend
679 !insertmacro IsNT ""
680 !insertmacro IsNT "un."
681
682 ; StrStr
683 ; input, top of stack = string to search for
684 ;        top of stack-1 = string to search in
685 ; output, top of stack (replaces with the portion of the string remaining)
686 ; modifies no other variables.
687 ;
688 ; Usage:
689 ;   Push "this is a long ass string"
690 ;   Push "ass"
691 ;   Call StrStr
692 ;   Pop $R0
693 ;  ($R0 at this point is "ass string")
694
695 !macro StrStr un
696 Function ${un}StrStr
697 Exch $R1   ; st=haystack,old$R1, $R1=needle
698   Exch     ; st=old$R1,haystack
699   Exch $R2 ; st=old$R1,old$R2, $R2=haystack
700   Push $R3
701   Push $R4
702   Push $R5
703   StrLen $R3 $R1
704   StrCpy $R4 0
705   ; $R1=needle
706   ; $R2=haystack
707   ; $R3=len(needle)
708   ; $R4=cnt
709   ; $R5=tmp
710   loop:
711     StrCpy $R5 $R2 $R3 $R4
712     StrCmp $R5 $R1 done
713     StrCmp $R5 "" done
714     IntOp $R4 $R4 + 1
715     Goto loop
716 done:
717   StrCpy $R1 $R2 "" $R4
718   Pop $R5
719   Pop $R4
720   Pop $R3
721   Pop $R2
722   Exch $R1
723 FunctionEnd
724 !macroend
725 !insertmacro StrStr ""
726 !insertmacro StrStr "un."