diff options
author | Andreas K. Hüttel <dilfridge@gentoo.org> | 2018-01-11 23:25:41 +0100 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2018-01-11 23:25:41 +0100 |
commit | 09d3ec85098358fdf7e86d0fff3b62045accb18e (patch) | |
tree | 28a8feb8ac8eb8c3991dc3308cba5fd3996edaf4 /dev-tex | |
parent | dev-libs/libunicode: EAPI bump (diff) | |
download | gentoo-09d3ec85098358fdf7e86d0fff3b62045accb18e.tar.gz gentoo-09d3ec85098358fdf7e86d0fff3b62045accb18e.tar.bz2 gentoo-09d3ec85098358fdf7e86d0fff3b62045accb18e.zip |
dev-tex/abntex: EAPI bump
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'dev-tex')
-rw-r--r-- | dev-tex/abntex/abntex-0.9_beta2-r1.ebuild (renamed from dev-tex/abntex/abntex-0.9_beta2.ebuild) | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/dev-tex/abntex/abntex-0.9_beta2.ebuild b/dev-tex/abntex/abntex-0.9_beta2-r1.ebuild index a2c742a8a63c..e198e8baa33b 100644 --- a/dev-tex/abntex/abntex-0.9_beta2.ebuild +++ b/dev-tex/abntex/abntex-0.9_beta2-r1.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=3 +EAPI=6 inherit latex-package @@ -30,30 +30,31 @@ src_prepare() { # fix permissions find . -type f -exec chmod 0644 "{}" + || die 'chmod 0644 failed.' find . -type d -exec chmod 0755 "{}" + || die 'chmod 0755 failed.' + default } src_install() { - dobin bin/geratss || die 'dobin failed.' + dobin bin/geratss if use examples; then insinto /usr/share/doc/${PF}/examples - doins -r texmf/doc/* || die 'could not install examples.' + doins -r texmf/doc/* fi - rm -rf texmf/doc + rm -rf texmf/doc || die insinto /usr/share/texmf-site - doins -r texmf/* || die 'could not install texmf.' + doins -r texmf/* if use lyx; then insinto /usr/share/lyx - doins -r lyx/* || die 'could not install lyx files.' + doins -r lyx/* fi - dodoc LEIAME || die 'could not install LEIAME' + dodoc LEIAME if use doc; then insinto /usr/share/doc/${PF}/docs - doins -r compiled.docs/* || die "could not install doc" + doins -r compiled.docs/* fi } |