blob: 263f5c2aa70c591eb6d40cdf9ccb8564533e4a51 (
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-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=4
KDE_SCM="git"
inherit kde4-base
DESCRIPTION="Tool visualising massif data."
HOMEPAGE="http://kde-apps.org/content/show.php/Massif+Visualizer?content=122409"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="graphviz"
DEPEND="graphviz? ( media-gfx/kgraphviewer )"
RDEPEND="${DEPEND}"
src_configure() {
local mycmakeargs=(
$(cmake-utils_use_with graphviz KGraphViewer)
)
kde4-base_src_configure
}
|