summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey Shvetsov <alexxy@gentoo.org>2009-11-09 00:22:54 +0000
committerAlexey Shvetsov <alexxy@gentoo.org>2009-11-09 00:22:54 +0000
commit0a3d661cba54577e22ee7861b8ed4aa0373761a0 (patch)
treeae726ab6139f99ddd064a1a020c7e925ebaaa72e /kde-base/pykde4
parentFix updating of menus with GTK+ 2.18, bug 292007. (diff)
downloadhistorical-0a3d661cba54577e22ee7861b8ed4aa0373761a0.tar.gz
historical-0a3d661cba54577e22ee7861b8ed4aa0373761a0.tar.bz2
historical-0a3d661cba54577e22ee7861b8ed4aa0373761a0.zip
Drop KDE 4.3.2
Package-Manager: portage-2.2_rc49/cvs/Linux x86_64
Diffstat (limited to 'kde-base/pykde4')
-rw-r--r--kde-base/pykde4/ChangeLog5
-rw-r--r--kde-base/pykde4/pykde4-4.3.2.ebuild82
2 files changed, 4 insertions, 83 deletions
diff --git a/kde-base/pykde4/ChangeLog b/kde-base/pykde4/ChangeLog
index 0b6b79ec0598..4841bae77399 100644
--- a/kde-base/pykde4/ChangeLog
+++ b/kde-base/pykde4/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for kde-base/pykde4
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/pykde4/ChangeLog,v 1.34 2009/11/08 22:04:48 alexxy Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/pykde4/ChangeLog,v 1.35 2009/11/09 00:19:14 alexxy Exp $
+
+ 08 Nov 2009; Alexey Shvetsov <alexxy@gentoo.org> -pykde4-4.3.2.ebuild:
+ Drop KDE 4.3.2
08 Nov 2009; Alexey Shvetsov <alexxy@gentoo.org> -pykde4-4.2.4-r3.ebuild:
Drop KDE 4.2.4
diff --git a/kde-base/pykde4/pykde4-4.3.2.ebuild b/kde-base/pykde4/pykde4-4.3.2.ebuild
deleted file mode 100644
index 0333a9fc5bb8..000000000000
--- a/kde-base/pykde4/pykde4-4.3.2.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/pykde4/pykde4-4.3.2.ebuild,v 1.1 2009/10/06 20:38:58 alexxy 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 ~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
-"
-
-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
-
- 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
-}