diff options
author | Alexis Ballier <aballier@gentoo.org> | 2010-01-09 14:47:34 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2010-01-09 14:47:34 +0000 |
commit | efd7bdb0a2c1bc6cb922fa46f02736633b63bbee (patch) | |
tree | 5ba68f44c78bf4d409eaf6e500e1db09d9573649 | |
parent | Version bump to 1.3.7. (diff) | |
download | gentoo-2-efd7bdb0a2c1bc6cb922fa46f02736633b63bbee.tar.gz gentoo-2-efd7bdb0a2c1bc6cb922fa46f02736633b63bbee.tar.bz2 gentoo-2-efd7bdb0a2c1bc6cb922fa46f02736633b63bbee.zip |
Use system kpathsea with texlive 2009 and add missing tex-base dep
(Portage version: 2.2_rc61/cvs/Linux x86_64)
-rw-r--r-- | dev-tex/luatex/ChangeLog | 5 | ||||
-rw-r--r-- | dev-tex/luatex/luatex-0.50.0.ebuild | 14 |
2 files changed, 15 insertions, 4 deletions
diff --git a/dev-tex/luatex/ChangeLog b/dev-tex/luatex/ChangeLog index 1054660851bf..7b94c488f39d 100644 --- a/dev-tex/luatex/ChangeLog +++ b/dev-tex/luatex/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-tex/luatex # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/ChangeLog,v 1.44 2010/01/04 19:34:30 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/ChangeLog,v 1.45 2010/01/09 14:47:34 aballier Exp $ + + 09 Jan 2010; Alexis Ballier <aballier@gentoo.org> luatex-0.50.0.ebuild: + Use system kpathsea with texlive 2009 and add missing tex-base dep *luatex-0.50.0 (04 Jan 2010) diff --git a/dev-tex/luatex/luatex-0.50.0.ebuild b/dev-tex/luatex/luatex-0.50.0.ebuild index 45bdfb989dcd..c5024f60f4c9 100644 --- a/dev-tex/luatex/luatex-0.50.0.ebuild +++ b/dev-tex/luatex/luatex-0.50.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/luatex-0.50.0.ebuild,v 1.1 2010/01/04 19:34:30 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/luatex-0.50.0.ebuild,v 1.2 2010/01/09 14:47:34 aballier Exp $ EAPI="2" @@ -21,7 +21,8 @@ IUSE="doc" RDEPEND="dev-libs/zziplib media-libs/libpng virtual/poppler - sys-libs/zlib" + sys-libs/zlib + virtual/tex-base" DEPEND="${RDEPEND} >=sys-devel/libtool-2.2.6 dev-util/pkgconfig" @@ -43,6 +44,11 @@ src_configure() { # that don't have the same alphabetical order than ascii. Bug #244619 # So we set LC_ALL to C in order to avoid problems. export LC_ALL=C + + local myconf + myconf="" + has_version '>=app-text/texlive-core-2009' && myconf="--with-system-kpathsea" + cd "${S}/texk/web2c" econf \ --disable-cxx-runtime-hack \ @@ -108,7 +114,9 @@ src_configure() { --with-system-xpdf \ --disable-largefile \ --disable-multiplatform \ - --disable-shared + --disable-shared \ + ${myconf} + for i in ${PRELIBS} ; do einfo "Configuring $i" local j=$(basename $i)_extraconf |