blob: e7d4a92b6be30abd9fa209542b022d996374bee0 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit latex-package
DESCRIPTION="LaTeX classes and BibTeX styles for Elsevier Science journals."
SRC_URI="http://dev.gentooexperimental.org/~dreeevil/${P}.zip
http://dev.gentooexperimental.org/~dreeevil/${PN}-bib-${PV}.zip"
HOMEPAGE="http://www.ctan.org/tex-archive/help/Catalogue/entries/elsevier.html"
LICENSE="LPPL-1.3c"
IUSE=""
SLOT="0"
KEYWORDS="~x86"
RDEPEND=">=app-text/tetex-3.0"
DEPEND="${RDEPEND}
app-arch/unzip"
SUPPLIER="public"
S=${WORKDIR}/${PN}
src_install() {
latex-package_src_doinstall cls bst
dodoc *pdf *tex README README-bst
}
pkg_postinst() {
latex-package_rehash
}
pkg_postrm() {
latex-package_rehash
}
|