Fix bugs in previous commit that caused FTBFS in synfig and ETL FTBFS with older...
[synfig.git] / synfig-core / tags / synfig_0_61_04 / synfig-core / win32inst.nsi.in
1 ; example2.nsi
2 ;
3 ; This script is based on example1.nsi, but it remember the directory, 
4 ; has uninstall support and (optionally) installs start menu shortcuts.
5 ;
6 ; It will install makensisw.exe into a directory that the user selects,
7
8 !include "MUI.nsh"
9
10 ;--------------------------------
11
12 ; The name of the installer
13 Name "@PACKAGE_NAME@ @PACKAGE_VERSION@"
14
15 !define PRODUCT_WEB_SITE "http://voria.com/synfig/"
16
17 ; The file to write
18 OutFile "@PACKAGE_TARNAME@-@PACKAGE_VERSION@.exe"
19
20 ; The default installation directory
21 InstallDir $PROGRAMFILES\@PACKAGE_TARNAME@
22
23 ; Registry key to check for directory (so if you install again, it will 
24 ; overwrite the old one automatically)
25 InstallDirRegKey HKLM "Software\Voria_@PACKAGE_TARNAME@" "Install_Dir"
26
27 !define VERSION_MAJ "@VERSION_MAJ@"
28 !define VERSION_MIN "@VERSION_MIN@"
29 !define VERSION_REV "@VERSION_REV@"
30
31 !define SYNFIG_REG_KEY "Software\@PACKAGE_TARNAME@\@API_VERSION@"
32 !define SYNFIG_UNINSTALL_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\@PACKAGE_TARNAME@"
33 !define SYNFIG_UNINSTALL_EXE "uninstall-@PACKAGE_TARNAME@.exe"
34
35 !define MUI_ABORTWARNING
36
37 ;--------------------------------
38
39 ; Pages
40
41 #Page components
42 #Page directory
43 #Page instfiles
44
45 #UninstPage uninstConfirm
46 #UninstPage instfiles
47
48 ;CustomGuiInit
49
50 !insertmacro MUI_PAGE_WELCOME
51 !insertmacro MUI_PAGE_LICENSE "@srcdir@\COPYING"
52 #!insertmacro MUI_PAGE_LICENSE "@srcdir@\alphalicense.txt"
53 ;Page custom PageReinstall ; PageLeaveReinstall
54 !insertmacro MUI_PAGE_COMPONENTS
55 !insertmacro MUI_PAGE_DIRECTORY
56 !insertmacro MUI_PAGE_INSTFILES
57
58 !insertmacro MUI_UNPAGE_CONFIRM
59 !insertmacro MUI_UNPAGE_COMPONENTS
60 !insertmacro MUI_UNPAGE_INSTFILES
61
62 !insertmacro MUI_LANGUAGE "English"
63
64 ;--------------------------------
65
66 ; The stuff to install
67 Section ""
68
69   SectionIn RO
70   
71   ; Set output path to the installation directory.
72   SetOutPath $INSTDIR\bin
73
74   File "C:\mingw\bin\mingwm10.dll"
75   File "C:\GTK\bin\libfreetype-6.dll"
76   File "C:\GTK\bin\libxml2.dll"
77   
78   ; Put file there
79 ;  File "synfig_modules.conf"
80   
81   CreateDirectory "$INSTDIR\etc"
82   Delete $INSTDIR\etc\synfig_modules.conf
83         
84   ; Write the installation path into the registry
85   ; WriteRegStr HKLM "Software\Voria_@PACKAGE_TARNAME@" "Install_Dir" "$INSTDIR"
86   
87   WriteRegStr HKLM "${SYNFIG_REG_KEY}" "Path" "$INSTDIR"
88   WriteRegStr HKLM "${SYNFIG_REG_KEY}" "Version" "@PRODUCT_VERSION@"
89   
90   ; Write the uninstall keys for Windows
91   WriteRegStr HKLM "${SYNFIG_UNINSTALL_KEY}" "DisplayName" "@PACKAGE_NAME@"
92   WriteRegStr HKLM "${SYNFIG_UNINSTALL_KEY}" "DisplayVersion" "@PACKAGE_VERSION@"
93   WriteRegStr HKLM "${SYNFIG_UNINSTALL_KEY}" "UninstallString" '"$INSTDIR\${SYNFIG_UNINSTALL_EXE}"'
94   WriteRegDWORD HKLM "${SYNFIG_UNINSTALL_KEY}" "NoModify" 1
95   WriteRegDWORD HKLM "${SYNFIG_UNINSTALL_KEY}" "NoRepair" 1
96   WriteUninstaller "${SYNFIG_UNINSTALL_EXE}"
97   
98 SectionEnd
99
100
101 ; Optional section (can be disabled by the user)
102 ;Section "Start Menu Shortcuts"
103
104 ;  CreateDirectory "$SMPROGRAMS\Example2"
105 ;  CreateShortCut "$SMPROGRAMS\Example2\Uninstall.lnk" "$INSTDIR\uninstall.exe" "" "$INSTDIR\uninstall.exe" 0
106 ;  CreateShortCut "$SMPROGRAMS\Example2\Example2 (MakeNSISW).lnk" "$INSTDIR\makensisw.exe" "" "$INSTDIR\makensisw.exe" 0
107   
108 ;SectionEnd
109
110 ; Optional section (can be disabled by the user)
111 Section "Start Menu Shortcuts"
112
113   CreateDirectory "$SMPROGRAMS\Voria"
114   CreateShortCut "$SMPROGRAMS\Voria\Uninstall Synfig Core.lnk" "$INSTDIR\uninstall-@PACKAGE_TARNAME@.exe" "" "$INSTDIR\uninstall-@PACKAGE_TARNAME@.exe" 0
115   
116 SectionEnd
117
118
119 ;--------------------------------
120
121 ; Uninstaller
122
123 Section "Uninstall"
124   
125   ; Remove registry keys
126   DeleteRegKey HKLM "${SYNFIG_REG_KEY}"
127   DeleteRegKey HKLM "${SYNFIG_UNINSTALL_KEY}"
128   ; DeleteRegKey HKLM "Software\Voria_@PACKAGE_TARNAME@"
129
130   ; Remove files and uninstaller
131   ;Delete $INSTDIR\synfig.exe
132   Delete $INSTDIR\uninstall-@PACKAGE_TARNAME@.exe
133   Delete $INSTDIR\etc\synfig_modules.conf
134   RMDir $INSTDIR\bin
135   RMDir $INSTDIR\etc
136
137   ; Remove shortcuts, if any
138
139   Delete "$SMPROGRAMS\Voria\Uninstall Synfig Core.lnk"
140   ; Remove directories used
141   ;RMDir "$SMPROGRAMS\Example2"
142   RMDir "$INSTDIR"
143
144 SectionEnd
145
146 !include @srcdir@\src\synfig\synfig.nsh
147 !include @srcdir@\src\tool\tool.nsh
148
149 Section "Examples"
150         SetOutPath $INSTDIR\examples
151         File "@srcdir@\examples\*.sif"
152         CreateDirectory "$SMPROGRAMS\Voria"
153         CreateShortCut "$SMPROGRAMS\Voria\Examples.lnk" "$INSTDIR\examples" "" "$INSTDIR\examples" 0
154 SectionEnd
155
156 Section "un.Examples"
157         Delete "$SMPROGRAMS\Voria\Examples.lnk"
158         Delete "$INSTDIR\examples\*.sif"
159         RMDir "$INSTDIR\examples"
160 SectionEnd
161
162 SubSection "PlugIns"
163 SubSection "Layers"
164 !include "@srcdir@\src\modules\lyr_std\lyr_std.nsh"
165 !include "@srcdir@\src\modules\mod_filter\mod_filter.nsh"
166 !include "@srcdir@\src\modules\mod_gradient\mod_gradient.nsh"
167 !include "@srcdir@\src\modules\mod_noise\mod_noise.nsh"
168 !include "@srcdir@\src\modules\mod_particle\mod_particle.nsh"
169 !include "@srcdir@\src\modules\mod_geometry\mod_geometry.nsh"
170 !include "@srcdir@\src\modules\lyr_freetype\lyr_freetype.nsh"
171 SubSectionEnd
172 SubSection "Render Targets"
173 !include "@srcdir@\src\modules\mod_bmp\mod_bmp.nsh"
174 ;!include "@srcdir@\src\modules\mod_dv\mod_dv.nsh"
175 ;!include "@srcdir@\src\modules\mod_ffmpeg\mod_ffmpeg.nsh"
176 ;!include "@srcdir@\src\modules\mod_gif\mod_gif.nsh"
177 ;!include "@srcdir@\src\modules\mod_imagemagick\mod_imagemagick.nsh"
178 !include "@srcdir@\src\modules\mod_jpeg\mod_jpeg.nsh"
179 !include "@srcdir@\src\modules\mod_png\mod_png.nsh"
180 !include "@srcdir@\src\modules\mod_ppm\mod_ppm.nsh"
181 !include "@srcdir@\src\modules\mod_yuv420p\mod_yuv420p.nsh"
182 SubSectionEnd
183 SubSectionEnd
184
185
186 SubSection "un.PlugIns"
187 SubSection "un.Layers"
188 !include "@srcdir@\src\modules\lyr_std\unlyr_std.nsh"
189 !include "@srcdir@\src\modules\lyr_freetype\unlyr_freetype.nsh"
190 !include "@srcdir@\src\modules\mod_filter\unmod_filter.nsh"
191 !include "@srcdir@\src\modules\mod_gradient\unmod_gradient.nsh"
192 !include "@srcdir@\src\modules\mod_noise\unmod_noise.nsh"
193 !include "@srcdir@\src\modules\mod_particle\unmod_particle.nsh"
194 !include "@srcdir@\src\modules\mod_geometry\unmod_geometry.nsh"
195 SubSectionEnd
196 SubSection "un.Render Targets"
197 !include "@srcdir@\src\modules\mod_bmp\unmod_bmp.nsh"
198 ;!include "@srcdir@\src\modules\mod_dv\unmod_dv.nsh"
199 ;!include "@srcdir@\src\modules\mod_ffmpeg\unmod_ffmpeg.nsh"
200 ;!include "@srcdir@\src\modules\mod_gif\unmod_gif.nsh"
201 ;!include "@srcdir@\src\modules\mod_imagemagick\unmod_imagemagick.nsh"
202 !include "@srcdir@\src\modules\mod_jpeg\unmod_jpeg.nsh"
203 !include "@srcdir@\src\modules\mod_png\unmod_png.nsh"
204 !include "@srcdir@\src\modules\mod_ppm\unmod_ppm.nsh"
205 !include "@srcdir@\src\modules\mod_yuv420p\unmod_yuv420p.nsh"
206 SubSectionEnd
207 SubSectionEnd
208
209 Function .onInit
210         ; Get installer location
211         ReadRegStr $R0 HKLM "${SYNFIG_UNINSTALL_KEY}" "UninstallString"
212 ;       IfErrors 0 +2
213 ;       ReadRegStr $R0 HKCU "${SYNFIG_UNINSTALL_KEY}" "UninstallString"
214         
215         StrCmp $R0 "" done
216
217         ; Get current installed version
218         ReadRegStr $R1 HKLM "${SYNFIG_UNINSTALL_KEY}" "DisplayVersion"
219 ;       IfErrors 0 +2
220 ;       ReadRegStr $R1 HKCU "${SYNFIG_UNINSTALL_KEY}" "DisplayVersion"
221
222 ;  StrCmp $R1 ${PRODUCT_VERSION} done
223
224         MessageBox MB_YESNOCANCEL|MB_ICONEXCLAMATION "A previous version of @PACKAGE_NAME@ appears to be installed. Would you like to uninstall it first?" IDNO done IDCANCEL abortInstall
225
226         ; Run the uninstaller
227         
228         ClearErrors
229         ; CopyFiles "$R0" $TEMP
230         ExecWait '$R0 _?=$INSTDIR'
231         IfErrors no_remove_uninstaller
232         Delete $R0
233         RMDir $INSTDIR
234
235 no_remove_uninstaller:
236 ;    Delete "$TEMP\$R0"
237         
238     ; Check that the user completed the uninstallation by examining the registry
239     ReadRegStr $R0 HKLM "${SYNFIG_UNINSTALL_KEY}" "UninstallString"
240         StrCmp $R0 "" done abortInstall
241         ReadRegStr $R0 HKCU "${SYNFIG_UNINSTALL_KEY}" "UninstallString"
242         StrCmp $R0 "" done abortInstall
243
244 abortInstall:
245     MessageBox MB_OK|MB_ICONEXCLAMATION "Unable to uninstall previous version of @PACKAGE_NAME@"
246     Abort
247
248 done:
249     BringToFront
250
251 FunctionEnd