2008-03-30 21:37:53 +00:00
/*
install.nsh
Installation of program files, dictionaries and external components
*/
#--------------------------------
# Program files
2008-05-01 18:33:36 +00:00
Var PythonCompileFile
Var PythonCompileReturn
2008-03-30 21:37:53 +00:00
Section -ProgramFiles SecProgramFiles
2014-03-09 06:57:47 +00:00
# if the $INSTDIR does not contain "LyX" we must add a subfolder to avoid that LyX will e.g.
# be installed directly to C:\programs - the uninstaller will then delete the whole
# C:\programs directory
StrCpy $String $INSTDIR
StrCpy $Search "LyX"
Call StrPoint # function from LyXUtils.nsh
${if} $Pointer == "-1"
StrCpy $INSTDIR "$INSTDIR\${APP_DIR}"
${endif}
2013-02-26 01:25:04 +00:00
!if ${SETUPTYPE} != BUNDLE
# abort the installation if no LaTeX was found but should be used
${if} $PathLaTeX == ""
${andif} $State == "0"
SetOutPath $TEMP # to be able to delete the $INSTDIR
RMDir /r $INSTDIR
Abort
${endif}
!endif # end if != BUNDLE
2008-03-30 21:37:53 +00:00
# Install and register the core LyX files
2008-05-01 18:33:36 +00:00
# The macros are defined in filelists.nsh
# the parameters are COMMAND DIRECTORY that form command '${COMMAND} "${DIRECTORY}files"
2008-03-30 21:37:53 +00:00
# Initializes the plug-ins dir ($PLUGINSDIR) if not already initialized.
# $PLUGINSDIR is automatically deleted when the installer exits.
InitPluginsDir
2008-05-01 18:33:36 +00:00
# Binaries
2008-03-30 21:37:53 +00:00
SetOutPath "$INSTDIR\bin"
!insertmacro FileListLyXBin File "${FILES_LYX}\bin\"
!insertmacro FileListQtBin File "${FILES_QT}\bin\"
2011-02-17 17:02:10 +00:00
!insertmacro FileListMSVC File "${FILES_MSVC}\"
2008-03-30 21:37:53 +00:00
!insertmacro FileListNetpbmBin File "${FILES_NETPBM}\"
!insertmacro FileListDTLBin File "${FILES_DTL}\"
2015-06-01 22:25:59 +00:00
!insertmacro FileListRsvg File "${FILES_RSVG}\"
2008-03-31 15:31:09 +00:00
!insertmacro FileListDvipostBin File "${FILES_DVIPOST}\"
2008-03-30 21:37:53 +00:00
!insertmacro FileListPDFViewBin File "${FILES_PDFVIEW}\"
2015-11-26 23:39:38 +00:00
# Qt plugin DLLs
SetOutPath "$INSTDIR\bin\imageformats"
!insertmacro FileListQtImageformats File "${FILES_QT}\plugins\imageformats\"
SetOutPath "$INSTDIR\bin\iconengines"
!insertmacro FileListQtIconengines File "${FILES_QT}\plugins\iconengines\"
2016-01-14 21:56:49 +00:00
SetOutPath "$INSTDIR\bin\platforms"
!insertmacro FileListQtPlatforms File "${FILES_QT}\plugins\platforms\"
2008-03-30 21:37:53 +00:00
# Resources
SetOutPath "$INSTDIR"
# recursively copy all files under Resources
File /r "${FILES_LYX}\Resources"
2011-12-21 01:12:43 +00:00
!if ${SETUPTYPE} == BUNDLE
2017-11-01 13:33:03 +00:00
# extract the MiKTeX installer
2011-12-21 01:12:43 +00:00
File /r "${FILES_LYX}\external"
# install MiKTeX if not already installed
Call InstallMiKTeX # function from LaTeX.nsh
!endif # end if BUNDLE
2011-04-26 21:29:32 +00:00
# Python
SetOutPath "$INSTDIR"
# recursively copy all files under Python
File /r "${FILES_PYTHON}"
2015-08-05 00:29:43 +00:00
# register .py files if necessary
ReadRegStr $0 SHCTX "Software\Classes\Python.File\shell\open\command" ""
${if} $0 == "" # if nothing was found
WriteRegStr SHCTX "Software\Classes\Python.File\shell\open\command" "" '"$INSTDIR\Python\python.exe" "%1" %*'
WriteRegStr SHCTX "Software\Classes\Python.File\DefaultIcon" "" "$INSTDIR\Python\DLLs\py.ico"
WriteRegStr SHCTX "Software\Classes\.py" "" "Python.File"
WriteRegStr SHCTX "Software\Classes\Python.File" "OnlyWithLyX" "Yes${APP_SERIES_KEY}" # special entry to test if they were registered by this LyX version
${endif}
2008-03-30 21:37:53 +00:00
2008-05-01 18:33:36 +00:00
# Compile all Pyton files to byte-code
# The user using the scripts may not have write access
FileOpen $PythonCompileFile "$INSTDIR\compilepy.py" w
FileWrite $PythonCompileFile "import compileall$\r$\n"
FileWrite $PythonCompileFile "compileall.compile_dir('$INSTDIR\python\Lib')$\r$\n"
FileWrite $PythonCompileFile "compileall.compile_dir('$INSTDIR\Resources')$\r$\n"
FileClose $PythonCompileFile
DetailPrint $(TEXT_CONFIGURE_PYTHON)
nsExec::ExecToLog '"$INSTDIR\python\python.exe" "$INSTDIR\compilepy.py"'
Pop $PythonCompileReturn # Return value
Delete "$INSTDIR\compilepy.py"
# Components of ImageMagick
SetOutPath "$INSTDIR\imagemagick"
2011-05-23 04:12:10 +00:00
File /r "${FILES_IMAGEMAGICK}\"
2011-02-17 17:02:10 +00:00
!insertmacro FileListMSVC File "${FILES_MSVC}\"
2011-07-25 03:09:02 +00:00
# register ImageMagick
WriteRegStr SHCTX "SOFTWARE\ImageMagick\${ImageMagickVersion}\Q:16" "BinPath" "$INSTDIR\imagemagick"
WriteRegStr SHCTX "SOFTWARE\ImageMagick\${ImageMagickVersion}\Q:16" "CoderModulesPath" "$INSTDIR\imagemagick\modules\coders"
2011-12-21 01:12:43 +00:00
WriteRegStr SHCTX "SOFTWARE\ImageMagick\${ImageMagickVersion}\Q:16" "ConfigurePath" "$INSTDIR\imagemagick"
2011-07-25 03:09:02 +00:00
WriteRegStr SHCTX "SOFTWARE\ImageMagick\${ImageMagickVersion}\Q:16" "FilterModulesPath" "$INSTDIR\imagemagick\modules\filters"
WriteRegStr SHCTX "SOFTWARE\ImageMagick\${ImageMagickVersion}\Q:16" "LibPath" "$INSTDIR\imagemagick"
WriteRegStr SHCTX "SOFTWARE\ImageMagick\Current" "BinPath" "$INSTDIR\imagemagick"
WriteRegStr SHCTX "SOFTWARE\ImageMagick\Current" "CoderModulesPath" "$INSTDIR\imagemagick\modules\coders"
2011-12-21 01:12:43 +00:00
WriteRegStr SHCTX "SOFTWARE\ImageMagick\Current" "ConfigurePath" "$INSTDIR\imagemagick"
2011-07-25 03:09:02 +00:00
WriteRegStr SHCTX "SOFTWARE\ImageMagick\Current" "FilterModulesPath" "$INSTDIR\imagemagick\modules\filters"
WriteRegStr SHCTX "SOFTWARE\ImageMagick\Current" "LibPath" "$INSTDIR\imagemagick"
2011-09-05 06:09:13 +00:00
WriteRegDWORD SHCTX "SOFTWARE\ImageMagick\Current" "QuantumDepth" 0x00000010
2011-07-25 03:09:02 +00:00
WriteRegStr SHCTX "SOFTWARE\ImageMagick\Current" "Version" "${ImageMagickVersion}"
2012-11-16 00:21:47 +00:00
WriteRegStr SHCTX "SOFTWARE\ImageMagick" "OnlyWithLyX" "Yes${APP_SERIES_KEY}"
2008-05-01 18:33:36 +00:00
# Components of Ghostscript
2011-09-05 06:09:13 +00:00
${if} $GhostscriptPath == ""
SetOutPath "$INSTDIR\ghostscript"
File /r "${FILES_GHOSTSCRIPT}\"
!insertmacro FileListMSVC File "${FILES_MSVC}\"
StrCpy $GhostscriptPath "$INSTDIR\ghostscript\bin"
${endif}
2008-05-01 18:33:36 +00:00
2017-11-01 13:33:03 +00:00
# install eLyXer
SetOutPath "$INSTDIR\Python\Lib"
!insertmacro FileListeLyXer File "${FILES_ELYXER}\"
2012-03-07 00:56:12 +00:00
2017-11-01 13:33:03 +00:00
# install unoconv
SetOutPath "$INSTDIR\Python\Lib"
!insertmacro FileListUnoConv File "${FILES_UNOCONV}\"
2011-05-23 04:12:10 +00:00
2012-11-22 22:35:59 +00:00
# install the LaTeX class files that are delivered with LyX to MiKTeX
2011-05-23 04:12:10 +00:00
# and enable MiKTeX's automatic package installation
${if} $LaTeXInstalled == "MiKTeX"
Call ConfigureMiKTeX # Function from LaTeX.nsh
${endif}
2012-11-22 22:35:59 +00:00
# install the LaTeX class files that are delivered with LyX to TeXLive
${if} $LaTeXInstalled == "TeXLive"
Call ConfigureTeXLive # Function from LaTeX.nsh
${endif}
2011-05-23 04:12:10 +00:00
2012-06-03 15:17:01 +00:00
# download dictionaries and thesaurus
${if} $DictCodes != ""
2012-11-11 17:07:55 +00:00
Call InstallHunspellDictionaries # Function from dictionaries.nsh
2012-06-03 15:17:01 +00:00
${endif}
${if} $ThesCodes != ""
2012-11-11 17:07:55 +00:00
Call InstallThesaurusDictionaries # Function from dictionaries.nsh
2012-06-03 15:17:01 +00:00
${endif}
2012-11-10 06:05:19 +00:00
# finally delete the list of mirrors
2012-06-03 15:17:01 +00:00
Delete "$INSTDIR\Resources\DictionaryMirrors.txt"
2008-03-30 21:37:53 +00:00
# Create uninstaller
WriteUninstaller "$INSTDIR\${SETUP_UNINSTALLER}"
SectionEnd