kde-plasma/plasma-login-sessions: drop 6.2.4

Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
This commit is contained in:
Andreas Sturmlechner
2025-01-27 19:08:09 +01:00
parent 92e014a940
commit 1128718cb4
2 changed files with 0 additions and 45 deletions

View File

@@ -1,2 +1 @@
DIST plasma-workspace-6.2.4.tar.xz 19140364 BLAKE2B 5249e1889ddb540b000287e425d297827f7e23e54b236d47b91ab6f6c0a48afb61adb43a1851a7803dad795f0d767ddf30fac9ce282f650718a8bbc8608fff05 SHA512 f260e00c5e2de0485e53f98956578d1b47810b60f913c8d10678edb4d6d79935300b0017514cd79c492eeac903d2ee3fd6ba20a77cd27e0ef12811d4361edc1a
DIST plasma-workspace-6.2.5.tar.xz 19136676 BLAKE2B 38d211247cfeee10df6f4fff5cbef91d9a7daa760033e29743e1c78577baf876c8c416d0a84e45efb5d6bab007965b3cd8c6d1feec7749bd4dd8cb24df4a71ee SHA512 228d183c9561cbf3d5630582b80c687868eaf420310010bd417de0e9f0ababaa4767805c1ce84f4eb3539ea32bfe6c2849b70d7ddd133f6095ab71f94f854dea

View File

@@ -1,44 +0,0 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
ECM_HANDBOOK="false"
ECM_I18N="false"
KDE_ORG_NAME="${PN/login-sessions/workspace}"
inherit ecm-common plasma.kde.org
DESCRIPTION="KDE Plasma login sessions"
LICENSE="GPL-2" # TODO: CHECK
SLOT="6"
KEYWORDS="amd64 arm64 ~ppc64 ~riscv ~x86"
IUSE="+wayland X"
REQUIRED_USE="|| ( wayland X )"
RDEPEND="!<kde-plasma/plasma-workspace-6.2.1"
ecm-common_inject_heredoc() {
cat >> CMakeLists.txt <<- _EOF_ || die
add_subdirectory(login-sessions)
_EOF_
}
src_configure() {
local mycmakeargs=(
-DKDE_INSTALL_LIBEXECDIR=/usr/libexec # temp. workaround, bug 941502
-DPLASMA_X11_DEFAULT_SESSION=$(usex !wayland)
)
ecm-common_src_configure
}
src_install() {
cmake_src_install
if ! use wayland; then
rm -rv "${ED}"/usr/share/wayland-sessions || die
fi
if ! use X; then
rm -rv "${ED}"/usr/share/xsessions || die
fi
}