]> git.lyx.org Git - lyx.git/blob - development/Win32/packaging/installer/setup/configure.nsh
e6e908be7dc415e5fe7d20391c26ba4fdbd7c747
[lyx.git] / development / Win32 / packaging / installer / setup / configure.nsh
1 /*
2
3 configure.nsh
4
5 Write registry information and configure LyX
6
7 */
8
9 Var DistFile
10 Var PathPrefix
11
12 !define SHORTCUT '${APP_NAME} ${APP_SERIES_NAME}.lnk" "$INSTDIR\${APP_RUN}" "" "$INSTDIR\${APP_RUN}" "" "" "" "${APP_INFO}"'
13
14 #--------------------------------
15 # File associations
16
17 Section -FileAssociations
18
19   # Associate .lyx files with LyX for current user of all users
20
21   # Write information about file type
22   !define REG_FILETYPE 'WriteRegStr SHELL_CONTEXT "Software\Classes\${APP_REGNAME_DOC}'
23   
24   ${REG_FILETYPE}" "" "${APP_NAME} Document"
25   ${REG_FILETYPE}\DefaultIcon" "" "$INSTDIR\bin\LyXLauncher.exe,0"
26   ${REG_FILETYPE}\Shell\open\command" "" '"$INSTDIR\${APP_RUN}" "%1"'
27   
28   !define REG_FILEEXT 'WriteRegStr SHELL_CONTEXT "Software\Classes\${APP_EXT}"'
29   
30   ${REG_FILEEXT} "" "${APP_REGNAME_DOC}"
31   ${REG_FILEEXT} "Content Type" "${APP_MIME_TYPE}"  
32   
33   # Refresh shell
34   ${RefreshShellIcons}
35
36 SectionEnd
37
38 #--------------------------------
39 # Registry information
40
41 Section -InstallData
42
43   # Registry information
44   WriteRegStr SHELL_CONTEXT ${APP_REGKEY} "" $INSTDIR
45   WriteRegStr SHELL_CONTEXT ${APP_REGKEY} "Version" "${APP_VERSION}"
46
47   WriteRegStr SHELL_CONTEXT ${APP_REGKEY_SETUP} "LaTeX Path" $PathLaTeX
48   WriteRegStr SHELL_CONTEXT ${APP_REGKEY_SETUP} "ImageMagick Path" $PathImageMagick
49   WriteRegStr SHELL_CONTEXT ${APP_REGKEY_SETUP} "Ghostscript Path" $PathGhostscript
50   WriteRegStr SHELL_CONTEXT ${APP_REGKEY_SETUP} "LyX Language" $LangName
51
52   # Start Menu shortcut
53   # There is only one shortcut to the application, so it should be in the main group
54   CreateShortCut "$SMPROGRAMS\${SHORTCUT}
55     
56   # Uninstaller information
57   !define REG_UNINSTALL 'WriteRegStr SHELL_CONTEXT "Software\Microsoft\Windows\CurrentVersion\Uninstall\${SETUP_UNINSTALLER_KEY}"'
58   
59   ${If} $MultiUser.InstallMode == "CurrentUser"
60     ${REG_UNINSTALL} "DisplayName" "${APP_NAME} ${APP_VERSION} $(TEXT_INSTALL_CURRENTUSER)"
61   ${Else}
62     ${REG_UNINSTALL} "DisplayName" "${APP_NAME} ${APP_VERSION}"
63   ${EndIf}
64   
65   ${REG_UNINSTALL} "UninstallString" '"$INSTDIR\${SETUP_UNINSTALLER}"'
66   ${REG_UNINSTALL} "DisplayVersion" "${APP_VERSION}"
67   ${REG_UNINSTALL} "DisplayIcon" "$INSTDIR\bin\LyXLauncher,0"
68   ${REG_UNINSTALL} "URLUpdateInfo" "http://www.lyx.org/"
69   ${REG_UNINSTALL} "URLInfoAbout" "http://www.lyx.org/about/"
70   ${REG_UNINSTALL} "Publisher" "LyX Team"
71   ${REG_UNINSTALL} "HelpLink" "http://www.lyx.org/internet/mailing.php"  
72   
73 SectionEnd
74
75 #--------------------------------
76 # Write LyX configuration file
77
78 Section -Configure
79
80   # Windows specific configuration in lyxrc.dist
81
82   Delete "$INSTDIR\Resources\lyxrc.dist"
83   FileOpen $DistFile "$INSTDIR\Resources\lyxrc.dist" w
84
85   # Path prefix
86
87   StrCpy $PathPrefix "$INSTDIR\bin;$INSTDIR\python"
88   
89   !ifdef BUNDLE_IMAGEMAGICK
90     StrCpy $PathImageMagick "$INSTDIR\imagemagick"
91   !endif
92   !ifdef BUNDLE_GHOSTSCRIPT
93     StrCpy $PathGhostscript "$INSTDIR\ghostscript\bin"
94   !endif  
95   
96   ${If} $PathLaTeX != ""
97     StrCpy $PathPrefix "$PathPrefix;$PathLaTeX"
98   ${EndIf}
99   ${If} $PathGhostscript != ""
100     StrCpy $PathPrefix "$PathPrefix;$PathGhostscript"
101   ${EndIf}
102   ${If} $PathImageMagick != ""
103     StrCpy $PathPrefix "$PathPrefix;$PathImageMagick"
104   ${EndIf}
105   ${If} $PathBibTeXEditor != ""
106     StrCpy $PathPrefix "$PathPrefix;$PathBibTeXEditor"
107   ${EndIf}  
108
109   FileWrite $DistFile '\path_prefix "$PathPrefix"$\r$\n'
110
111   # Default screen fonts
112   FileWrite $DistFile '\screen_font_roman "Times New Roman"$\r$\n'
113   FileWrite $DistFile '\screen_font_sans "Arial"$\r$\n'
114   FileWrite $DistFile '\screen_font_typewriter "Courier New"$\r$\n'
115   FileWrite $DistFile '\preview_scale_factor 1.0$\r$\n' # Fit instant preview font size to screen fonts
116   # PDF view helper
117   FileWrite $DistFile '\format "pdf" "pdf" "PDF (ps2pdf)" "P" "pdfview" "" "document,vector"$\r$\n'  
118   FileWrite $DistFile '\format "pdf2" "pdf" "PDF (pdflatex)" "F" "pdfview" "" "document,vector"$\r$\n'
119   FileWrite $DistFile '\format "pdf3" "pdf" "PDF (dvipdfm)" "m" "pdfview" "" "document,vector"$\r$\n'
120
121   FileClose $DistFile
122
123   # Set language
124   WriteRegStr SHELL_CONTEXT ${APP_REGKEY_SETTINGS} "Language" $LangISOCode
125
126 SectionEnd
127
128 #--------------------------------
129 # dvipost package
130
131 Var UpdateFNDBReturn
132
133 Section -dvipost
134
135   # Install package in local root
136
137   ${if} $PathLaTeXLocal != ""
138     SetOutPath "$PathLaTeXLocal\tex\latex\dvipost"
139     File "${FILES_DVIPOST_PKG}\dvipost.sty"
140   ${endif}
141
142   # Update file name database
143
144   ${if} $PathLaTeX != ""
145     DetailPrint $(TEXT_CONFIGURE_MIKTEXFNDB)
146     nsExec::ExecToLog '"$PathLaTeX\initexmf.exe" --update-fndb'
147     Pop $UpdateFNDBReturn # Return value
148   ${endif}
149
150 SectionEnd
151
152 #--------------------------------
153 # Postscript printer for metafile to EPS converter
154
155 Section -PSPrinter
156
157   ${If} $MultiUser.Privileges == "Admin"
158     ${OrIf} $MultiUser.Privileges == "Power"
159
160     # Delete printer
161     ExecWait '$PrinterConf /q /dl /n "Metafile to EPS Converter"'
162
163     # Delete printer driver
164     ExecWait '$PrinterConf /q /dd /m "Metafile to EPS Converter"'
165
166     # Install printer and driver
167     ExecWait '$PrinterConf /q /if /f "$INSTDIR\PSPrinter\metafile2eps.inf" /r "FILE:" /m "Metafile to EPS Converter"'
168
169     # Restore DEVMODE with proper settings
170     ExecWait '$PrinterConf /q /Sr /n "Metafile to EPS Converter" /a "$INSTDIR\PSPrinter\metafile2eps.dat" g'
171
172   ${EndIf}
173
174 SectionEnd
175
176 #--------------------------------
177 # Run the LyX configure.py script, so MiKTeX can download its packages
178
179 Var ConfigureReturn
180
181 Section -ConfigureScript
182
183   DetailPrint $(TEXT_CONFIGURE_LYX)
184   nsExec::ExecToLog '"$INSTDIR\python\python.exe" "$INSTDIR\Resources\configure.py"'
185   Pop $ConfigureReturn # Return value
186
187 SectionEnd
188
189 #--------------------------------
190 # Desktop shortcut
191
192 Function CheckDesktopShortcut
193
194   # Enable desktop icon creation when there is an icon already
195   # Old shortcuts need to be updated
196   
197   ${If} ${FileExists} "$DESKTOP\${APP_NAME} ${APP_SERIES_NAME}.lnk"
198     ${NSD_SetState} $mui.FinishPage.ShowReadme ${BST_CHECKED}
199   ${EndIf}
200
201 FunctionEnd
202
203 Function CreateDesktopShortcut
204
205   # Desktop icon creation is an option on the finish page
206
207   CreateShortCut "$DESKTOP\${SHORTCUT}
208
209 FunctionEnd