blob: 1ebb3cfcbba3065faf421e19a78fb6fa56ecfeec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{6,7,8} )
PVCUT=$(ver_cut 1-3)
inherit ecm kde.org python-any-r1
DESCRIPTION="Official GTK+ port of Plasma's Breeze widget style"
HOMEPAGE="https://cgit.kde.org/breeze-gtk.git"
LICENSE="LGPL-2.1+"
SLOT="5"
KEYWORDS="~amd64 ~ppc64"
IUSE=""
BDEPEND="${PYTHON_DEPS}
dev-lang/sassc
$(python_gen_any_dep 'dev-python/pycairo[${PYTHON_USEDEP}]')
>=kde-plasma/breeze-${PVCUT}:5
"
python_check_deps() {
has_version "dev-python/pycairo[${PYTHON_USEDEP}]"
}
pkg_setup() {
python-any-r1_pkg_setup
ecm_pkg_setup
}
src_prepare() {
ecm_src_prepare
if has_version "<dev-util/cmake-3.16_rc1"; then
eapply "${FILESDIR}"/${PN}-5.16.5-cmake-pre-3.16.patch
fi
}
src_configure() {
local mycmakeargs=(
-DPython3_EXECUTABLE="${PYTHON}"
)
if has_version "<dev-util/cmake-3.16_rc1"; then
mycmakeargs=( -DPYTHON_EXECUTABLE="${PYTHON}" )
fi
ecm_src_configure
}
|