blob: fde3b7cf32ae47182ef06db8eed71774a506f267 (
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/pykde4/pykde4-4.3.3-r1.ebuild,v 1.6 2010/06/08 16:40:03 arfrever Exp $
EAPI="2"
KMNAME="kdebindings"
KMMODULE="python/${PN}"
OPENGL_REQUIRED="always"
PYTHON_USE_WITH="threads"
inherit python kde4-meta
DESCRIPTION="Python bindings for KDE4"
KEYWORDS="~alpha amd64 hppa ~ia64 ppc ppc64 ~sparc x86"
IUSE="akonadi debug examples policykit semantic-desktop"
# blocker added due to compatibility issues and error during compile time
DEPEND="
!dev-python/pykde
>=dev-python/PyQt4-4.5[dbus,sql,svg,webkit,X]
$(add_kdebase_dep kdelibs 'opengl,semantic-desktop?')
akonadi? ( $(add_kdebase_dep kdepimlibs) )
policykit? ( >=sys-auth/policykit-qt-0.9.2 )
"
RDEPEND="${DEPEND}"
PATCHES=(
"${FILESDIR}"/${PN}-4.3.5-fix-pykdeuic4.patch
)
pkg_setup() {
python_pkg_setup
kde4-meta_pkg_setup
}
src_prepare() {
kde4-meta_src_prepare
if ! use examples; then
sed -e '/^ADD_SUBDIRECTORY(examples)/s/^/# DISABLED /' -i python/${PN}/CMakeLists.txt \
|| die "Failed to disable examples"
fi
}
src_configure() {
mycmakeargs="${mycmakeargs}
-DWITH_QScintilla=OFF
$(cmake-utils_use_with semantic-desktop Soprano)
$(cmake-utils_use_with semantic-desktop Nepomuk)
$(cmake-utils_use_with akonadi)
$(cmake-utils_use_with akonadi KdepimLibs)
$(cmake-utils_use_with policykit PolkitQt)
"
kde4-meta_src_configure
}
src_install() {
kde4-meta_src_install
rm -f \
"${D}$(python_get_sitedir)"/PyKDE4/*.py[co] \
"${D}${PREFIX}"/share/apps/"${PN}"/*.py[co]
}
pkg_postinst() {
kde4-meta_pkg_postinst
python_mod_optimize "$(python_get_sitedir)"/PyKDE4
if use examples; then
echo
elog "PyKDE4 examples have been installed to"
elog "${PREFIX}/share/apps/${PN}/examples"
echo
fi
}
pkg_postrm() {
kde4-meta_pkg_postrm
python_mod_cleanup "$(python_get_sitedir)"/PyKDE4
}
|