diff options
author | Alexey Shvetsov <alexxy@gentoo.org> | 2009-06-04 13:56:48 +0000 |
---|---|---|
committer | Alexey Shvetsov <alexxy@gentoo.org> | 2009-06-04 13:56:48 +0000 |
commit | 5a13ccd21de0abab5282365a5070ba7229e9b098 (patch) | |
tree | 0793ec455fa77a823da333d1bf4faf15ecd53b10 /kde-base/pykde4 | |
parent | Fix variable test. Thx to salnx per forums for the fix. (diff) | |
download | historical-5a13ccd21de0abab5282365a5070ba7229e9b098.tar.gz historical-5a13ccd21de0abab5282365a5070ba7229e9b098.tar.bz2 historical-5a13ccd21de0abab5282365a5070ba7229e9b098.zip |
Version bump KDE 4.2.4
Package-Manager: portage-2.2_rc33/cvs/Linux x86_64
RepoMan-Options: --force
Diffstat (limited to 'kde-base/pykde4')
-rw-r--r-- | kde-base/pykde4/ChangeLog | 7 | ||||
-rw-r--r-- | kde-base/pykde4/pykde4-4.2.4.ebuild | 77 |
2 files changed, 83 insertions, 1 deletions
diff --git a/kde-base/pykde4/ChangeLog b/kde-base/pykde4/ChangeLog index bcd21443ce24..c942a9f4d029 100644 --- a/kde-base/pykde4/ChangeLog +++ b/kde-base/pykde4/ChangeLog @@ -1,6 +1,11 @@ # 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.17 2009/06/03 18:26:29 alexxy Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/pykde4/ChangeLog,v 1.18 2009/06/04 13:51:47 alexxy Exp $ + +*pykde4-4.2.4 (04 Jun 2009) + + 04 Jun 2009; Alexey Shvetsov <alexxy@gentoo.org> +pykde4-4.2.4.ebuild: + Version bump 03 Jun 2009; Alexey Shvetsov <alexxy@gentoo.org> -pykde4-4.2.2.ebuild, -pykde4-4.2.2-r1.ebuild: diff --git a/kde-base/pykde4/pykde4-4.2.4.ebuild b/kde-base/pykde4/pykde4-4.2.4.ebuild new file mode 100644 index 000000000000..27618e4c8cca --- /dev/null +++ b/kde-base/pykde4/pykde4-4.2.4.ebuild @@ -0,0 +1,77 @@ +# 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.2.4.ebuild,v 1.1 2009/06/04 13:51:47 alexxy Exp $ + +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 semantic-desktop" + +DEPEND=" + >=dev-python/PyQt4-4.4.4-r1[webkit] + >=kde-base/kdelibs-${PV}:${SLOT}[kdeprefix=,opengl,semantic-desktop?] + akonadi? ( >=kde-base/kdepimlibs-${PV}:${SLOT}[kdeprefix=] ) +" +# blocker added due to compatibility issues and error during compile time +RDEPEND="${DEPEND} + !dev-python/pykde + !>=dev-python/PyQt4-4.5_pre1 +" + +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 Akonadi) + $(cmake-utils_use_with akonadi KdepimLibs)" + + 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 "/usr/$(get_libdir)/python${PYVER}"/site-packages/PyKDE4 + # Do not optimize examples + python_mod_compile "${PREFIX}"/share/apps/"${PN}"/*.py + + 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 \ + "/usr/$(get_libdir)/python${PYVER}"/site-packages/PyKDE4 \ + "${PREFIX}"/share/apps/"${PN}" +} |