blob: 167ec841a05eafb070e2333368c3093bfb0e649d (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/kontact/kontact-3.5.9.ebuild,v 1.4 2008/05/12 20:01:29 ranger Exp $
KMNAME=kdepim
EAPI="1"
inherit kde-meta eutils
SRC_URI="${SRC_URI}
mirror://gentoo/kdepim-3.5-patchset-04.tar.bz2"
DESCRIPTION="KDE personal information manager"
KEYWORDS="alpha ~amd64 ~hppa ia64 ppc ~ppc64 sparc ~x86 ~x86-fbsd"
IUSE=""
DEPEND=">=kde-base/libkdepim-${PV}:${SLOT}
>=kde-base/libkpimidentities-${PV}:${SLOT}"
RDEPEND="${DEPEND}"
KMCOPYLIB="libkdepim libkdepim/
libkpimidentities.la libkpimidentities/"
KMEXTRACTONLY="libkdepim/
libkpimidentities/
kontact/plugins/"
KMEXTRA="
kontact/plugins/newsticker/
kontact/plugins/summary/
kontact/plugins/weather/"
# We remove some plugins that are related to external kdepim programs,
# because they also need libs from korganizer, kpilot etc... so to emerge
# kontact we'd also need ALL the other programs, thus, it's better to emerge
# kontact's plugins in the ebuild of its program.
src_unpack() {
kde-meta_src_unpack
# Fixing the desktop file.
sed -i -e "/Categories=/s:$:;:" "${S}"/kontact/src/kontactdcop.desktop \
|| die "sed to fix the desktop file failed."
}
pkg_postinst() {
kde_pkg_postinst
elog "If you're using x11-misc/basket, please re-emerge it now to avoid crashes with ${PN}."
elog "cf. https://bugs.gentoo.org/show_bug.cgi?id=174872 for details."
}
|