diff options
author | hrs <hrs@FreeBSD.org> | 2013-05-06 08:44:22 +0800 |
---|---|---|
committer | hrs <hrs@FreeBSD.org> | 2013-05-06 08:44:22 +0800 |
commit | 24279efceebffef31c706770f786608fd7a33a46 (patch) | |
tree | f024a0631ef42d4f33ad0f86f2ce804fa502b489 /Mk/bsd.port.mk | |
parent | 8a19c0af3351af1cdc31ea7bb470ad0ad33a5ecc (diff) | |
download | freebsd-ports-graphics-24279efceebffef31c706770f786608fd7a33a46.tar.gz freebsd-ports-graphics-24279efceebffef31c706770f786608fd7a33a46.tar.zst freebsd-ports-graphics-24279efceebffef31c706770f786608fd7a33a46.zip |
TeXLive mega commit. The following ports have been added:
* Meta port
- print/texlive-full: meta port to install all of the TeXLive components
* Libraries
- devel/tex-kpathsea: kpathsea library
- devel/tex-web2c: WEB2C toolchain and TeX engines
- print/tex-ptexenc: character code conversion library for pTeX
* Base part of the TeXLive
- print/texlive-base: binary programs in TeXLive
- print/texlive-texmf: macro and font data in TeXLive
- print/texlive-infra: tlmgr dependency (Perl modules)
* TeX Formats
- print/tex-formats: TeX, LaTeX, PDFTeX, AMSTeX, ConTeXT, CSLaTeX,
EplainTeX, METAFONT, MLTeX, PDFTeX, TeXsis
- print/tex-aleph: Aleph/Lambda
- print/tex-xetex: XeTeX
- print/tex-luatex: LuaTeX
- print/tex-jadetex: JadeTeX
- print/tex-xmltex: XMLTeX
- japanese/tex-ptex: pTeX
* DVI ware
- print/tex-xdvik: XDvi
Mk/bsd.tex.mk is added for common part and USE_TEX knob [1].
Approved by: portmgr (old version) [1]
PR: ports/171571
PR: ports/176399 [1]
Diffstat (limited to 'Mk/bsd.port.mk')
-rw-r--r-- | Mk/bsd.port.mk | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index 14b985ed9f6..3d1cd286e4e 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -509,6 +509,9 @@ FreeBSD_MAINTAINER= portmgr@FreeBSD.org # USE_XORG - Set to a list of X.org module dependencies. # Implies inclusion of bsd.xorg.mk. ## +# USE_TEX - A list of the TeX dependencies the port has. +# +## # USE_RC_SUBR - If set, the ports startup/shutdown script uses the common # routines found in /etc/rc.subr. # If this is set to a list of files, these files will be @@ -1463,6 +1466,10 @@ PKGCOMPATDIR?= ${LOCALBASE}/lib/compat/pkg .include "${PORTSDIR}/Mk/bsd.qt.mk" .endif +.if defined(USE_TEX) +.include "${PORTSDIR}/Mk/bsd.tex.mk" +.endif + .if defined(USE_DRUPAL) .include "${PORTSDIR}/Mk/bsd.drupal.mk" .endif |