<pre style='margin:0'>
Jeremy Huddleston Sequoia (jeremyhu) pushed a commit to branch master
in repository macports-ports.

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/af6828cf78b4f37fcfec81bdc1ca2fbd51a821a6">https://github.com/macports/macports-ports/commit/af6828cf78b4f37fcfec81bdc1ca2fbd51a821a6</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 af6828c  xinit: fix font path initialization.
</span>af6828c is described below

<span style='display:block; white-space:pre;color:#808000;'>commit af6828cf78b4f37fcfec81bdc1ca2fbd51a821a6
</span>Author: Emanuele Giaquinta <emanuele.giaquinta@gmail.com>
AuthorDate: Sat Apr 22 08:19:51 2017 +0300

<span style='display:block; white-space:pre;color:#404040;'>    xinit: fix font path initialization.
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    The script 10-fontdir.sh fails to set the font path if libwmf or
</span><span style='display:block; white-space:pre;color:#404040;'>    urw-fonts is not installed.
</span>---
 x11/xinit/Portfile                      | 2 +-
 x11/xinit/files/xinitrc.d/10-fontdir.sh | 4 +++-
 2 files changed, 4 insertions(+), 2 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/x11/xinit/Portfile b/x11/xinit/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 1d8dec1..0b36580 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/x11/xinit/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/x11/xinit/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -4,7 +4,7 @@ PortSystem          1.0
</span> 
 name                xinit
 version             1.3.4
<span style='display:block; white-space:pre;background:#ffe0e0;'>-revision            3
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+revision            4
</span> categories          x11
 platforms           darwin
 maintainers         {jeremyhu @jeremyhu} openmaintainer
<span style='display:block; white-space:pre;color:#808080;'>diff --git a/x11/xinit/files/xinitrc.d/10-fontdir.sh b/x11/xinit/files/xinitrc.d/10-fontdir.sh
</span><span style='display:block; white-space:pre;color:#808080;'>index 23bc0ec..b19fda2 100755
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/x11/xinit/files/xinitrc.d/10-fontdir.sh
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/x11/xinit/files/xinitrc.d/10-fontdir.sh
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -1,6 +1,8 @@
</span> if [ -x __PREFIX__/bin/xset ] ; then
<span style='display:block; white-space:pre;background:#ffe0e0;'>-        fontpath="__PREFIX__/share/fonts/misc/,__PREFIX__/share/fonts/TTF/,__PREFIX__/share/fonts/OTF,__PREFIX__/share/fonts/Type1/,__PREFIX__/share/fonts/75dpi/:unscaled,__PREFIX__/share/fonts/100dpi/:unscaled,__PREFIX__/share/fonts/75dpi/,__PREFIX__/share/fonts/100dpi/,__PREFIX__/share/fonts/libwmf,__PREFIX__/share/fonts/urw-fonts"
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        fontpath="__PREFIX__/share/fonts/misc/,__PREFIX__/share/fonts/TTF/,__PREFIX__/share/fonts/OTF,__PREFIX__/share/fonts/Type1/,__PREFIX__/share/fonts/75dpi/:unscaled,__PREFIX__/share/fonts/100dpi/:unscaled,__PREFIX__/share/fonts/75dpi/,__PREFIX__/share/fonts/100dpi/"
</span> 
<span style='display:block; white-space:pre;background:#e0ffe0;'>+        [ -e __PREFIX__/share/fonts/libwmf/fonts.dir ] && fontpath="$fontpath,__PREFIX__/share/fonts/libwmf"
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        [ -e __PREFIX__/share/fonts/urw-fonts/fonts.dir ] && fontpath="$fontpath,__PREFIX__/share/fonts/urw-fonts"
</span>         [ -e "$HOME"/.fonts/fonts.dir ] && fontpath="$fontpath,$HOME/.fonts"
         [ -e "$HOME"/Library/Fonts/fonts.dir ] && fontpath="$fontpath,$HOME/Library/Fonts"
         [ -e /Library/Fonts/fonts.dir ] && fontpath="$fontpath,/Library/Fonts"
</pre><pre style='margin:0'>

</pre>