Gentoo Archives: gentoo-commits

From: Andrey Grozin <grozin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/form/
Date: Sat, 01 Feb 2020 09:17:43
Message-Id: 1580548646.c277b9ebfa91254bc2cd4716f748cd3f03b2a562.grozin@gentoo
1 commit: c277b9ebfa91254bc2cd4716f748cd3f03b2a562
2 Author: Andrey Grozin <grozin <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 1 09:17:26 2020 +0000
4 Commit: Andrey Grozin <grozin <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 1 09:17:26 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c277b9eb
7
8 sci-mathematics/form: ebuild improvements
9
10 Package-Manager: Portage-2.3.86, Repoman-2.3.20
11 Signed-off-by: Andrey Grozin <grozin <AT> gentoo.org>
12
13 sci-mathematics/form/form-4.2.1.ebuild | 9 ++++-----
14 1 file changed, 4 insertions(+), 5 deletions(-)
15
16 diff --git a/sci-mathematics/form/form-4.2.1.ebuild b/sci-mathematics/form/form-4.2.1.ebuild
17 index c42c2a499f2..bcf556c2962 100644
18 --- a/sci-mathematics/form/form-4.2.1.ebuild
19 +++ b/sci-mathematics/form/form-4.2.1.ebuild
20 @@ -69,14 +69,13 @@ src_compile() {
21 src_install() {
22 default
23 if use devref; then
24 - insinto /usr/share/doc/${PF}
25 - doins doc/devref/devref.pdf
26 + dodoc doc/devref/devref.pdf
27 fi
28 if use doc; then
29 - insinto /usr/share/doc/${PF}
30 - doins doc/manual/manual.pdf
31 + dodoc doc/manual/manual.pdf
32 fi
33 if use doxygen; then
34 - dohtml -r doc/doxygen/html/*
35 + docinto html
36 + dodoc -r doc/doxygen/html/.
37 fi
38 }