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/mpfi/
Date: Wed, 01 Jan 2020 11:03:21
Message-Id: 1577876590.09bf573ba60af609d172744fe89185ef58f76f0b.soap@gentoo
1 commit: 09bf573ba60af609d172744fe89185ef58f76f0b
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 1 11:03:10 2020 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 1 11:03:10 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09bf573b
7
8 sci-libs/mpfi: Remove USE="static-libs"
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: David Seifert <soap <AT> gentoo.org>
12
13 sci-libs/mpfi/mpfi-1.5.3.ebuild | 11 ++++-------
14 1 file changed, 4 insertions(+), 7 deletions(-)
15
16 diff --git a/sci-libs/mpfi/mpfi-1.5.3.ebuild b/sci-libs/mpfi/mpfi-1.5.3.ebuild
17 index f3981fb6316..f1c184f6bfe 100644
18 --- a/sci-libs/mpfi/mpfi-1.5.3.ebuild
19 +++ b/sci-libs/mpfi/mpfi-1.5.3.ebuild
20 @@ -1,4 +1,4 @@
21 -# Copyright 1999-2019 Gentoo Authors
22 +# Copyright 1999-2020 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 EAPI=7
26 @@ -12,7 +12,6 @@ SRC_URI="https://gforge.inria.fr/frs/download.php/37331/${P}.tar.bz2"
27 LICENSE="GPL-2"
28 SLOT="0"
29 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
30 -IUSE="static-libs"
31
32 DEPEND="
33 >=dev-libs/gmp-4.1.2:0=
34 @@ -20,14 +19,12 @@ DEPEND="
35 RDEPEND="${DEPEND}"
36
37 my_src_configure() {
38 - ECONF_SOURCE="${S}" econf \
39 - $(use_enable static-libs static)
40 + econf --disable-static
41 }
42
43 my_src_install() {
44 default
45
46 - if ! use static-libs; then
47 - find "${D}" -name '*.la' -delete || die
48 - fi
49 + # no static archives
50 + find "${D}" -name '*.la' -delete || die
51 }