diff options
author | jmz <jmz@FreeBSD.org> | 1999-06-08 23:10:52 +0000 |
---|---|---|
committer | jmz <jmz@FreeBSD.org> | 1999-06-08 23:10:52 +0000 |
commit | 4a3216234aca97791256ceda5adbc4ffbdf05acf (patch) | |
tree | 439eb88565a88afdd6426c1ac64b07aab2a6a76c | |
parent | 4f6193c7bf5354a7f33b106557fbf9b2ed1cffc0 (diff) | |
download | FreeBSD-ports-4a3216234aca97791256ceda5adbc4ffbdf05acf.zip FreeBSD-ports-4a3216234aca97791256ceda5adbc4ffbdf05acf.tar.gz |
Upgrade to the 1999/06 version. Add more macros to the distribution (psnfss,
graphics). Portlint.
-rw-r--r-- | print/latex/Makefile | 59 | ||||
-rw-r--r-- | print/latex/distinfo | 10 | ||||
-rw-r--r-- | print/latex/pkg-plist | 64 |
3 files changed, 108 insertions, 25 deletions
diff --git a/print/latex/Makefile b/print/latex/Makefile index cfe79c0..71607f2 100644 --- a/print/latex/Makefile +++ b/print/latex/Makefile @@ -3,52 +3,71 @@ # Date created: 29 September 1994 # Whom: jmz # -# $Id: Makefile,v 1.34 1998/01/26 00:59:43 jmz Exp $ +# $Id: Makefile,v 1.35 1998/02/09 21:29:17 jmz Exp $ # -VERSION= 98.01 +VERSION= 99.06 DISTNAME= latex PKGNAME= latex2e-${VERSION} CATEGORIES= print MASTER_SITES= ftp://ftp.cdrom.com/pub/tex/package/ DISTFILES= latex_mf-${VERSION}.tar.gz latex_tfm-${VERSION}.tar.gz \ - latex_base-${VERSION}.tar.gz latex_tools-${VERSION}.tar.gz + latex_base-${VERSION}.tar.gz latex_tools-${VERSION}.tar.gz \ + latex_graphics-${VERSION}.tar.gz latex_psnfss-${VERSION}.tar.gz MAINTAINER= jmz@FreeBSD.org BUILD_DEPENDS= tex:${PORTSDIR}/print/tex RUN_DEPENDS= tex:${PORTSDIR}/print/tex +NO_WRKSUBDIR= yes + MANUAL_PACKAGE_BUILD= has to be built with tex port do-build: - (cd ${WRKSRC}/base; tex --ini unpack.ins) - (cd ${WRKSRC}/base; TEXFONTS=${WRKSRC}/tfm:; export TEXFONTS; \ + @(cd ${WRKSRC}/base; tex --ini unpack.ins) + @(cd ${WRKSRC}/base; TEXFONTS=${WRKSRC}/tfm:; export TEXFONTS; \ tex --ini latex.ltx </dev/null) - (cd ${WRKSRC}/packages/tools; TEXFORMATS=${WRKSRC}/base:; \ + @(cd ${WRKSRC}/tools; TEXFORMATS=${WRKSRC}/base:; \ TEXINPUTS=${WRKSRC}/base: export TEXFORMATS TEXINPUTS;\ ln -sf ${PREFIX}/bin/tex latex; ./latex tools.ins) + @(cd ${WRKSRC}/graphics; TEXFORMATS=${WRKSRC}/base:; \ + TEXINPUTS=${WRKSRC}/base: export TEXFORMATS TEXINPUTS;\ + ln -sf ${PREFIX}/bin/tex latex; ./latex graphics.ins) + @(cd ${WRKSRC}/psnfss; TEXFORMATS=${WRKSRC}/base:; \ + TEXINPUTS=${WRKSRC}/base: export TEXFORMATS TEXINPUTS;\ + chmod u+w mh2scr.enc;\ + ln -sf ${PREFIX}/bin/tex latex; for f in adobe charter\ + mathtime psfonts alucida lucidabr nimbus utopia; do \ + ./latex $$f.ins; done) -do-install: - @(/usr/bin/install -c -m 644 ${WRKSRC}/base/latex.fmt \ - ${PREFIX}/share/texmf/web2c/) - @(cd ${WRKSRC}/tfm; install -c -m 644 *.tfm ${PREFIX}/share/texmf/fonts/tfm) - @(cd ${WRKSRC}/mf; install -c -m 644 *.mf ${PREFIX}/share/texmf/metafont) +do-install: + @(${INSTALL_DATA} ${WRKSRC}/base/latex.fmt ${PREFIX}/share/texmf/web2c/) + @(cd ${WRKSRC}/tfm; ${INSTALL_DATA} *.tfm ${PREFIX}/share/texmf/fonts/tfm) + @(cd ${WRKSRC}/mf; ${INSTALL_DATA} *.mf ${PREFIX}/share/texmf/metafont) @mkdir -p ${PREFIX}/share/texmf/tex/latex @(cd ${WRKSRC}/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}/share/texmf/tex/latex; fi; done) + if [ -f $$f ]; then ${INSTALL_DATA} $$f ${PREFIX}/share/texmf/tex/latex; fi; done) @mkdir -p ${PREFIX}/share/texmf/makeindx; - @(cd ${WRKSRC}/base; install -c -m 644 *.ist ${PREFIX}/share/texmf/makeindx) - @(cd ${WRKSRC}/packages/tools; for f in *.sty *.tex; do \ - if [ -f $$f ]; then install -c -m 644 $$f ${PREFIX}/share/texmf/tex/latex; fi; done) - @(cd ${PREFIX}/bin; rm -f latex; ln -s tex latex) + @(cd ${WRKSRC}/base; ${INSTALL_DATA} *.ist ${PREFIX}/share/texmf/makeindx) + @(cd ${WRKSRC}/tools; for f in *.sty *.tex; do \ + if [ -f $$f ]; then ${INSTALL_DATA} $$f ${PREFIX}/share/texmf/tex/latex; fi; done) + @(cd ${WRKSRC}/graphics; for f in *.sty *.tex; do \ + if [ -f $$f ]; then ${INSTALL_DATA} $$f ${PREFIX}/share/texmf/tex/latex; fi; done) + @(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) @(mkdir -p ${PREFIX}/share/texmf/documentation) @(cd ${WRKSRC}/base; for f in *.dtx ltx3info.tex source2e.tex *.fdd ltnews*.tex *guide.tex; do \ - if [ -f $$f ]; then install -c -m 644 $$f ${PREFIX}/share/texmf/documentation; fi; done) - @(cd ${WRKSRC}/packages/tools; for f in *.dtx; do \ - if [ -f $$f ]; then install -c -m 644 $$f ${PREFIX}/share/texmf/documentation; fi; done) - @(cd ${PREFIX}/bin; rm -f latex; ln -s tex latex) + if [ -f $$f ]; then ${INSTALL_DATA} $$f ${PREFIX}/share/texmf/documentation; fi; done) + @(cd ${WRKSRC}/tools; for f in *.dtx; do \ + if [ -f $$f ]; then ${INSTALL_DATA} $$f ${PREFIX}/share/texmf/documentation; fi; done) + @(cd ${WRKSRC}/graphics; for f in *.dtx; do \ + if [ -f $$f ]; then ${INSTALL_DATA} $$f ${PREFIX}/share/texmf/documentation; fi; done) + @(cd ${WRKSRC}/psnfss; for f in *.dtx; do \ + if [ -f $$f ]; then ${INSTALL_DATA} $$f ${PREFIX}/share/texmf/documentation; fi; done) + @(cd ${PREFIX}/bin; ${RM} -f latex; ln -s tex latex) .include <bsd.port.mk> diff --git a/print/latex/distinfo b/print/latex/distinfo index a3e76db..574dad6 100644 --- a/print/latex/distinfo +++ b/print/latex/distinfo @@ -1,4 +1,6 @@ -MD5 (latex_mf-98.01.tar.gz) = 9a42f2a2fdf28599dc288219c4aa344c -MD5 (latex_tfm-98.01.tar.gz) = 9ff4baa1654a573e90b037fe276891f2 -MD5 (latex_base-98.01.tar.gz) = 383171d0dd29e95b9dbc2faf98d5ead5 -MD5 (latex_tools-98.01.tar.gz) = d86d0009bf08cc2b6a82ec65fb40a538 +MD5 (latex_mf-99.06.tar.gz) = 778426daa30e8b6dd1502ff9964c0cc9 +MD5 (latex_tfm-99.06.tar.gz) = 3482ad400641660f297d0fd588316fe1 +MD5 (latex_base-99.06.tar.gz) = fb9b40aecdd697b346254e920363094e +MD5 (latex_tools-99.06.tar.gz) = 135bba7723ac9d9538794ee847678c96 +MD5 (latex_graphics-99.06.tar.gz) = 7ee4740571290a2bf89b5931ebe00ac2 +MD5 (latex_psnfss-99.06.tar.gz) = c7a5b3ca88cd163f3ba8bd5ab1342a05 diff --git a/print/latex/pkg-plist b/print/latex/pkg-plist index 1770db2..7dc39dd 100644 --- a/print/latex/pkg-plist +++ b/print/latex/pkg-plist @@ -1,34 +1,45 @@ bin/latex +share/texmf/documentation/adobe.dtx share/texmf/documentation/afterpage.dtx share/texmf/documentation/alltt.dtx +share/texmf/documentation/alucida.dtx share/texmf/documentation/array.dtx share/texmf/documentation/bm.dtx share/texmf/documentation/calc.dtx share/texmf/documentation/cfgguide.tex +share/texmf/documentation/charter.dtx share/texmf/documentation/classes.dtx share/texmf/documentation/clsguide.tex share/texmf/documentation/cmfonts.fdd +share/texmf/documentation/color.dtx +share/texmf/documentation/cyrguide.tex share/texmf/documentation/dcolumn.dtx share/texmf/documentation/delarray.dtx share/texmf/documentation/doc.dtx share/texmf/documentation/docstrip.dtx +share/texmf/documentation/drivers.dtx share/texmf/documentation/enumerate.dtx +share/texmf/documentation/epsfig.dtx share/texmf/documentation/exscale.dtx share/texmf/documentation/fileerr.dtx share/texmf/documentation/fntguide.tex share/texmf/documentation/fontdef.dtx share/texmf/documentation/fontsmpl.dtx share/texmf/documentation/ftnright.dtx +share/texmf/documentation/graphics.dtx +share/texmf/documentation/graphicx.dtx share/texmf/documentation/graphpap.dtx share/texmf/documentation/hhline.dtx share/texmf/documentation/ifthen.dtx share/texmf/documentation/indentfirst.dtx share/texmf/documentation/inputenc.dtx +share/texmf/documentation/keyval.dtx share/texmf/documentation/latex209.dtx share/texmf/documentation/latexsym.dtx share/texmf/documentation/layout.dtx share/texmf/documentation/letter.dtx share/texmf/documentation/longtable.dtx +share/texmf/documentation/lscape.dtx share/texmf/documentation/ltalloc.dtx share/texmf/documentation/ltbibl.dtx share/texmf/documentation/ltboxes.dtx @@ -62,6 +73,8 @@ share/texmf/documentation/ltnews05.tex share/texmf/documentation/ltnews06.tex share/texmf/documentation/ltnews07.tex share/texmf/documentation/ltnews08.tex +share/texmf/documentation/ltnews09.tex +share/texmf/documentation/ltnews10.tex share/texmf/documentation/ltoutenc.dtx share/texmf/documentation/ltoutput.dtx share/texmf/documentation/ltpage.dtx @@ -77,25 +90,31 @@ share/texmf/documentation/ltvers.dtx share/texmf/documentation/ltx3info.tex share/texmf/documentation/ltxdoc.dtx share/texmf/documentation/ltxref.dtx +share/texmf/documentation/lucidabr.dtx share/texmf/documentation/makeindx.dtx +share/texmf/documentation/mathtime.dtx share/texmf/documentation/modguide.tex share/texmf/documentation/multicol.dtx share/texmf/documentation/newlfont.dtx +share/texmf/documentation/nimbus.dtx share/texmf/documentation/oldlfont.dtx share/texmf/documentation/pict2e.dtx share/texmf/documentation/preload.dtx share/texmf/documentation/proc.dtx +share/texmf/documentation/psfonts.dtx +share/texmf/documentation/pstcol.dtx share/texmf/documentation/rawfonts.dtx share/texmf/documentation/showkeys.dtx share/texmf/documentation/slides.dtx -share/texmf/documentation/slides.fdd share/texmf/documentation/slifonts.fdd share/texmf/documentation/somedefs.dtx share/texmf/documentation/source2e.tex share/texmf/documentation/syntonly.dtx share/texmf/documentation/tabularx.dtx share/texmf/documentation/theorem.dtx +share/texmf/documentation/trig.dtx share/texmf/documentation/usrguide.tex +share/texmf/documentation/utopia.dtx share/texmf/documentation/varioref.dtx share/texmf/documentation/verbatim.dtx share/texmf/documentation/xr.dtx @@ -192,6 +211,9 @@ share/texmf/tex/latex/array.sty share/texmf/tex/latex/article.cls share/texmf/tex/latex/article.sty share/texmf/tex/latex/ascii.def +share/texmf/tex/latex/avant.sty +share/texmf/tex/latex/basker.sty +share/texmf/tex/latex/bembo.sty share/texmf/tex/latex/bezier.sty share/texmf/tex/latex/bk10.clo share/texmf/tex/latex/bk11.clo @@ -199,7 +221,11 @@ share/texmf/tex/latex/bk12.clo share/texmf/tex/latex/bm.sty share/texmf/tex/latex/book.cls share/texmf/tex/latex/book.sty +share/texmf/tex/latex/bookman.sty share/texmf/tex/latex/calc.sty +share/texmf/tex/latex/chancery.sty +share/texmf/tex/latex/charter.sty +share/texmf/tex/latex/color.sty share/texmf/tex/latex/cp1250.def share/texmf/tex/latex/cp1252.def share/texmf/tex/latex/cp437.def @@ -214,6 +240,7 @@ share/texmf/tex/latex/doc.sty share/texmf/tex/latex/docstrip.tex share/texmf/tex/latex/e.tex share/texmf/tex/latex/enumerate.sty +share/texmf/tex/latex/epsfig.sty share/texmf/tex/latex/exscale.sty share/texmf/tex/latex/flafter.sty share/texmf/tex/latex/fleqn.clo @@ -222,13 +249,19 @@ share/texmf/tex/latex/fontenc.sty share/texmf/tex/latex/fontsmpl.sty share/texmf/tex/latex/fontsmpl.tex share/texmf/tex/latex/ftnright.sty +share/texmf/tex/latex/garamond.sty +share/texmf/tex/latex/graphics.sty +share/texmf/tex/latex/graphicx.sty share/texmf/tex/latex/graphpap.sty +share/texmf/tex/latex/grfguide.tex share/texmf/tex/latex/h.tex +share/texmf/tex/latex/helvet.sty share/texmf/tex/latex/hhline.sty share/texmf/tex/latex/idx.tex share/texmf/tex/latex/ifthen.sty share/texmf/tex/latex/indentfirst.sty share/texmf/tex/latex/inputenc.sty +share/texmf/tex/latex/keyval.sty share/texmf/tex/latex/lablst.tex share/texmf/tex/latex/latex209.def share/texmf/tex/latex/latexbug.tex @@ -243,15 +276,34 @@ share/texmf/tex/latex/leqno.sty share/texmf/tex/latex/letter.cls share/texmf/tex/latex/letter.sty share/texmf/tex/latex/longtable.sty +share/texmf/tex/latex/lscape.sty share/texmf/tex/latex/ltnews.cls share/texmf/tex/latex/ltxdoc.cls share/texmf/tex/latex/ltxguide.cls +share/texmf/tex/latex/lucbmath.sty +share/texmf/tex/latex/lucfont.tex +share/texmf/tex/latex/lucid.sty +share/texmf/tex/latex/lucidabr.sty +share/texmf/tex/latex/lucidbrb.sty +share/texmf/tex/latex/lucidbry.sty +share/texmf/tex/latex/lucmath.sty +share/texmf/tex/latex/lucmin.sty +share/texmf/tex/latex/lucmtime.sty +share/texmf/tex/latex/luctime.sty share/texmf/tex/latex/makeidx.sty +share/texmf/tex/latex/mathpi.sty +share/texmf/tex/latex/mathptm.sty +share/texmf/tex/latex/mathptmx.sty +share/texmf/tex/latex/mathtest.tex +share/texmf/tex/latex/mathtime.sty share/texmf/tex/latex/minimal.cls +share/texmf/tex/latex/mtimes.sty share/texmf/tex/latex/multicol.sty +share/texmf/tex/latex/newcent.sty share/texmf/tex/latex/newlfont.sty share/texmf/tex/latex/next.def share/texmf/tex/latex/nfssfont.tex +share/texmf/tex/latex/nimbus.sty share/texmf/tex/latex/oldlfont.sty share/texmf/tex/latex/omlcmm.fd share/texmf/tex/latex/omlcmr.fd @@ -275,9 +327,14 @@ share/texmf/tex/latex/ot1enc.def share/texmf/tex/latex/ot1lcmss.fd share/texmf/tex/latex/ot1lcmtt.fd share/texmf/tex/latex/ot4enc.def +share/texmf/tex/latex/palatino.sty share/texmf/tex/latex/pict2e.sty +share/texmf/tex/latex/pifont.sty +share/texmf/tex/latex/pitest.tex share/texmf/tex/latex/proc.cls share/texmf/tex/latex/proc.sty +share/texmf/tex/latex/psnfss2e.tex +share/texmf/tex/latex/pstcol.sty share/texmf/tex/latex/q.tex share/texmf/tex/latex/r.tex share/texmf/tex/latex/rawfonts.sty @@ -310,6 +367,8 @@ share/texmf/tex/latex/t1enc.sty share/texmf/tex/latex/t1lcmss.fd share/texmf/tex/latex/t1lcmtt.fd share/texmf/tex/latex/tabularx.sty +share/texmf/tex/latex/test0.tex +share/texmf/tex/latex/test1.tex share/texmf/tex/latex/testpage.tex share/texmf/tex/latex/textcomp.sty share/texmf/tex/latex/thb.sty @@ -319,7 +378,9 @@ share/texmf/tex/latex/theorem.sty share/texmf/tex/latex/thm.sty share/texmf/tex/latex/thmb.sty share/texmf/tex/latex/thp.sty +share/texmf/tex/latex/times.sty share/texmf/tex/latex/tracefnt.sty +share/texmf/tex/latex/trig.sty share/texmf/tex/latex/ts1cmr.fd share/texmf/tex/latex/ts1cmss.fd share/texmf/tex/latex/ts1cmtt.fd @@ -330,6 +391,7 @@ share/texmf/tex/latex/ucmss.fd share/texmf/tex/latex/ucmtt.fd share/texmf/tex/latex/ulasy.fd share/texmf/tex/latex/ullasy.fd +share/texmf/tex/latex/utopia.sty share/texmf/tex/latex/varioref.sty share/texmf/tex/latex/verbatim.sty share/texmf/tex/latex/verbtest.tex |