]> git.lyx.org Git - lyx.git/blobdiff - development/Win32/packaging/installer/LyXWinInstaller/InstallActions-complete.nsh
Changed comment character from ';' to '#*
[lyx.git] / development / Win32 / packaging / installer / LyXWinInstaller / InstallActions-complete.nsh
index 7fe02b5fc3e47da83d15c770046fcfcc09d05f3d..01155eb32db0f08eb45435a9020e00b86903cc25 100644 (file)
@@ -1,55 +1,55 @@
-; this file contains the main installer section
+# this file contains the main installer section
 
-; The '-' makes the section invisible.
+# The '-' makes the section invisible.
 Section "-Installation actions" SecInstallation
 
-  ; dummy actions to avoid NSIS warnings
+  # dummy actions to avoid NSIS warnings
   StrCpy $FileName ""
   StrCpy $NewString ""
   StrCpy $OldString ""
   
-  ; extract all files
+  # extract all files
   SetOutPath "$INSTDIR"
   File /r "${PRODUCT_SOURCEDIR}\bin"
   File /r "${PRODUCT_SOURCEDIR}\etc"
   File /r "${PRODUCT_SOURCEDIR}\Resources"
   File /r "${PRODUCT_SOURCEDIR}\external"
 
-  ; install MiKTeX if not already installed
+  # install MiKTeX if not already installed
   Call MiKTeX
 
-  ; install Ghostscript if it not installed
+  # install Ghostscript if it not installed
   Call Ghostscript
 
-  ; install ImageMagick if it not installed
+  # install ImageMagick if it not installed
   Call ImageMagick
 
-  ; install ImageMAspellagick if it not installed
+  # install ImageMAspellagick if it not installed
   Call Aspell
 
-  ; install Aiksaurus if it not installed
+  # install Aiksaurus if it not installed
   Call Aiksaurus
 
-  ; install GSview if it not installed and the user selected it
+  # install GSview if it not installed and the user selected it
   Call PostScript
 
-  ; install JabRef if it not installed and the user selected it
+  # install JabRef if it not installed and the user selected it
   Call BibTeX
 
-  ; install the LaTeX class files that are delivered with LyX
-  ; and enable MiKTeX's automatic package installation
-  Call ConfigureMiKTeX ; Function from LaTeX.nsh
+  # install the LaTeX class files that are delivered with LyX
+  # and enable MiKTeX's automatic package installation
+  Call ConfigureMiKTeX # Function from LaTeX.nsh
 
-  ; install Aspell dictionaries
+  # install Aspell dictionaries
   ${if} $LangCode == "nb_NO"
-   StrCpy $LangCode "no_NO" ; we only have a norwegian dictionary available
+   StrCpy $LangCode "no_NO" # we only have a norwegian dictionary available
   ${endif}
-  Call InstallAspellDictionary ; function from Aspell.nsh
+  Call InstallAspellDictionary # function from Aspell.nsh
 
-  ; configure LyX
-  Call ConfigureLyX ; Function from ConfigLyX.nsh
+  # configure LyX
+  Call ConfigureLyX # Function from ConfigLyX.nsh
 
-  ; delete unnecessary files
+  # delete unnecessary files
   ${if} $DelPythonFiles == "True"
    Delete $INSTDIR\bin\python.exe
    Delete $INSTDIR\bin\python25.dll
@@ -59,20 +59,20 @@ Section "-Installation actions" SecInstallation
   ${endif}
   RMDir /r $INSTDIR\external
 
-  ; create Uninstaller
+  # create Uninstaller
   WriteUninstaller "${PRODUCT_UNINSTALL_EXE}"
 
-  ; run LyX's configure script
-  ; create a bat-file to start configure in a console window so that the user see the progress
-  ; of the configuration and to have a signal when the configuration is ready to start LyX
-  ; this is important when LyX is installed together with MiKTeX or when LyX is installed for the first
-  ; time on a computer, because the installation of missing LaTeX-files required by LyX could last minutes
-  ; a batch file is needed because simply calling ExecWait '"$PythonPath\python.exe" "$INSTDIR\Resources\configure.py"'
-  ; creates the config files in $PythonPath
+  # run LyX's configure script
+  # create a bat-file to start configure in a console window so that the user see the progress
+  # of the configuration and to have a signal when the configuration is ready to start LyX
+  # this is important when LyX is installed together with MiKTeX or when LyX is installed for the first
+  # time on a computer, because the installation of missing LaTeX-files required by LyX could last minutes
+  # a batch file is needed because simply calling ExecWait '"$PythonPath\python.exe" "$INSTDIR\Resources\configure.py"'
+  # creates the config files in $PythonPath
   ${if} $PythonPath == ""
    StrCpy $PythonPath "$INSTDIR\bin"
   ${endif}
-  StrCpy $1 $INSTDIR 2 ; get drive letter
+  StrCpy $1 $INSTDIR 2 # get drive letter
   FileOpen $R1 "$INSTDIR\Resources\configLyX.bat" w
   FileWrite $R1 '$1$\r$\n\
                 cd $INSTDIR\Resources\$\r$\n\
@@ -82,36 +82,36 @@ Section "-Installation actions" SecInstallation
   ExecWait '"$INSTDIR\Resources\configLyX.bat"'
   Delete "$INSTDIR\Resources\configLyX.bat"
 
-  ; ask to update MiKTeX
+  # ask to update MiKTeX
   ${if} $MiKTeXInstalled == "yes"
    MessageBox MB_YESNO|MB_ICONINFORMATION "$(MiKTeXInfo)" IDYES UpdateNow IDNO UpdateLater
    UpdateNow:
-    StrCpy $0 $LaTeXPath -4 ; remove "\bin"
-    ExecWait '"$LaTeXPath\copystart.exe" "$0\config\update.dat"' ; run MiKTeX's update wizard
+    StrCpy $0 $LaTeXPath -4 # remove "\bin"
+    ExecWait '"$LaTeXPath\copystart.exe" "$0\config\update.dat"' # run MiKTeX's update wizard
    UpdateLater:
   ${endif}
 
-  ; save MiKTeX's install path to be able to remove LyX's LaTeX-files in the uninstaller
+  # save MiKTeX's install path to be able to remove LyX's LaTeX-files in the uninstaller
   FileOpen $R1 "$INSTDIR\Resources\uninstallPaths.dat" w
   FileWrite $R1 '$LaTeXPath'
   FileClose $R1
 
-  ; prepare variables for uninstaller
+  # prepare variables for uninstaller
   StrCpy $MiKTeXVersionVar ${MiKTeXDeliveredVersion}
   StrCpy $JabRefVersionVar ${JabRefVersion}
 
 SectionEnd
 
-; -------------------------------------------
+# -------------------------------------------
 
 Function MiKTeX
        
-; install MiKTeX if not already installed
+# install MiKTeX if not already installed
   ${if} $LatexPath == ""
-   ; launch MiKTeX's installer
+   # launch MiKTeX's installer
    MessageBox MB_OK|MB_ICONINFORMATION "$(LatexInfo)"
    ExecWait ${MiKTeXInstall}
-   ; test if MiKTeX is installed
+   # test if MiKTeX is installed
    ReadRegStr $String HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment" "Path"
    StrCpy $Search "miktex"
    Call LaTeXCheck
@@ -122,49 +122,49 @@ Function MiKTeX
     Call LaTeXCheck
    ${endif}
    ${if} $LatexPath != ""
-    ; set package repository (MiKTeX's primary package repository)
-    WriteRegStr HKLM "SOFTWARE\MiKTeX.org\MiKTeX" "OnlyWithLyX" "Yes${PRODUCT_VERSION_SHORT}" ; special entry to tell the uninstaller that it was installed with LyX
+    # set package repository (MiKTeX's primary package repository)
+    WriteRegStr HKLM "SOFTWARE\MiKTeX.org\MiKTeX" "OnlyWithLyX" "Yes${PRODUCT_VERSION_SHORT}" # special entry to tell the uninstaller that it was installed with LyX
     StrCpy $MiKTeXInstalled "yes"
     ${if} $MiKTeXUser != "HKCU"
      StrCpy $MiKTeXPath "$LatexPath" -11
-     ;MessageBox MB_OK|MB_ICONINFORMATION "$(MiKTeXPathInfo)" ; info that MiKTeX's installation folder must have write permissions for all users to work properly
+     #MessageBox MB_OK|MB_ICONINFORMATION "$(MiKTeXPathInfo)" # info that MiKTeX's installation folder must have write permissions for all users to work properly
     ${endif}
    ${else}
     MessageBox MB_OK|MB_ICONSTOP "$(LatexError1)"
-    SetOutPath $TEMP ; to be able to delete the $INSTDIR
+    SetOutPath $TEMP # to be able to delete the $INSTDIR
     RMDir /r $INSTDIR
     Abort
-   ${endif} ; endif $LatexPath != ""
+   ${endif} # endif $LatexPath != ""
   ${endif}
 
 FunctionEnd
 
-; -------------------------------------------
+# -------------------------------------------
 
 Function Ghostscript
 
-  ; if GhostScript is not installed
+  # if GhostScript is not installed
   ${if} $GhostscriptPath == ""
-   ; register Ghostscript
+   # register Ghostscript
    WriteRegStr HKLM "SOFTWARE\GPL Ghostscript\${GhostscriptVersion}" "GS_DLL" "${GhostscriptDir}\bin\gsdll32.dll"
    WriteRegStr HKLM "SOFTWARE\GPL Ghostscript\${GhostscriptVersion}" "GS_LIB" "${GhostscriptDir}\lib;${GhostscriptDir}\fonts;${GhostscriptDir}\Resource"
    
-   WriteRegStr HKLM "SOFTWARE\GPL Ghostscript" "OnlyWithLyX" "Yes${PRODUCT_VERSION_SHORT}" ; special entry to tell the uninstaller that it was installed with LyX
+   WriteRegStr HKLM "SOFTWARE\GPL Ghostscript" "OnlyWithLyX" "Yes${PRODUCT_VERSION_SHORT}" # special entry to tell the uninstaller that it was installed with LyX
    StrCpy $GhostscriptPath "${GhostscriptDir}\bin"
   ${else}
-   ; delete unnecessary files
+   # delete unnecessary files
    RMDir /r ${GhostscriptDir}   
   ${endif}
 
 FunctionEnd
 
-; -------------------------------------------
+# -------------------------------------------
 
 Function ImageMagick
 
-  ; if ImageMagick is not installed
+  # if ImageMagick is not installed
   ${if} $ImageMagickPath == ""
-   ; register ImageMagick
+   # register ImageMagick
    WriteRegStr HKLM "SOFTWARE\Classes\Applications" "AutoRun" "${ImageMagickDir}\convert.exe $$"
    WriteRegStr HKLM "SOFTWARE\ImageMagick\${ImageMagickVersion}\Q:16" "BinPath" "${ImageMagickDir}"
    WriteRegStr HKLM "SOFTWARE\ImageMagick\${ImageMagickVersion}\Q:16" "CoderModulesPath" "${ImageMagickDir}\modules\coders"
@@ -180,32 +180,32 @@ Function ImageMagick
    WriteRegDWORD HKLM "SOFTWARE\ImageMagick\Current" "QuantumDepth" 0x00000010   
    WriteRegStr HKLM "SOFTWARE\ImageMagick\Current" "Version" "${ImageMagickVersion}"
    
-   WriteRegStr HKLM "Software\ImageMagick" "OnlyWithLyX" "Yes${PRODUCT_VERSION_SHORT}" ; special entry to tell the uninstaller that it was installed with LyX
+   WriteRegStr HKLM "Software\ImageMagick" "OnlyWithLyX" "Yes${PRODUCT_VERSION_SHORT}" # special entry to tell the uninstaller that it was installed with LyX
    StrCpy $ImageMagickPath ${ImageMagickDir}
   ${else}
-   ; delete unnecessary files
+   # delete unnecessary files
    RMDir /r ${ImageMagickDir}
   ${endif}
 
 FunctionEnd
 
-; -------------------------------------------
+# -------------------------------------------
 
 Function Aspell
 
-  ; if Aspell is not installed
+  # if Aspell is not installed
   ${if} $AspellPath == ""
-   ; extract Aspell's program files
+   # extract Aspell's program files
    SetOutPath "$INSTDIR\external"
    File /r "${PRODUCT_SOURCEDIR}\${AspellInstall}"
-   ; copy the files and register Aspell
+   # copy the files and register Aspell
    CopyFiles "$INSTDIR\${AspellInstall}" "$APPDATA"
    
    WriteRegStr HKLM "SOFTWARE\Aspell" "Base Path" "${AspellDir}"
    WriteRegStr HKLM "SOFTWARE\Aspell" "Dictionary Path" "${AspellDictPath}"
    WriteRegStr HKLM "SOFTWARE\Aspell" "Personal Path" "${AspellPersonalPath}"
    
-   WriteRegStr HKLM "Software\Aspell" "OnlyWithLyX" "Yes${PRODUCT_VERSION_SHORT}" ; special entry to tell the uninstaller that it was installed with LyX
+   WriteRegStr HKLM "Software\Aspell" "OnlyWithLyX" "Yes${PRODUCT_VERSION_SHORT}" # special entry to tell the uninstaller that it was installed with LyX
    
    WriteRegStr HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Aspell" "DisplayName" "${AspellDisplay}"
    WriteRegDWORD HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Aspell" "NoModify" 0x00000001
@@ -215,34 +215,34 @@ Function Aspell
 
 FunctionEnd
 
-; -------------------------------------------
+# -------------------------------------------
 
 Function Aiksaurus
 
-  ; if Aiksaurus is not installed
+  # if Aiksaurus is not installed
   ${if} $AiksaurusPath == ""
-   ; extract Aiksaurus' program files
+   # extract Aiksaurus' program files
    SetOutPath "$INSTDIR\external"
    File /r "${PRODUCT_SOURCEDIR}\${AiksaurusInstall}"
-   ; copy the files and register Aiksaurus
+   # copy the files and register Aiksaurus
    CopyFiles "$INSTDIR\${AiksaurusInstall}" "$APPDATA"
-;   WriteRegStr HKLM "Software\Aiksaurus" "OnlyWithLyX" "Yes${PRODUCT_VERSION_SHORT}" ; special entry to tell the uninstaller that it was installed with LyX
-;   WriteRegStr HKLM "Software\Aiksaurus" "Data Path" "${AiksaurusDir}"
+#   WriteRegStr HKLM "Software\Aiksaurus" "OnlyWithLyX" "Yes${PRODUCT_VERSION_SHORT}" # special entry to tell the uninstaller that it was installed with LyX
+#   WriteRegStr HKLM "Software\Aiksaurus" "Data Path" "${AiksaurusDir}"
   ${endif}
 
 FunctionEnd
 
-; -------------------------------------------
+# -------------------------------------------
 
 Function PostScript
 
-; if no PostScript viewer is installed
+# if no PostScript viewer is installed
   ${if} $PSVPath == ""
    ${if} $InstallGSview == "true"
-    ; launch installer
+    # launch installer
     MessageBox MB_OK|MB_ICONINFORMATION "$(GSviewInfo)"
     ExecWait "$INSTDIR\${GSviewInstall}"
-    ; test if GSview is installed
+    # test if GSview is installed
     StrCpy $PSVPath ""
     ReadRegStr $PSVPath HKLM "Software\Microsoft\Windows\CurrentVersion\App Paths\gsview32.exe" "Path"    
     ${if} $PSVPath == ""
@@ -253,23 +253,23 @@ Function PostScript
 
 FunctionEnd
 
-; -------------------------------------------
+# -------------------------------------------
 
 Function BibTeX
 
-; if no BibTeX editor is installed
+# if no BibTeX editor is installed
   ${if} $BibTeXEditorPath == ""
    ${if} $InstallJabRef == "true"
-    ; launch installer
+    # launch installer
     MessageBox MB_OK|MB_ICONINFORMATION "$(JabRefInfo)"
     ExecWait "$INSTDIR\${JabRefInstall}"
-    ; test if JabRef is installed
+    # test if JabRef is installed
     StrCpy $BibTeXEditorPath ""
     ReadRegStr $BibTeXEditorPath HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${JabRefVersion}" "UninstallString"    
     ${if} $BibTeXEditorPath == ""
      MessageBox MB_OK|MB_ICONEXCLAMATION "$(JabRefError)"
     ${else}
-     WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${JabRefVersion}" "OnlyWithLyX" "Yes${PRODUCT_VERSION_SHORT}" ; special entry to tell the uninstaller that it was installed with LyX
+     WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${JabRefVersion}" "OnlyWithLyX" "Yes${PRODUCT_VERSION_SHORT}" # special entry to tell the uninstaller that it was installed with LyX
     ${endif}
    ${endif}
   ${endif}