summaryrefslogtreecommitdiff
path: root/kde-apps/kmix
diff options
context:
space:
mode:
Diffstat (limited to 'kde-apps/kmix')
-rw-r--r--kde-apps/kmix/Manifest1
-rw-r--r--kde-apps/kmix/kmix-24.12.2.ebuild70
2 files changed, 0 insertions, 71 deletions
diff --git a/kde-apps/kmix/Manifest b/kde-apps/kmix/Manifest
deleted file mode 100644
index 79b66d92c67..00000000000
--- a/kde-apps/kmix/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST kmix-24.12.2.tar.xz 1167820 BLAKE2B 2a9a01fee22f0990b4f541cac292b01c813dcafc8ba281bb4cc8542ac6625a484e652f85a655be1b49493233272481ef8d8bf5eb444299c72ae682529f08ddd2 SHA512 c84550640e4ed2ff621780b8e50ba40ca4f31b4837552905f0a1e7792672997978b298142df092c3112d513652719086a9be424499730bcd5e038495708b1ffc
diff --git a/kde-apps/kmix/kmix-24.12.2.ebuild b/kde-apps/kmix/kmix-24.12.2.ebuild
deleted file mode 100644
index 7eeb00ced8f..00000000000
--- a/kde-apps/kmix/kmix-24.12.2.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# 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.7.0
-QTMIN=6.7.2
-inherit ecm gear.kde.org
-
-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=( "${FILESDIR}/${PN}-23.04.2-autostart_disable.patch" ) # TODO: upstream
-
-src_configure() {
- local mycmakeargs=(
- $(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."
- ecm_pkg_postinst
-}