diff options
author | Christoph Junghans <ottxor@gentoo.org> | 2012-07-25 14:07:54 +0000 |
---|---|---|
committer | Christoph Junghans <ottxor@gentoo.org> | 2012-07-25 14:07:54 +0000 |
commit | 19adbeaacce123c3e81475fecebb08e6af19e7ca (patch) | |
tree | e79c84ffb5e2e70692855482af637ddd2987300e /dev-tex | |
parent | Unmask x11-libs/cairo-1.12, related mesa snapshot and newer libdrm (diff) | |
download | gentoo-2-19adbeaacce123c3e81475fecebb08e6af19e7ca.tar.gz gentoo-2-19adbeaacce123c3e81475fecebb08e6af19e7ca.tar.bz2 gentoo-2-19adbeaacce123c3e81475fecebb08e6af19e7ca.zip |
added prefix support (bug #427840)
(Portage version: 2.2.0_alpha120/cvs/Linux i686)
Diffstat (limited to 'dev-tex')
-rw-r--r-- | dev-tex/cjk-latex/ChangeLog | 6 | ||||
-rw-r--r-- | dev-tex/cjk-latex/cjk-latex-4.8.2.ebuild | 14 |
2 files changed, 10 insertions, 10 deletions
diff --git a/dev-tex/cjk-latex/ChangeLog b/dev-tex/cjk-latex/ChangeLog index 1af46732da9f..bd03d0ae003b 100644 --- a/dev-tex/cjk-latex/ChangeLog +++ b/dev-tex/cjk-latex/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-tex/cjk-latex # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/cjk-latex/ChangeLog,v 1.46 2012/05/09 16:48:34 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tex/cjk-latex/ChangeLog,v 1.47 2012/07/25 14:07:54 ottxor Exp $ + + 25 Jul 2012; Christoph Junghans <ottxor@gentoo.org> cjk-latex-4.8.2.ebuild: + added prefix support (bug #427840) 09 May 2012; Alexis Ballier <aballier@gentoo.org> cjk-latex-4.8.2.ebuild: keyword ~amd64-fbsd @@ -154,4 +157,3 @@ 05 Jan 2004; Mamoru KOMACHI <usata@gentoo.org> cjk-latex-4.5.2.ebuild: Initial import. Required by latex-unicode, see bug #17282 - diff --git a/dev-tex/cjk-latex/cjk-latex-4.8.2.ebuild b/dev-tex/cjk-latex/cjk-latex-4.8.2.ebuild index 03b4f4208f05..224f9d32c0f7 100644 --- a/dev-tex/cjk-latex/cjk-latex-4.8.2.ebuild +++ b/dev-tex/cjk-latex/cjk-latex-4.8.2.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/cjk-latex/cjk-latex-4.8.2.ebuild,v 1.10 2012/05/09 16:48:34 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tex/cjk-latex/cjk-latex-4.8.2.ebuild,v 1.11 2012/07/25 14:07:54 ottxor Exp $ -EAPI=3 +EAPI=4 inherit latex-package elisp-common toolchain-funcs multilib eutils autotools @@ -17,7 +17,7 @@ SRC_URI="ftp://ftp.ffii.org/pub/cjk/${MY_P}.tar.gz LICENSE="GPL-2" SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd" +KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux" IUSE="doc emacs" DEPEND="virtual/latex-base @@ -52,8 +52,8 @@ src_configure() { cd - done cd hbf2gf - econf --with-kpathsea-lib=/usr/$(get_libdir) \ - --with-kpathsea-include=/usr/include/kpathsea + econf --with-kpathsea-lib="${EPREFIX}"/usr/$(get_libdir) \ + --with-kpathsea-include="${EPREFIX}"/usr/include/kpathsea } src_compile() { @@ -141,7 +141,7 @@ src_install() { doins -r texmf/* || die "installing texmf failed" # Move fonts because hbf2gf expects them in MISCFONTS - mv "${D}/${TEXMF}/fonts/hbf" "${D}/${TEXMF}/fonts/misc" || die "mv font failed" + mv "${ED}/${TEXMF}/fonts/hbf" "${ED}/${TEXMF}/fonts/misc" || die "mv font failed" insinto ${TEXMF}/hbf2gf doins utils/hbf2gf/cfg/* @@ -158,6 +158,4 @@ src_install() { fi docinto uwpatch dodoc uwpatch/README - - prepalldocs } |