blob: 33ff3e1a5b06e4fb3cea92b9e6f03e8cf1be6e71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-tex/revtex/revtex-4.ebuild,v 1.2 2013/07/12 07:24:44 zmedico Exp $
EAPI=5
inherit latex-package
DESCRIPTION="LaTeX2e macros for journals of the American Physical Society and the American Institute of Physics"
HOMEPAGE="http://authors.aps.org/revtex4/"
SRC_URI="http://publish.aps.org/files/revtex/4/revtex4.zip"
LICENSE="LPPL-1.3c"
SLOT="4"
KEYWORDS="~amd64 ~x86"
RDEPEND=">=dev-tex/natbib-8.31a"
DEPEND="app-arch/unzip"
IUSE=""
S="${WORKDIR}/revtex4/src"
TEXMF=/usr/share/texmf-site
src_install() {
latex-package_src_install
# we need the revtex-specific rtx files in the same dir as the class files
insinto ${TEXMF}/tex/latex/${PN}
for i in `find . -maxdepth 1 -type f -name "*.rtx"` ; do
doins $i || die "doins $i failed"
done
# remove duplicate docu files to allow concurrent install with revtex-4.1
rm -fv "${ED}/${TEXMF}/doc/latex/revtex/"{ltxdocext.pdf,ltxgrid.pdf,ltxutil.pdf,ltxutil.dvi}
rm -fv "${ED}/usr/share/doc/${P}/"{textcase.dvi,revtex4.dvi,ltxgrid.dvi,ltxdocext.dvi}
}
|