Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/imlib2/
Date: Sat, 25 Aug 2018 06:14:28
Message-Id: 1535177556.069f996669210ce98261870a6e65bddf6dfe3576.mgorny@gentoo
1 commit: 069f996669210ce98261870a6e65bddf6dfe3576
2 Author: Joonas Niilola <juippis <AT> gmail <DOT> com>
3 AuthorDate: Thu Aug 23 14:08:50 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 25 06:12:36 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=069f9966
7
8 media-libs/imlib2: fix build issue with 'doc' USE in 1.5.1-r1
9
10 Package-Manager: Portage[mgorny]-2.3.43.3
11 Closes: https://github.com/gentoo/gentoo/pull/9674
12
13 media-libs/imlib2/imlib2-1.5.1-r1.ebuild | 5 +++--
14 1 file changed, 3 insertions(+), 2 deletions(-)
15
16 diff --git a/media-libs/imlib2/imlib2-1.5.1-r1.ebuild b/media-libs/imlib2/imlib2-1.5.1-r1.ebuild
17 index 54c743ce05e..b324395625c 100644
18 --- a/media-libs/imlib2/imlib2-1.5.1-r1.ebuild
19 +++ b/media-libs/imlib2/imlib2-1.5.1-r1.ebuild
20 @@ -64,12 +64,13 @@ multilib_src_configure() {
21
22 multilib_src_install() {
23 V=1 emake install DESTDIR="${D}"
24 + find "${D}" -name '*.la' -delete || die
25 +}
26
27 +multilib_src_install_all() {
28 if use doc; then
29 local HTML_DOCS=( "${S}"/doc/. )
30 rm "${S}"/doc/Makefile.{am,in} || die
31 fi
32 einstalldocs
33 -
34 - find "${D}" -name '*.la' -delete || die
35 }