unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#22100: 'font-alias' breaks other xorg font packages when installed in a single profile
@ 2015-12-06  9:19 Alex Kost
  2015-12-09 14:05 ` Ludovic Courtès
  0 siblings, 1 reply; 4+ messages in thread
From: Alex Kost @ 2015-12-06  9:19 UTC (permalink / raw)
  To: 22100; +Cc: Eric Bavier

I install several xorg font packages (font-adobe75dpi, font-adobe100dpi,
font-misc-misc and font-alias) in one of my profiles, and point my Xorg
font path to this directory.  Previously it worked fine, but after
commit bf9655f¹, I cannot use this anymore, because the empty
"fonts.dir" files from 'font-alias' packages override the proper
"fonts.dir" files from the other packages.

So since it was a workaround for Xorg server behaviour, I wonder would
it be possible to modify 'xorg-server' package instead?  So that along
with directories with "fonts.dir" files, Xorg server would also handle
directories that have "fonts.alias" files.

Anyway, I don't insist on reverting this commit, as I'm rather happy
using the following package (Guix is great!):

(define-public font-alias-pure
  (package
    (inherit font-alias)
    (name "font-alias-pure")
    (arguments '())
    (synopsis (string-append (package-synopsis font-alias)
                             " (upstream package without modifications)"))))

¹ http://git.savannah.gnu.org/cgit/guix.git/commit/?id=bf9655f57d2442d56661594b80f6d0031ca0ae73

-- 
Alex

^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#22100: 'font-alias' breaks other xorg font packages when installed in a single profile
  2015-12-06  9:19 bug#22100: 'font-alias' breaks other xorg font packages when installed in a single profile Alex Kost
@ 2015-12-09 14:05 ` Ludovic Courtès
  2015-12-12  2:06   ` Eric Bavier
  0 siblings, 1 reply; 4+ messages in thread
From: Ludovic Courtès @ 2015-12-09 14:05 UTC (permalink / raw)
  To: Alex Kost; +Cc: 22100, Eric Bavier

Alex Kost <alezost@gmail.com> skribis:

> I install several xorg font packages (font-adobe75dpi, font-adobe100dpi,
> font-misc-misc and font-alias) in one of my profiles, and point my Xorg
> font path to this directory.  Previously it worked fine, but after
> commit bf9655f¹, I cannot use this anymore, because the empty
> "fonts.dir" files from 'font-alias' packages override the proper
> "fonts.dir" files from the other packages.

D’oh!

> So since it was a workaround for Xorg server behaviour, I wonder would
> it be possible to modify 'xorg-server' package instead?  So that along
> with directories with "fonts.dir" files, Xorg server would also handle
> directories that have "fonts.alias" files.

It seems we need something along these lines, indeed.

WDYT Eric?

Thanks,
Ludo’.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#22100: 'font-alias' breaks other xorg font packages when installed in a single profile
  2015-12-09 14:05 ` Ludovic Courtès
@ 2015-12-12  2:06   ` Eric Bavier
  2015-12-12 17:37     ` Ludovic Courtès
  0 siblings, 1 reply; 4+ messages in thread
From: Eric Bavier @ 2015-12-12  2:06 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: Alex Kost, 22100

On Wed, 09 Dec 2015 15:05:28 +0100
ludo@gnu.org (Ludovic Courtès) wrote:

> Alex Kost <alezost@gmail.com> skribis:
> 
> > I install several xorg font packages (font-adobe75dpi, font-adobe100dpi,
> > font-misc-misc and font-alias) in one of my profiles, and point my Xorg
> > font path to this directory.  Previously it worked fine, but after
> > commit bf9655f¹, I cannot use this anymore, because the empty
> > "fonts.dir" files from 'font-alias' packages override the proper
> > "fonts.dir" files from the other packages.  
> 
> D’oh!

Oops indeed.

> > So since it was a workaround for Xorg server behaviour, I wonder would
> > it be possible to modify 'xorg-server' package instead?  So that along
> > with directories with "fonts.dir" files, Xorg server would also handle
> > directories that have "fonts.alias" files.  
> 
> It seems we need something along these lines, indeed.

That may help in the specific case of the font-alias package.  It would
not help in the long run however.  We currently have a rather
limited number of X11 fonts in Guix, just the adobe fonts to be
precise.  We'll run into the same 'fonts.dir' collision issues once
other X11 fonts are packaged and installed in a profile alongside other
fonts.

E.g. installing font-adobe75dpi and a future font-bitstream75dpi would
produce a collision on the fonts.dir files from each package, and
ultimately only one of the fonts would be available to the user.

Since xorg-server lacks AFAIK any environment variables to set the font
path we cannot consider moving fonts to namespaced directories.
Instead, we might want to consider ignoring fonts.dir files from the
union build if possible and then running mkfontsdir at profile creation
time.

`~Eric

^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#22100: 'font-alias' breaks other xorg font packages when installed in a single profile
  2015-12-12  2:06   ` Eric Bavier
@ 2015-12-12 17:37     ` Ludovic Courtès
  0 siblings, 0 replies; 4+ messages in thread
From: Ludovic Courtès @ 2015-12-12 17:37 UTC (permalink / raw)
  To: Eric Bavier; +Cc: Alex Kost, 22100

Eric Bavier <bavier@member.fsf.org> skribis:

> Since xorg-server lacks AFAIK any environment variables to set the font
> path we cannot consider moving fonts to namespaced directories.

Hmm.

> Instead, we might want to consider ignoring fonts.dir files from the
> union build if possible and then running mkfontsdir at profile creation
> time.

We could always do that but, shouldn’t we fix the X font server instead?
(Easier said than done, I admit, unless there are patches floating around.)

Thanks,
Ludo’.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-12-12 19:04 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-12-06  9:19 bug#22100: 'font-alias' breaks other xorg font packages when installed in a single profile Alex Kost
2015-12-09 14:05 ` Ludovic Courtès
2015-12-12  2:06   ` Eric Bavier
2015-12-12 17:37     ` Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).