blob: 2dcd1c3aac1bd27f0c5bed0a376f1a3d96939cc5 (
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
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DISTUTILS_SINGLE_IMPL="true"
PYTHON_COMPAT=( python3_{6,7} )
inherit cmake kde.org distutils-r1
DESCRIPTION="Framework for building KDE API documentation in a standard format and style"
LICENSE="BSD-2"
KEYWORDS="amd64 ~arm arm64 x86"
IUSE=""
RDEPEND="
app-doc/doxygen
$(python_gen_cond_dep '
dev-python/jinja[${PYTHON_MULTI_USEDEP}]
dev-python/pyyaml[${PYTHON_MULTI_USEDEP}]
')
media-gfx/graphviz[python,${PYTHON_SINGLE_USEDEP}]
"
pkg_setup() {
python-single-r1_pkg_setup
}
|