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 1NSxqo-0003vg-VL for garchives@archives.gentoo.org; Thu, 07 Jan 2010 19:17:03 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5FC57E09AB; Thu, 7 Jan 2010 19:16:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 3B61FE09AB for ; Thu, 7 Jan 2010 19:16:54 +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 E168D1B413E for ; Thu, 7 Jan 2010 19:16:53 +0000 (UTC) Received: from aballier by stork.gentoo.org with local (Exim 4.69) (envelope-from ) id 1NSxqn-0004Iu-Ba for gentoo-commits@lists.gentoo.org; Thu, 07 Jan 2010 19:16:53 +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: Thu, 07 Jan 2010 19:16:53 +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: 4aaccf18-63df-4a82-bb79-cca36576baba X-Archives-Hash: 936adb3aa31fdaac55ece97a1e6c5228 aballier 10/01/07 19:16:53 Modified: texlive-module.eclass Log: build the formats after looking for jobs in the tlpkgs so that the AddF= ormat directive will work Revision Changes Path 1.30 eclass/texlive-module.eclass file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/texlive-mod= ule.eclass?rev=3D1.30&view=3Dmarkup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/texlive-mod= ule.eclass?rev=3D1.30&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/texlive-mod= ule.eclass?r1=3D1.29&r2=3D1.30 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.29 retrieving revision 1.30 diff -u -r1.29 -r1.30 --- texlive-module.eclass 7 Jan 2010 19:13:01 -0000 1.29 +++ texlive-module.eclass 7 Jan 2010 19:16:52 -0000 1.30 @@ -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.29 2= 010/01/07 19:13:01 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/texlive-module.eclass,v 1.30 2= 010/01/07 19:16:52 aballier Exp $ =20 # @ECLASS: texlive-module.eclass # @MAINTAINER: @@ -172,16 +172,6 @@ # files for different packages in a single one used by the whole tex ins= tallation. =20 texlive-module_src_compile() { - # Build format files - for i in texmf/fmtutil/format*.cnf; do - if [ -f "${i}" ]; then - einfo "Building format ${i}" - VARTEXFONTS=3D"${T}/fonts" TEXMFHOME=3D"${S}/texmf:${S}/texmf-dist:${= S}/texmf-var"\ - env -u TEXINPUTS fmtutil --cnffile "${i}" --fmtdir "${S}/texmf-var/w= eb2c" --all\ - || die "failed to build format ${i}" - fi - done - # Generate config files # TeX Live 2007 was providing lists. For 2008 they are now tlpobj. for i in "${S}"/tlpkg/tlpobj/*; @@ -215,6 +205,16 @@ esac done =20 + # Build format files + for i in texmf/fmtutil/format*.cnf; do + if [ -f "${i}" ]; then + einfo "Building format ${i}" + VARTEXFONTS=3D"${T}/fonts" TEXMFHOME=3D"${S}/texmf:${S}/texmf-dist:${= S}/texmf-var"\ + env -u TEXINPUTS fmtutil --cnffile "${i}" --fmtdir "${S}/texmf-var/w= eb2c" --all\ + || die "failed to build format ${i}" + fi + done + # Delete ls-R files, these should not be created but better be certain = they # do not end up being installed. find . -name 'ls-R' -delete