]> git.lyx.org Git - lyx.git/commitdiff
* lib/configure.py:
authorJürgen Spitzmüller <spitz@lyx.org>
Fri, 29 Feb 2008 10:34:43 +0000 (10:34 +0000)
committerJürgen Spitzmüller <spitz@lyx.org>
Fri, 29 Feb 2008 10:34:43 +0000 (10:34 +0000)
- add checks for pdf2ps and pdftops (bug 3968).

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23353 a592a061-630c-0410-9148-cb99ea01b6c8

lib/configure.py

index 1d3dd6185ace86032dbfb5061fcdab81a6066167..877cb51b8ecfa04dc300e3d765db46eeb5a5fae9 100644 (file)
@@ -398,6 +398,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      "%%"   ""' ])
     #