diff options
author | makefu <github@syntax-fehler.de> | 2017-08-16 22:03:48 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2017-08-16 22:03:48 +0200 |
commit | d94f85a18cdcece49e3b95542567d8b1023f0da1 (patch) | |
tree | 2d61397cc3b2e1eace1e26bcc48749b8795f3292 /makefu/5pkgs/custom | |
parent | a795766f3a881d43f92dcafcf26eeb765e993ed7 (diff) |
ma pkgs: init inkscape
Diffstat (limited to 'makefu/5pkgs/custom')
-rw-r--r-- | makefu/5pkgs/custom/inkscape/dxf_fix.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/makefu/5pkgs/custom/inkscape/dxf_fix.patch b/makefu/5pkgs/custom/inkscape/dxf_fix.patch new file mode 100644 index 000000000..5ea0a073e --- /dev/null +++ b/makefu/5pkgs/custom/inkscape/dxf_fix.patch @@ -0,0 +1,13 @@ +--- ./share/extensions/dxf_outlines.py 2017-02-14 00:46:57.000000000 +0100 ++++ ./share/extensions/dxf_outlines.py.new 2017-05-10 04:15:03.000000000 +0200 +@@ -340,7 +340,7 @@ + scale = eval(self.options.units) + if not scale: + scale = 25.4/96 # if no scale is specified, assume inch as baseunit +- h = self.unittouu(self.document.getroot().xpath('@height', namespaces=inkex.NSS)[0]) ++ h = self.unittouu(self.getDocumentHeight()) + self.groupmat = [[[scale, 0.0, 0.0], [0.0, -scale, h*scale]]] + doc = self.document.getroot() + self.process_group(doc) + + |