diff options
author | agc <agc@pkgsrc.org> | 1997-10-09 14:30:56 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 1997-10-09 14:30:56 +0000 |
commit | 5a738ca9d8968d3de0c39083b8a8a5a76cd01b02 (patch) | |
tree | db232209ea22925d7f406bcc3a7b5e7457bffa83 /fonts/Xg/patches | |
parent | d842fc40ac63031ed503242a8f7d04368f208721 (diff) | |
download | pkgsrc-5a738ca9d8968d3de0c39083b8a8a5a76cd01b02.tar.gz |
Initial import of FreeBSD plan9 ports category into the NetBSD package
system.
Diffstat (limited to 'fonts/Xg/patches')
-rw-r--r-- | fonts/Xg/patches/patch-aa | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/fonts/Xg/patches/patch-aa b/fonts/Xg/patches/patch-aa new file mode 100644 index 00000000000..0f57ac58227 --- /dev/null +++ b/fonts/Xg/patches/patch-aa @@ -0,0 +1,20 @@ +*** Makefile~ Sun Aug 13 13:55:37 1995 +--- Makefile Sun Aug 13 13:56:11 1995 +*************** +*** 0 **** +--- 1,15 ---- ++ ++ DESTDIR=$(PREFIX)/lib/X11/fonts/Xg ++ ++ all: ++ @echo nothing to be done for \`$@\' ++ @echo this is an install-only target. ++ ++ install: ++ [ -d $(DESTDIR) ] || mkdir -p $(DESTDIR) ++ for i in Xg/bdf/*.bdf; do b=$$(basename $$i .bdf); \ ++ rm -f $(DESTDIR)/$$b.pcf.Z; \ ++ bdftopcf -o $(DESTDIR)/$$b.pcf $$i; \ ++ compress $(DESTDIR)/$$b.pcf; \ ++ done; mkfontdir $(DESTDIR); \ ++ cp Xg/matty/unicode.9.font $(DESTDIR) |