diff options
author | hrs <hrs@FreeBSD.org> | 2013-05-12 01:58:55 +0800 |
---|---|---|
committer | hrs <hrs@FreeBSD.org> | 2013-05-12 01:58:55 +0800 |
commit | 514b35c5ff85906bace4b99b5298bb03779d8082 (patch) | |
tree | 4e99b662e9edb02c504f73d22596ea702c0f3d31 /lang | |
parent | 3c5290d5fb12b9f59c755a169a5953b92bcd083d (diff) | |
download | freebsd-ports-gnome-514b35c5ff85906bace4b99b5298bb03779d8082.tar.gz freebsd-ports-gnome-514b35c5ff85906bace4b99b5298bb03779d8082.tar.zst freebsd-ports-gnome-514b35c5ff85906bace4b99b5298bb03779d8082.zip |
Rectify USE_TEX to support both of teTeX and TeXLive.
TEX_DEFAULT:
A knob to choose teTeX or TeXLive. One can specify in /etc/make.conf.
USE_TEX:
A knob for port developers. Valid keywords are listed in
bsd.tex.mk.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/hope/Makefile | 2 | ||||
-rw-r--r-- | lang/logo/Makefile | 2 | ||||
-rw-r--r-- | lang/mlton/Makefile | 2 | ||||
-rw-r--r-- | lang/twelf/Makefile | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/lang/hope/Makefile b/lang/hope/Makefile index a4f6bd4e9e36..5ac0f9dbe5b0 100644 --- a/lang/hope/Makefile +++ b/lang/hope/Makefile @@ -15,7 +15,7 @@ MAINTAINER= lev@FreeBSD.org COMMENT= Hope is lazy interpreter for HOPE applicative language .if defined(WITH_DOCS) -USE_TEX= tetex +USE_TEX= latex:build BUILD_DEPENDS+= latex2html:${PORTSDIR}/textproc/latex2html MAKE_ARGS+= WITH_DOCS=yes .else diff --git a/lang/logo/Makefile b/lang/logo/Makefile index c2c9b88aebf6..c9d7a0948230 100644 --- a/lang/logo/Makefile +++ b/lang/logo/Makefile @@ -21,7 +21,7 @@ USE_EMACS= yes .if defined(WITH_FULL_DOCS) .undef NOPORTDOCS -USE_TEX= tetex +USE_TEX= tex:build USE_GHOSTSCRIPT=yes .endif diff --git a/lang/mlton/Makefile b/lang/mlton/Makefile index 6f085de7a9b3..121595774eba 100644 --- a/lang/mlton/Makefile +++ b/lang/mlton/Makefile @@ -32,7 +32,7 @@ OPTIONS= SMLNJ "Bootstrap with SML/NJ (can take >15 hours)" off \ .if !defined(NOPORTDOCS) BUILD_DEPENDS+= gsed:${PORTSDIR}/textproc/gsed \ htmldoc:${PORTSDIR}/textproc/htmldoc -USE_TEX= tetex +USE_TEX= latex:build .else INSTALL_TARGET= install-no-docs ALL_TARGET= all-no-docs diff --git a/lang/twelf/Makefile b/lang/twelf/Makefile index c7b2c8599a25..51f0328f0e9f 100644 --- a/lang/twelf/Makefile +++ b/lang/twelf/Makefile @@ -26,7 +26,7 @@ RUN_DEPENDS= sml:${PORTSDIR}/lang/sml-nj BUILD_DEPENDS= sml:${PORTSDIR}/lang/sml-nj .endif -USE_TEX= tetex +USE_TEX= tex:build .if defined(WITH_MLTON) MAKEFILE= mlton/Makefile |