diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2021-01-29 11:56:42 +0100 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2021-01-29 11:56:42 +0100 |
commit | 9369e8122840f055632f556fd97765bcaeb55463 (patch) | |
tree | 274bff0afd7d0cee617f398802a1015b28c5d698 /x11-plugins/pidgin-sipe | |
parent | media-sound/umurmur: Synced live ebuild (diff) | |
download | gentoo-9369e8122840f055632f556fd97765bcaeb55463.tar.gz gentoo-9369e8122840f055632f556fd97765bcaeb55463.tar.bz2 gentoo-9369e8122840f055632f556fd97765bcaeb55463.zip |
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@gentoo.org>
Diffstat (limited to 'x11-plugins/pidgin-sipe')
-rw-r--r-- | x11-plugins/pidgin-sipe/pidgin-sipe-1.25.0.ebuild | 29 |
1 files 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 dcc5117625f6..720049ca9f2c 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() { |