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/kwindowsystem: 5.107.0 version bump
Signed-off-by: Andreas Sturmlechner <[email protected]>
- Loading branch information
Showing
2 changed files
with
44 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 kwindowsystem-5.104.0.tar.xz 2435600 BLAKE2B 6fb3c68b117eae0355b34b07e5e0ab1794c15eaa24dbefcacbeb84f19e13eff373784eac01e1582d0b279d56dacbc0810b8ea016596f02d21e75715614ee9a08 SHA512 445aac5fb69473173fa1b7ca1b94c5bfec881cbd1ff2c078dfaeb088d88c201aebd28aab3b9bb3d6ef350c065531758799becfab76af4318775cd7d27e3c0096 | ||
DIST kwindowsystem-5.106.0.tar.xz 2406636 BLAKE2B a4ef5bb001285ef35888c9a1fc5d1b421464134abc531827731325dc8f94bb34b010ad04a8b396078374ab0823e861af0f58c08a3637b6524d7a7b897e97b934 SHA512 d41f0e9d7c82bf2870ad05501744d4b02f527e3114eba46826a390c5ab242f66ee7d7e69657b2fc3dd23c051eed16baacd849874ca676969e6bd11fe9b15eb50 | ||
DIST kwindowsystem-5.107.0.tar.xz 2406376 BLAKE2B 607f50b68d3407589e3a6c5b21716ddd079af7c1d55ec2eea80363a7d799bc7fc9766b1cb26580c66e581198bd04a13a3ad3944000f93e3a407ac93826faca60 SHA512 c35214320c4f10dffaaa76d620fd65fc3cd8a171723ef1d2a05564f49abea217977db93022120eb709dc370f8deb05139e446417b172c130a19b12d97abd602a |
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,43 @@ | ||
# Copyright 1999-2023 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
QTMIN=5.15.9 | ||
inherit ecm frameworks.kde.org | ||
|
||
DESCRIPTION="Framework providing access to properties and features of the window manager" | ||
|
||
LICENSE="|| ( LGPL-2.1 LGPL-3 ) MIT" | ||
KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86" | ||
IUSE="wayland X" | ||
|
||
RESTRICT="test" | ||
|
||
RDEPEND=" | ||
>=dev-qt/qtgui-${QTMIN}:5 | ||
X? ( | ||
>=dev-qt/qtx11extras-${QTMIN}:5 | ||
x11-libs/libX11 | ||
x11-libs/libXfixes | ||
x11-libs/libxcb | ||
x11-libs/xcb-util-keysyms | ||
) | ||
" | ||
DEPEND="${RDEPEND} | ||
X? ( x11-base/xorg-proto ) | ||
test? ( >=dev-qt/qtwidgets-${QTMIN}:5 ) | ||
" | ||
BDEPEND=">=dev-qt/linguist-tools-${QTMIN}:5" | ||
PDEPEND="wayland? ( >=kde-plasma/kwayland-integration-5.25.5-r1:5 )" | ||
|
||
DOCS=( docs/README.kstartupinfo ) | ||
|
||
src_configure() { | ||
local mycmakeargs=( | ||
-DKWINDOWSYSTEM_NO_WIDGETS=ON | ||
$(cmake_use_find_package X X11) | ||
) | ||
|
||
ecm_src_configure | ||
} |