diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 1996-11-22 17:35:18 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 1996-11-22 17:35:18 +0000 |
commit | 31669d642cf06a1b35f63edc0be89b61609e159f (patch) | |
tree | f514e487b8527c69d614231d5d136c6056131235 | |
parent | Update 1.1beta19 to 1.1beta20 - more bug fixes. (diff) |
Backout my {INSTALL_*} changes until I have access to a net connect 2.2
machine. (Won't fetch correctly with my 2.1.5-R lab machine for some reason)
Notes
Notes:
svn path=/head/; revision=4646
-rw-r--r-- | print/latex/Makefile | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/print/latex/Makefile b/print/latex/Makefile index 5db27a6d3792..bae88d649866 100644 --- a/print/latex/Makefile +++ b/print/latex/Makefile @@ -39,24 +39,24 @@ do-build: ln -sf /usr/local/bin/virtex latex; yes | ./latex tools.ins) do-install: - @(${INSTALL_DATA} ${WRKSRC}/base/latex.fmt \ + @(/usr/bin/install -c -m 644 ${WRKSRC}/base/latex.fmt \ ${PREFIX}/lib/texmf/ini/) - @(cd ${WRKSRC}/tfm; ${INSTALL_DATA} *.tfm ${PREFIX}/lib/texmf/fonts/tfm) - @(cd ${WRKSRC}/mf; ${INSTALL_DATA} *.mf ${PREFIX}/lib/texmf/mf) + @(cd ${WRKSRC}/tfm; install -c -m 644 *.tfm ${PREFIX}/lib/texmf/fonts/tfm) + @(cd ${WRKSRC}/mf; install -c -m 644 *.mf ${PREFIX}/lib/texmf/mf) @(cd ${WRKSRC}/base; for f in latexbug.tex testpage.tex \ lablst.tex idx.tex nfssfont.tex small2e.tex sample2e.tex docstrip.tex \ hyphen.tex *.cls *.clo *.sty *.fd *.def *.cfg ; do \ - if [ -f $$f ]; then ${INSTALL_DATA} $$f ${PREFIX}/lib/texmf/tex; fi; done) - @${MKDIR} ${PREFIX}/lib/texmf/makeindx; - @(cd ${WRKSRC}/base; ${INSTALL_DATA} *.ist ${PREFIX}/lib/texmf/makeindx) + if [ -f $$f ]; then install -c -m 644 $$f ${PREFIX}/lib/texmf/tex; fi; done) + @mkdir -p ${PREFIX}/lib/texmf/makeindx; + @(cd ${WRKSRC}/base; install -c -m 644 *.ist ${PREFIX}/lib/texmf/makeindx) @(cd ${WRKSRC}/packages/tools; for f in *.sty *.tex; do \ if [ -f $$f ]; then install -c -m 644 $$f ${PREFIX}/lib/texmf/tex; fi; done) @(cd ${PREFIX}/bin; rm -f latex; ln -s virtex latex) - @(${MKDIR} ${PREFIX}/lib/texmf/documentation) + @(mkdir -p ${PREFIX}/lib/texmf/documentation) @(cd ${WRKSRC}/base; for f in *.dtx ltx3info.tex source2e.tex *.fdd ltnews*.tex *guide.tex; do \ - if [ -f $$f ]; then ${INSTALL_DATA} $$f ${PREFIX}/lib/texmf/documentation; fi; done) + if [ -f $$f ]; then install -c -m 644 $$f ${PREFIX}/lib/texmf/documentation; fi; done) @(cd ${WRKSRC}/packages/tools; for f in *.dtx; do \ - if [ -f $$f ]; then ${INSTALL_DATA} $$f ${PREFIX}/lib/texmf/documentation; fi; done) + if [ -f $$f ]; then install -c -m 644 $$f ${PREFIX}/lib/texmf/documentation; fi; done) .include "Makefile.inc" |