6e0c41ef75
- Note that full support of configuration tools such as tlmgr and texconfig is not ready yet. - Most of dviware now supports libpaper to choose the default papersize. Use paperconfig(8) utility or print/papersize-default-* packages. - Some quite old macros of the age of latex209 have been removed, and there are user-visible/invisible incompatibilities. Please send a report to freebsd-tex@FreeBSD.org or file a PR if you have trouble.
48 lines
1.2 KiB
Makefile
48 lines
1.2 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= texlive
|
|
PORTVERSION= 20140525
|
|
CATEGORIES= print
|
|
MASTER_SITES= ftp://ftp.tug.org/historic/systems/texlive/2014/
|
|
PKGNAMESUFFIX= -docs
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}-texmf
|
|
DIST_SUBDIR= TeX
|
|
|
|
MAINTAINER= hrs@FreeBSD.org
|
|
COMMENT= TeX Live Typesetting System, documentation
|
|
|
|
USES= tar:xz
|
|
USE_TEX= texmf
|
|
NO_BUILD= yes
|
|
NO_WRKSRC= yes
|
|
|
|
EXCLUDE_FILES= \*/doc/man \
|
|
texmf-dist/doc/aleph \
|
|
texmf-dist/doc/lualatex \
|
|
texmf-dist/doc/luatex \
|
|
texmf-dist/doc/xelatex \
|
|
texmf-dist/doc/xetex \
|
|
texmf-dist/doc/otherformats/jadetex \
|
|
texmf-dist/doc/otherformats/xmltex \
|
|
texmf-dist/doc/ptex \
|
|
texmf-dist/doc/platex \
|
|
texmf-dist/doc/uptex \
|
|
texmf-dist/doc/uplatex \
|
|
texmf-dist/doc/fonts/japanese-otf \
|
|
texmf-dist/doc/fonts/japanese-otf-uptex \
|
|
texmf-dist/doc/fonts/jfontmaps \
|
|
texmf-dist/doc/dvips \
|
|
texmf-dist/doc/dvipdfmx
|
|
|
|
EXTRACT_AFTER_ARGS=| ${TAR} xf - ${EXCLUDE_FILES:S,^,--exclude ${DISTNAME}/,}
|
|
|
|
do-extract:
|
|
@${MKDIR} ${WRKDIR}
|
|
|
|
do-install:
|
|
${CAT} ${DISTDIR}/${DIST_SUBDIR}/${DISTNAME}${EXTRACT_SUFX} \
|
|
${EXTRACT_AFTER_ARGS} -C ${STAGEDIR}${PREFIX}/share \
|
|
--strip-components 1 --no-same-permission --no-same-owner \
|
|
${DISTNAME}/texmf-dist/doc
|
|
|
|
.include <bsd.port.mk>
|