blob: b78b4e8f9a6052bf46ca8794cfda7e477cbcf076 (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/kaddressbook/kaddressbook-4.3.5-r1.ebuild,v 1.1 2010/03/15 03:39:29 reavertm Exp $
EAPI="2"
KMNAME="kdepim"
inherit kde4-meta
DESCRIPTION="The KDE Address Book"
KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux"
IUSE="debug +handbook gnokii"
DEPEND="
$(add_kdebase_dep libkdepim)
$(add_kdebase_dep libkleo)
gnokii? ( app-mobilephone/gnokii )
"
RDEPEND="${DEPEND}"
KMEXTRA="
plugins/ktexteditor/
"
# xml targets from kmail are being uncommented by kde4-meta.eclass
KMEXTRACTONLY="
kmail/
libkleo/
"
KMLOADLIBS="libkdepim libkleo"
src_prepare() {
kde4-meta_src_prepare
sed -n -e '/qt4_generate_dbus_interface(.*org\.kde\.kmail\.\(kmail\|mailcomposer\)\.xml/p' \
-e '/add_custom_target(kmail_xml /,/)/p' \
-i kmail/CMakeLists.txt || die "uncommenting xml failed"
_change_cmakelists_parent_dirs kmail
}
src_configure() {
mycmakeargs=(
$(cmake-utils_use_with gnokii)
)
kde4-meta_src_configure
}
src_install() {
kde4-meta_src_install
# install additional generated header that is needed by kresources
insinto "${KDEDIR}"/include/${PN}
doins "${CMAKE_BUILD_DIR}"/${PN}/common/kabprefs_base.h || \
die "Failed to install extra header files"
}
pkg_postinst() {
kde4-meta_pkg_postinst
if ! has_version kde-base/kdepim-kresources:${SLOT}; then
echo
elog "For groupware functionality, please install kde-base/kdepim-kresources:${SLOT}"
echo
fi
}
|