X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=lib%2Fconfigure.py;h=6ccb8426c4e420d112c7707e36782aaaf319aa4d;hb=6ec1f3bd7aff0b63ccefe210cc5f210713185c49;hp=318bdcdc7d9563274afa63934795b8ec92a3b3aa;hpb=a6a23d17818baf0dde676fcdf280bb17c5f59230;p=lyx.git diff --git a/lib/configure.py b/lib/configure.py index 318bdcdc7d..6ccb8426c4 100644 --- a/lib/configure.py +++ b/lib/configure.py @@ -458,7 +458,7 @@ def checkLuatex(): if DVILUATEX != '': addToRC(r'\converter luatex dvi3 "%s" "latex=lualatex"' % DVILUATEX) # remove temporary files - removeFiles(['luatest.tex', 'luatest.log']) + removeFiles(['luatest.tex', 'luatest.log', 'luatest.aux', 'luatest.pdf']) def checkModule(module): @@ -540,7 +540,7 @@ def checkFormatEntries(dtl_tools): \Format literate nw NoWeb N "" "%%" "document,menu=export" \Format sweave Rnw "Sweave" S "" "%%" "document,menu=export" \Format lilypond ly "LilyPond music" "" "" "%%" "vector" -\Format lilypond-book lytex "LilyPond book (LaTeX)" "" "" "%%" "document" +\Format lilypond-book lytex "LilyPond book (LaTeX)" "" "" "%%" "document,menu=export" \Format latex tex "LaTeX (plain)" L "" "%%" "document,menu=export" \Format luatex tex "LaTeX (LuaTeX)" "" "" "%%" "document,menu=export" \Format pdflatex tex "LaTeX (pdflatex)" "" "" "%%" "document,menu=export" @@ -659,10 +659,10 @@ def checkConverterEntries(): \converter literate pdflatex "%%" ""''']) # checkProg('a Sweave -> LaTeX converter', ['Rscript --verbose --no-save --no-restore $$s/scripts/lyxsweave.R $$p$$i $$p$$o $$e $$r'], - rc_entry = [r'''\converter sweave latex "%%" "latex" -\converter sweave pdflatex "%%" "latex=pdflatex" -\converter sweave xetex "%%" "latex=xelatex" -\converter sweave luatex "%%" "latex=lualatex"''']) + rc_entry = [r'''\converter sweave latex "%%" "" +\converter sweave pdflatex "%%" "" +\converter sweave xetex "%%" "" +\converter sweave luatex "%%" ""''']) # checkProg('an HTML -> LaTeX converter', ['html2latex $$i', 'gnuhtml2latex $$i', \ 'htmltolatex -input $$i -output $$o', 'java -jar htmltolatex.jar -input $$i -output $$o'], @@ -892,6 +892,8 @@ def checkConverterEntries(): # this, use different output folders for eps and pdf outputs. addToRC(r'\converter lilypond-book latex "lilypond-book --safe --lily-output-dir=ly-eps $$i" ""') addToRC(r'\converter lilypond-book pdflatex "lilypond-book --safe --pdf --latex-program=pdflatex --lily-output-dir=ly-pdf $$i" ""') + addToRC(r'\converter lilypond-book xetex "lilypond-book --safe --pdf --latex-program=xelatex --lily-output-dir=ly-pdf $$i" ""') + addToRC(r'\converter lilypond-book luatex "lilypond-book --safe --pdf --latex-program=lualatex --lily-output-dir=ly-pdf $$i" ""') logger.info('+ found LilyPond-book version %s.' % version_number) else: logger.info('+ found LilyPond-book, but version %s is too old.' % version_number)