diff options
author | olgeni <olgeni@FreeBSD.org> | 2002-01-21 10:15:01 +0000 |
---|---|---|
committer | olgeni <olgeni@FreeBSD.org> | 2002-01-21 10:15:01 +0000 |
commit | 06e41d6b5786b0c44097e87c28b4154590f64a9e (patch) | |
tree | 5d39d3789d4ea9badd5f3d43ff31fad19e2a2d05 | |
parent | f813aff648c38dd148fc570a912c936484fb490a (diff) | |
download | FreeBSD-ports-06e41d6b5786b0c44097e87c28b4154590f64a9e.zip FreeBSD-ports-06e41d6b5786b0c44097e87c28b4154590f64a9e.tar.gz |
Fix build problem: gzip would stop and ask to overwrite files if the fonts
are already installed (no portrevision bump is needed).
-rw-r--r-- | x11-fonts/nucleus/files/patch-aa | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/x11-fonts/nucleus/files/patch-aa b/x11-fonts/nucleus/files/patch-aa index 2c13ff3..5abafd5 100644 --- a/x11-fonts/nucleus/files/patch-aa +++ b/x11-fonts/nucleus/files/patch-aa @@ -13,7 +13,6 @@ + [ -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 nucleus/mozilla-src && make && gzip -f *.pcf ++ (cd nucleus/mozilla-src && tar -cf - *.pcf.gz) | (cd ${DESTDIR}/mozilla && tar -xf -) + cd ${DESTDIR}/mozilla && mkfontdir . |