diff options
author | Christoph Junghans <ottxor@gentoo.org> | 2012-07-25 00:36:37 +0000 |
---|---|---|
committer | Christoph Junghans <ottxor@gentoo.org> | 2012-07-25 00:36:37 +0000 |
commit | 0e732e8ea85680dc6c9780415861e0dfd0971b15 (patch) | |
tree | 585d0bca549e6f945a5d5de36bb0b6bb0843750f /dev-tex | |
parent | Remove old. (diff) | |
download | gentoo-2-0e732e8ea85680dc6c9780415861e0dfd0971b15.tar.gz gentoo-2-0e732e8ea85680dc6c9780415861e0dfd0971b15.tar.bz2 gentoo-2-0e732e8ea85680dc6c9780415861e0dfd0971b15.zip |
added prefix support (bug #427834)
(Portage version: 2.2.0_alpha120/cvs/Linux i686)
Diffstat (limited to 'dev-tex')
-rw-r--r-- | dev-tex/luatex/ChangeLog | 6 | ||||
-rw-r--r-- | dev-tex/luatex/luatex-0.70.1.ebuild | 11 |
2 files changed, 10 insertions, 7 deletions
diff --git a/dev-tex/luatex/ChangeLog b/dev-tex/luatex/ChangeLog index 18c39c9933c7..192b84164b45 100644 --- a/dev-tex/luatex/ChangeLog +++ b/dev-tex/luatex/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-tex/luatex # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/ChangeLog,v 1.100 2012/07/09 13:15:20 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/ChangeLog,v 1.101 2012/07/25 00:36:37 ottxor Exp $ + + 25 Jul 2012; Christoph Junghans <ottxor@gentoo.org> luatex-0.70.1.ebuild: + added prefix support (bug #427834) 09 Jul 2012; Alexis Ballier <aballier@gentoo.org> +files/poppler020.patch, luatex-0.70.1.ebuild: @@ -361,4 +364,3 @@ +luatex-0.29.0.ebuild: Initial import. Standalone version of luatex patched to use poppler. Not very useful without TeX Live 2008 but that is a start. - diff --git a/dev-tex/luatex/luatex-0.70.1.ebuild b/dev-tex/luatex/luatex-0.70.1.ebuild index c3c157e6d9f6..cb3a309c6094 100644 --- a/dev-tex/luatex/luatex-0.70.1.ebuild +++ b/dev-tex/luatex/luatex-0.70.1.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild,v 1.13 2012/07/09 13:15:20 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/luatex-0.70.1.ebuild,v 1.14 2012/07/25 00:36:37 ottxor Exp $ -EAPI="2" +EAPI=4 inherit libtool eutils @@ -13,7 +13,7 @@ SRC_URI="http://foundry.supelec.fr/gf/download/frsrelease/392/1730/${PN}-beta-${ LICENSE="GPL-2" SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd" +KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="doc" RDEPEND="dev-libs/zziplib @@ -61,6 +61,7 @@ src_configure() { --without-mf-x-toolkit \ --without-x \ --with-system-kpathsea \ + --with-kpathsea-includes="${EPREFIX}"/usr/include \ --with-system-gd \ --with-system-libpng \ --with-system-teckit \ @@ -111,9 +112,9 @@ pkg_postinst() { elog "Please consider installing a recent TeX distribution" elog "like TeX Live 2008 to get the full power of ${PN}" fi - if [ "$ROOT" = "/" ] && [ -x /usr/bin/fmtutil-sys ] ; then + if [ "$ROOT" = "/" ] && [ -x "${EPREFIX}"/usr/bin/fmtutil-sys ] ; then einfo "Rebuilding formats" - /usr/bin/fmtutil-sys --all &> /dev/null + "${EPREFIX}"/usr/bin/fmtutil-sys --all &> /dev/null else ewarn "Cannot run fmtutil-sys for some reason." ewarn "Your formats might be inconsistent with your installed ${PN} version" |