From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1MbvKq-00042U-NN for garchives@archives.gentoo.org; Fri, 14 Aug 2009 11:52:40 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B045AE04C2; Fri, 14 Aug 2009 11:52:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 92A63E04C2 for ; Fri, 14 Aug 2009 11:52:39 +0000 (UTC) Received: from stork.gentoo.org (stork.gentoo.org [64.127.104.133]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id 41966655A8 for ; Fri, 14 Aug 2009 11:52:39 +0000 (UTC) Received: from aballier by stork.gentoo.org with local (Exim 4.69) (envelope-from ) id 1MbvKo-0003dJ-Nb for gentoo-commits@lists.gentoo.org; Fri, 14 Aug 2009 11:52:38 +0000 From: "Alexis Ballier (aballier)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, aballier@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in eclass: texlive-module.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: texlive-module.eclass X-VCS-Directories: eclass X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier Content-Type: text/plain; charset=utf8 Message-Id: Sender: Alexis Ballier Date: Fri, 14 Aug 2009 11:52:38 +0000 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 635976e5-f2ad-4be8-bd69-60db1e876797 X-Archives-Hash: f70a58c26430cf20b1788ea82c6a983a aballier 09/08/14 11:52:38 Modified: texlive-module.eclass Log: Ignore TEXINPUTS from the environment when building formats, should fix= bug #262177 Revision Changes Path 1.24 eclass/texlive-module.eclass file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/texlive-mod= ule.eclass?rev=3D1.24&view=3Dmarkup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/texlive-mod= ule.eclass?rev=3D1.24&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/texlive-mod= ule.eclass?r1=3D1.23&r2=3D1.24 Index: texlive-module.eclass =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/eclass/texlive-module.eclass,v retrieving revision 1.23 retrieving revision 1.24 diff -u -r1.23 -r1.24 --- texlive-module.eclass 10 Aug 2009 07:38:02 -0000 1.23 +++ texlive-module.eclass 14 Aug 2009 11:52:38 -0000 1.24 @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/texlive-module.eclass,v 1.23 2= 009/08/10 07:38:02 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/texlive-module.eclass,v 1.24 2= 009/08/14 11:52:38 aballier Exp $ =20 # @ECLASS: texlive-module.eclass # @MAINTAINER: @@ -142,7 +142,7 @@ if [ -f "${i}" ]; then einfo "Building format ${i}" VARTEXFONTS=3D"${T}/fonts" TEXMFHOME=3D"${S}/texmf:${S}/texmf-dist:${= S}/texmf-var"\ - fmtutil --cnffile "${i}" --fmtdir "${S}/texmf-var/web2c" --all\ + env -u TEXINPUTS fmtutil --cnffile "${i}" --fmtdir "${S}/texmf-var/w= eb2c" --all\ || die "failed to build format ${i}" fi done