blob: 6e1c7ffa6129ac49f322a349173857fb1a9bdea1 (
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="2"
inherit git cmake-utils
DESCRIPTION="Tool that creates dependency graph of C++ code"
HOMEPAGE="http://gitorious.org/cpp-dependency-analyzer/"
EGIT_REPO_URI="git://gitorious.org/${PN}/${PN}.git"
LICENSE="LGPL-3"
KEYWORDS=""
SLOT="0"
IUSE="debug"
RDEPEND="
media-gfx/graphviz
x11-libs/qt-core:4
x11-libs/qt-gui:4
x11-libs/qt-svg:4
"
DEPEND="${RDEPEND}
>=dev-libs/boost-1.35.0
"
src_unpack() {
git_src_unpack
}
|