diff options
Diffstat (limited to 'dev-texlive')
-rw-r--r-- | dev-texlive/texlive-latex/ChangeLog | 9 | ||||
-rw-r--r-- | dev-texlive/texlive-latex/files/texlive-latex-2008-luatex-0.40.patch | 26 | ||||
-rw-r--r-- | dev-texlive/texlive-latex/texlive-latex-2008-r2.ebuild | 26 |
3 files changed, 60 insertions, 1 deletions
diff --git a/dev-texlive/texlive-latex/ChangeLog b/dev-texlive/texlive-latex/ChangeLog index e0e612194f42..af291c8ec134 100644 --- a/dev-texlive/texlive-latex/ChangeLog +++ b/dev-texlive/texlive-latex/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for dev-texlive/texlive-latex # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-latex/ChangeLog,v 1.29 2009/06/18 12:37:32 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-latex/ChangeLog,v 1.30 2009/06/19 21:44:05 aballier Exp $ + +*texlive-latex-2008-r2 (19 Jun 2009) + + 19 Jun 2009; Alexis Ballier <aballier@gentoo.org> + +texlive-latex-2008-r2.ebuild, + +files/texlive-latex-2008-luatex-0.40.patch: + Update luatex .ini files for compatibility with latest luatex versions. 18 Jun 2009; Alexis Ballier <aballier@gentoo.org> -texlive-latex-2007.ebuild: diff --git a/dev-texlive/texlive-latex/files/texlive-latex-2008-luatex-0.40.patch b/dev-texlive/texlive-latex/files/texlive-latex-2008-luatex-0.40.patch new file mode 100644 index 000000000000..3d5a9d60c6a9 --- /dev/null +++ b/dev-texlive/texlive-latex/files/texlive-latex-2008-luatex-0.40.patch @@ -0,0 +1,26 @@ +Update luatex .ini files for compatibility with latest luatex versions + +From TeX Live svn. + +Index: work/texmf-dist/tex/latex/latexconfig/lualatex.ini +=================================================================== +--- work.orig/texmf-dist/tex/latex/latexconfig/lualatex.ini ++++ work/texmf-dist/tex/latex/latexconfig/lualatex.ini +@@ -1,6 +1,7 @@ + % $Id: lualatex.ini 9276 2008-07-05 18:04:46Z karl $ + % Karl Berry, 2008. public domain. + % ++\input luatexiniconfig.tex + \input pdftexconfig + \pdfoutput=0 % dvi output by default + % +Index: work/texmf-dist/tex/latex/latexconfig/pdflualatex.ini +=================================================================== +--- work.orig/texmf-dist/tex/latex/latexconfig/pdflualatex.ini ++++ work/texmf-dist/tex/latex/latexconfig/pdflualatex.ini +@@ -1,4 +1,5 @@ + % Karl Berry, 2008. public domain. ++\input luatexiniconfig.tex + \input pdftexconfig.tex + \scrollmode + \input latex.ltx diff --git a/dev-texlive/texlive-latex/texlive-latex-2008-r2.ebuild b/dev-texlive/texlive-latex/texlive-latex-2008-r2.ebuild new file mode 100644 index 000000000000..acb51e60fdf9 --- /dev/null +++ b/dev-texlive/texlive-latex/texlive-latex-2008-r2.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-latex/texlive-latex-2008-r2.ebuild,v 1.1 2009/06/19 21:44:05 aballier Exp $ + +TEXLIVE_MODULE_CONTENTS="ae amscls amsmath amsrefs babel babelbib carlisle colortbl fancyhdr geometry graphics hyperref latex latex-fonts latexconfig ltxmisc mfnfss natbib pdftex-def pslatex psnfss pspicture tools bin-latex luatex pdftex collection-latex +" +TEXLIVE_MODULE_DOC_CONTENTS="ae.doc amscls.doc amsmath.doc amsrefs.doc babel.doc babelbib.doc carlisle.doc colortbl.doc fancyhdr.doc geometry.doc graphics.doc hyperref.doc latex.doc natbib.doc psnfss.doc pspicture.doc tools.doc bin-latex.doc luatex.doc pdftex.doc " +TEXLIVE_MODULE_SRC_CONTENTS="ae.source amscls.source amsmath.source amsrefs.source babel.source babelbib.source carlisle.source colortbl.source geometry.source graphics.source hyperref.source latex.source mfnfss.source natbib.source pslatex.source psnfss.source pspicture.source tools.source " +inherit texlive-module eutils +DESCRIPTION="TeXLive Basic LaTeX packages" + +LICENSE="GPL-2 as-is freedist GPL-1 LPPL-1.3 " +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="" +DEPEND=">=dev-texlive/texlive-basic-2008-r1 +dev-tex/luatex +" +RDEPEND="${DEPEND} " +TEXLIVE_MODULE_BINSCRIPTS="texmf/scripts/simpdftex/simpdftex" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}/${P}-luatex-0.40.patch" +} |