You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-libs/telepathy-qt/telepathy-qt-0.9.7-r1.ebuild

58 lines
1.1 KiB

# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python2_7 )
inherit python-any-r1 cmake-utils
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 ~arm64 x86"
IUSE="debug farstream"
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}"
BDEPEND="
${PYTHON_DEPS}
virtual/pkgconfig
"
PATCHES=(
"${FILESDIR}/${PN}-0.9.6.1-yes-release.patch"
"${FILESDIR}/${PN}-0.9.6.1-qtpath.patch"
"${FILESDIR}/${P}-deps.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=OFF
-DENABLE_EXAMPLES=OFF
)
cmake-utils_src_configure
}