From owner-freebsd-ports@FreeBSD.ORG Thu May 9 18:40:24 2013 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 7BDC41A6; Thu, 9 May 2013 18:40:24 +0000 (UTC) (envelope-from utisoft@gmail.com) Received: from mail-ie0-x22a.google.com (mail-ie0-x22a.google.com [IPv6:2607:f8b0:4001:c03::22a]) by mx1.freebsd.org (Postfix) with ESMTP id 4A665BD9; Thu, 9 May 2013 18:40:24 +0000 (UTC) Received: by mail-ie0-f170.google.com with SMTP id aq17so6252774iec.15 for ; Thu, 09 May 2013 11:40:24 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type; bh=bmmLgD1kWJXoCN08UWthehR90kJ8LY0SKWYJPWlY8zk=; b=hGOhOVB5MqvjsmVjpw/vuefcw5BudQrORP178wR5hDznkQmkXCjZf2vmRbbkK71Ktu OGiZNyYsMoLfWdqsxG5xkSxW3SuGBEoXwG2TlW9SO25EbI8jjZCS27eH4hPRC7ASGgcm ea8E9yAprztg0yzyq1qFkbi+640yawsAv1NfeYVVxpoMgXY7lmi6wr8kT7EkHk2Cw1Ns AXYOge7+U+N4KxEJIZeQPimWIcdi0JIGIq4UyEUrcOlr/+9NIXls8YnimJKfztXwAoRe eQlT4GIK8mhyV85rth4RJybA0EjHQ53jNZYTB6DWoKMn1JkO9MzDjbLlQ9Nesh87/byB 6iyw== X-Received: by 10.50.147.71 with SMTP id ti7mr9022086igb.49.1368124823940; Thu, 09 May 2013 11:40:23 -0700 (PDT) MIME-Version: 1.0 Sender: utisoft@gmail.com Received: by 10.64.77.51 with HTTP; Thu, 9 May 2013 11:39:53 -0700 (PDT) In-Reply-To: <518BE9A8.2070704@missouri.edu> References: <518BDE81.3060008@missouri.edu> <518BE9A8.2070704@missouri.edu> From: Chris Rees Date: Thu, 9 May 2013 19:39:53 +0100 X-Google-Sender-Auth: nQTrGLKskTuMWt0qERn95BlQZ9Y Message-ID: Subject: Re: USE_TEX question To: Stephen Montgomery-Smith Content-Type: text/plain; charset=ISO-8859-1 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:40:24 -0000 On 9 May 2013 19:23, Stephen Montgomery-Smith wrote: > 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. > No, you shouldn't. Remember make evaluates lazily. Chris