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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 11F27158020 for ; Sat, 24 Dec 2022 06:53:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 85324E088F; Sat, 24 Dec 2022 06:53:20 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 66E5EE088F for ; Sat, 24 Dec 2022 06:53:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 51CD7340DE2 for ; Sat, 24 Dec 2022 06:53:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A8081779 for ; Sat, 24 Dec 2022 06:53:17 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1671864772.85cb3fe0e491e5ee632e5657d5f978d735120639.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/pavucontrol/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/pavucontrol/pavucontrol-5.0-r2.ebuild X-VCS-Directories: media-sound/pavucontrol/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 85cb3fe0e491e5ee632e5657d5f978d735120639 X-VCS-Branch: master Date: Sat, 24 Dec 2022 06:53: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: aa9e1c1d-aadf-497c-822b-a5dcc0580ce6 X-Archives-Hash: 268d5a8cec6e6f80235edc654c821aa7 commit: 85cb3fe0e491e5ee632e5657d5f978d735120639 Author: Igor V. Kovalenko gmail com> AuthorDate: Fri Dec 23 17:39:03 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat Dec 24 06:52:52 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85cb3fe0 media-sound/pavucontrol: Switch pulseaudio dependency to media-libs/libpulse Signed-off-by: Igor V. Kovalenko gmail.com> Closes: https://github.com/gentoo/gentoo/pull/28775 Signed-off-by: Sam James gentoo.org> media-sound/pavucontrol/pavucontrol-5.0-r2.ebuild | 38 +++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/media-sound/pavucontrol/pavucontrol-5.0-r2.ebuild b/media-sound/pavucontrol/pavucontrol-5.0-r2.ebuild new file mode 100644 index 000000000000..1fd1195e589d --- /dev/null +++ b/media-sound/pavucontrol/pavucontrol-5.0-r2.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Pulseaudio Volume Control, GTK based mixer for Pulseaudio" +HOMEPAGE="https://freedesktop.org/software/pulseaudio/pavucontrol/" +SRC_URI="https://freedesktop.org/software/pulseaudio/${PN}/${P}.tar.xz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" +IUSE="nls" + +RDEPEND=" + dev-libs/json-glib + >=dev-cpp/gtkmm-3.22:3.0[X] + >=dev-libs/libsigc++-2.2:2 + >=media-libs/libcanberra-0.16[gtk3] + >=media-libs/libpulse-15.0[glib] + virtual/freedesktop-icon-theme +" +DEPEND="${RDEPEND}" +BDEPEND=" + virtual/pkgconfig + nls? ( + dev-util/intltool + sys-devel/gettext + ) +" + +src_configure() { + local myeconfargs=( + --disable-lynx + $(use_enable nls) + ) + econf "${myeconfargs[@]}" +}