diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2016-07-30 11:28:00 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2016-07-30 11:28:00 +0000 |
commit | 1694ef7c6c940ed9ed69c672c5c0ffeb4c8b0c94 (patch) | |
tree | 660199f9bb4c3bf07c5ff7c40b7ab4acf63ccefd /print/tex/Makefile | |
parent | Update net/rabbitmq to version 3.6.4. (diff) |
Remove print/tex
texlive has replaced it long ago, it also does not fit well in the "modern" world
patching it to get it not conflict with getline(3) is painful (web2c part) while
the version in texlive just work
Notes
Notes:
svn path=/head/; revision=419312
Diffstat (limited to 'print/tex/Makefile')
-rw-r--r-- | print/tex/Makefile | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/print/tex/Makefile b/print/tex/Makefile deleted file mode 100644 index 2403dea553a7..000000000000 --- a/print/tex/Makefile +++ /dev/null @@ -1,67 +0,0 @@ -# Created by: jmz -# $FreeBSD$ - -PORTNAME= tex -PORTVERSION= 3.14159 -PORTREVISION= 3 -CATEGORIES= print -MASTER_SITES= LOCAL/mikeh -#TEX_CTAN/systems/web2c XXX distfiles disappeared/moved? -DISTNAME= web2c-7.2 -DISTFILES= web2c-7.2b.tar.gz web-7.2a.tar.gz tex_base.tar.gz cm_tfm.tar.gz \ - mf_lib.tar.gz cm_mf.tar.gz modes.mf -EXTRACT_ONLY= web2c-7.2b.tar.gz web-7.2a.tar.gz tex_base.tar.gz cm_tfm.tar.gz \ - mf_lib.tar.gz cm_mf.tar.gz - -MAINTAINER= gabor@FreeBSD.org -COMMENT= TeX and METAFONT - -DIST_SUBDIR= tex - -CONFLICTS= teTeX* - -USES= desthack gmake makeinfo -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --datadir=\$${${DESTDIRNAME}}${PREFIX}/share - -INFO= kpathsea web2c -MAKE_FLAGS= fmts= all_mems= - -.include <bsd.port.pre.mk> - -.if ${ARCH} == "ia64" -BROKEN= Segfault during build on ia64 -.endif - -post-patch: - @${REINPLACE_CMD} -e "s/getline/get_line/g" ${WRKSRC}/web2c/tangleboot.* - -pre-configure: - cd ${WRKDIR} && ${FIND} . -name \*.gz | ${XARGS} ${GUNZIP_CMD} -f - -post-configure: - @cd ${WRKSRC}/web2c; \ - ${LN} -s ../../tfm/*.tfm ../../base/*.tex ../../mf/*.mf ../../lib/*.mf .; \ - ${CP} ${DISTDIR}/${DIST_SUBDIR}/modes.mf . - -do-build: - @(cd ${WRKSRC}; unset `env|${GREP} ^TEX|${SED} -e s/=.*//`; \ - ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} ${ALL_TARGET}) - -post-install: - @for i in kpsewhich dmp bibtex dvicopy dvitomp dvitype gftodvi gftopk \ - gftype mf mft patgen pktogf pktype pltotf pooltype tangle tex tftopl \ - vftovp vptovf weave; do ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/$$i; done - @${RM} -f ${STAGEDIR}${PREFIX}/bin/mpostf ${STAGEDIR}${PREFIX}/bin/inimpost \ - ${STAGEDIR}${PREFIX}/bin/virmpost ${STAGEDIR}${PREFIX}/bin/latex \ - ${STAGEDIR}${PREFIX}/share/texmf/web2c/mpost.mem ${STAGEDIR}${PREFIX}/share/texmf/web2c/plain.mem \ - ${STAGEDIR}${PREFIX}/share/texmf/web2c/mp.pool ${STAGEDIR}${PREFIX}/bin/mpost ${STAGEDIR}${PREFIX}/bin/mpto - @${MKDIR} ${STAGEDIR}${PREFIX}/share/texmf/fonts/tfm - @(cd ${WRKDIR}/tfm; ${INSTALL_DATA} *.tfm ${STAGEDIR}${PREFIX}/share/texmf/fonts/tfm) - @${MKDIR} ${STAGEDIR}${PREFIX}/share/texmf/metafont - @(cd ${WRKDIR}/mf; ${INSTALL_DATA} *.mf ${STAGEDIR}${PREFIX}/share/texmf/metafont) - @${MKDIR} ${STAGEDIR}${PREFIX}/share/texmf/tex - @(cd ${WRKDIR}/lib; ${INSTALL_DATA} *.tex ${STAGEDIR}${PREFIX}/share/texmf/tex) - @(cd ${WRKDIR}/base; ${INSTALL_DATA} *.tex ${STAGEDIR}${PREFIX}/share/texmf/tex) - -.include <bsd.port.post.mk> |