Date: Thu, 9 May 2013 18:32:41 +0000 (UTC) From: Hiroki Sato <hrs@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r317744 - head/Mk Message-ID: <201305091832.r49IWf3g086544@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: hrs Date: Thu May 9 18:32:41 2013 New Revision: 317744 URL: http://svnweb.freebsd.org/changeset/ports/317744 Log: Allow USE_TEX=yes. Modified: head/Mk/bsd.tex.mk Modified: head/Mk/bsd.tex.mk ============================================================================== --- head/Mk/bsd.tex.mk Thu May 9 18:26:51 2013 (r317743) +++ head/Mk/bsd.tex.mk Thu May 9 18:32:41 2013 (r317744) @@ -5,6 +5,11 @@ TEX_MAINTAINER= hrs@FreeBSD.org # +# For ports which depend on TeX: +# USE_TEX= yes +# Note that teTeX or TeXLive is used based on $TEX_DEFAULT, and full version +# of the packages will be installed as the dependency. +# # For full teTeX dependency: # USE_TEX= tetex # @@ -49,6 +54,10 @@ TEX_DEFAULT?= tetex # normalize TEX_DEFAULT:= ${TEX_DEFAULT:L} +.if defined(USE_TEX) && !empty(USE_TEX:M[Yy][Ee][Ss]) +USE_TEX:= ${TEX_DEFAULT} +.endif + TEXMFDIR?= share/texmf TEXMFDISTDIR?= share/texmf-dist TEXMFLOCALDIR?= share/texmf-local
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201305091832.r49IWf3g086544>