1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-03 11:12:13 +00:00

Enabled 'LaTeX' by default and fixed up the install rules for the latex

install.
This commit is contained in:
Nate Williams 1994-12-23 00:45:07 +00:00
parent 4a5b3c4197
commit 0141bf5e49
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=602

View File

@ -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>