Edgar Kogler wrote:
> It's the following:
>
> ./configure ... is OK
> make .... is OK
> make install....
> .. hangs when trying to install the xfonts.
> the subdirectory xfonts is empty.
> ?? Any clues ??
> (System is SuSe 7.3, Kernel2.4.20, xfs running.)
Yup, you've found a bug ;-)
The fix is already in the 1.3.x cvs tree and will eventually be
released as LyX 1.3.4. However, if you don't want to wait till then
but install your own copy of LyX 1.3.3, then I'm afraid you'll
have to roll your sleeves up and get your hands dirty.
The fix is a little convoluted because you'll have to edit a file
lib/Makefile.in, that we generate automatically from lib/Makefile.am.
The changes to lib/Makefile.am are to be found around line 554 of
_my_ copy of lib/Makefile.in. Search for 'fonts.scale', replacing the
lines starting '-' below with those starting '+'. (Don't copy the
'-'/'+'; they're just identifiers.)
Regards,
Angus
Index: lib/Makefile.am
===================================================================
RCS file: /usr/local/lyx/cvsroot/lyx-devel/lib/Makefile.am,v
retrieving revision 1.51.2.2
retrieving revision 1.51.2.3
diff -u -p -r1.51.2.2 -r1.51.2.3
--- lib/Makefile.am 17 Sep 2003 13:47:24 -0000 1.51.2.2
+++ lib/Makefile.am 5 Nov 2003 16:58:08 -0000 1.51.2.3
@@ -58,8 +58,10 @@ install-xfonts:
ln -f -s `kpsewhich $$i` $(DESTDIR)$(pkgdatadir)/xfonts/$$i ; \
done ; \
$(INSTALL_DATA) xfonts/fonts.dir $(DESTDIR)$(pkgdatadir)/xfonts/fonts.dir ; \
- $(INSTALL_DATA) xfonts/fonts.scale $(DESTDIR)$(pkgdatadir)/xfonts/fonts.scale
- test -f xfonts/PSres.upr && $(INSTALL_DATA) xfonts/PSres.upr
$(DESTDIR)$(pkgdatadir)/xfonts/PSres.upr
+ $(INSTALL_DATA) xfonts/fonts.scale $(DESTDIR)$(pkgdatadir)/xfonts/fonts.scale
; \
+ if test -f xfonts/PSres.upr ; then \
+ $(INSTALL_DATA) xfonts/PSres.upr $(DESTDIR)$(pkgdatadir)/xfonts/PSres.upr ; \
+ fi
uninstall-xfonts:
rm -rf $(DESTDIR)$(pkgdatadir)/xfonts