When using gnuplot or plotting in octave on wheezy I keep getting the following warnings.
Fontconfig warning: "/etc/fonts/conf.d/41-arphic-ukai.conf", line 16: Having multiplein isn't supported and may not work as expected Fontconfig warning: "/etc/fonts/conf.d/41-arphic-ukai.conf", line 16: Having multiple in isn't supported and may not work as expected Fontconfig warning: "/etc/fonts/conf.d/41-arphic-ukai.conf", line 16: Having multiple in isn't supported and may not work as expected Fontconfig warning: "/etc/fonts/conf.d/41-arphic-ukai.conf", line 16: Having multiple in isn't supported and may not work as expected Fontconfig warning: "/etc/fonts/conf.d/41-arphic-ukai.conf", line 16: Having multiple in isn't supported and may not work as expected Fontconfig warning: "/etc/fonts/conf.d/41-arphic-uming.conf", line 16: Having multiple in isn't supported and may not work as expected Fontconfig warning: "/etc/fonts/conf.d/41-arphic-uming.conf", line 16: Having multiple in isn't supported and may not work as expected Fontconfig warning: "/etc/fonts/conf.d/41-arphic-uming.conf", line 16: Having multiple in isn't supported and may not work as expected Fontconfig warning: "/etc/fonts/conf.d/41-arphic-uming.conf", line 16: Having multiple in isn't supported and may not work as expected Fontconfig warning: "/etc/fonts/conf.d/41-arphic-uming.conf", line 16: Having multiple in isn't supported and may not work as expected Fontconfig warning: "/etc/fonts/conf.d/41-arphic-uming.conf", line 28: Having multiple in isn't supported and may not work as expected Fontconfig warning: "/etc/fonts/conf.d/41-arphic-uming.conf", line 28: Having multiple in isn't supported and may not work as expected Fontconfig warning: "/etc/fonts/conf.d/41-arphic-uming.conf", line 28: Having multiple in isn't supported and may not work as expected Fontconfig warning: "/etc/fonts/conf.d/41-arphic-uming.conf", line 28: Having multiple in isn't supported and may not work as expected Fontconfig warning: "/etc/fonts/conf.d/41-arphic-uming.conf", line 28: Having multiple in isn't supported and may not work as expected Fontconfig warning: "/etc/fonts/conf.d/64-arphic-uming.conf", line 8: Having multiple values in isn't supported and may not work as expected Fontconfig warning: "/etc/fonts/conf.d/64-arphic-uming.conf", line 21: Having multiple values in isn't supported and may not work as expected Fontconfig warning: "/etc/fonts/conf.d/64-arphic-uming.conf", line 34: Having multiple values in isn't supported and may not work as expected Fontconfig warning: "/etc/fonts/conf.d/64-arphic-uming.conf", line 47: Having multiple values in isn't supported and may not work as expected Fontconfig warning: "/etc/fonts/conf.d/65-droid-sans-fonts.conf", line 103: Having multiple values in isn't supported and may not work as expected Fontconfig warning: "/etc/fonts/conf.d/65-droid-sans-fonts.conf", line 138: Having multiple values in isn't supported and may not work as expected Fontconfig warning: "/etc/fonts/conf.d/90-fonts-baekmuk.conf", line 10: Having multiple values in isn't supported and may not work as expected Fontconfig warning: "/etc/fonts/conf.d/90-fonts-baekmuk.conf", line 23: Having multiple values in isn't supported and may not work as expected
My 'solution' was a bit radical -- I had already set up a system with apt-pinning (http://verahill.blogspot.com.au/2014/03/562-pulling-in-glibc-214-from-testing.html) so I figured that pulling in the fonts from testing couldn't hurt, assuming there were no dependencies to worry about.
So I did:
sudo apt-get install -t testing fonts-arphic-umingand this worked fine.
The old 41-arphic-uming.conf:
The new 41-arphic-uming.conf:<?xml version="1.0"?> <!DOCTYPE fontconfig SYSTEM "fonts.dtd"> <fontconfig> <!-- Serif faces --> <alias> <family>AR PL ShanHeiSun Uni</family> <family>AR PL ShanHeiSun Uni MBE</family> <family>AR PL UMing CN</family> <family>AR PL UMing HK</family> <family>AR PL UMing TW</family> <family>AR PL UMing TW MBE</family> <default><family>serif</family></default> </alias> <!-- Monospace faces --> <alias> <family>AR PL ShanHeiSun Uni</family> <family>AR PL ShanHeiSun Uni MBE</family> <family>AR PL UMing CN</family> <family>AR PL UMing HK</family> <family>AR PL UMing TW</family> <family>AR PL UMing TW MBE</family> <default><family>monospace</family></default> </alias> </fontconfig>
It just remained to pull in the rest of the offending fonts:<?xml version="1.0"?> <!DOCTYPE fontconfig SYSTEM "fonts.dtd"> <fontconfig> <!-- Serif faces --> <alias> <family>AR PL ShanHeiSun Uni</family> <default><family>serif</family></default> </alias> <alias> <family>AR PL ShanHeiSun Uni MBE</family> <default><family>serif</family></default> </alias> <alias> <family>AR PL UMing CN</family> <default><family>serif</family></default> </alias> <alias> <family>AR PL UMing HK</family> <default><family>serif</family></default> </alias> <alias> <family>AR PL UMing TW</family> <default><family>serif</family></default> </alias> <alias> <family>AR PL UMing TW MBE</family> <default><family>serif</family></default> </alias> <!-- Monospace faces --> <alias> <family>AR PL ShanHeiSun Uni</family> <default><family>monospace</family></default> </alias> <alias> <family>AR PL ShanHeiSun Uni MBE</family> <default><family>monospace</family></default> </alias> <alias> <family>AR PL UMing CN</family> <default><family>monospace</family></default> </alias> <alias> <family>AR PL UMing HK</family> <default><family>monospace</family></default> </alias> <alias> <family>AR PL UMing TW</family> <default><family>monospace</family></default> </alias> <alias> <family>AR PL UMing TW MBE</family> <default><family>monospace</family></default> </alias> </fontconfig>
sudo apt-get install -t testing fonts-arphic-ukai fonts-droid fonts-baekmuk
No comments:
Post a Comment