gentoo-ebuilds/media-sound/qpwgraph/qpwgraph-9999.ebuild
Adel KARA SLIMANE b4285e5d5b
media-sound/qpwgraph: drop 'trayicon' useflag
Enable it unconditionally, can be disabled in the app's menu

Signed-off-by: Adel KARA SLIMANE <adel.ks@zegrapher.com>
Closes: https://github.com/gentoo/gentoo/pull/38691
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
2024-10-01 20:27:02 +02:00

44 lines
874 B
Bash

# Copyright 2024 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
}