Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/cxsparse/
Date: Wed, 01 Mar 2017 20:35:22
Message-Id: 1488400501.a86ad55de4ad64caeac2f6ca29a6bf0316894191.soap@gentoo
1 commit: a86ad55de4ad64caeac2f6ca29a6bf0316894191
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Wed Mar 1 20:29:40 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 1 20:35:01 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a86ad55d
7
8 sci-libs/cxsparse: Call einstalldocs in multilib_src_install_all
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 .../{cxsparse-3.1.2.ebuild => cxsparse-3.1.2-r1.ebuild} | 10 +++++-----
13 1 file changed, 5 insertions(+), 5 deletions(-)
14
15 diff --git a/sci-libs/cxsparse/cxsparse-3.1.2.ebuild b/sci-libs/cxsparse/cxsparse-3.1.2-r1.ebuild
16 similarity index 85%
17 rename from sci-libs/cxsparse/cxsparse-3.1.2.ebuild
18 rename to sci-libs/cxsparse/cxsparse-3.1.2-r1.ebuild
19 index 0ee9ba90330..7ebc9be5c78 100644
20 --- a/sci-libs/cxsparse/cxsparse-3.1.2.ebuild
21 +++ b/sci-libs/cxsparse/cxsparse-3.1.2-r1.ebuild
22 @@ -19,13 +19,13 @@ DEPEND="${RDEPEND}
23 virtual/pkgconfig"
24
25 multilib_src_configure() {
26 - ECONF_SOURCE="${S}" \
27 - econf \
28 + ECONF_SOURCE="${S}" econf \
29 $(use_enable static-libs static)
30 }
31
32 multilib_src_install_all() {
33 - if ! use static-libs; then
34 - find "${ED}" -name "*.la" -delete || die
35 - fi
36 + einstalldocs
37 +
38 + # package provides .pc files
39 + find "${D}" -name '*.la' -delete || die
40 }