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 88F3F13933E for ; Sun, 4 Jul 2021 20:32:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D3396E0824; Sun, 4 Jul 2021 20:32:20 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 ABBAAE0837 for ; Sun, 4 Jul 2021 20:32:20 +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 76C90342B08 for ; Sun, 4 Jul 2021 20:32:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EBBE37C2 for ; Sun, 4 Jul 2021 20:32:17 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1625430721.760917faa46ea5b40249680cbfd4031760ff0414.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/scream/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/scream/scream-9999.ebuild X-VCS-Directories: media-sound/scream/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 760917faa46ea5b40249680cbfd4031760ff0414 X-VCS-Branch: master Date: Sun, 4 Jul 2021 20:32:17 +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: fcb6328b-ddd6-45c8-a28f-924650eebce4 X-Archives-Hash: 4d56eccee2727aa53403db80616097d6 commit: 760917faa46ea5b40249680cbfd4031760ff0414 Author: David Seifert gentoo org> AuthorDate: Sun Jul 4 20:32:01 2021 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Jul 4 20:32:01 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=760917fa media-sound/scream: sync live ebuild Signed-off-by: David Seifert gentoo.org> media-sound/scream/scream-9999.ebuild | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/media-sound/scream/scream-9999.ebuild b/media-sound/scream/scream-9999.ebuild index 1c3ead36e4d..019926a23b7 100644 --- a/media-sound/scream/scream-9999.ebuild +++ b/media-sound/scream/scream-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 2020 Gentoo Authors +# Copyright 2020-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -7,8 +7,9 @@ inherit cmake DESCRIPTION="Plays sound received from network or from a QEMU Windows VM" HOMEPAGE="https://github.com/duncanthrax/scream" +S="${WORKDIR}/${P}/Receivers/unix" -if [[ ${PV} == *9999* ]]; then +if [[ ${PV} == *9999 ]]; then inherit git-r3 EGIT_REPO_URI="https://github.com/duncanthrax/scream.git" else @@ -16,24 +17,25 @@ else KEYWORDS="~amd64" fi -S="${WORKDIR}/${P}/Receivers/unix" - LICENSE="Ms-PL" SLOT="0" -IUSE="alsa pulseaudio" +IUSE="alsa jack pulseaudio" RDEPEND=" alsa? ( media-libs/alsa-lib ) - pulseaudio? ( media-sound/pulseaudio ) -" + jack? ( + media-libs/soxr + virtual/jack + ) + pulseaudio? ( media-sound/pulseaudio )" DEPEND="${RDEPEND}" BDEPEND="virtual/pkgconfig" src_configure() { local mycmakeargs=( -DALSA_ENABLE=$(usex alsa) + -DJACK_ENABLE=$(usex jack) -DPULSEAUDIO_ENABLE=$(usex pulseaudio) ) - cmake_src_configure }