commit: 5857d87751b8f46abda82d7b24ce8d897b4865d5 Author: Adel KARA SLIMANE <adel.ks <AT> zegrapher <DOT> com> AuthorDate: Thu Sep 4 21:00:00 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Fri Oct 3 01:09:40 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5857d877
media-sound/qpwgraph: add 0.9.5 Signed-off-by: Adel KARA SLIMANE <adel.ks <AT> zegrapher.com> Part-of: https://github.com/gentoo/gentoo/pull/43664 Signed-off-by: Sam James <sam <AT> gentoo.org> media-sound/qpwgraph/Manifest | 1 + media-sound/qpwgraph/qpwgraph-0.9.5.ebuild | 43 ++++++++++++++++++++++++++++++ 2 files changed, 44 insertions(+) diff --git a/media-sound/qpwgraph/Manifest b/media-sound/qpwgraph/Manifest index 87fd2683b5c1..55de0bbe0765 100644 --- a/media-sound/qpwgraph/Manifest +++ b/media-sound/qpwgraph/Manifest @@ -1 +1,2 @@ DIST qpwgraph-v0.8.1.tar.bz2 236954 BLAKE2B 5b9da5edaf8f2b02b78c38f3d2619499a87450d420e784fde05da96d8b0ce6a6595381030c4b909f7c55b1a7c845c5a2c34f5f0edcfc98c3808ec626b4731fc7 SHA512 1050940ff259ecab10dfee2df546001d4846e1c9e79e64dff66cc65615697b94ae46c4e3edef0f9dac0f061178770b832c3838b1645fc0b36c3ad4df20014daf +DIST qpwgraph-v0.9.5.tar.bz2 237807 BLAKE2B 047f56678e1cb5808c75760f4d089661f4c91f99eb9c163a5f581670ad066f197046aee7f18eda69a079f44fad6956e99a00a25184d8014db86afde102c01b5c SHA512 fa7e843ba973a7ed3c0eb3851b3bac5b1f871bdb00f8f813a07e7ed285405024999dfdcc5e402104187818d94d339e5e3bb18f3f16a1544839fe80c4eed56020 diff --git a/media-sound/qpwgraph/qpwgraph-0.9.5.ebuild b/media-sound/qpwgraph/qpwgraph-0.9.5.ebuild new file mode 100644 index 000000000000..3828ef0c1a28 --- /dev/null +++ b/media-sound/qpwgraph/qpwgraph-0.9.5.ebuild @@ -0,0 +1,43 @@ +# Copyright 2024-2025 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" + +BDEPEND=" + dev-qt/qttools:6[linguist] +" +DEPEND=" + dev-qt/qtbase:6[gui,network,widgets,xml] + dev-qt/qtsvg:6 + media-video/pipewire:= + alsa? ( media-libs/alsa-lib ) +" +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + -DCONFIG_ALSA_MIDI=$(usex alsa) + -DCONFIG_SYSTEM_TRAY=1 + -DCONFIG_WAYLAND=1 + -DCONFIG_QT6=1 + ) + cmake_src_configure +}
