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-gfx/igal/
Date: Sat, 27 Oct 2018 15:57:20
Message-Id: 1540655675.8c23242998b068bbf1060e7b17a01899f8b24a6d.asturm@gentoo
1 commit: 8c23242998b068bbf1060e7b17a01899f8b24a6d
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 27 15:09:27 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 27 15:54:35 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c232429
7
8 media-gfx/igal: EAPI7, drop superfluous || die
9
10 Closes: https://bugs.gentoo.org/666294
11 Closes: https://github.com/gentoo/gentoo/pull/9447
12 Thanks-to: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
13 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
14 Package-Manager: Portage-2.3.51, Repoman-2.3.11
15
16 media-gfx/igal/igal-2.0-r1.ebuild | 16 +++++++++-------
17 1 file changed, 9 insertions(+), 7 deletions(-)
18
19 diff --git a/media-gfx/igal/igal-2.0-r1.ebuild b/media-gfx/igal/igal-2.0-r1.ebuild
20 index dbb1bb4aa71..39981fbb670 100644
21 --- a/media-gfx/igal/igal-2.0-r1.ebuild
22 +++ b/media-gfx/igal/igal-2.0-r1.ebuild
23 @@ -1,7 +1,7 @@
24 -# Copyright 1999-2017 Gentoo Foundation
25 +# Copyright 1999-2018 Gentoo Authors
26 # Distributed under the terms of the GNU General Public License v2
27
28 -EAPI=2
29 +EAPI=7
30
31 MY_P=${PN}2-${PV}
32
33 @@ -14,14 +14,16 @@ SLOT="0"
34 KEYWORDS="alpha amd64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
35 IUSE=""
36
37 -RDEPEND="dev-lang/perl
38 +RDEPEND="
39 + dev-lang/perl
40 virtual/imagemagick-tools
41 virtual/jpeg"
42 DEPEND=""
43
44 -S=${WORKDIR}/${MY_P}
45 +S="${WORKDIR}/${MY_P}"
46
47 src_prepare() {
48 + default
49 sed -e "s:/usr/local/lib/igal2:/usr/share/igal2:g" \
50 -i igal2 -i igal2.1 || die
51 sed -i -e "s:/usr/local/bin/igal2:/usr/bin/igal2:" \
52 @@ -31,10 +33,10 @@ src_prepare() {
53 src_compile() { :; }
54
55 src_install() {
56 - dobin igal2 utilities/igal2.sh || die
57 - dosym igal2 /usr/bin/igal || die
58 + dobin igal2 utilities/igal2.sh
59 + dosym igal2 /usr/bin/igal
60 doman igal2.1
61 dodoc ChangeLog README
62 insinto /usr/share/igal2
63 - doins *.html tile.png igal2.css || die
64 + doins *.html tile.png igal2.css
65 }