Xorg is now looking in ${LOCALBASE}/share/fonts by default Xorg now accepts symlinks in etc/X11/fontpath.d (as decribed in Xserver(1)) Large cleanup on lots of font ports All fonts are now properly dynamically generating fonts.dir and fonts.scale instead of sometime overwriting existing ones) All fonts are generating fontconfig's cache Improve consistency in fonts ports
19 lines
375 B
Text
19 lines
375 B
Text
--- Makefile.orig Wed Oct 1 22:41:26 1997
|
|
+++ Makefile Wed Oct 1 22:46:06 1997
|
|
@@ -0,0 +1,16 @@
|
|
+.SUFFIXES: .bdf .pcf
|
|
+
|
|
+TMP= ${DISTFILES:%.gz=%}
|
|
+BDF= ${TMP:%.Z=%}
|
|
+PCF= ${BDF:%.bdf=%.pcf}
|
|
+
|
|
+all: ${PCF}
|
|
+
|
|
+install:
|
|
+ -mkdir -p ${DESTDIR}${FONTSDIR}
|
|
+ for i in ${PCF}; do \
|
|
+ gzip -c < $$i > ${DESTDIR}${FONTSDIR}/$$i.gz; \
|
|
+ done
|
|
+
|
|
+.bdf.pcf:
|
|
+ bdftopcf $*.bdf > $*.pcf
|