2018-02-18 14:45:08 +00:00
/*
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
2019-10-20 21:26:08 +00:00
StrCpy $Search "${APP_NAME}"
2014-03-09 06:57:47 +00:00
Call StrPoint # function from LyXUtils.nsh
${if} $Pointer == "-1"
StrCpy $INSTDIR "$INSTDIR\${APP_DIR}"
${endif}
2018-09-29 02:19:39 +00:00
# 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}
2013-02-26 01:25:04 +00:00
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\"
2018-09-29 01:50:25 +00:00
# The 2.3.0 and early 2.3.1 installers used a version suffix
# We need to remove the old binaries if we're installing into the same directory
Delete "$INSTDIR\bin\LyX2.3.exe"
Delete "$INSTDIR\bin\tex2lyx2.3.exe"
2008-03-30 21:37:53 +00:00
!insertmacro FileListQtBin File "${FILES_QT}\bin\"
2020-04-04 23:16:29 +00:00
!insertmacro FileListMSVC File "${FILES_LYX}\bin\"
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-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"
2018-09-29 02:19:39 +00:00
!insertmacro FileListQtImageformats File "${FILES_QT}\bin\imageformats\"
2015-11-26 23:39:38 +00:00
SetOutPath "$INSTDIR\bin\iconengines"
2018-09-29 02:19:39 +00:00
!insertmacro FileListQtIconengines File "${FILES_QT}\bin\iconengines\"
2016-01-14 21:56:49 +00:00
SetOutPath "$INSTDIR\bin\platforms"
2018-09-29 02:19:39 +00:00
!insertmacro FileListQtPlatforms File "${FILES_QT}\bin\platforms\"
SetOutPath "$INSTDIR\bin\styles"
!insertmacro FileListQtStyles File "${FILES_QT}\bin\styles\"
2008-03-30 21:37:53 +00:00
# Resources
2020-04-04 23:16:29 +00:00
SetOutPath "$INSTDIR\Resources"
2008-03-30 21:37:53 +00:00
# recursively copy all files under Resources
2020-04-04 23:16:29 +00:00
File /r "${FILES_LYX}\Resources\"
File /r "${FILES_DEPS}\Resources\"
2011-12-21 01:12:43 +00:00
2011-04-26 21:29:32 +00:00
# Python
2020-04-04 23:16:29 +00:00
SetOutPath "$INSTDIR\Python"
2011-04-26 21:29:32 +00:00
# recursively copy all files under Python
2020-04-04 23:16:29 +00:00
File /r "${FILES_PYTHON}\"
2018-09-29 02:19:39 +00:00
#FIXME We probably should not do this, as dicussed on the list.
# register .py files if necessary
2015-08-05 00:29:43 +00:00
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
2018-09-29 02:19:39 +00:00
# Compile all Python files to byte-code
2008-05-01 18:33:36 +00:00
# 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}\"
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}\"
StrCpy $GhostscriptPath "$INSTDIR\ghostscript\bin"
${endif}
2008-05-01 18:33:36 +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
${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