24e24a1956
- devel/tex-kpathsea: Update version 6.3.3=>6.3.5 - print/texlive-tlmgr: Update version 20210325=>20230313 * Add LICENSE GPLv2 - devel/tex-libtexlua: Update distinfo from 20230313 dists - devel/tex-libtexluajit: Update distinfo from 20230313 dists - print/tex-ptexenc: Update version 1.3.9=>1.4.3 * Pet portclippy - devel/tex-web2c: Update version 20210325=>20230313 - devel/tex-synctex: Update distinfo from 20230313 dists - print/tex-basic-engines: Update version 20210325=>20230313 - print/texlive-base: Update version 20210325=>20230313 - print/texlive-docs: Update version 20210325=>20230313 - print/texlive-full: Update version 20210325=>20230313 - print/texlive-texmf: Update version 20210325=>20230313 - print/texlive-texmf-source: Update version 20210325=>20230313 - print/latex-biber: Update version 2.16=>2.19 - print/tex-dvipdfmax: Update version 20210325=>20230313 - print/tex-dvipsk: Update version 2021.1=>2023.1 - print/tex-formats: Update version 20210325=>20230313 - print/tex-jadetex: Update distinfo from 20230313 dists - print/tex-luatex: Update version 1.12.0=>1.16.0 - print/tex-xetex: Update distinfo from 20230313 dists - print/tex-xmltex: Update distinfo from 20230313 dists - japanese/tex-ptex: Fix build * Remove ConTeXt format - textproc/foiltex: Update MASTER_SITES * Adopt port - There are multiple ports which uses the macro USE_TEX=texmf that is downloading a big DISTFILE. Unfortunately it is not possible for me to test all the consumers in runtime. So in the following ports I have removed USE_TEX=texmf so that someone who uses those can report the runtime files those are missing. If possible(based on LICENSE permission) I will try to create a smaller distfile out of the texlive-20230313-texmf and change dependency accordingly otherwise will reinstate USE_TEX=texmf. The list of ports that are affected are following: * arabic/arabtex * graphics/epix * math/cadabra2 * math/coq * math/gnuplot-tex-extras * net-mgmt/netmagis-www * print/dvisvg * print/lilypond * print/mftrace * print/tex-xdvik * print/latex-beamer Sponsored by: Nepustil
65 lines
1.6 KiB
Makefile
65 lines
1.6 KiB
Makefile
PORTNAME= foiltex
|
|
PORTVERSION= 2.1.4b
|
|
PORTREVISION= 7
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= https://mirror.ctan.org/macros/latex/contrib/${PORTNAME}/
|
|
DISTFILES= foiltex.dtx foiltex.ins
|
|
|
|
MAINTAINER= tex@FreeBSD.org
|
|
COMMENT= Collection of LaTeX files for making foils
|
|
WWW= https://ctan.org/pkg/foiltex
|
|
|
|
# Converted from NO_CDROM
|
|
LICENSE= foiltex
|
|
LICENSE_NAME= foiltex
|
|
LICENSE_TEXT= Redistribution on a not-for-profit basis only
|
|
LICENSE_PERMS= dist-mirror pkg-mirror auto-accept
|
|
|
|
USES= tex
|
|
USE_TEX= latex
|
|
|
|
NO_ARCH= yes
|
|
|
|
NO_WRKSUBDIR= yes
|
|
|
|
PLIST_FILES= ${FOIL_FILES:S,^,${FOIL_DIR}/,}
|
|
PORTDOCS= foiltex.dtx foiltex.dvi
|
|
PORTEXAMPLES= sampfoil.tex
|
|
|
|
OPTIONS_DEFINE= DOCS EXAMPLES
|
|
|
|
LATEX_CMD= ${LOCALBASE}/bin/latex
|
|
FOIL_DIR= ${TEXMFDIR}/tex/latex/${PORTNAME}
|
|
FOIL_FILES= foil17.clo foil20.clo foil25.clo foil30.clo foils.cls \
|
|
foils.sty foilshrt.clo fltfonts.def
|
|
|
|
do-extract:
|
|
${MKDIR} ${WRKSRC}
|
|
${CP} ${DISTDIR}/foiltex.ins ${WRKSRC}/foiltex.ins
|
|
${CP} ${DISTDIR}/foiltex.dtx ${WRKSRC}/foiltex.dtx
|
|
|
|
do-build:
|
|
@cd ${WRKSRC} && ${LATEX_CMD} foiltex.ins && \
|
|
${LATEX_CMD} foiltex.dtx && \
|
|
${LATEX_CMD} foiltex.dtx && \
|
|
${LATEX_CMD} foiltex.dtx
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/${FOIL_DIR}
|
|
.for file in ${FOIL_FILES}
|
|
${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${PREFIX}/${FOIL_DIR}
|
|
.endfor
|
|
|
|
do-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for file in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
do-install-EXAMPLES-on:
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
.for file in ${PORTEXAMPLES}
|
|
${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${EXAMPLESDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|