diff options
author | Michael Haro <mharo@FreeBSD.org> | 2000-03-21 08:24:13 +0000 |
---|---|---|
committer | Michael Haro <mharo@FreeBSD.org> | 2000-03-21 08:24:13 +0000 |
commit | cde5e15779909f74cd502f1e7e25224d9fe8e5cd (patch) | |
tree | 5cb3f1769860a0d4a9ca6a3defa3901ef7335ebe /print/latex | |
parent | 056bd0f29dd70a29aad9af20cef33b61e903bcb1 (diff) | |
download | ports-cde5e15779909f74cd502f1e7e25224d9fe8e5cd.tar.gz ports-cde5e15779909f74cd502f1e7e25224d9fe8e5cd.zip |
portlint:
echo -> ${ECHO}
move variables to proper sections
Notes
Notes:
svn path=/head/; revision=26909
Diffstat (limited to 'print/latex')
-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 4b0af737679b..ee8534a05a14 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) |