From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1264730-garchives=archives.gentoo.org@lists.gentoo.org>
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 B01C71382C5
	for <garchives@archives.gentoo.org>; Sat, 27 Mar 2021 15:35:05 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id DC1F0E07F9;
	Sat, 27 Mar 2021 15:35:04 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183])
	(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 C3DADE07F9
	for <gentoo-commits@lists.gentoo.org>; Sat, 27 Mar 2021 15:35:04 +0000 (UTC)
Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84])
	(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 6B15033BEF8
	for <gentoo-commits@lists.gentoo.org>; Sat, 27 Mar 2021 15:35:03 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id DD241637
	for <gentoo-commits@lists.gentoo.org>; Sat, 27 Mar 2021 15:35:01 +0000 (UTC)
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" <sam@gentoo.org>
Message-ID: <1616859286.ff3d94796cb16ba3cc75f221eefcc9c79b46b52c.sam@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libtiger/
X-VCS-Repository: repo/gentoo
X-VCS-Files: media-libs/libtiger/libtiger-0.3.4-r1.ebuild
X-VCS-Directories: media-libs/libtiger/
X-VCS-Committer: sam
X-VCS-Committer-Name: Sam James
X-VCS-Revision: ff3d94796cb16ba3cc75f221eefcc9c79b46b52c
X-VCS-Branch: master
Date: Sat, 27 Mar 2021 15:35:01 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: ea037d60-9d68-40e3-a764-c69ad66cde44
X-Archives-Hash: 90ba57231eb2da660d7b702c819dc8d4

commit:     ff3d94796cb16ba3cc75f221eefcc9c79b46b52c
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 27 15:14:59 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Mar 27 15:34:46 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff3d9479

media-libs/libtiger: port to EAPI 7

Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-libs/libtiger/libtiger-0.3.4-r1.ebuild | 20 +++++++++++++-------
 1 file changed, 13 insertions(+), 7 deletions(-)

diff --git a/media-libs/libtiger/libtiger-0.3.4-r1.ebuild b/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
index 2e118f17e64..891f13de6bb 100644
--- a/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
+++ b/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
@@ -1,7 +1,8 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
+
 inherit libtool multilib-minimal
 
 DESCRIPTION="A rendering library for Kate streams using Pango and Cairo"
@@ -13,12 +14,16 @@ SLOT="0"
 KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~sparc x86"
 IUSE="doc"
 
-RDEPEND="x11-libs/pango[${MULTILIB_USEDEP}]
+RDEPEND="
 	>=media-libs/libkate-0.2.0[${MULTILIB_USEDEP}]
-	x11-libs/cairo[${MULTILIB_USEDEP}]"
-DEPEND="${RDEPEND}
+	x11-libs/pango[${MULTILIB_USEDEP}]
+	x11-libs/cairo[${MULTILIB_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
 	virtual/pkgconfig
-	doc? ( app-doc/doxygen )"
+	doc? ( app-doc/doxygen )
+"
 
 src_prepare() {
 	default
@@ -26,7 +31,7 @@ src_prepare() {
 }
 
 multilib_src_configure() {
-	local ECONF_SOURCE=${S}
+	local ECONF_SOURCE="${S}"
 	econf \
 		--disable-static \
 		$(use_enable doc)
@@ -34,5 +39,6 @@ multilib_src_configure() {
 
 multilib_src_install_all() {
 	einstalldocs
+
 	find "${ED}" -name '*.la' -delete || die
 }