blob: 01e75d6f6c6447527b267be56673cebdc5afff7e (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/kdebindings-csharp/kdebindings-csharp-4.6.2.ebuild,v 1.4 2011/06/01 18:06:05 ranger Exp $
EAPI=3
KMNAME="kdebindings"
KMMODULE="csharp"
WEBKIT_REQUIRED="optional"
inherit kde4-meta mono
DESCRIPTION="C# bindings for KDE and Qt"
KEYWORDS="amd64 ppc x86"
IUSE="akonadi debug +phonon plasma qimageblitz qscintilla semantic-desktop"
DEPEND="
dev-lang/mono
$(add_kdebase_dep smoke 'akonadi?,phonon?,qimageblitz?,qscintilla?,semantic-desktop?,webkit?')
semantic-desktop? ( >=dev-libs/soprano-2.4.64[clucene] )
"
RDEPEND="${DEPEND}"
KMEXTRACTONLY="
smoke/
"
pkg_setup() {
kde4-meta_pkg_setup
if use plasma && ! use webkit; then
eerror
eerror "The plasma USE flag requires the webkit USE flag to be enabled."
eerror
eerror "Please enable webkit or disable plasma."
die "plasma requires webkit"
fi
}
src_prepare() {
kde4-meta_src_prepare
sed -i "/add_subdirectory( examples )/ s:^:#:" csharp/plasma/CMakeLists.txt
}
src_configure() {
mycmakeargs=(
$(cmake-utils_use_disable akonadi)
$(cmake-utils_use_disable phonon)
$(cmake-utils_use_disable plasma)
$(cmake-utils_use_disable qimageblitz QImageBlitz)
$(cmake-utils_use_disable qscintilla QScintilla)
$(cmake-utils_use_disable semantic-desktop Nepomuk)
$(cmake-utils_use_disable semantic-desktop Soprano)
$(cmake-utils_use_disable webkit QtWebKit)
)
kde4-meta_src_configure
}
|