Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 168799
Collapse All | Expand All

(-)lyx-1.5.0beta1.orig/lib/configure.py (-3 / +3 lines)
Lines 214-220 Link Here
214
\\@@end
214
\\@@end
215
''')
215
''')
216
        # run latex on chklatex.ltx and check result
216
        # run latex on chklatex.ltx and check result
217
        if cmdOutput(LATEX + ' chklatex.ltx').find('ThisIsLaTeX2e') != -1:
217
        if cmdOutput(LATEX + ' --no-mktex=tfm chklatex.ltx').find('ThisIsLaTeX2e') != -1:
218
            # valid latex2e
218
            # valid latex2e
219
            return LATEX
219
            return LATEX
220
        else:
220
        else:
Lines 370-376 Link Here
370
    checkProg('a DVI to TXT converter', ['catdvi $$i > $$o'],
370
    checkProg('a DVI to TXT converter', ['catdvi $$i > $$o'],
371
        rc_entry = [ r'\converter dvi        text4      "%%"	""' ])
371
        rc_entry = [ r'\converter dvi        text4      "%%"	""' ])
372
    #
372
    #
373
    checkProg('a DVI to PS converter', ['dvips -o $$o $$i'],
373
    checkProg('a DVI to PS converter', ['dvips -R0 -o $$o $$i'],
374
        rc_entry = [ r'\converter dvi        ps         "%%"	""' ])
374
        rc_entry = [ r'\converter dvi        ps         "%%"	""' ])
375
    #
375
    #
376
    checkProg('a DVI to PDF converter', ['dvipdfmx -o $$o $$i', 'dvipdfm -o $$o $$i'],
376
    checkProg('a DVI to PDF converter', ['dvipdfmx -o $$o $$i', 'dvipdfm -o $$o $$i'],
Lines 636-642 Link Here
636
        cl.close()
636
        cl.close()
637
        #
637
        #
638
        # we have chklayouts.tex, then process it
638
        # we have chklayouts.tex, then process it
639
        fout = os.popen(LATEX + ' wrap_chkconfig.ltx')
639
        fout = os.popen(LATEX + ' --no-mktex=tfm wrap_chkconfig.ltx')
640
        while True:
640
        while True:
641
            line = fout.readline()
641
            line = fout.readline()
642
            if not line:
642
            if not line:

Return to bug 168799