blob: 928846a85c5e5382ee2e920b0644d679a5143015 (
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
66
67
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/korganizer/korganizer-3.5.10.ebuild,v 1.7 2009/07/12 13:42:29 armin76 Exp $
EAPI="1"
KMNAME=kdepim
inherit kde-meta eutils
DESCRIPTION="A Personal Organizer for KDE."
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
IUSE=""
DEPEND=">=kde-base/libkpimexchange-${PV}:${SLOT}
>=kde-base/libkdepim-${PV}:${SLOT}
>=kde-base/libkcal-${PV}:${SLOT}
>=kde-base/libkpimidentities-${PV}:${SLOT}
>=kde-apps/ktnef-${PV}:${SLOT}
>=kde-apps/kdepim-kresources-${PV}:${SLOT}
>=kde-apps/kontact-${PV}:${SLOT}
>=kde-base/libkholidays-${PV}:${SLOT}
>=kde-base/libkmime-${PV}:${SLOT}"
RDEPEND="${DEPEND}"
KMCOPYLIB="
libkdepim libkdepim
libkpimexchange libkpimexchange
libkcal libkcal
libkpimidentities libkpimidentities
libktnef ktnef/lib
libkcal_resourceremote kresources/remote
libkpinterfaces kontact/interfaces
libkholidays libkholidays
libkmime libkmime"
KMEXTRACTONLY="
libkpimexchange/
libkcal/
libkdepim/
libkpimidentities/
libkmime/
mimelib/
ktnef/
certmanager/lib/
kresources/remote/
kmail/kmailIface.h
kontact/interfaces/
libkholidays"
KMCOMPILEONLY="
libemailfunctions"
# They seems to be used only by korganizer
KMEXTRA="
kgantt
kdgantt
kontact/plugins/korganizer/" # We add here the kontact's plugin instead of compiling it with kontact because it needs a lot of korganizer deps.
PATCHES=( "${FILESDIR}/${KMNAME}_${PN}-r893152.patch" )
src_unpack() {
kde-meta_src_unpack
# Broken test
sed -e "s:check_PROGRAMS = testalarmdlg:check_PROGRAMS =:" -i korganizer/korgac/Makefile.am || die "sed failed"
}
src_compile() {
filter-flags -fvisibility-inlines-hidden
kde_src_compile
}
|