blob: 24e6a5a716a2a1faf5ca57606424ad3e97c9c182 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
KDE_DEBUG="false"
KDE_DOXYGEN="false"
KDE_NLS="false"
KDE_TEST="false"
PYTHON_COMPAT=( python{2_7,3_2,3_3} )
inherit kde5 distutils-r1
DESCRIPTION="Framework for building KDE API documentation in a standard format and style"
LICENSE="BSD-2"
KEYWORDS=" ~amd64"
IUSE=""
RDEPEND="
app-doc/doxygen
dev-python/pystache[${PYTHON_USEDEP}]
dev-python/pyyaml[${PYTHON_USEDEP}]
media-gfx/graphviz[python]
"
# graphviz is currently python-single-r1 so we can't enforce a USE dep yet
# and things will break if you try to generate a dependency diagram with a
# different python version
|