diff options
author | Will Andrews <will@FreeBSD.org> | 2000-09-16 04:23:51 +0000 |
---|---|---|
committer | Will Andrews <will@FreeBSD.org> | 2000-09-16 04:23:51 +0000 |
commit | 2b4d45c63631b61c802a0330248ce6a4be2f7ae0 (patch) | |
tree | 8786e031b837a94e5eded6202fe8c990ff46a7a7 /x11-fonts/nucleus/files | |
parent | cf622010cb5137bb52e0bd6dacf253e40b769224 (diff) |
Notes
Diffstat (limited to 'x11-fonts/nucleus/files')
-rw-r--r-- | x11-fonts/nucleus/files/patch-aa | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/x11-fonts/nucleus/files/patch-aa b/x11-fonts/nucleus/files/patch-aa new file mode 100644 index 000000000000..2c13ff3cf2e7 --- /dev/null +++ b/x11-fonts/nucleus/files/patch-aa @@ -0,0 +1,19 @@ +*** Makefile.orig Sat Aug 12 18:46:05 2000 +--- Makefile Sat Aug 12 18:48:26 2000 +*************** +*** 0 **** +--- 1,14 ---- ++ DESTDIR=$(PREFIX)/lib/X11/fonts ++ ++ all: ++ @echo nothing to be done for \`$@\' ++ @echo this is an install-only port. ++ ++ install: ++ [ -d $(DESTDIR) ] || mkdir $(DESTDIR) ++ (cd nucleus && tar -cf - nucleus) | (cd ${DESTDIR}; tar -xf -) ++ mkdir -p ${DESTDIR}/mozilla ++ cd nucleus/mozilla-src && make ++ (cd nucleus/mozilla-src && tar -cf - *.pcf) | (cd ${DESTDIR}/mozilla && tar -xf -) ++ cd ${DESTDIR}/mozilla && gzip *.pcf ++ cd ${DESTDIR}/mozilla && mkfontdir . |