diff options
author | Alexis Ballier <aballier@gentoo.org> | 2010-10-24 18:12:05 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2010-10-24 18:12:05 +0000 |
commit | 1c8e28f239075bfcf29844ef7a1f974027b0518e (patch) | |
tree | f7ccc53f40d98ba94f4c5097a68696b881ea27e6 /dev-texlive/texlive-context | |
parent | Use.mask libvirt, tokyocabinet (diff) | |
download | gentoo-2-1c8e28f239075bfcf29844ef7a1f974027b0518e.tar.gz gentoo-2-1c8e28f239075bfcf29844ef7a1f974027b0518e.tar.bz2 gentoo-2-1c8e28f239075bfcf29844ef7a1f974027b0518e.zip |
Bump to TeX Live 2010
(Portage version: 2.2.0_alpha1/cvs/Linux x86_64)
Diffstat (limited to 'dev-texlive/texlive-context')
-rw-r--r-- | dev-texlive/texlive-context/ChangeLog | 8 | ||||
-rw-r--r-- | dev-texlive/texlive-context/texlive-context-2010.ebuild | 41 |
2 files changed, 48 insertions, 1 deletions
diff --git a/dev-texlive/texlive-context/ChangeLog b/dev-texlive/texlive-context/ChangeLog index 49462c65a774..e67e7ecc2995 100644 --- a/dev-texlive/texlive-context/ChangeLog +++ b/dev-texlive/texlive-context/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-texlive/texlive-context # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-context/ChangeLog,v 1.36 2010/02/02 21:02:42 abcd Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-context/ChangeLog,v 1.37 2010/10/24 18:12:03 aballier Exp $ + +*texlive-context-2010 (24 Oct 2010) + + 24 Oct 2010; Alexis Ballier <aballier@gentoo.org> + +texlive-context-2010.ebuild: + Bump to TeX Live 2010 02 Feb 2010; Jonathan Callen <abcd@gentoo.org> texlive-context-2009.ebuild: diff --git a/dev-texlive/texlive-context/texlive-context-2010.ebuild b/dev-texlive/texlive-context/texlive-context-2010.ebuild new file mode 100644 index 000000000000..1b499cc57b8e --- /dev/null +++ b/dev-texlive/texlive-context/texlive-context-2010.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-context/texlive-context-2010.ebuild,v 1.1 2010/10/24 18:12:03 aballier Exp $ + +EAPI="3" + +TEXLIVE_MODULE_CONTENTS="context jmn lmextra context-account context-algorithmic context-bnf context-chromato context-construction-plan context-degrade context-filter context-fixme context-french context-fullpage context-games context-gnuplot context-letter context-lettrine context-lilypond context-mathsets context-notes-zh-cn context-ruby context-simplefonts context-simpleslides context-top-ten context-typearea context-typescripts context-vim collection-context +" +TEXLIVE_MODULE_DOC_CONTENTS="context.doc context-account.doc context-bnf.doc context-chromato.doc context-construction-plan.doc context-degrade.doc context-filter.doc context-fixme.doc context-french.doc context-fullpage.doc context-games.doc context-letter.doc context-lettrine.doc context-lilypond.doc context-mathsets.doc context-notes-zh-cn.doc context-ruby.doc context-simplefonts.doc context-simpleslides.doc context-top-ten.doc context-typearea.doc context-typescripts.doc context-vim.doc " +TEXLIVE_MODULE_SRC_CONTENTS="context-fixme.source context-letter.source context-simplefonts.source " +inherit texlive-module +DESCRIPTION="TeXLive ConTeXt format" + +LICENSE="GPL-2 as-is FDL-1.1 GPL-1 GPL-2 public-domain " +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="" +DEPEND=">=dev-texlive/texlive-basic-2010 +>=dev-texlive/texlive-latex-2010 +!<dev-texlive/texlive-latex-2010 +>=app-text/texlive-core-2010[xetex] +" +RDEPEND="${DEPEND} dev-lang/ruby +" +TL_CONTEXT_UNIX_STUBS="context ctxtools luatools mtxrun pstopdf rlxtools texexec texmfstart" +TEXLIVE_MODULE_BINSCRIPTS="" +for i in ${TL_CONTEXT_UNIX_STUBS} ; do +TEXLIVE_MODULE_BINSCRIPTS="${TEXLIVE_MODULE_BINSCRIPTS} texmf-dist/scripts/context/stubs/unix/$i" +done + +# This small hack is needed in order to have a sane upgrade path: +# the new TeX Live 2009 metapost produces this file but it is not recorded in +# any package; when running fmtutil (like texmf-update does) this file will be +# created and cause collisions. + +pkg_setup() { + if [ -f "${ROOT}/var/lib/texmf/web2c/metapost/metafun.log" ]; then + einfo "Removing ${ROOT}/var/lib/texmf/web2c/metapost/metafun.log" + rm -f "${ROOT}/var/lib/texmf/web2c/metapost/metafun.log" + fi +} |