1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-01 22:05:08 +00:00
freebsd-ports/korean/kaistfonts/files/patch-aa

21 lines
435 B
Plaintext
Raw Normal View History

--- Makefile.orig Wed Oct 1 22:41:26 1997
+++ Makefile Wed Oct 1 22:46:06 1997
@@ -0,0 +1,17 @@
+.SUFFIXES: .bdf .pcf
+
+TMP= ${DISTFILES:%.gz=%}
+BDF= ${TMP:%.Z=%}
+PCF= ${BDF:%.bdf=%.pcf}
+
+all: ${PCF}
+
+install:
+ mkdir -p ${PREFIX}/lib/X11/fonts/misc
+ for i in ${PCF}; do \
+ gzip -c < $$i > ${PREFIX}/lib/X11/fonts/misc/$$i.gz; \
+ done
+ cd ${PREFIX}/lib/X11/fonts/misc/ ; mkfontdir
+
+.bdf.pcf:
+ bdftopcf $*.bdf > $*.pcf