Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-sipe/
Date: Fri, 29 Jan 2021 10:57:03
Message-Id: 1611917802.9369e8122840f055632f556fd97765bcaeb55463.polynomial-c@gentoo
1 commit: 9369e8122840f055632f556fd97765bcaeb55463
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 29 10:56:42 2021 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 29 10:56:42 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9369e812
7
8 x11-plugins/pidgin-sipe: Use BDEPEND in EAPI-7 ebuild
9
10 Minor style adjustment in src_configure
11
12 Package-Manager: Portage-3.0.14, Repoman-3.0.2
13 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
14
15 x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0.ebuild | 29 +++++++++++++----------
16 1 file changed, 16 insertions(+), 13 deletions(-)
17
18 diff --git a/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0.ebuild b/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0.ebuild
19 index dcc5117625f..720049ca9f2 100644
20 --- a/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0.ebuild
21 +++ b/x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0.ebuild
22 @@ -1,4 +1,4 @@
23 -# Copyright 1999-2020 Gentoo Authors
24 +# Copyright 1999-2021 Gentoo Authors
25 # Distributed under the terms of the GNU General Public License v2
26
27 EAPI=7
28 @@ -37,23 +37,26 @@ RDEPEND="
29 )
30 "
31
32 -DEPEND="dev-util/intltool
33 +DEPEND="${RDEPEND}"
34 +BDEPEND="
35 + dev-util/intltool
36 virtual/pkgconfig
37 - ${RDEPEND}
38 "
39
40 src_configure() {
41 - econf \
42 - --enable-purple \
43 - --disable-quality-check \
44 - $(use_enable telepathy) \
45 - $(use_enable debug) \
46 - $(use_enable ocs2005-message-hack) \
47 - $(use_with dbus) \
48 - $(use_with kerberos krb5) \
49 - $(use_with voice vv) \
50 - $(use_enable !openssl nss) \
51 + local myeconfargs=(
52 + --enable-purple
53 + --disable-quality-check
54 + $(use_enable telepathy)
55 + $(use_enable debug)
56 + $(use_enable ocs2005-message-hack)
57 + $(use_with dbus)
58 + $(use_with kerberos krb5)
59 + $(use_with voice vv)
60 + $(use_enable !openssl nss)
61 $(use_enable openssl)
62 + )
63 + econf "${myeconfsrgs[@]}"
64 }
65
66 src_install() {