| 1 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/kde-base/kdepim-wizards/kdepim-wizards-4.4.11.1.ebuild,v 1.6 2011/08/06 17:14:37 dilfridge Exp $
|
| 4 |
|
| 5 |
EAPI=4
|
| 6 |
|
| 7 |
KMNAME="kdepim"
|
| 8 |
KMMODULE="wizards"
|
| 9 |
inherit kde4-meta
|
| 10 |
|
| 11 |
DESCRIPTION="KDE PIM wizards"
|
| 12 |
IUSE="debug"
|
| 13 |
KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux"
|
| 14 |
|
| 15 |
DEPEND="
|
| 16 |
$(add_kdebase_dep kdepimlibs '' 4.6)
|
| 17 |
$(add_kdebase_dep kdepim-kresources)
|
| 18 |
$(add_kdebase_dep libkdepim)
|
| 19 |
"
|
| 20 |
RDEPEND="${DEPEND}"
|
| 21 |
|
| 22 |
KMEXTRACTONLY="
|
| 23 |
kmail/
|
| 24 |
knotes/
|
| 25 |
kresources/groupwise/
|
| 26 |
kresources/kolab/
|
| 27 |
kresources/slox/
|
| 28 |
"
|
| 29 |
|
| 30 |
PATCHES=( "${FILESDIR}/${P}-underlinking.patch" )
|
| 31 |
|
| 32 |
src_prepare() {
|
| 33 |
ln -s "${EKDEDIR}"/include/kdepim-kresources/{kabcsloxprefs.h,kcalsloxprefs.h} \
|
| 34 |
kresources/slox/ \
|
| 35 |
|| die "Failed to link extra_headers."
|
| 36 |
ln -s "${EKDEDIR}"/include/kdepim-kresources/{kabc_groupwiseprefs,kcal_groupwiseprefsbase}.h \
|
| 37 |
kresources/groupwise/ \
|
| 38 |
|| die "Failed to link extra_headers."
|
| 39 |
|
| 40 |
kde4-meta_src_prepare
|
| 41 |
}
|