diff options
author | Alexis Ballier <aballier@gentoo.org> | 2008-08-06 14:50:56 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2008-08-06 14:50:56 +0000 |
commit | 6aee5afe8d7c99dc69028c5b848c2a2ca0b1e277 (patch) | |
tree | 289105c01978f0a15e651b6bd1fdc44fa8c8f6ca /dev-lang/mlton | |
parent | Sign Manfiest (diff) | |
download | gentoo-2-6aee5afe8d7c99dc69028c5b848c2a2ca0b1e277.tar.gz gentoo-2-6aee5afe8d7c99dc69028c5b848c2a2ca0b1e277.tar.bz2 gentoo-2-6aee5afe8d7c99dc69028c5b848c2a2ca0b1e277.zip |
Set VARTEXFONTS to prevent potential problems with latex font generation, bug #223077
(Portage version: 2.2_rc6/cvs/Linux 2.6.26-gentoo x86_64)
Diffstat (limited to 'dev-lang/mlton')
-rw-r--r-- | dev-lang/mlton/ChangeLog | 6 | ||||
-rw-r--r-- | dev-lang/mlton/mlton-20070826.ebuild | 7 |
2 files changed, 10 insertions, 3 deletions
diff --git a/dev-lang/mlton/ChangeLog b/dev-lang/mlton/ChangeLog index 5c39d1ac8008..87393086da8b 100644 --- a/dev-lang/mlton/ChangeLog +++ b/dev-lang/mlton/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-lang/mlton # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/mlton/ChangeLog,v 1.6 2008/04/24 11:49:21 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/mlton/ChangeLog,v 1.7 2008/08/06 14:50:56 aballier Exp $ + + 06 Aug 2008; Alexis Ballier <aballier@gentoo.org> mlton-20070826.ebuild: + Set VARTEXFONTS to prevent potential problems with latex font generation, + bug #223077 24 Apr 2008; Raúl Porcel <armin76@gentoo.org> -files/digest-mlton-20070826: diff --git a/dev-lang/mlton/mlton-20070826.ebuild b/dev-lang/mlton/mlton-20070826.ebuild index 39897da39f47..eb0b7e1aaef6 100644 --- a/dev-lang/mlton/mlton-20070826.ebuild +++ b/dev-lang/mlton/mlton-20070826.ebuild @@ -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/dev-lang/mlton/mlton-20070826.ebuild,v 1.1 2008/04/14 21:06:20 hkbst Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/mlton/mlton-20070826.ebuild,v 1.2 2008/08/06 14:50:56 aballier Exp $ inherit eutils @@ -29,7 +29,10 @@ src_compile() { # Does not support parallel make emake -j1 all-no-docs || die - if use doc; then emake docs || die; fi + if use doc; then + export VARTEXFONTS="${T}/fonts" + emake docs || die "failed to create documentation" + fi fi } |