From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3358A138334 for ; Sat, 27 Oct 2018 15:57:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D3290E08FA; Sat, 27 Oct 2018 15:57:18 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AC9BAE08FA for ; Sat, 27 Oct 2018 15:57:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 20877335C95 for ; Sat, 27 Oct 2018 15:57:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BD72D44E for ; Sat, 27 Oct 2018 15:57:13 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1540655675.8c23242998b068bbf1060e7b17a01899f8b24a6d.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/igal/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/igal/igal-2.0-r1.ebuild X-VCS-Directories: media-gfx/igal/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 8c23242998b068bbf1060e7b17a01899f8b24a6d X-VCS-Branch: master Date: Sat, 27 Oct 2018 15:57:13 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 1ef3f738-d9ba-45c4-91ae-015081064f01 X-Archives-Hash: 4948e8961598f2099f2bf3f029fd6a24 commit: 8c23242998b068bbf1060e7b17a01899f8b24a6d Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Oct 27 15:09:27 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Oct 27 15:54:35 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c232429 media-gfx/igal: EAPI7, drop superfluous || die Closes: https://bugs.gentoo.org/666294 Closes: https://github.com/gentoo/gentoo/pull/9447 Thanks-to: Michael Mair-Keimberger gmail.com> Signed-off-by: Andreas Sturmlechner gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 media-gfx/igal/igal-2.0-r1.ebuild | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/media-gfx/igal/igal-2.0-r1.ebuild b/media-gfx/igal/igal-2.0-r1.ebuild index dbb1bb4aa71..39981fbb670 100644 --- a/media-gfx/igal/igal-2.0-r1.ebuild +++ b/media-gfx/igal/igal-2.0-r1.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=2 +EAPI=7 MY_P=${PN}2-${PV} @@ -14,14 +14,16 @@ SLOT="0" KEYWORDS="alpha amd64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos" IUSE="" -RDEPEND="dev-lang/perl +RDEPEND=" + dev-lang/perl virtual/imagemagick-tools virtual/jpeg" DEPEND="" -S=${WORKDIR}/${MY_P} +S="${WORKDIR}/${MY_P}" src_prepare() { + default sed -e "s:/usr/local/lib/igal2:/usr/share/igal2:g" \ -i igal2 -i igal2.1 || die sed -i -e "s:/usr/local/bin/igal2:/usr/bin/igal2:" \ @@ -31,10 +33,10 @@ src_prepare() { src_compile() { :; } src_install() { - dobin igal2 utilities/igal2.sh || die - dosym igal2 /usr/bin/igal || die + dobin igal2 utilities/igal2.sh + dosym igal2 /usr/bin/igal doman igal2.1 dodoc ChangeLog README insinto /usr/share/igal2 - doins *.html tile.png igal2.css || die + doins *.html tile.png igal2.css }