diff options
| author | Alexey Shvetsov <alexxy@gentoo.org> | 2013-05-05 12:43:02 +0400 |
|---|---|---|
| committer | Alexey Shvetsov <alexxy@gentoo.org> | 2013-05-05 12:43:02 +0400 |
| commit | c7e9fb1cbc160c06170dd19cca81deb5597769b9 (patch) | |
| tree | 56d210a5ad6672c7a321c1754ad28bdc702f2a21 /kde-base/pykde4 | |
| parent | 5d1181af53083f6bb699b3ceb52c556d0746044c (diff) | |
| download | kde-c7e9fb1cbc160c06170dd19cca81deb5597769b9.tar.gz kde-c7e9fb1cbc160c06170dd19cca81deb5597769b9.tar.bz2 kde-c7e9fb1cbc160c06170dd19cca81deb5597769b9.zip | |
[kde-base] Add KDE SC 4.10.3
Signed-off-by: Alexey Shvetsov <alexxy@gentoo.org>
Diffstat (limited to 'kde-base/pykde4')
| -rw-r--r-- | kde-base/pykde4/Manifest | 1 | ||||
| -rw-r--r-- | kde-base/pykde4/pykde4-4.10.3.ebuild | 161 |
2 files changed, 162 insertions, 0 deletions
diff --git a/kde-base/pykde4/Manifest b/kde-base/pykde4/Manifest new file mode 100644 index 00000000000..5efdacd7df4 --- /dev/null +++ b/kde-base/pykde4/Manifest @@ -0,0 +1 @@ +DIST pykde4-4.10.3.tar.xz 2044300 SHA256 aad22ba8573d0759cb115926e0ee4aa86fb725549492f26f9b3c76d277ec04ff SHA512 62e6448912277087b81ac86978e9965ebee7ab92560f69d63ed4b55121df72b4b164a01f77cad5f5b4fb5c91a8540e6cb3479686a6e8d622962ecd6ff9923d7e WHIRLPOOL 61941fbf8760b3e8aa2c244c9cdac408b861a0d22785dd2af8292bb1be1dc356587965af5fc4d5debd724af390873e4668f10e69a795108c5d79b7db10f994fc diff --git a/kde-base/pykde4/pykde4-4.10.3.ebuild b/kde-base/pykde4/pykde4-4.10.3.ebuild new file mode 100644 index 00000000000..3def01c0400 --- /dev/null +++ b/kde-base/pykde4/pykde4-4.10.3.ebuild @@ -0,0 +1,161 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 +PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} ) +PYTHON_REQ_USE="threads" +OPENGL_REQUIRED="always" + +inherit python-r1 portability kde4-base multilib + +DESCRIPTION="Python bindings for KDE4" +KEYWORDS=" ~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux" +IUSE="debug doc examples semantic-desktop test" +REQUIRED_USE="test? ( semantic-desktop )" + +# blocker added due to compatibility issues and error during compile time +RDEPEND=" + ${PYTHON_DEPS} + >=dev-python/sip-4.14:=[${PYTHON_USEDEP}] + + $(add_kdebase_dep kdelibs 'opengl,semantic-desktop?') + semantic-desktop? ( + $(add_kdebase_dep kdepimlibs 'semantic-desktop') + >=dev-libs/soprano-2.9.0 + ) + aqua? ( >=dev-python/PyQt4-4.9.5[${PYTHON_USEDEP},dbus,declarative,script(+),sql,svg,webkit,aqua] ) + !aqua? ( >=dev-python/PyQt4-4.9.5[${PYTHON_USEDEP},dbus,declarative,script(+),sql,svg,webkit,X] ) +" +DEPEND="${RDEPEND} + sys-devel/libtool +" + +pkg_setup() { + kde4-base_pkg_setup + + have_python2=false + + scan_python_versions() { + if [[ ${EPYTHON} == python2.* ]]; then + have_python2=true + fi + } + python_foreach_impl scan_python_versions + + if ! ${have_python2}; then + ewarn "You do not have a Python 2 version selected." + ewarn "kpythonpluginfactory will not be built" + fi +} + +src_prepare() { + kde4-base_src_prepare + + if ! use examples; then + sed -e '/^ADD_SUBDIRECTORY(examples)/s/^/# DISABLED /' -i CMakeLists.txt \ + || die "Failed to disable examples" + fi + + # See bug 322351 + use arm && epatch "${FILESDIR}/${PN}-4.10.1-arm-sip.patch" + + sed -e 's/kpythonpluginfactory /kpython${PYTHON_SHORT_VERSION}pluginfactory /g' \ + -i kpythonpluginfactory/CMakeLists.txt || die + + if ${have_python2}; then + mkdir -p "${WORKDIR}/wrapper" || die "failed to copy wrapper" + cp "${FILESDIR}/kpythonpluginfactorywrapper.c-r1" "${WORKDIR}/wrapper/kpythonpluginfactorywrapper.c" || die "failed to copy wrapper" + fi + python_copy_sources + +} + +src_configure() { + configuration() { + local mycmakeargs=( + -DWITH_PolkitQt=OFF + -DWITH_QScintilla=OFF + $(cmake-utils_use_with semantic-desktop Soprano) + $(cmake-utils_use_with semantic-desktop Nepomuk) + $(cmake-utils_use_with semantic-desktop KdepimLibs) + -DPYTHON_EXECUTABLE=${PYTHON} + -DPYKDEUIC4_ALTINSTALL=TRUE + ) + local CMAKE_BUILD_DIR=${S}_build-${PYTHON_ABI} + kde4-base_src_configure + } + + python_foreach_impl run_in_build_dir configuration +} + +echo_and_run() { + echo "$@" + "$@" +} + +src_compile() { + compilation() { + local CMAKE_BUILD_DIR=${S}_build-${PYTHON_ABI} + kde4-base_src_compile + } + python_foreach_impl run_in_build_dir compilation + + if ${have_python2}; then + pushd "${WORKDIR}/wrapper" > /dev/null + echo_and_run libtool --tag=CC --mode=compile $(tc-getCC) \ + -shared \ + ${CFLAGS} ${CPPFLAGS} \ + -DEPREFIX="\"${EPREFIX}\"" \ + -DPLUGIN_DIR="\"/usr/$(get_libdir)/kde4\"" -c \ + -o kpythonpluginfactorywrapper.lo \ + kpythonpluginfactorywrapper.c + echo_and_run libtool --tag=CC --mode=link $(tc-getCC) \ + -shared -module -avoid-version \ + ${CFLAGS} ${LDFLAGS} \ + -o kpythonpluginfactory.la \ + -rpath "${EPREFIX}/usr/$(get_libdir)/kde4" \ + kpythonpluginfactorywrapper.lo \ + $(dlopen_lib) + popd > /dev/null + fi +} + +src_test() { + python_foreach_impl run_in_build_dir kde4-base_src_test +} + +src_install() { + installation() { + emake DESTDIR="${D}" install + + mv "${ED}"/usr/bin/pykdeuic4-{${EPYTHON/python/},${EPYTHON}} || die + python_optimize + } + python_foreach_impl run_in_build_dir installation + + dosym python-exec /usr/bin/pykdeuic4 + + # As we don't call the eclass's src_install, we have to install the docs manually + DOCS=("${S}"/{AUTHORS,NEWS,README}) + use doc && HTML_DOCS=("${S}/docs/html/") + base_src_install_docs + + if ${have_python2}; then + pushd "${WORKDIR}/wrapper" > /dev/null + echo_and_run libtool --mode=install install kpythonpluginfactory.la "${ED}/usr/$(get_libdir)/kde4/kpythonpluginfactory.la" + rm "${ED}/usr/$(get_libdir)/kde4/kpythonpluginfactory.la" + popd > /dev/null + fi +} + +pkg_postinst() { + kde4-base_pkg_postinst + + if use examples; then + echo + elog "PyKDE4 examples have been installed to" + elog "${EPREFIX}/usr/share/apps/${PN}/examples" + echo + fi +} |
