This package ships a large number of OpenType fonts that are not
available elsewhere in Debian. The one I am particularly interested in
is Source Code Pro, which I use for my terminal and editor, but there
are others as well.
However, installing this packages doesn't expose those fonts to
fontconfig, so one has to symlink the relevant directories into
`~/.fonts` and then rebuild the fontconfig cache. This is inconvenient
and has to be done on a per-user basis, which is not great for
multi-user systems.
Would it be possible to ship a fontconfig file that includes the
appropriate directories for use by fontconfig? I think that might be as
simple as something like the below:
----
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<!-- Scan for OpenType fonts -->
<dir>/usr/share/texmf/fonts/opentype/adobe/sourcecodepro</dir>
<dir>/usr/share/texmf/fonts/opentype/adobe/sourcesanspro</dir>
<dir>/usr/share/texmf/fonts/opentype/adobe/sourceserifpro</dir>
<!-- other relevant directories here. -->
</fontconfig>
----
plus the appropriate changes to the maintainer scripts.
Of course, if you wish to move these files into a separate package
instead, that would be even better (because then I don't have to install
a lot of TeXLive on work systems, where I don't tend to write a lot of
TeX), but I'm not picky and would be happy with the simpler, less
invasive solution as well. There may be other solutions that you
prefer, and I'm open to hearing them.