summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Marc Zucconi <jmz@FreeBSD.org>1999-07-15 22:41:30 +0000
committerJean-Marc Zucconi <jmz@FreeBSD.org>1999-07-15 22:41:30 +0000
commit0a9fae4a42559e454009d2f0130ecd26007083fa (patch)
tree036083257ce798760d1a03bf00641286d10a77ae
parentUpdate checksum (some files have been re-created) (diff)
Don't install/overwrite files already installed by latex.
Notes
Notes: svn path=/head/; revision=20223
-rw-r--r--print/dvips/pkg-plist4
-rw-r--r--print/dvips/scripts/configure5
2 files changed, 5 insertions, 4 deletions
diff --git a/print/dvips/pkg-plist b/print/dvips/pkg-plist
index 267d37134b09..64752e558afa 100644
--- a/print/dvips/pkg-plist
+++ b/print/dvips/pkg-plist
@@ -165,11 +165,7 @@ share/texmf/tex/blackdvi.tex
share/texmf/tex/dvips.tex
share/texmf/tex/dvipsmac.tex
share/texmf/tex/latex/avantgarde.sty
-share/texmf/tex/latex/bookman.sty
-share/texmf/tex/latex/chancery.sty
share/texmf/tex/latex/lucida.sty
share/texmf/tex/latex/ncs.sty
-share/texmf/tex/latex/palatino.sty
share/texmf/tex/latex/psfonts.sty
share/texmf/tex/latex/psgreek.sty
-share/texmf/tex/latex/times.sty
diff --git a/print/dvips/scripts/configure b/print/dvips/scripts/configure
index ca438289ede7..aedbb29268c2 100644
--- a/print/dvips/scripts/configure
+++ b/print/dvips/scripts/configure
@@ -83,4 +83,9 @@ echo "OPT = -O2 -funsigned-char" >> ${WRKSRC}/Makefile
echo "BINDIR=$PREFIX/bin" >> ${WRKSRC}/Makefile
echo "FLIBS=-lm" >> ${WRKSRC}/Makefile
+# already part of LaTeX
+for i in bookman.sty chancery.sty palatino.sty times.sty; do
+ rm -f ${WRKSRC}/PSlatex/$i
+done
+
exit 0;