| 1 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/dev-tex/mh/mh-20111011.ebuild,v 1.9 2012/05/06 16:50:55 armin76 Exp $
|
| 4 |
|
| 5 |
inherit latex-package
|
| 6 |
|
| 7 |
DESCRIPTION="Additional LaTeX math tools."
|
| 8 |
HOMEPAGE="http://www.ctan.org/tex-archive/macros/latex/contrib/mh/"
|
| 9 |
SRC_URI="mirror://gentoo/${P}.zip"
|
| 10 |
LICENSE="LPPL-1.3"
|
| 11 |
SLOT="0"
|
| 12 |
IUSE="doc"
|
| 13 |
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
|
| 14 |
|
| 15 |
RDEPEND="dev-tex/xcolor
|
| 16 |
|| ( >=dev-texlive/texlive-latexrecommended-2011 >=dev-texlive/texlive-latex3-2008 )"
|
| 17 |
DEPEND="${RDEPEND}
|
| 18 |
app-arch/unzip"
|
| 19 |
|
| 20 |
S=${WORKDIR}/${PN}
|
| 21 |
TEXMF=/usr/share/texmf-site
|
| 22 |
|
| 23 |
src_compile() {
|
| 24 |
# To avoid sandbox violations
|
| 25 |
export VARTEXFONTS="${T}/fonts"
|
| 26 |
|
| 27 |
# Unpacking *.dtx
|
| 28 |
for i in *.dtx; do
|
| 29 |
tex ${i} || die "TeXing ${i} failed"
|
| 30 |
done
|
| 31 |
|
| 32 |
latex-package_src_compile
|
| 33 |
}
|
| 34 |
|
| 35 |
src_install() {
|
| 36 |
latex-package_src_doinstall styles fonts bin
|
| 37 |
|
| 38 |
insinto "${TEXMF}/tex/latex/${PN}"
|
| 39 |
doins *.sym
|
| 40 |
|
| 41 |
use doc && latex-package_src_doinstall doc
|
| 42 |
dodoc README
|
| 43 |
}
|