blob: 54f2ec479fb8f5bedc85025aecd4a8e054e141b1 (
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
31
32
33
34
35
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
KMNAME="kdereview"
KMNOMODULE="true"
inherit kde4-meta
DESCRIPTION="Filelight creates an interactive map of concentric, segmented rings that help visualise disk usage."
HOMEPAGE="http://kde-apps.org/content/show.php/filelight?content=99561"
LICENSE="GPL-2"
KEYWORDS=""
SLOT="4"
IUSE="debug +handbook"
RDEPEND="
!kde-misc/filelight:0
x11-apps/xdpyinfo
"
pkg_setup() {
KMEXTRA="${PN}"
use handbook && KMEXTRA+=" doc/${PN}"
kde4-meta_pkg_setup
}
src_install() {
kde4-meta_src_install
dodoc ${PN}/{AUTHORS,ChangeLog,NEWS,README,TODO} || die
}
|