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 D2090138335 for ; Sun, 24 Mar 2019 12:51:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DDB81E0798; Sun, 24 Mar 2019 12:51:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 B5CD6E0798 for ; Sun, 24 Mar 2019 12:51:16 +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 4EA85335CF8 for ; Sun, 24 Mar 2019 12:51:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B819356C for ; Sun, 24 Mar 2019 12:51:13 +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: <1553431868.410369f34b474f07658fd8caf94c46b721aa1335.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/bluez-alsa/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/bluez-alsa/bluez-alsa-9999.ebuild X-VCS-Directories: media-sound/bluez-alsa/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 410369f34b474f07658fd8caf94c46b721aa1335 X-VCS-Branch: master Date: Sun, 24 Mar 2019 12:51:13 +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: dd324291-e3bd-4b06-b656-69b3c170428b X-Archives-Hash: 417bb8e5feaf1388d0d59574f238833a commit: 410369f34b474f07658fd8caf94c46b721aa1335 Author: Lars Wendler gentoo org> AuthorDate: Sun Mar 24 12:50:55 2019 +0000 Commit: Lars Wendler gentoo org> CommitDate: Sun Mar 24 12:51:08 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=410369f3 media-sound/bluez-alsa: Synce live ebuild. Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Lars Wendler gentoo.org> media-sound/bluez-alsa/bluez-alsa-9999.ebuild | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/media-sound/bluez-alsa/bluez-alsa-9999.ebuild b/media-sound/bluez-alsa/bluez-alsa-9999.ebuild index c883ca5ff3e..6c33c4f7d93 100644 --- a/media-sound/bluez-alsa/bluez-alsa-9999.ebuild +++ b/media-sound/bluez-alsa/bluez-alsa-9999.ebuild @@ -17,10 +17,10 @@ fi LICENSE="MIT" SLOT="0" -IUSE="aac debug hcitop static-libs" +IUSE="aac debug hcitop ldac ofono static-libs test" RDEPEND=">=dev-libs/glib-2.26[dbus,${MULTILIB_USEDEP}] - >=media-libs/alsa-lib-1.0[${MULTILIB_USEDEP}] + >=media-libs/alsa-lib-1.1.2[${MULTILIB_USEDEP}] >=media-libs/sbc-1.2[${MULTILIB_USEDEP}] >=net-wireless/bluez-5.0[${MULTILIB_USEDEP}] sys-libs/readline:0= @@ -28,10 +28,15 @@ RDEPEND=">=dev-libs/glib-2.26[dbus,${MULTILIB_USEDEP}] hcitop? ( dev-libs/libbsd sys-libs/ncurses:0= - )" + ) + ldac? ( >=media-libs/libldac-2.0.0 )" DEPEND="${RDEPEND}" BDEPEND="virtual/pkgconfig" +PATCHES=( + "${FILESDIR}"/${PN}-1.4.0-ldac_pkgconfig_checks.patch +) + src_prepare() { default eautoreconf @@ -42,8 +47,11 @@ multilib_src_configure() { --enable-rfcomm $(use_enable aac) $(use_enable debug) + $(use_enable ofono) $(use_enable static-libs static) + $(use_enable test) $(multilib_native_use_enable hcitop) + $(multilib_native_use_enable ldac) ) ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" }