diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-12-31 16:52:34 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-12-31 17:46:11 +0100 |
commit | 31534c74bc85b465e54b2ab2f1ee08fe2802dab2 (patch) | |
tree | 2f211fc999d4bf8d94f75c3d277603541a05890d /net-libs/telepathy-qt | |
parent | app-misc/lcd4linux: remove unused file (diff) | |
download | gentoo-31534c74bc85b465e54b2ab2f1ee08fe2802dab2.tar.gz gentoo-31534c74bc85b465e54b2ab2f1ee08fe2802dab2.tar.bz2 gentoo-31534c74bc85b465e54b2ab2f1ee08fe2802dab2.zip |
net-libs/telepathy-qt: Move out-of-sync live ebuild from kde/qt overlays
Synced with kde overlay changes (python3_8), qt overlay EGIT_REPO_URI,
cmake.eclass port and re-added tests from last release.
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'net-libs/telepathy-qt')
-rw-r--r-- | net-libs/telepathy-qt/telepathy-qt-9999.ebuild | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/net-libs/telepathy-qt/telepathy-qt-9999.ebuild b/net-libs/telepathy-qt/telepathy-qt-9999.ebuild new file mode 100644 index 000000000000..84ab23609aac --- /dev/null +++ b/net-libs/telepathy-qt/telepathy-qt-9999.ebuild @@ -0,0 +1,82 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8} ) + +if [[ ${PV} = *9999* ]]; then + EGIT_REPO_URI=( "https://gitlab.freedesktop.org/telepathy/${PN}" ) + inherit git-r3 +else + SRC_URI="https://telepathy.freedesktop.org/releases/${PN}/${P}.tar.gz" + KEYWORDS="~amd64 ~arm ~arm64 ~x86" +fi +inherit python-any-r1 cmake virtualx + +DESCRIPTION="Qt bindings for the Telepathy D-Bus protocol" +HOMEPAGE="https://telepathy.freedesktop.org/" + +LICENSE="LGPL-2.1" +SLOT="0" +IUSE="debug farstream test" + +REQUIRED_USE="test? ( farstream )" + +RESTRICT="!test? ( test )" + +BDEPEND="${PYTHON_DEPS} + virtual/pkgconfig + test? ( + dev-libs/glib:2 + $(python_gen_any_dep ' + dev-python/dbus-python[${PYTHON_USEDEP}] + ') + ) +" +RDEPEND=" + dev-qt/qtcore:5 + dev-qt/qtdbus:5 + dev-qt/qtgui:5 + dev-qt/qtnetwork:5 + dev-qt/qtxml:5 + farstream? ( + >=net-libs/telepathy-farstream-0.2.2 + >=net-libs/telepathy-glib-0.18.0 + ) +" +DEPEND="${RDEPEND} + test? ( + dev-libs/dbus-glib + dev-qt/qttest:5 + ) +" + +python_check_deps() { + use test || return 0 + has_version "dev-python/dbus-python[${PYTHON_USEDEP}]" +} + +pkg_setup() { + python-any-r1_pkg_setup +} + +src_configure() { + local mycmakeargs=( + -DENABLE_DEBUG_OUTPUT=$(usex debug) + -DENABLE_FARSTREAM=$(usex farstream) + -DENABLE_TESTS=$(usex test) + -DENABLE_EXAMPLES=OFF + ) + cmake_src_configure +} + +src_test() { + # some tests require D-Bus + local myctestargs=( + -E "(BaseConnectionManager|BaseProtocol)" + ) + pushd "${BUILD_DIR}" > /dev/null || die + virtx cmake_src_test + popd > /dev/null || die +} |