diff options
author | Adel KARA SLIMANE <adel.ks@zegrapher.com> | 2023-10-07 18:51:11 +0200 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-10-14 06:44:06 +0100 |
commit | c4be086cdf1d898d9e09ffb4601fd3ff54759676 (patch) | |
tree | 1772223555673694cebcc094a847e7fe5fa39393 /media-sound/qpwgraph | |
parent | games-emulation/pcsx2: update live (diff) | |
download | gentoo-c4be086cdf1d898d9e09ffb4601fd3ff54759676.tar.gz gentoo-c4be086cdf1d898d9e09ffb4601fd3ff54759676.tar.bz2 gentoo-c4be086cdf1d898d9e09ffb4601fd3ff54759676.zip |
media-sound/qpwgraph: add 0.5.3
Signed-off-by: Adel KARA SLIMANE <adel.ks@zegrapher.com>
Closes: https://github.com/gentoo/gentoo/pull/33233
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-sound/qpwgraph')
-rw-r--r-- | media-sound/qpwgraph/Manifest | 1 | ||||
-rw-r--r-- | media-sound/qpwgraph/qpwgraph-0.5.3.ebuild | 55 |
2 files changed, 56 insertions, 0 deletions
diff --git a/media-sound/qpwgraph/Manifest b/media-sound/qpwgraph/Manifest index f9967e1c05d2..484299d511cc 100644 --- a/media-sound/qpwgraph/Manifest +++ b/media-sound/qpwgraph/Manifest @@ -1 +1,2 @@ DIST qpwgraph-v0.5.2.tar.bz2 454542 BLAKE2B aaeb947d77e5e1c41195a994193cd3de10fc8dfa798b36f90577f9a8b4037176b5465c55123ab7308691279b5c6c6c20d426cfa1ccf0836b35873b30a6f135df SHA512 0ab06d72fd3a7045f6a4f0895e9bdedeaedf97a9d948f78b763f1a46ef2444f6cf9574f02c25197249ba22bf7189b86cf4fe59dc5d091627788e3e45126809fa +DIST qpwgraph-v0.5.3.tar.bz2 235908 BLAKE2B c304231d872c469c5154a5e2a13c9c28ab1d4c877cd62da671ff1588360ae30606cbe70388748e87193a83047ce6c328e573f3886bcd7cff6151357634695b17 SHA512 c4ff0a575eaaf71b69c192a2533275e61be3611b95dd6c48ed7109ddad36d97493a76babe1215863e4391acb9efaf480fc3b905dd357239869c9c1ae4c7d3e2f diff --git a/media-sound/qpwgraph/qpwgraph-0.5.3.ebuild b/media-sound/qpwgraph/qpwgraph-0.5.3.ebuild new file mode 100644 index 000000000000..744009584113 --- /dev/null +++ b/media-sound/qpwgraph/qpwgraph-0.5.3.ebuild @@ -0,0 +1,55 @@ +# Copyright 2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake xdg + +DESCRIPTION="PipeWire Graph Qt GUI Interface" +HOMEPAGE="https://gitlab.freedesktop.org/rncbc/qpwgraph" + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://gitlab.freedesktop.org/rncbc/qpwgraph" +else + SRC_URI="https://gitlab.freedesktop.org/rncbc/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.bz2" + S="${WORKDIR}/${PN}-v${PV}" + KEYWORDS="~amd64" +fi + +LICENSE="GPL-2" +SLOT="0" + +IUSE="alsa trayicon qt6 wayland" + +BDEPEND=" + !qt6? ( dev-qt/linguist-tools:5 ) + qt6? ( dev-qt/qttools:6[linguist] ) +" +DEPEND=" + media-video/pipewire:= + alsa? ( media-libs/alsa-lib ) + !qt6? ( + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtnetwork:5 + dev-qt/qtsvg:5 + dev-qt/qtwidgets:5 + dev-qt/qtxml:5 + ) + qt6? ( + dev-qt/qtbase:6[gui,widgets,xml,network] + dev-qt/qtsvg:6 + ) +" +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + -DCONFIG_ALSA_MIDI=$(usex alsa) + -DCONFIG_SYSTEM_TRAY=$(usex trayicon) + -DCONFIG_WAYLAND=$(usex wayland) + -DCONFIG_QT6=$(usex qt6) + ) + cmake_src_configure +} |