54 lines
1.3 KiB
Bash
54 lines
1.3 KiB
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
KFMIN=5.86.0
|
|
PVCUT=$(ver_cut 1-3)
|
|
QTMIN=5.15.2
|
|
inherit ecm kde.org
|
|
|
|
DESCRIPTION="Oxygen visual style for the Plasma desktop"
|
|
HOMEPAGE="https://invent.kde.org/plasma/oxygen"
|
|
|
|
LICENSE="GPL-2" # TODO: CHECK
|
|
SLOT="5"
|
|
KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
|
|
IUSE="wayland"
|
|
|
|
COMMON_DEPEND="
|
|
>=dev-qt/qtdbus-${QTMIN}:5
|
|
>=dev-qt/qtdeclarative-${QTMIN}:5
|
|
>=dev-qt/qtgui-${QTMIN}:5
|
|
>=dev-qt/qtwidgets-${QTMIN}:5
|
|
>=dev-qt/qtx11extras-${QTMIN}:5
|
|
>=kde-frameworks/frameworkintegration-${KFMIN}:5
|
|
>=kde-frameworks/kcmutils-${KFMIN}:5
|
|
>=kde-frameworks/kcompletion-${KFMIN}:5
|
|
>=kde-frameworks/kconfig-${KFMIN}:5
|
|
>=kde-frameworks/kconfigwidgets-${KFMIN}:5
|
|
>=kde-frameworks/kcoreaddons-${KFMIN}:5
|
|
>=kde-frameworks/kguiaddons-${KFMIN}:5
|
|
>=kde-frameworks/ki18n-${KFMIN}:5
|
|
>=kde-frameworks/kwidgetsaddons-${KFMIN}:5
|
|
>=kde-frameworks/kwindowsystem-${KFMIN}:5
|
|
>=kde-plasma/kdecoration-${PVCUT}:5
|
|
x11-libs/libxcb
|
|
wayland? ( >=kde-frameworks/kwayland-${KFMIN}:5 )
|
|
"
|
|
DEPEND="${COMMON_DEPEND}
|
|
>=kde-frameworks/kservice-${KFMIN}:5
|
|
"
|
|
RDEPEND="${COMMON_DEPEND}
|
|
!<kde-plasma/plasma-desktop-5.16.80
|
|
"
|
|
PDEPEND="
|
|
>=kde-plasma/kde-cli-tools-${PVCUT}:5
|
|
"
|
|
|
|
src_configure() {
|
|
local mycmakeargs=(
|
|
$(cmake_use_find_package wayland KF5Wayland)
|
|
)
|
|
ecm_src_configure
|
|
}
|