diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2017-07-05 22:03:21 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2017-08-31 22:53:50 +0200 |
commit | 98e3c840ea054ca72e999a0ae99b459fb8dec87f (patch) | |
tree | d90d46ae417d8e7325a4086655e759e2f0a898fb /net-libs/telepathy-qt/telepathy-qt-0.9.7-r1.ebuild | |
parent | 6ecd6487312f260e8ed01eb9ded81280f8963801 (diff) | |
download | gentoo-98e3c840ea054ca72e999a0ae99b459fb8dec87f.tar.gz gentoo-98e3c840ea054ca72e999a0ae99b459fb8dec87f.tar.xz |
net-libs/telepathy-qt: Drop USE=qt4,qt5
Package-Manager: Portage-2.3.6, Repoman-2.3.1
Diffstat (limited to 'net-libs/telepathy-qt/telepathy-qt-0.9.7-r1.ebuild')
-rw-r--r-- | net-libs/telepathy-qt/telepathy-qt-0.9.7-r1.ebuild | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/net-libs/telepathy-qt/telepathy-qt-0.9.7-r1.ebuild b/net-libs/telepathy-qt/telepathy-qt-0.9.7-r1.ebuild new file mode 100644 index 00000000000..fe116123a3e --- /dev/null +++ b/net-libs/telepathy-qt/telepathy-qt-0.9.7-r1.ebuild @@ -0,0 +1,71 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python2_7 ) +inherit python-any-r1 cmake-utils virtualx + +DESCRIPTION="Qt bindings for the Telepathy D-Bus protocol" +HOMEPAGE="https://telepathy.freedesktop.org/" +SRC_URI="https://telepathy.freedesktop.org/releases/${PN}/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="debug farstream test" + +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} + ${PYTHON_DEPS} + virtual/pkgconfig + test? ( + dev-libs/dbus-glib + dev-libs/glib:2 + dev-python/dbus-python + dev-qt/qttest:5 + ) +" + +PATCHES=( + "${FILESDIR}/${PN}-0.9.6.1-yes-release.patch" + "${FILESDIR}/${PN}-0.9.6.1-qtpath.patch" +) + +# bug 549448 - last checked with 0.9.7 +RESTRICT="test" + +pkg_setup() { + python-any-r1_pkg_setup +} + +src_configure() { + local mycmakeargs=( + -DDESIRED_QT_VERSION=5 + -DENABLE_DEBUG_OUTPUT=$(usex debug) + -DENABLE_FARSTREAM=$(usex farstream) + -DENABLE_TESTS=$(usex test) + -DENABLE_EXAMPLES=OFF + ) + cmake-utils_src_configure +} + +src_test() { + _test_runner() { + ctest -E '(CallChannel)' + } + + pushd "${BUILD_DIR}" > /dev/null || die + virtx _test_runner + popd > /dev/null || die +} |