diff options
author | Nate Williams <nate@FreeBSD.org> | 1994-12-23 00:45:07 +0000 |
---|---|---|
committer | Nate Williams <nate@FreeBSD.org> | 1994-12-23 00:45:07 +0000 |
commit | 0141bf5e493a7fb4f571ee06f3545512cdf62cad (patch) | |
tree | 3b11a402d26fc5708a6a6eff9acd0b075c499840 /print | |
parent | 4a5b3c419754614128f1ebb3c1f1f5d1d6b3ad33 (diff) | |
download | ports-0141bf5e493a7fb4f571ee06f3545512cdf62cad.tar.gz ports-0141bf5e493a7fb4f571ee06f3545512cdf62cad.zip |
Notes
Diffstat (limited to 'print')
-rw-r--r-- | print/tex/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/print/tex/Makefile b/print/tex/Makefile index 4dadbb97b7a7..4aec8dd8aa50 100644 --- a/print/tex/Makefile +++ b/print/tex/Makefile @@ -1,5 +1,5 @@ #define this if you want to build LaTeX too -#MAKE_LATEX= yes +MAKE_LATEX= yes PKGNAME= tex DISTFILES= web2c.tar.gz web.tar.gz tex_base.tar.gz cm_tfm.tar.gz \ @@ -145,11 +145,12 @@ install: @(cd ${WRKDIR}/lib; install -c -m 644 *.tex ${PREFIX}/lib/texmf/tex) @(cd ${WRKDIR}/plain/base; install -c -m 644 *.tex ${PREFIX}/lib/texmf/tex) .if defined(MAKE_LATEX) - @(cd ${WRKSRC}/latex/base; for f in latexbug.tex testpage.tex \ + @(cd ${WRKDIR}/latex/base; for f in latexbug.tex testpage.tex \ lablst.tex idx.tex nfssfont.tex small2e.tex sample2e.tex docstrip.tex \ *.cls *.clo *.sty *.fd *.def *.cfg ; do \ - if [ -f $f ]; then install -c -m 644 $f ${PREFIX}/lib/texmf/tex; fi; done) - @(cd ${WRKDIR}/latex/base; install -c -m 644 *.ist ${PREFIX}/lib/makeindex) + if [ -f $${f} ]; then install -c -m 644 $${f} ${PREFIX}/lib/texmf/tex; fi; done) + @(cd ${WRKDIR}/latex/base; for f in *.ist ; do \ + install -c -m 644 $${f} ${PREFIX}/lib/makeindex ; done) .endif .include <bsd.port.mk> |