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 96A781382C5 for ; Fri, 29 Jan 2021 10:57:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A0F01E0C2F; Fri, 29 Jan 2021 10:57:02 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 873BBE0C2F for ; Fri, 29 Jan 2021 10:57:02 +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 790A73409E6 for ; Fri, 29 Jan 2021 10:57:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 179D553 for ; Fri, 29 Jan 2021 10:57:00 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1611917802.9369e8122840f055632f556fd97765bcaeb55463.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-sipe/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0.ebuild X-VCS-Directories: x11-plugins/pidgin-sipe/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 9369e8122840f055632f556fd97765bcaeb55463 X-VCS-Branch: master Date: Fri, 29 Jan 2021 10:57:00 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b299ffe7-527f-46da-96a1-6728d50243c6 X-Archives-Hash: fb3612418c3e21fd61a5205baa9e250e commit: 9369e8122840f055632f556fd97765bcaeb55463 Author: Lars Wendler gentoo org> AuthorDate: Fri Jan 29 10:56:42 2021 +0000 Commit: Lars Wendler gentoo org> CommitDate: Fri Jan 29 10:56:42 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9369e812 x11-plugins/pidgin-sipe: Use BDEPEND in EAPI-7 ebuild Minor style adjustment in src_configure Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Lars Wendler gentoo.org> x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0.ebuild | 29 +++++++++++++---------- 1 file changed, 16 insertions(+), 13 deletions(-) diff --git a/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0.ebuild b/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0.ebuild index dcc5117625f..720049ca9f2 100644 --- a/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0.ebuild +++ b/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -37,23 +37,26 @@ RDEPEND=" ) " -DEPEND="dev-util/intltool +DEPEND="${RDEPEND}" +BDEPEND=" + dev-util/intltool virtual/pkgconfig - ${RDEPEND} " src_configure() { - econf \ - --enable-purple \ - --disable-quality-check \ - $(use_enable telepathy) \ - $(use_enable debug) \ - $(use_enable ocs2005-message-hack) \ - $(use_with dbus) \ - $(use_with kerberos krb5) \ - $(use_with voice vv) \ - $(use_enable !openssl nss) \ + local myeconfargs=( + --enable-purple + --disable-quality-check + $(use_enable telepathy) + $(use_enable debug) + $(use_enable ocs2005-message-hack) + $(use_with dbus) + $(use_with kerberos krb5) + $(use_with voice vv) + $(use_enable !openssl nss) $(use_enable openssl) + ) + econf "${myeconfsrgs[@]}" } src_install() {