Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/tiff/
Date: Tue, 18 Sep 2018 16:24:28
Message-Id: 1537287221.2a95c45ef0c7f9ded26a1c11bff8b049d7b48e57.asturm@gentoo
1 commit: 2a95c45ef0c7f9ded26a1c11bff8b049d7b48e57
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 18 16:09:48 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 18 16:13:41 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a95c45e
7
8 media-libs/tiff: EAPI-7 bump
9
10 Package-Manager: Portage-2.3.49, Repoman-2.3.10
11
12 media-libs/tiff/tiff-4.0.9-r4.ebuild | 16 +++++++++-------
13 1 file changed, 9 insertions(+), 7 deletions(-)
14
15 diff --git a/media-libs/tiff/tiff-4.0.9-r4.ebuild b/media-libs/tiff/tiff-4.0.9-r4.ebuild
16 index f0f7306f5cb..25c34ed45b9 100644
17 --- a/media-libs/tiff/tiff-4.0.9-r4.ebuild
18 +++ b/media-libs/tiff/tiff-4.0.9-r4.ebuild
19 @@ -1,9 +1,9 @@
20 # Copyright 1999-2018 Gentoo Foundation
21 # Distributed under the terms of the GNU General Public License v2
22
23 -EAPI="6"
24 +EAPI=7
25
26 -inherit autotools libtool ltprune multilib-minimal
27 +inherit autotools libtool multilib-minimal
28
29 DESCRIPTION="Tag Image File Format (TIFF) library"
30 HOMEPAGE="http://libtiff.maptools.org"
31 @@ -15,10 +15,11 @@ SLOT="0"
32 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris"
33 IUSE="+cxx jbig jpeg lzma static-libs test zlib"
34
35 -RDEPEND="jpeg? ( >=virtual/jpeg-0-r2:0=[${MULTILIB_USEDEP}] )
36 +RDEPEND="
37 + jpeg? ( >=virtual/jpeg-0-r2:0=[${MULTILIB_USEDEP}] )
38 jbig? ( >=media-libs/jbigkit-2.1:=[${MULTILIB_USEDEP}] )
39 - lzma? ( >=app-arch/xz-utils-5.0.5-r1:=[${MULTILIB_USEDEP}] )
40 - zlib? ( >=sys-libs/zlib-1.2.8-r1:=[${MULTILIB_USEDEP}] )"
41 + lzma? ( >=app-arch/xz-utils-5.0.5-r1[${MULTILIB_USEDEP}] )
42 + zlib? ( >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] )"
43 DEPEND="${RDEPEND}"
44
45 REQUIRED_USE="test? ( jpeg )" #483132
46 @@ -48,6 +49,7 @@ src_prepare() {
47 multilib_src_configure() {
48 local myeconfargs=(
49 --without-x
50 + --with-docdir=/usr/share/doc/${PF}
51 $(use_enable cxx)
52 $(use_enable jbig)
53 $(use_enable jpeg)
54 @@ -76,6 +78,6 @@ multilib_src_test() {
55 }
56
57 multilib_src_install_all() {
58 - prune_libtool_files --all
59 - rm -f "${ED%/}"/usr/share/doc/${PF}/{COPYRIGHT,README*,RELEASE-DATE,TODO,VERSION}
60 + find "${D}" -name '*.la' -delete || die
61 + rm "${ED}"/usr/share/doc/${PF}/{COPYRIGHT,README*,RELEASE-DATE,TODO,VERSION} || die
62 }