commit: 9369e8122840f055632f556fd97765bcaeb55463
Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 29 10:56:42 2021 +0000
Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> 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 <polynomial-c <AT> 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() {