blob: 4b39886d9fd6467b9b30b389d5cc082c39f63dfc (
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-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="3"
KDE_HANDBOOK="optional"
KMNAME="kdegraphics"
inherit kde4-meta
DESCRIPTION="KDE Screenshot Utility"
KEYWORDS=""
IUSE="debug kipi"
DEPEND="
kipi? ( $(add_kdebase_dep libkipi) )
"
RDEPEND="${DEPEND}"
src_configure() {
mycmakeargs=(
$(cmake-utils_use_with kipi)
)
kde4-meta_src_configure
}
|