summaryrefslogtreecommitdiff
path: root/kde-apps/kmix
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2025-11-04 19:53:12 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2025-11-04 20:47:40 +0100
commit57fbb10c1c129407474742ecd542e19518b65c4c (patch)
tree9578cc03af8912789078a6ac03aeaf0f799b5808 /kde-apps/kmix
parentf59cccf08f76ceb6e4cddefa5af3e1e6c2c34640 (diff)
downloadkde-57fbb10c1c129407474742ecd542e19518b65c4c.tar.gz
kde-57fbb10c1c129407474742ecd542e19518b65c4c.tar.bz2
kde-57fbb10c1c129407474742ecd542e19518b65c4c.zip
kde-apps/kmix: 25.08.3 version bump
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-apps/kmix')
-rw-r--r--kde-apps/kmix/Manifest1
-rw-r--r--kde-apps/kmix/kmix-25.08.3.ebuild78
2 files changed, 79 insertions, 0 deletions
diff --git a/kde-apps/kmix/Manifest b/kde-apps/kmix/Manifest
new file mode 100644
index 00000000000..17ba2b22922
--- /dev/null
+++ b/kde-apps/kmix/Manifest
@@ -0,0 +1 @@
+DIST kmix-25.08.3.tar.xz 1178692 BLAKE2B c223fa98634435124b9326b12e07cca88e2eb26280b2363e9d51fdb776724778c70a0028bee2a6b917cac526a21a778c755c4476d35a4106b5d2f54a1c848026 SHA512 00b49bf1d5ed1cd66c872bee116e5a0b473a2c41f9d986a2a3beb849fbae24cc8cf2738009025ceca5c3c726a7f30159edbf1bc7615b3086849cc0bac39815a4
diff --git a/kde-apps/kmix/kmix-25.08.3.ebuild b/kde-apps/kmix/kmix-25.08.3.ebuild
new file mode 100644
index 00000000000..49b6ec3f1bb
--- /dev/null
+++ b/kde-apps/kmix/kmix-25.08.3.ebuild
@@ -0,0 +1,78 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+ECM_HANDBOOK="forceoptional"
+ECM_TEST="false"
+KFMIN=6.16.0
+QTMIN=6.9.1
+inherit ecm gear.kde.org xdg
+
+DESCRIPTION="Volume control gui based on KDE Frameworks"
+HOMEPAGE="https://apps.kde.org/kmix/"
+
+LICENSE="GPL-2" # TODO: CHECK
+SLOT="6"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
+IUSE="alsa pulseaudio"
+
+# kde-frameworks/kwindowsystem[X]: Unconditional use of KX11Extras
+DEPEND="
+ >=dev-qt/qtbase-${QTMIN}:6[dbus,gui,widgets,xml]
+ >=kde-frameworks/kconfig-${KFMIN}:6
+ >=kde-frameworks/kconfigwidgets-${KFMIN}:6
+ >=kde-frameworks/kcoreaddons-${KFMIN}:6
+ >=kde-frameworks/kcrash-${KFMIN}:6
+ >=kde-frameworks/kdbusaddons-${KFMIN}:6
+ >=kde-frameworks/kglobalaccel-${KFMIN}:6
+ >=kde-frameworks/ki18n-${KFMIN}:6
+ >=kde-frameworks/knotifications-${KFMIN}:6
+ >=kde-frameworks/kstatusnotifieritem-${KFMIN}:6
+ >=kde-frameworks/kwidgetsaddons-${KFMIN}:6
+ >=kde-frameworks/kwindowsystem-${KFMIN}:6[X]
+ >=kde-frameworks/kxmlgui-${KFMIN}:6
+ >=kde-frameworks/solid-${KFMIN}:6
+ alsa? ( >=media-libs/alsa-lib-1.0.14a )
+ pulseaudio? (
+ media-libs/libcanberra
+ media-libs/libpulse
+ )
+"
+RDEPEND="${DEPEND}"
+
+PATCHES=(
+ # TODO: upstream
+ "${FILESDIR}/${PN}-23.04.2-autostart_disable.patch"
+ # Pending: https://invent.kde.org/multimedia/kmix/-/merge_requests/29
+ "${FILESDIR}/${PN}-24.12.2-revert-kcm_pulseaudio-dep.patch"
+ # Regressed in: https://invent.kde.org/multimedia/kmix/-/merge_requests/32
+ "${FILESDIR}/${PN}-25.03.90-revert-sndio-automagic.patch"
+)
+
+src_configure() {
+ local mycmakeargs=(
+ # XXX: sndio is maybe automagic since 5075cc9502b2768471fd917671fd98bfe5b877cc
+ $(cmake_use_find_package alsa ALSA)
+ $(cmake_use_find_package pulseaudio Canberra)
+ $(cmake_use_find_package pulseaudio PulseAudio)
+ )
+
+ ecm_src_configure
+}
+
+pkg_postinst() {
+ if use pulseaudio && has_version kde-plasma/plasma-pa; then
+ elog "In KDE Plasma, kde-plasma/plasma-pa is the default audio volume handler,"
+ elog "therefore, autostart by default was disabled for KMix."
+ elog
+ elog "Should you prefer to still use kde-apps/kmix instead, do the following:"
+ elog " - In system tray, right click on [Show hidden items]"
+ elog " - Select [Configure System Tray]"
+ elog " - In [Entries], search for [Audio Volume] and set it to [Disabled]"
+ elog
+ fi
+ elog "KMix will be shown as [Volume Control] after manually starting it once"
+ elog "and will be autostarted after configuring such in KMix startup settings."
+ xdg_pkg_postinst
+}