summaryrefslogtreecommitdiff
path: root/kde-base/pykde4/pykde4-4.4.5.ebuild
diff options
context:
space:
mode:
authorMaciej Mrozowski <reavertm@gentoo.org>2010-07-17 01:15:12 +0200
committerMaciej Mrozowski <reavertm@gentoo.org>2010-07-17 01:15:12 +0200
commite3d065e1a48f22e3882e4d95f1ca9f45ad928c2c (patch)
tree9d1cf25e0399b34a213c4ac18df4b247bb1a0075 /kde-base/pykde4/pykde4-4.4.5.ebuild
parent6981e91d7cc4e39b4afb11a94f1b331377eab6b5 (diff)
downloadkde-e3d065e1a48f22e3882e4d95f1ca9f45ad928c2c.tar.gz
kde-e3d065e1a48f22e3882e4d95f1ca9f45ad928c2c.tar.bz2
kde-e3d065e1a48f22e3882e4d95f1ca9f45ad928c2c.zip
[kde-base/pykde4-4.4.5] Remove, it's in tree
Diffstat (limited to 'kde-base/pykde4/pykde4-4.4.5.ebuild')
-rw-r--r--kde-base/pykde4/pykde4-4.4.5.ebuild86
1 files changed, 0 insertions, 86 deletions
diff --git a/kde-base/pykde4/pykde4-4.4.5.ebuild b/kde-base/pykde4/pykde4-4.4.5.ebuild
deleted file mode 100644
index 0b5024a0a45..00000000000
--- a/kde-base/pykde4/pykde4-4.4.5.ebuild
+++ /dev/null
@@ -1,86 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="3"
-
-KMNAME="kdebindings"
-KMMODULE="python/pykde4"
-OPENGL_REQUIRED="always"
-PYTHON_USE_WITH="threads"
-RESTRICT_PYTHON_ABIS="2.4"
-inherit python kde4-meta
-
-DESCRIPTION="Python bindings for KDE4"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
-IUSE="debug doc examples semantic-desktop"
-
-# blocker added due to compatibility issues and error during compile time
-DEPEND="
- !dev-python/pykde
- $(add_kdebase_dep kdelibs 'opengl,semantic-desktop?')
- semantic-desktop? ( $(add_kdebase_dep kdepimlibs 'semantic-desktop') )
- aqua? ( >=dev-python/PyQt4-4.7[dbus,sql,svg,webkit,aqua] )
- !aqua? ( >=dev-python/PyQt4-4.7[dbus,sql,svg,webkit,X] )
-"
-RDEPEND="${DEPEND}"
-
-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
-
- # See bug 328135
- epatch "${FILESDIR}"/${PN}-4.4.92-build-fix-sip.patch
-
- # See bug 322351
- use arm && epatch "${FILESDIR}/${PN}-4.4.4-arm-sip.patch"
-}
-
-src_configure() {
- mycmakeargs=(
- -DWITH_QScintilla=OFF
- -DWITH_PolkitQt=OFF
- $(cmake-utils_use_with semantic-desktop Soprano)
- $(cmake-utils_use_with semantic-desktop Nepomuk)
- $(cmake-utils_use_with semantic-desktop KdepimLibs)
- )
-
- kde4-meta_src_configure
-}
-
-src_install() {
- use doc && HTML_DOCS=("${S}/python/pykde4/docs/html/")
-
- kde4-meta_src_install
-
- python_convert_shebangs -r $(python_get_version) "${ED}"
- python_clean_installation_image
-}
-
-pkg_postinst() {
- kde4-meta_pkg_postinst
-
- python_mod_optimize PyKDE4 PyQt4
-
- if use examples; then
- echo
- elog "PyKDE4 examples have been installed to"
- elog "${EKDEDIR}/share/apps/${PN}/examples"
- echo
- fi
-}
-
-pkg_postrm() {
- kde4-meta_pkg_postrm
-
- python_mod_cleanup PyKDE4 PyQt4
-}