diff options
author | mharo <mharo@FreeBSD.org> | 2000-03-21 08:24:13 +0000 |
---|---|---|
committer | mharo <mharo@FreeBSD.org> | 2000-03-21 08:24:13 +0000 |
commit | aeda382ac22b54a0be7e8a5f4fa34a5b35430e3c (patch) | |
tree | 0f5a64f9b365e46a2b8f371d26b11903dec9eb6b /print | |
parent | d40a18cb2e3dfe37139b076d7a4d17c0dc478ff0 (diff) | |
download | FreeBSD-ports-aeda382ac22b54a0be7e8a5f4fa34a5b35430e3c.zip FreeBSD-ports-aeda382ac22b54a0be7e8a5f4fa34a5b35430e3c.tar.gz |
portlint:
echo -> ${ECHO}
move variables to proper sections
Diffstat (limited to 'print')
-rw-r--r-- | print/latex/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/print/latex/Makefile b/print/latex/Makefile index 4b0af73..ee8534a 100644 --- a/print/latex/Makefile +++ b/print/latex/Makefile @@ -6,7 +6,6 @@ # $FreeBSD$ # -VERSION= 99.12 DISTNAME= latex PKGNAME= latex2e-${VERSION} CATEGORIES= print @@ -20,6 +19,7 @@ MAINTAINER= jmz@FreeBSD.org BUILD_DEPENDS= tex:${PORTSDIR}/print/tex RUN_DEPENDS= tex:${PORTSDIR}/print/tex +VERSION= 99.12 NO_WRKSUBDIR= yes MANUAL_PACKAGE_BUILD= has to be built with tex port @@ -56,8 +56,8 @@ do-install: if [ -f $$f ]; then ${INSTALL_DATA} $$f ${PREFIX}/share/texmf/tex/latex; fi; done) @(cd ${WRKSRC}/graphics; for f in *.sty *.tex *.def; do \ if [ -f $$f ]; then ${INSTALL_DATA} $$f ${PREFIX}/share/texmf/tex/latex; fi; done;\ - echo '\ExecuteOptions{dvips}' >${PREFIX}/share/texmf/tex/latex/graphics.cfg;\ - echo '\ExecuteOptions{dvips}' >${PREFIX}/share/texmf/tex/latex/color.cfg) + ${ECHO} '\ExecuteOptions{dvips}' >${PREFIX}/share/texmf/tex/latex/graphics.cfg;\ + ${ECHO} '\ExecuteOptions{dvips}' >${PREFIX}/share/texmf/tex/latex/color.cfg) @(cd ${WRKSRC}/psnfss; for f in *.sty *.tex; do \ if [ -f $$f ]; then ${INSTALL_DATA} $$f ${PREFIX}/share/texmf/tex/latex; fi; done) @(cd ${PREFIX}/bin; ${RM} -f latex; ${LN} -s tex latex) |