Gentoo Archives: gentoo-commits

From: Ronny Gutbrod <gentoo@××××××××.de>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: media-libs/vips/
Date: Thu, 29 Apr 2021 10:44:25
Message-Id: 1619692951.181b7fa84894efb6d914b6a99b6f2b35085e90d5.tastytea@gentoo
1 commit: 181b7fa84894efb6d914b6a99b6f2b35085e90d5
2 Author: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
3 AuthorDate: Thu Apr 29 10:31:41 2021 +0000
4 Commit: Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
5 CommitDate: Thu Apr 29 10:42:31 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=181b7fa8
7
8 media-libs/vips: Fix econf, replace prune_libtool_files.
9
10 The econf command would only go until `$(use_with openexr OpenEXR)` and
11 then print the error: “--without-orc: command not found”.
12
13 prune_libtool_files is deprecated. Replaced with find.
14
15 Closes: https://bugs.gentoo.org/786225
16 Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>
17
18 media-libs/vips/vips-8.10.6.ebuild | 3 +--
19 1 file changed, 1 insertion(+), 2 deletions(-)
20
21 diff --git a/media-libs/vips/vips-8.10.6.ebuild b/media-libs/vips/vips-8.10.6.ebuild
22 index 59394e697..09f6fd6b8 100644
23 --- a/media-libs/vips/vips-8.10.6.ebuild
24 +++ b/media-libs/vips/vips-8.10.6.ebuild
25 @@ -80,7 +80,6 @@ multilib_src_configure() {
26 $(use_with lcms) \
27 $(use_with matio ) \
28 $(use_with openexr OpenEXR) \
29 -# $(use_with openslide) \
30 $(use_with orc) \
31 $(use_with pango pangoft2) \
32 $(use_with pango pangocairo) \
33 @@ -101,5 +100,5 @@ multilib_src_install() {
34 }
35 multilib_src_install_all() {
36 einstalldocs
37 - prune_libtool_files
38 + find "${D}" -name '*.la' -type f -delete || die
39 }