mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-10 15:19:09 +02:00
47 lines
1.2 KiB
Bash
47 lines
1.2 KiB
Bash
# Copyright 2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
KDE_ORG_NAME="kwin"
|
|
KFMIN=6.10.0
|
|
QTMIN=6.8.1
|
|
inherit ecm plasma.kde.org
|
|
|
|
DESCRIPTION="Themeable window decoration for KWin"
|
|
HOMEPAGE="https://invent.kde.org/plasma/aurorae"
|
|
SRC_URI+=" https://dev.gentoo.org/~asturm/distfiles/${P}-decouple-from-libkwin.patch.xz"
|
|
CMAKE_USE_DIR="${S}/src/plugins/kdecorations/aurorae/"
|
|
|
|
LICENSE="GPL-2+ MIT"
|
|
SLOT="6"
|
|
KEYWORDS="amd64 arm64 ~loong ~ppc64 ~riscv ~x86"
|
|
|
|
DEPEND="
|
|
>=dev-qt/qtbase-${QTMIN}:6[dbus,gui,opengl,widgets]
|
|
>=dev-qt/qtdeclarative-${QTMIN}:6
|
|
>=dev-qt/qttools-${QTMIN}:6[widgets]
|
|
>=kde-frameworks/kcmutils-${KFMIN}:6
|
|
>=kde-frameworks/kcolorscheme-${KFMIN}:6
|
|
>=kde-frameworks/kconfig-${KFMIN}:6
|
|
>=kde-frameworks/kcoreaddons-${KFMIN}:6
|
|
>=kde-frameworks/ki18n-${KFMIN}:6
|
|
>=kde-frameworks/knewstuff-${KFMIN}:6
|
|
>=kde-frameworks/kpackage-${KFMIN}:6
|
|
>=kde-frameworks/ksvg-${KFMIN}:6
|
|
>=kde-frameworks/kwindowsystem-${KFMIN}:6
|
|
>=kde-plasma/kdecoration-${PV}:6
|
|
"
|
|
RDEPEND="${DEPEND}
|
|
>=kde-frameworks/kirigami-${KFMIN}:6
|
|
!<kde-plasma/kwin-6.3.2
|
|
"
|
|
|
|
DOCS=( README )
|
|
|
|
PATCHES=( "${WORKDIR}/${P}-decouple-from-libkwin.patch" )
|
|
|
|
src_configure() {
|
|
local mycmakeargs=( -DPROJECT_VERSION=${PV} )
|
|
ecm_src_configure
|
|
}
|