From 9ea2659bdd66aa5c343e814d717d1fa4864480ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Spitzm=C3=BCller?= Date: Fri, 29 Feb 2008 10:32:34 +0000 Subject: [PATCH] * lib/configure.py: - add checks for pdf2ps and pdftops (bug 3968). git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_5_X@23352 a592a061-630c-0410-9148-cb99ea01b6c8 --- lib/configure.py | 9 +++++++++ status.15x | 2 ++ 2 files changed, 11 insertions(+) diff --git a/lib/configure.py b/lib/configure.py index 0f76e24c76..2893437511 100644 --- a/lib/configure.py +++ b/lib/configure.py @@ -397,6 +397,15 @@ def checkConverterEntries(): checkProg('a PS to TXT converter', ['ps2ascii $$i $$o'], rc_entry = [ r'\converter ps text3 "%%" ""' ]) # + checkProg('a PS to EPS converter', ['ps2eps $$i'], + rc_entry = [ r'\converter ps eps "%%" ""' ]) + # + checkProg('a PDF to PS converter', ['pdf2ps $$i $$o', 'pdftops $$i $$o'], + rc_entry = [ r'\converter pdf ps "%%" ""' ]) + # + checkProg('a PDF to EPS converter', ['pdftops -eps $$i $$o'], + rc_entry = [ r'\converter pdf eps "%%" ""' ]) + # checkProg('a DVI to TXT converter', ['catdvi $$i > $$o'], rc_entry = [ r'\converter dvi text4 "%%" ""' ]) # diff --git a/status.15x b/status.15x index 59c10fb831..00996941f3 100644 --- a/status.15x +++ b/status.15x @@ -57,6 +57,8 @@ What's new - Check for the LaTeX packages "nicefrac" and "units" that are used by LyX. +- Check for PDF->PS, PDF->EPS and PS->EPS converters and use them (bug 3968). + * USER INTERFACE: