blob: 34887106647ec038a888463e81cc241571bedd6c (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=3
EGIT_REPO_URI="git://anongit.kde.org/massif-visualizer"
inherit git kde4-base
DESCRIPTION="LE"
HOMEPAGE="Fu"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="graphviz"
DEPEND="graphviz? ( media-gfx/kgraphviewer )"
RDEPEND="${DEPEND}"
src_unpack() {
git_src_unpack
}
src_configure() {
local mycmakeargs=(
$(cmake-utils_use_with graphviz KGraphViewer)
)
kde4-base_src_configure
}
|