summaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorJiHO <jiho-sf@users.sourceforge.net>2007-05-20 14:17:58 +0000
committerjiho-sf <jiho-sf@users.sourceforge.net>2007-05-20 14:17:58 +0000
commit15d68fe52b0d78dc3ed18f7394d0aad87c99036c (patch)
treecf9608f049d69704df74ae3d70542647b6669ff4 /share
parentThe LaTeX beamer class is the new latex standard to produce slides: (diff)
downloadinkscape-15d68fe52b0d78dc3ed18f7394d0aad87c99036c.tar.gz
inkscape-15d68fe52b0d78dc3ed18f7394d0aad87c99036c.zip
committed patch 1629798
http://sourceforge.net/tracker/index.php?func=detail&aid=1629798&group_id=93438&atid=604308 this patch suppresses the requirement on skconvert for ps and eps input and only uses pstoedit with the plot-svg back-end (which is free). It introduces some warning messages and can cause some scale problems depending on the origin of the ps or eps but it probably better than relying on sketch and can probably be enhanced. Apparently this patch is used in Fedora's Inkscape already and it seems to do well there. (bzr r3034)
Diffstat (limited to 'share')
-rw-r--r--share/extensions/eps_input.inx6
-rw-r--r--share/extensions/ps_input.inx4
2 files changed, 3 insertions, 7 deletions
diff --git a/share/extensions/eps_input.inx b/share/extensions/eps_input.inx
index d732dea8c..b901d3b6f 100644
--- a/share/extensions/eps_input.inx
+++ b/share/extensions/eps_input.inx
@@ -1,8 +1,7 @@
<inkscape-extension>
<_name>EPS Input</_name>
<id>org.inkscape.input.eps</id>
- <dependency type="extension">org.inkscape.input.ps</dependency>
- <dependency type="executable">gs</dependency>
+ <dependency type="executable">pstoedit</dependency>
<input>
<extension>.eps</extension>
<mimetype>image/x-encapsulated-postscript</mimetype>
@@ -11,7 +10,6 @@
<output_extension>org.inkscape.output.eps</output_extension>
</input>
<script>
- <command reldir="path">gs -q -sDEVICE=pswrite -sOutputFile=- -dNOPAUSE -dBATCH -dSAFER -dDEVICEWIDTH=250000 -dDEVICEHEIGHT=250000</command>
- <helper_extension>org.inkscape.input.ps</helper_extension>
+ <command reldir="path">pstoedit -f plot-svg</command>
</script>
</inkscape-extension>
diff --git a/share/extensions/ps_input.inx b/share/extensions/ps_input.inx
index 84d6907ac..ad458138e 100644
--- a/share/extensions/ps_input.inx
+++ b/share/extensions/ps_input.inx
@@ -1,7 +1,6 @@
<inkscape-extension>
<_name>Postscript Input</_name>
<id>org.inkscape.input.ps</id>
- <dependency type="extension">org.inkscape.input.sk</dependency>
<dependency type="executable">pstoedit</dependency>
<input>
<extension>.ps</extension>
@@ -11,7 +10,6 @@
<output_extension>org.inkscape.output.ps</output_extension>
</input>
<script>
- <command reldir="path">pstoedit -f sk</command>
- <helper_extension>org.inkscape.input.sk</helper_extension>
+ <command reldir="path">pstoedit -f plot-svg</command>
</script>
</inkscape-extension>