blob: 4685294b6226f9aece2c4fbd224aa4c0678dcdcb (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/libkdepim/libkdepim-4.3.5.ebuild,v 1.4 2010/06/21 15:53:36 scarabeus Exp $
EAPI="2"
KMNAME="kdepim"
inherit kde4-meta
DESCRIPTION="Common library for KDE PIM apps"
KEYWORDS="~alpha amd64 ~ia64 ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux"
IUSE="debug"
# @Since >4.2.65 kode removed from kdepim
add_blocker kode
KMEXTRACTONLY="
kaddressbook/org.kde.KAddressbook.Core.xml
korganizer/korgac/org.kde.korganizer.KOrgac.xml
"
KMSAVELIBS="true"
src_install() {
kde4-meta_src_install
# install additional generated headers that are needed by other packages that
# are derived from kdepim. e.g. kmail.
pushd "${CMAKE_BUILD_DIR}/libkdepim/" 2>/dev/null || die "pushd libkdepim failed"
insinto "${PREFIX}/include"
doins ui_addresspicker.h ui_categoryselectdialog_base.h || die "Failed to install extra header files."
popd 2>/dev/null
}
|