summaryrefslogtreecommitdiff
path: root/kde-base/pykde4/pykde4-4.3.0.ebuild
diff options
context:
space:
mode:
authorMaciej Mrozowski (reavertm) <reavertm@poczta.fm>2009-08-04 15:24:09 +0200
committerMaciej Mrozowski (reavertm) <reavertm@poczta.fm>2009-08-04 15:24:09 +0200
commit406b64cbfa4a8e6de35455c83dd2e12d7141338a (patch)
tree75a1daeeb8ebebbbcb36a6dab83c533de1dd7db9 /kde-base/pykde4/pykde4-4.3.0.ebuild
parenteb07ef4e4d2791811c14790495c3bd1c7fcfc461 (diff)
downloadkde-406b64cbfa4a8e6de35455c83dd2e12d7141338a.tar.gz
kde-406b64cbfa4a8e6de35455c83dd2e12d7141338a.tar.bz2
kde-406b64cbfa4a8e6de35455c83dd2e12d7141338a.zip
[kde-base] Dropped 4.3.0. Please readd individual packages to overlay before pushing any 4.3 fixes in tree.
Diffstat (limited to 'kde-base/pykde4/pykde4-4.3.0.ebuild')
-rw-r--r--kde-base/pykde4/pykde4-4.3.0.ebuild80
1 files changed, 0 insertions, 80 deletions
diff --git a/kde-base/pykde4/pykde4-4.3.0.ebuild b/kde-base/pykde4/pykde4-4.3.0.ebuild
deleted file mode 100644
index 1558011e97f..00000000000
--- a/kde-base/pykde4/pykde4-4.3.0.ebuild
+++ /dev/null
@@ -1,80 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="2"
-
-KMNAME="kdebindings"
-KMMODULE="python/${PN}"
-OPENGL_REQUIRED="always"
-inherit python kde4-meta
-
-DESCRIPTION="Python bindings for KDE4"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~x86"
-IUSE="akonadi debug examples policykit semantic-desktop"
-
-COMMON_DEPEND="
- >=dev-python/PyQt4-4.5[dbus,sql,svg,webkit,X]
- >=kde-base/kdelibs-${PV}:${SLOT}[kdeprefix=,opengl,semantic-desktop?]
- akonadi? ( >=kde-base/kdepimlibs-${PV}:${SLOT}[kdeprefix=] )
- policykit? ( >=sys-auth/policykit-qt-0.9.2 )
-"
-DEPEND="${COMMON_DEPEND}"
-# blocker added due to compatibility issues and error during compile time
-RDEPEND="${COMMON_DEPEND}
- !dev-python/pykde
-"
-
-#PATCHES=(
-# "${FILESDIR}/${PN}-installation-fix.patch"
-#)
-
-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
-
- python_version
- rm -f \
- "${D}/usr/$(get_libdir)/python${PYVER}"/site-packages/PyKDE4/*.py[co] \
- "${D}${PREFIX}"/share/apps/"${PN}"/*.py[co]
-}
-
-pkg_postinst() {
- kde4-meta_pkg_postinst
-
- python_mod_optimize ${ROOT}"usr/$(get_libdir)/python${PYVER}"/site-packages/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 ${ROOT}"usr/$(get_libdir)/python${PYVER}"/site-packages/PyKDE4
-}