forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
kde-frameworks/kdesu: 6.2.0 version bump
Signed-off-by: Andreas Sturmlechner <[email protected]>
- Loading branch information
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
DIST kdesu-5.115.0.tar.xz 56812 BLAKE2B d37c45d6ff7d0fa1f2dcc452c7ce3bfb1daca057d691c33b91c08aff1eb53686d99a089ba901cc3e001c7f019bb23bde999d66e5b449252c831de8cad8aab682 SHA512 097a4ad960fd6f47600a70b6117f8f3517bc627c3bd32616b95acedddb75d49cf44ac07ecd7fad139ac366463741e3358b96e0d2b1af7ab6fc46e009bdbf3e3d | ||
DIST kdesu-6.1.0.tar.xz 56920 BLAKE2B e5ee0ca91d3fa6669ea1c2f3a85be70812b6756517d6e8ca2f0c13175a785a9dfb7e6b71ef8f470829c783d5ddcb16676bca87dfa0f3a039fa5bbb0c93b53433 SHA512 6ea4e6ae3f648915e8ad63d605e56fd504954138e8c663e0d41fbe1a2bd9da738f5b9024e1be631171fb38b1af7eff1af2db11cd5418a8602862a81a2da5ed2d | ||
DIST kdesu-6.2.0.tar.xz 56652 BLAKE2B cef28c4af0c1767a895121b5606f5624cc00c9b234635d21334e59c6139260e1b2e8994020129e0c664d4293eea3ccf21f64175290cfd35978ca02e5e1a64c6f SHA512 0856d28c7e853edbaf450229499982cef3793558309db1de72092a2422cfd273325a089e9e00ea2a5ad941b15b4d992ea2feb5c495c0884d4d512c19f602c756 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Copyright 1999-2024 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
ECM_TEST="true" | ||
PVCUT=$(ver_cut 1-2) | ||
inherit ecm frameworks.kde.org | ||
|
||
DESCRIPTION="Framework to handle super user actions" | ||
|
||
LICENSE="LGPL-2" | ||
KEYWORDS="~amd64" | ||
IUSE="X" | ||
|
||
RDEPEND=" | ||
=kde-frameworks/kconfig-${PVCUT}*:6 | ||
=kde-frameworks/kcoreaddons-${PVCUT}*:6 | ||
=kde-frameworks/ki18n-${PVCUT}*:6 | ||
=kde-frameworks/kpty-${PVCUT}*:6 | ||
X? ( x11-libs/libX11 ) | ||
" | ||
DEPEND="${RDEPEND} | ||
X? ( x11-base/xorg-proto ) | ||
" | ||
|
||
src_configure() { | ||
local mycmakeargs=( | ||
$(cmake_use_find_package X X11) | ||
) | ||
|
||
ecm_src_configure | ||
} |