blob: 2e76691be08ef4301f9ad72c2c2156c735ade8ac (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="3"
KMNAME="kdepim"
inherit kde4-meta
DESCRIPTION="Personal alarm message, command and email scheduler for KDE"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
IUSE="debug +handbook"
RDEPEND="
$(add_kdebase_dep kdepimlibs 'akonadi')
$(add_kdebase_dep kdepim-common-libs)
media-sound/phonon
"
DEPEND="${RDEPEND}"
KMEXTRACTONLY="
kmail/
"
src_configure() {
mycmakeargs=(
-DBUILD_akonadi=OFF
)
kde4-meta_src_configure
}
|