summaryrefslogtreecommitdiff
path: root/print
diff options
context:
space:
mode:
authorNate Williams <nate@FreeBSD.org>1994-12-23 00:45:07 +0000
committerNate Williams <nate@FreeBSD.org>1994-12-23 00:45:07 +0000
commit0141bf5e493a7fb4f571ee06f3545512cdf62cad (patch)
tree3b11a402d26fc5708a6a6eff9acd0b075c499840 /print
parentzip added. (diff)
Enabled 'LaTeX' by default and fixed up the install rules for the latex
install.
Notes
Notes: svn path=/head/; revision=602
Diffstat (limited to 'print')
-rw-r--r--print/tex/Makefile9
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>