1 ; * +------------------------------------+
2 ; * | Inspire Internet Relay Chat Daemon |
3 ; * +------------------------------------+
5 ; * InspIRCd: (C) 2002-2007 InspIRCd Development Team
6 ; * See: http://www.inspircd.org/wiki/index.php/Credits
8 ; * This program is free but copyrighted software; see
9 ; * the file COPYING for details.
11 ; * ---------------------------------------------------
13 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
15 ;;;; SET THE BUILD TO BE PACKAGED HERE ;;;;
17 !define BUILD "release"
19 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
21 ; HM NIS Edit Wizard helper defines
22 !define PRODUCT_NAME "InspIRCd"
23 !define PRODUCT_VERSION "1.2"
24 !define PRODUCT_PUBLISHER "InspIRCd Development Team"
25 !define PRODUCT_WEB_SITE "http://www.inspircd.org/"
26 !define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\inspircd.exe"
27 !define PRODUCT_UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}"
28 !define PRODUCT_UNINST_ROOT_KEY "HKLM"
34 ; MUI 1.67 compatible ------
38 !define MUI_ABORTWARNING
39 !define MUI_ICON "inspircd.ico"
40 !define MUI_UNICON "inspircd.ico"
43 !insertmacro MUI_PAGE_WELCOME
45 !define MUI_LICENSEPAGE_CHECKBOX
46 !insertmacro MUI_PAGE_LICENSE "..\docs\COPYING"
50 !insertmacro MUI_PAGE_COMPONENTS
52 !insertmacro MUI_PAGE_INSTFILES
54 !define MUI_FINISHPAGE_RUN "$INSTDIR\InspGUI.exe"
55 !insertmacro MUI_PAGE_FINISH
58 !insertmacro MUI_UNPAGE_INSTFILES
61 !insertmacro MUI_LANGUAGE "English"
64 !insertmacro MUI_RESERVEFILE_INSTALLOPTIONS
68 Name "${PRODUCT_NAME} ${PRODUCT_VERSION}"
70 InstallDir "$PROGRAMFILES\InspIRCd"
71 InstallDirRegKey HKLM "${PRODUCT_DIR_REGKEY}" ""
73 ShowUnInstDetails show
75 Function IsDotNetInstalled
78 StrCpy $1 "SOFTWARE\Microsoft\.NETFramework" ;registry entry to look in.
82 ;Enumerate the versions installed.
83 EnumRegKey $3 HKLM "$1\policy" $2
85 ;If we don't find any versions installed, it's not here.
86 StrCmp $3 "" noDotNet notEmpty
90 ;Find out if the RegKey starts with 'v'.
91 ;If it doesn't, goto the next key.
93 StrCmp $4 "v" +1 goNext
96 ;It starts with 'v'. Now check to see how the installed major version
97 ;relates to our required major version.
98 ;If it's equal check the minor version, if it's greater,
99 ;we found a good RegKey.
100 IntCmp $4 ${DOT_MAJOR} +1 goNext yesDotNetReg
101 ;Check the minor version. If it's equal or greater to our requested
102 ;version then we're good.
104 IntCmp $4 ${DOT_MINOR} yesDotNetReg goNext yesDotNetReg
107 ;Go to the next RegKey.
112 ;Now that we've found a good RegKey, let's make sure it's actually
113 ;installed by getting the install path and checking to see if the
114 ;mscorlib.dll exists.
115 EnumRegValue $2 HKLM "$1\policy\$3" 0
116 ;$2 should equal whatever comes after the major and minor versions
118 StrCmp $2 "" noDotNet
119 ReadRegStr $4 HKLM $1 "InstallRoot"
120 ;Hopefully the install root isn't empty.
121 StrCmp $4 "" noDotNet
122 ;build the actuall directory path to mscorlib.dll.
123 StrCpy $4 "$4$3.$2\mscorlib.dll"
124 IfFileExists $4 yesDotNet noDotNet
127 MessageBox MB_OK "You do not have have v${DOT_MAJOR}.${DOT_MINOR} or greater of the .NET framework installed. This is required for the InspIRCd Monitor, however you can still launch the IRCd manually."
130 ;Everything checks out. Go on with the rest of the installation.
134 Section "Binary Executable" SEC01
135 Call IsDotNetInstalled
138 File "vcredist_x86.exe"
139 ExecWait "$TEMP\vcredist_x86.exe"
140 SetOutPath "$INSTDIR"
142 File "..\bin\${BUILD}\InspGUI.exe"
143 CreateDirectory "$SMPROGRAMS\InspIRCd"
144 CreateShortCut "$SMPROGRAMS\InspIRCd\InspIRCd.lnk" "$INSTDIR\InspGUI.exe"
145 SetOutPath "$INSTDIR\bin"
147 File "..\bin\${BUILD}\bin\inspircd.exe"
148 DetailPrint "Installing InspIRCd service..."
149 nsExec::Exec /TIMEOUT=30000 '"$INSTDIR\bin\inspircd.exe" --installservice'
152 Section "Config Files" SEC02
153 SetOutPath "$INSTDIR\conf"
154 File "..\conf\inspircd.motd.example"
155 File "..\conf\inspircd.helpop-full.example"
156 File "..\conf\inspircd.helpop.example"
157 File "..\conf\inspircd.filter.example"
158 File "..\conf\inspircd.conf.example"
159 File "..\conf\inspircd.censor.example"
160 File "..\conf\inspircd.rules.example"
161 File "..\conf\inspircd.quotes.example"
164 Section "Command Handlers" SEC03
165 SetOutPath "$INSTDIR\lib"
166 File "..\bin\${BUILD}\lib\cmd_*.so"
169 Section "Modules" SEC04
170 SetOutPath "$INSTDIR\modules"
171 File "..\bin\${BUILD}\modules\m_*.so"
174 Section "SSL Modules" SEC05
175 SetOutPath "$INSTDIR\bin"
177 File "..\bin\${BUILD}\bin\libgcrypt-11.dll"
178 File "..\bin\${BUILD}\bin\libgnutls-13.dll"
179 File "..\bin\${BUILD}\bin\libgnutls-extra-13.dll"
180 File "..\bin\${BUILD}\bin\libgnutls-openssl-13.dll"
181 File "..\bin\${BUILD}\bin\libgpg-error-0.dll"
182 File "..\bin\${BUILD}\bin\libopencdk-8.dll"
183 File "..\bin\${BUILD}\bin\libtasn1-3.dll"
184 SetOutPath "$INSTDIR\modules"
185 File "c:\temp\m_ssl_gnutls.so"
186 File "c:\temp\m_sslinfo.so"
187 File "c:\temp\m_ssl_oper_cert.so"
188 SetOutPath "$INSTDIR\conf"
194 Section "Regexp Modules" SEC06
195 SetOutPath "$INSTDIR\bin"
197 File "..\bin\${BUILD}\bin\pcre.dll"
198 SetOutPath "$INSTDIR\modules"
199 File "c:\temp\m_filter_pcre.so"
202 Section -AdditionalIcons
204 WriteIniStr "$INSTDIR\${PRODUCT_NAME}.url" "InternetShortcut" "URL" "${PRODUCT_WEB_SITE}"
205 CreateShortCut "$SMPROGRAMS\InspIRCd\InspIRCd Website.lnk" "$INSTDIR\${PRODUCT_NAME}.url"
206 CreateShortCut "$SMPROGRAMS\InspIRCd\Uninstall.lnk" "$INSTDIR\uninst.exe"
210 WriteUninstaller "$INSTDIR\uninst.exe"
211 WriteRegStr HKLM "${PRODUCT_DIR_REGKEY}" "" "$INSTDIR\bin\inspircd.exe"
212 WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayName" "$(^Name)"
213 WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "UninstallString" "$INSTDIR\uninst.exe"
214 WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayIcon" "$INSTDIR\bin\inspircd.exe"
215 WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayVersion" "${PRODUCT_VERSION}"
216 WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "URLInfoAbout" "${PRODUCT_WEB_SITE}"
217 WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "Publisher" "${PRODUCT_PUBLISHER}"
218 MessageBox MB_ICONINFORMATION|MB_OK "InspIRCd was successfully installed. Remember to edit your configuration file in $INSTDIR\conf!"
221 ; Section descriptions
222 !insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
223 !insertmacro MUI_DESCRIPTION_TEXT ${SEC01} "Actual executable"
224 !insertmacro MUI_DESCRIPTION_TEXT ${SEC03} "Command modules"
225 !insertmacro MUI_DESCRIPTION_TEXT ${SEC02} "Default configuration files"
226 !insertmacro MUI_DESCRIPTION_TEXT ${SEC04} "Optional non-SSL modules"
227 !insertmacro MUI_DESCRIPTION_TEXT ${SEC05} "SSL modules and GnuTLS DLL libraries"
228 !insertmacro MUI_DESCRIPTION_TEXT ${SEC06} "Regular expression module and PCRE DLL library"
229 !insertmacro MUI_FUNCTION_DESCRIPTION_END
232 Function un.onUninstSuccess
234 MessageBox MB_ICONINFORMATION|MB_OK "$(^Name) was successfully removed from your computer."
238 SectionSetFlags ${SEC01} 17
239 SectionSetFlags ${SEC03} 17
240 StrCpy $INSTDIR "$PROGRAMFILES\InspIRCd"
244 MessageBox MB_ICONQUESTION|MB_YESNO|MB_DEFBUTTON2 "Are you sure you want to completely remove $(^Name) and all of its components?" IDYES +2
249 DetailPrint "Uninstalling InspIRCd service..."
250 nsExec::Exec /TIMEOUT=30000 '"$INSTDIR\bin\inspircd.exe" --removeservice'
251 Delete "$INSTDIR\${PRODUCT_NAME}.url"
252 Delete "$INSTDIR\uninst.exe"
253 Delete "$INSTDIR\modules\m_*.so"
254 Delete "$INSTDIR\lib\cmd_*.so"
255 Delete "$INSTDIR\conf\inspircd.quotes.example"
256 Delete "$INSTDIR\conf\inspircd.rules.example"
257 Delete "$INSTDIR\conf\inspircd.censor.example"
258 Delete "$INSTDIR\conf\inspircd.conf.example"
259 Delete "$INSTDIR\conf\inspircd.filter.example"
260 Delete "$INSTDIR\conf\inspircd.helpop.example"
261 Delete "$INSTDIR\conf\inspircd.helpop-full.example"
262 Delete "$INSTDIR\conf\inspircd.motd.example"
263 Delete "$INSTDIR\bin\inspircd.exe"
264 Delete "$INSTDIR\bin\*.dll"
265 Delete "$INSTDIR\InspGUI.exe"
266 Delete "$SMPROGRAMS\InspIRCd\Uninstall.lnk"
267 Delete "$SMPROGRAMS\InspIRCd\InspIRCd Website.lnk"
268 Delete "$SMPROGRAMS\InspIRCd\InspIRCd.lnk"
270 RMDir "$SMPROGRAMS\InspIRCd"
271 RMDir "$INSTDIR\modules"
273 RMDir "$INSTDIR\conf"
277 DeleteRegKey ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}"
278 DeleteRegKey HKLM "${PRODUCT_DIR_REGKEY}"