commit: 43869ba9ff23b91211493bd5e1248db9ee7c947c Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> AuthorDate: Sun Dec 7 13:58:42 2025 +0000 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> CommitDate: Sun Dec 7 13:58:42 2025 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=43869ba9
kde-plasma/kwallet-pam: Set KDE_INSTALL_LIBDIR i./o. CMAKE_INSTALL_LIBDIR Prior to gentoo commit 7bc9e3869c123a5989c118c49f2448dd5959a261, KDEInstallDirs got its value from CMAKE_INSTALL_LIBDIR if set, which was deprecated behavior. ecm.eclass was fixed to tick KDE_INSTALL_* variables instead of relying on cmake.eclass to set up GNUInstallDirs, but kwallet-pam was forgotten. Bug: https://bugs.gentoo.org/967168 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org> kde-plasma/kwallet-pam/kwallet-pam-6.5.49.9999.ebuild | 2 +- kde-plasma/kwallet-pam/kwallet-pam-9999.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/kde-plasma/kwallet-pam/kwallet-pam-6.5.49.9999.ebuild b/kde-plasma/kwallet-pam/kwallet-pam-6.5.49.9999.ebuild index e00ba7e811..31610bc762 100644 --- a/kde-plasma/kwallet-pam/kwallet-pam-6.5.49.9999.ebuild +++ b/kde-plasma/kwallet-pam/kwallet-pam-6.5.49.9999.ebuild @@ -25,7 +25,7 @@ BDEPEND="virtual/pkgconfig" src_configure() { local mycmakeargs=( - -DCMAKE_INSTALL_LIBDIR="/$(get_libdir)" + -DKDE_INSTALL_LIBDIR="/$(get_libdir)" ) ecm_src_configure } diff --git a/kde-plasma/kwallet-pam/kwallet-pam-9999.ebuild b/kde-plasma/kwallet-pam/kwallet-pam-9999.ebuild index bd69f2a80f..1285db5fa4 100644 --- a/kde-plasma/kwallet-pam/kwallet-pam-9999.ebuild +++ b/kde-plasma/kwallet-pam/kwallet-pam-9999.ebuild @@ -25,7 +25,7 @@ BDEPEND="virtual/pkgconfig" src_configure() { local mycmakeargs=( - -DCMAKE_INSTALL_LIBDIR="/$(get_libdir)" + -DKDE_INSTALL_LIBDIR="/$(get_libdir)" ) ecm_src_configure }
