blob: 5abafd55caa9a3d14b8d1e6748d6367a21a9f549 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
*** 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 && gzip -f *.pcf
+ (cd nucleus/mozilla-src && tar -cf - *.pcf.gz) | (cd ${DESTDIR}/mozilla && tar -xf -)
+ cd ${DESTDIR}/mozilla && mkfontdir .
|