<pre style='margin:0'>
tobypeterson pushed a commit to branch master
in repository macports-ports.

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/f5d3b0a4c7858432bd0eb4551d536d2f935e8e64">https://github.com/macports/macports-ports/commit/f5d3b0a4c7858432bd0eb4551d536d2f935e8e64</a></p>
<pre style="white-space: pre; background: #F8F8F8">The following commit(s) were added to refs/heads/master by this push:
<span style='display:block; white-space:pre;color:#404040;'>     new f5d3b0a  inkscape-app: fix crash when using nonstandard locale
</span>f5d3b0a is described below

<span style='display:block; white-space:pre;color:#808000;'>commit f5d3b0a4c7858432bd0eb4551d536d2f935e8e64
</span>Author: Aaron Madlon-Kay <aaron@madlon-kay.com>
AuthorDate: Tue Mar 7 21:29:42 2017 +0900

<span style='display:block; white-space:pre;color:#404040;'>    inkscape-app: fix crash when using nonstandard locale
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    Using a nonstandard locale (e.g. primary language English, region Japan
</span><span style='display:block; white-space:pre;color:#404040;'>    -> en-JP) results in empty LANG, LC_ALL envars; this causes Inkscape to
</span><span style='display:block; white-space:pre;color:#404040;'>    crash. Modify launch script to set these envars if they are empty.
</span>---
 aqua/inkscape-app/Portfile       | 2 ++
 aqua/inkscape-app/files/Inkscape | 3 +++
 2 files changed, 5 insertions(+)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/aqua/inkscape-app/Portfile b/aqua/inkscape-app/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 1f36aff..09ad7e5 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/aqua/inkscape-app/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/aqua/inkscape-app/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -6,7 +6,9 @@ PortGroup           github 1.0
</span> github.setup        piksels-and-lines-orchestra inkscape 628ca88bdb258c0be08a5aa6337ed6df31190326
 name                inkscape-app
 version             0.92
<span style='display:block; white-space:pre;background:#e0ffe0;'>+revision            1
</span> license             GPL-2+
<span style='display:block; white-space:pre;background:#e0ffe0;'>+platforms           darwin
</span> maintainers         nomaintainer
 description         Inkscape.app application bundle
 long_description    ${description}
<span style='display:block; white-space:pre;color:#808080;'>diff --git a/aqua/inkscape-app/files/Inkscape b/aqua/inkscape-app/files/Inkscape
</span><span style='display:block; white-space:pre;color:#808080;'>index a07f678..f92f2c1 100755
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/aqua/inkscape-app/files/Inkscape
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/aqua/inkscape-app/files/Inkscape
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -1,3 +1,6 @@
</span> #!/bin/sh
 
<span style='display:block; white-space:pre;background:#e0ffe0;'>+export LANG=${LANG:-C}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+export LC_ALL=${LC_ALL:-C}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span> PATH=@@PREFIX@@/bin:$PATH @@PREFIX@@/bin/inkscape
</pre><pre style='margin:0'>

</pre>