blob: 82e71c77340c1ad15a7945b596096052a33870a6 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/kaddressbook/kaddressbook-3.5.10.ebuild,v 1.1 2008/09/13 23:57:19 carlo Exp $
KMNAME=kdepim
EAPI="1"
inherit kde-meta eutils
SRC_URI="${SRC_URI}
mirror://gentoo/kdepim-3.5-patchset-05.tar.bz2"
DESCRIPTION="The KDE Address Book"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="gnokii"
DEPEND=">=kde-base/libkdepim-${PV}:${SLOT}
>=kde-base/libkcal-${PV}:${SLOT}
>=kde-base/certmanager-${PV}:${SLOT}
>=kde-base/libkdenetwork-${PV}:${SLOT}
>=kde-base/kontact-${PV}:${SLOT}
gnokii? ( app-mobilephone/gnokii )"
RDEPEND="${DEPEND}"
KMCOPYLIB="
libkdepim libkdepim
libkcal libkcal
libkleopatra certmanager/lib/
libqgpgme libkdenetwork/qgpgme/
libkpinterfaces kontact/interfaces/"
KMEXTRACTONLY="
libkdepim/
libkdenetwork/
libkcal/
libemailfunctions/
certmanager/
kontact/interfaces/
akregator
kmail/kmailIface.h"
KMCOMPILEONLY="
libkcal/libical/src/libical/
libkcal/libical/src/libicalss/
akregator/src/librss"
# We add them here because they are standard plugins and programs related to kaddressbook but not a dep of any other kdepim program, so they will be lost if noone install them
KMEXTRA="
kabc/
kfile-plugins/vcf
kontact/plugins/kaddressbook"
src_compile() {
myconf="$(use_with gnokii) --enable-newdistrlists"
export DO_NOT_COMPILE="libical" && kde-meta_src_compile myconf configure
# generate "ical.h"
cd "${S}/libkcal/libical/src/libical" && make ical.h
# generate "icalss.h"
cd "${S}/libkcal/libical/src/libicalss" && make icalss.h
kde-meta_src_compile "make"
}
|