From owner-freebsd-ports@FreeBSD.ORG Thu May 9 18:23:37 2013 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 371BA727; Thu, 9 May 2013 18:23:37 +0000 (UTC) (envelope-from stephen@missouri.edu) Received: from wilberforce.math.missouri.edu (wilberforce.math.missouri.edu [128.206.184.213]) by mx1.freebsd.org (Postfix) with ESMTP id 03349A1B; Thu, 9 May 2013 18:23:36 +0000 (UTC) Received: from [128.206.184.213] (wilberforce.math.missouri.edu [128.206.184.213]) by wilberforce.math.missouri.edu (8.14.6/8.14.6) with ESMTP id r49INaKN060643; Thu, 9 May 2013 13:23:36 -0500 (CDT) (envelope-from stephen@missouri.edu) Message-ID: <518BE9A8.2070704@missouri.edu> Date: Thu, 09 May 2013 13:23:36 -0500 From: Stephen Montgomery-Smith User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130407 Thunderbird/17.0.5 MIME-Version: 1.0 To: Chris Rees Subject: Re: USE_TEX question References: <518BDE81.3060008@missouri.edu> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: FreeBSD Ports Mailing List X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 May 2013 18:23:37 -0000 On 05/09/13 13:15, Chris Rees wrote: > On 9 May 2013 18:36, Stephen Montgomery-Smith wrote: >> So I have a port, math/sage, which now contains in Makefile the line >> USE_TEX= tetex >> >> I have intalled the texlive ports. So now if I try to install math/sage, it >> gives me error messages about CONFLICTS, which I think arise from the fact >> that math/sage thinks that it has to first install tetex, and this conflict >> with various texlive ports. >> >> But, math/sage is TEX agnostic. It doesn't care whether it is tetex or >> texlive that is installed. All it really wants to know is if there is a >> useable latex in PATH. >> >> It would be nice if there was a USE_TEX=yes option, or something like that, >> which I could put into the math/sage port. > > USE_TEX=${TEX_DEFAULT} should work fine-- have you tried that? > > Chris Ah, yes. And you have to set TEX_DEFAULT in /etc/make.conf as well.