diff options
author | Alexis Ballier <aballier@gentoo.org> | 2007-10-20 12:53:06 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2007-10-20 12:53:06 +0000 |
commit | b00f3fba8944c90660154f899592e20c5ce981a7 (patch) | |
tree | 46b6ba419d9f7270bf53ae2500c851968c26da37 /app-text | |
parent | add etexlinks helper function, use it for installing modules, bug #196246 (diff) | |
download | gentoo-2-b00f3fba8944c90660154f899592e20c5ce981a7.tar.gz gentoo-2-b00f3fba8944c90660154f899592e20c5ce981a7.tar.bz2 gentoo-2-b00f3fba8944c90660154f899592e20c5ce981a7.zip |
make use of the new etexlinks helper function, bug #196246
(Portage version: 2.1.3.15)
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/texlive-core/ChangeLog | 6 | ||||
-rw-r--r-- | app-text/texlive-core/texlive-core-2007.ebuild | 9 |
2 files changed, 13 insertions, 2 deletions
diff --git a/app-text/texlive-core/ChangeLog b/app-text/texlive-core/ChangeLog index 6e765443a5f3..37bd958321de 100644 --- a/app-text/texlive-core/ChangeLog +++ b/app-text/texlive-core/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-text/texlive-core # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/texlive-core/ChangeLog,v 1.3 2007/10/19 19:52:25 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/texlive-core/ChangeLog,v 1.4 2007/10/20 12:53:06 aballier Exp $ + + 20 Oct 2007; Alexis Ballier <aballier@gentoo.org> + texlive-core-2007.ebuild: + make use of the new etexlinks helper function, bug #196246 19 Oct 2007; Alexis Ballier <aballier@gentoo.org> +files/2007/texmf.d/00header.cnf, +files/2007/texmf.d/10standardpaths.cnf, diff --git a/app-text/texlive-core/texlive-core-2007.ebuild b/app-text/texlive-core/texlive-core-2007.ebuild index 5e6c3cd97df2..f5958724b9fa 100644 --- a/app-text/texlive-core/texlive-core-2007.ebuild +++ b/app-text/texlive-core/texlive-core-2007.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/texlive-core/texlive-core-2007.ebuild,v 1.4 2007/10/19 19:52:25 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/texlive-core/texlive-core-2007.ebuild,v 1.5 2007/10/20 12:53:06 aballier Exp $ inherit eutils flag-o-matic toolchain-funcs libtool autotools texlive-common @@ -220,6 +220,13 @@ src_install() { mv "${D}${TEXMF_PATH}/web2c/updmap.cfg" "${D}/etc/texmf/updmap.d/00updmap.cfg" || die "moving updmap.cfg failed" + # Create symlinks from format to engines + # This will avoid having to call texlinks in texmf-update + cd "${S}" + for i in texmf/fmtutil/format*.cnf; do + [ -f "${i}" ] && etexlinks "${i}" + done + texlive-common_handle_config_files keepdir /usr/share/texmf-site |