mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 00:10:59 +00:00
24 lines
558 B
Python
24 lines
558 B
Python
|
#!/usr/bin/python
|
||
|
# This script converts a xfig file into Postscript/LaTeX files
|
||
|
|
||
|
import sys
|
||
|
import os
|
||
|
|
||
|
filename = sys.argv[1]
|
||
|
basename = os.path.splitext(filename)[0]
|
||
|
parameters = sys.argv[2:]
|
||
|
|
||
|
pid = os.fork()
|
||
|
if pid == 0:
|
||
|
os.execvp("fig2dev", ["fig2dev", "-Lpstex"] + parameters + [filename, basename + ".eps"])
|
||
|
print "fig2dev did not work"
|
||
|
os.exit(1)
|
||
|
os.wait()
|
||
|
|
||
|
pid = os.fork()
|
||
|
if pid == 0:
|
||
|
os.execvp("fig2dev", ["fig2dev", "-Lpstex_t"] + parameters + [filename, basename + ".pstex_t"])
|
||
|
print "convert did not work second time"
|
||
|
os.exit(1)
|
||
|
os.wait()
|