Gentoo Archives: gentoo-commits

From: Alessandro Barbieri <lssndrbarbieri@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: sci-libs/meschach/
Date: Tue, 03 Mar 2020 08:58:36
Message-Id: 1583225740.303587d1b9f78a03c07ac23028a7a21d43b75194.Alessandro-Barbieri@gentoo
1 commit: 303587d1b9f78a03c07ac23028a7a21d43b75194
2 Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
3 AuthorDate: Tue Mar 3 08:55:40 2020 +0000
4 Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
5 CommitDate: Tue Mar 3 08:55:40 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=303587d1
7
8 sci-libs/meschach: call einstalldocs
9
10 Package-Manager: Portage-2.3.91, Repoman-2.3.20
11 Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
12
13 sci-libs/meschach/meschach-1.2b.ebuild | 7 +++++--
14 1 file changed, 5 insertions(+), 2 deletions(-)
15
16 diff --git a/sci-libs/meschach/meschach-1.2b.ebuild b/sci-libs/meschach/meschach-1.2b.ebuild
17 index 5cf39eb..e74f820 100644
18 --- a/sci-libs/meschach/meschach-1.2b.ebuild
19 +++ b/sci-libs/meschach/meschach-1.2b.ebuild
20 @@ -46,7 +46,6 @@ src_configure() {
21 $(use_with sparse)
22 $(use_with unroll)
23 )
24 -
25 econf "${myconf[@]}"
26 }
27
28 @@ -58,12 +57,13 @@ src_compile() {
29 src_install() {
30 ln -s "lib${PN}.so" "lib${PN}.so.${MAJOR}"
31 ln -s "lib${PN}.so.${MAJOR}" "lib${PN}.so.${VERSION}"
32 -
33 dolib.so "lib${PN}.so"
34 dolib.so "lib${PN}.so.${MAJOR}"
35 dolib.so "lib${PN}.so.${VERSION}"
36 +
37 insinto "/usr/include/${PN}"
38 doins *.h
39 +
40 exeinto "/usr/libexec/${PN}"
41 doexe iotort
42 doexe itertort
43 @@ -74,7 +74,10 @@ src_install() {
44 doexe sptort
45 doexe torture
46 doexe ztorture
47 +
48 insinto "/usr/share/${P}"
49 doins *.dat
50 +
51 dodoc -r DOC/.
52 + einstalldocs
53 }