From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 0002C1381F3 for ; Fri, 5 Jul 2013 22:43:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 69D1BE098A; Fri, 5 Jul 2013 22:43:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DBD9FE098A for ; Fri, 5 Jul 2013 22:43:43 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D04E533E96D for ; Fri, 5 Jul 2013 22:43:42 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2139) id 995072171C; Fri, 5 Jul 2013 22:43:41 +0000 (UTC) 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 Content-Transfer-Encoding: 8bit Message-Id: <20130705224341.995072171C@flycatcher.gentoo.org> Date: Fri, 5 Jul 2013 22:43:41 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 055c0c33-5d3d-4da8-911e-947d17790932 X-Archives-Hash: 739958df0d5770d395dd8b1c41d7da52 aballier 13/07/05 22:43:41 Modified: texlive-module.eclass Log: install the fmtutil.d files in texmf-dist and run tl-handle-config-files on texmf-dist too since texlive 2013 dropped support for /usr/share/texmf Revision Changes Path 1.66 eclass/texlive-module.eclass file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/texlive-module.eclass?rev=1.66&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/texlive-module.eclass?rev=1.66&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/texlive-module.eclass?r1=1.65&r2=1.66 Index: texlive-module.eclass =================================================================== RCS file: /var/cvsroot/gentoo-x86/eclass/texlive-module.eclass,v retrieving revision 1.65 retrieving revision 1.66 diff -u -r1.65 -r1.66 --- texlive-module.eclass 28 Jun 2013 12:43:54 -0000 1.65 +++ texlive-module.eclass 5 Jul 2013 22:43:41 -0000 1.66 @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/texlive-module.eclass,v 1.65 2013/06/28 12:43:54 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/texlive-module.eclass,v 1.66 2013/07/05 22:43:41 aballier Exp $ # @ECLASS: texlive-module.eclass # @MAINTAINER: @@ -147,13 +147,13 @@ local name engine mode patterns options eval $@ einfo "Appending to format.${PN}.cnf for $@" - [ -d texmf/fmtutil ] || mkdir -p texmf/fmtutil - [ -f texmf/fmtutil/format.${PN}.cnf ] || { echo "# Generated for ${PN} by texlive-module.eclass" > texmf/fmtutil/format.${PN}.cnf; } + [ -d texmf-dist/fmtutil ] || mkdir -p texmf-dist/fmtutil + [ -f texmf-dist/fmtutil/format.${PN}.cnf ] || { echo "# Generated for ${PN} by texlive-module.eclass" > texmf-dist/fmtutil/format.${PN}.cnf; } if [ "${mode}" = "disabled" ]; then - printf "#! " >> texmf/fmtutil/format.${PN}.cnf + printf "#! " >> texmf-dist/fmtutil/format.${PN}.cnf fi [ -z "${patterns}" ] && patterns="-" - printf "${name}\t${engine}\t${patterns}\t${options}\n" >> texmf/fmtutil/format.${PN}.cnf + printf "${name}\t${engine}\t${patterns}\t${options}\n" >> texmf-dist/fmtutil/format.${PN}.cnf } # @FUNCTION: texlive-module_make_language_def_lines @@ -284,7 +284,7 @@ done # Build format files - for i in texmf/fmtutil/format*.cnf; do + for i in texmf-dist/fmtutil/format*.cnf; do if [ -f "${i}" ]; then einfo "Building format ${i}" [ -d texmf-var ] || mkdir texmf-var @@ -306,7 +306,7 @@ # Installs texmf and config files to the system. texlive-module_src_install() { - for i in texmf/fmtutil/format*.cnf; do + for i in texmf-dist/fmtutil/format*.cnf; do [ -f "${i}" ] && etexlinks "${i}" done @@ -356,6 +356,7 @@ fi texlive-common_handle_config_files + TEXMF_PATH=${TEXMF_DIST_PATH} texlive-common_handle_config_files } # @FUNCTION: texlive-module_pkg_postinst