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 E4FDB138334 for ; Sat, 11 Aug 2018 10:10:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 02C25E0815; Sat, 11 Aug 2018 10:10:21 +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 BEEE2E0815 for ; Sat, 11 Aug 2018 10:10: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 906ED335C9F for ; Sat, 11 Aug 2018 10:10:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 956173A5 for ; Sat, 11 Aug 2018 10:10:15 +0000 (UTC) From: "Jonathan Scruggs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jonathan Scruggs" Message-ID: <1533982154.d95fabfd24396ba4788a7977af935e52abeca9eb.dracwyrm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/pavucontrol-qt/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/pavucontrol-qt/Manifest media-sound/pavucontrol-qt/metadata.xml media-sound/pavucontrol-qt/pavucontrol-qt-0.4.0.ebuild X-VCS-Directories: media-sound/pavucontrol-qt/ X-VCS-Committer: dracwyrm X-VCS-Committer-Name: Jonathan Scruggs X-VCS-Revision: d95fabfd24396ba4788a7977af935e52abeca9eb X-VCS-Branch: master Date: Sat, 11 Aug 2018 10:10:15 +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-Archives-Salt: aeb3a9f5-4435-4952-aa22-03733918f532 X-Archives-Hash: 9e8a1438f77e10e0b561504e49b80509 commit: d95fabfd24396ba4788a7977af935e52abeca9eb Author: Jonathan Scruggs gmail com> AuthorDate: Wed Jul 11 15:06:15 2018 +0000 Commit: Jonathan Scruggs gentoo org> CommitDate: Sat Aug 11 10:09:14 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d95fabfd media-sound/pavucontrol-qt: new package A Pulseaudio mixer in Qt (port of pavucontrol) Closes: https://bugs.gentoo.org/596170 media-sound/pavucontrol-qt/Manifest | 1 + media-sound/pavucontrol-qt/metadata.xml | 11 ++++++ .../pavucontrol-qt/pavucontrol-qt-0.4.0.ebuild | 40 ++++++++++++++++++++++ 3 files changed, 52 insertions(+) diff --git a/media-sound/pavucontrol-qt/Manifest b/media-sound/pavucontrol-qt/Manifest new file mode 100644 index 00000000000..6b17bfe3169 --- /dev/null +++ b/media-sound/pavucontrol-qt/Manifest @@ -0,0 +1 @@ +DIST pavucontrol-qt-0.4.0.tar.xz 34916 BLAKE2B f42f560b125e292ae3a8ab76e2020d1a899019e8ed40d6f4d3e90fe1baa0cc044093310fe9ac11c6529f9cc1abc41d475aa2d445de8f19e6f89ed456525aa7d9 SHA512 62e0c909c98acc4605556ba63981e4599d37b592b99ee16301dc0ba154f3066708a31562e158c042b3530c11603cc43de930080770f027bb998cbb6f79f0f3fb diff --git a/media-sound/pavucontrol-qt/metadata.xml b/media-sound/pavucontrol-qt/metadata.xml new file mode 100644 index 00000000000..7df4f7a839d --- /dev/null +++ b/media-sound/pavucontrol-qt/metadata.xml @@ -0,0 +1,11 @@ + + + + + lxqt@gentoo.org + LXQt + + + lxqt/pavucontrol-qt + + diff --git a/media-sound/pavucontrol-qt/pavucontrol-qt-0.4.0.ebuild b/media-sound/pavucontrol-qt/pavucontrol-qt-0.4.0.ebuild new file mode 100644 index 00000000000..656d182603a --- /dev/null +++ b/media-sound/pavucontrol-qt/pavucontrol-qt-0.4.0.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit cmake-utils + +DESCRIPTION="A Pulseaudio mixer in Qt (port of pavucontrol)" +HOMEPAGE="https://lxqt.org/" + +if [[ ${PV} = *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git" +else + SRC_URI="https://downloads.lxqt.org/downloads/${PN}/${PV}/${P}.tar.xz" + KEYWORDS="~amd64 ~arm ~arm64 ~x86" +fi + +LICENSE="GPL-2+" +SLOT="0" + +RDEPEND=" + dev-libs/glib:2 + dev-qt/qtcore:5 + dev-qt/qtdbus:5 + dev-qt/qtwidgets:5 + media-sound/pulseaudio[glib] +" +DEPEND="${RDEPEND} + >=dev-util/lxqt-build-tools-0.5.0 + dev-qt/linguist-tools:5 + virtual/pkgconfig +" + +src_configure() { + local mycmakeargs=( + -DPULL_TRANSLATIONS=OFF + ) + cmake-utils_src_configure +}