forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
abntex-0.9_beta2.ebuild
59 lines (43 loc) · 1.37 KB
/
abntex-0.9_beta2.ebuild
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=3
inherit latex-package
MY_PV="${PV/_/-}"
MY_P="${PN}-${MY_PV}"
DESCRIPTION="LaTeX macros for writing documents following the ABNT norms"
HOMEPAGE="http://abntex.codigolivre.org.br/ http://abntex.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz
doc? ( mirror://sourceforge/${PN}/${PN}-doc-${MY_PV}.tar.gz )"
LICENSE="LPPL-1.3c"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc examples lyx"
DEPEND="dev-texlive/texlive-latex
dev-texlive/texlive-latexrecommended
lyx? ( app-office/lyx )"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_P%-*}"
src_prepare() {
# fix permissions
find . -type f -exec chmod 0644 "{}" + || die 'chmod 0644 failed.'
find . -type d -exec chmod 0755 "{}" + || die 'chmod 0755 failed.'
}
src_install() {
dobin bin/geratss || die 'dobin failed.'
if use examples; then
insinto /usr/share/doc/${PF}/examples
doins -r texmf/doc/* || die 'could not install examples.'
fi
rm -rf texmf/doc
insinto /usr/share/texmf-site
doins -r texmf/* || die 'could not install texmf.'
if use lyx; then
insinto /usr/share/lyx
doins -r lyx/* || die 'could not install lyx files.'
fi
dodoc LEIAME || die 'could not install LEIAME'
if use doc; then
insinto /usr/share/doc/${PF}/docs
doins -r compiled.docs/* || die "could not install doc"
fi
}