diff options
author | obrien <obrien@FreeBSD.org> | 1996-11-23 01:35:18 +0800 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1996-11-23 01:35:18 +0800 |
commit | 1e5a0e018f324f106a9a1b1ab8c752d56bb1bb55 (patch) | |
tree | 86c152d2680e7e903fea795cec4f866ab39e5ee1 /print/latex | |
parent | 54ea908db924392c92c21486ece594ab24ff42fc (diff) | |
download | freebsd-ports-gnome-1e5a0e018f324f106a9a1b1ab8c752d56bb1bb55.tar.gz freebsd-ports-gnome-1e5a0e018f324f106a9a1b1ab8c752d56bb1bb55.tar.zst freebsd-ports-gnome-1e5a0e018f324f106a9a1b1ab8c752d56bb1bb55.zip |
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)
Diffstat (limited to 'print/latex')
-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" |