diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-12-21 12:09:43 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-12-29 14:03:42 +0100 |
commit | ce86df7eb9cdd27b8da28b84541ed0894fac4b53 (patch) | |
tree | 3924362d6b5210d43d0502e02ac8f34b776b09c9 /net-libs | |
parent | kde5.eclass: Switch to cmake.eclass (diff) | |
download | gentoo-ce86df7eb9cdd27b8da28b84541ed0894fac4b53.tar.gz gentoo-ce86df7eb9cdd27b8da28b84541ed0894fac4b53.tar.bz2 gentoo-ce86df7eb9cdd27b8da28b84541ed0894fac4b53.zip |
*/*: Switch kde proj packages to cmake.eclass
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/jreen/jreen-1.3.0-r1.ebuild | 4 | ||||
-rw-r--r-- | net-libs/telepathy-qt/telepathy-qt-0.9.8.ebuild | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/net-libs/jreen/jreen-1.3.0-r1.ebuild b/net-libs/jreen/jreen-1.3.0-r1.ebuild index c004a9cffb9e..b0175ce32225 100644 --- a/net-libs/jreen/jreen-1.3.0-r1.ebuild +++ b/net-libs/jreen/jreen-1.3.0-r1.ebuild @@ -11,7 +11,7 @@ else EGIT_REPO_URI="https://github.com/euroelessar/${PN}.git" fi -inherit cmake-utils ${GIT_ECLASS} +inherit cmake ${GIT_ECLASS} DESCRIPTION="Qt XMPP library" HOMEPAGE="https://github.com/euroelessar/jreen" @@ -33,5 +33,5 @@ src_configure() { local mycmakeargs=( -DJREEN_FORCE_QT4=OFF ) - cmake-utils_src_configure + cmake_src_configure } diff --git a/net-libs/telepathy-qt/telepathy-qt-0.9.8.ebuild b/net-libs/telepathy-qt/telepathy-qt-0.9.8.ebuild index 1f505982cf39..54ad156b963e 100644 --- a/net-libs/telepathy-qt/telepathy-qt-0.9.8.ebuild +++ b/net-libs/telepathy-qt/telepathy-qt-0.9.8.ebuild @@ -4,7 +4,7 @@ EAPI=7 PYTHON_COMPAT=( python3_{5,6,7} ) -inherit python-any-r1 cmake-utils virtualx +inherit python-any-r1 cmake virtualx DESCRIPTION="Qt bindings for the Telepathy D-Bus protocol" HOMEPAGE="https://telepathy.freedesktop.org/" @@ -61,7 +61,7 @@ src_configure() { -DENABLE_TESTS=$(usex test) -DENABLE_EXAMPLES=OFF ) - cmake-utils_src_configure + cmake_src_configure } src_test() { @@ -70,6 +70,6 @@ src_test() { -E "(BaseConnectionManager|BaseProtocol)" ) pushd "${BUILD_DIR}" > /dev/null || die - virtx cmake-utils_src_test + virtx cmake_src_test popd > /dev/null || die } |