From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BCF4113997F for ; Sun, 10 Nov 2019 17:11:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4983FE0A6D; Sun, 10 Nov 2019 17:11:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1FE41E0A6F for ; Sun, 10 Nov 2019 17:11:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3CEE834CB48 for ; Sun, 10 Nov 2019 17:11:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 13BB08B9 for ; Sun, 10 Nov 2019 17:11:46 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1573405844.088c4ad640ee4832b2bec88528cdf053a9c85b54.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: games-kids/gcompris/ X-VCS-Repository: proj/kde X-VCS-Files: games-kids/gcompris/gcompris-9999.ebuild X-VCS-Directories: games-kids/gcompris/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 088c4ad640ee4832b2bec88528cdf053a9c85b54 X-VCS-Branch: master Date: Sun, 10 Nov 2019 17:11:46 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 205c11c6-c502-42b6-b1e4-1d2403147c52 X-Archives-Hash: 8374deb8130bab16ee082a0d232d37f8 commit: 088c4ad640ee4832b2bec88528cdf053a9c85b54 Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Nov 7 21:09:46 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Nov 10 17:10:44 2019 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=088c4ad6 games-kids/gcompris: Port to ecm.eclass and kde.org.eclass Package-Manager: Portage-2.3.78, Repoman-2.3.17 Signed-off-by: Andreas Sturmlechner gentoo.org> games-kids/gcompris/gcompris-9999.ebuild | 34 +++++++++++++++++++------------- 1 file changed, 20 insertions(+), 14 deletions(-) diff --git a/games-kids/gcompris/gcompris-9999.ebuild b/games-kids/gcompris/gcompris-9999.ebuild index fc7f0d4598..65b3e227a2 100644 --- a/games-kids/gcompris/gcompris-9999.ebuild +++ b/games-kids/gcompris/gcompris-9999.ebuild @@ -3,30 +3,36 @@ EAPI=7 -KDE_HANDBOOK="optional" -KDE_TEST="true" -inherit kde5 +ECM_HANDBOOK="optional" +ECM_TEST="true" +QT5MIN=5.12.3 +inherit ecm kde.org DESCRIPTION="Full featured educational application for children from 2 to 10" HOMEPAGE="https://gcompris.net/" +if [[ ${KDE_BUILD_TYPE} = release ]]; then + SRC_URI="https://gcompris.net/download/qt/src/${PN}-qt-${PV}.tar.xz" + KEYWORDS="" + S="${WORKDIR}/${PN}-qt-${PV}" +fi + LICENSE="GPL-3+" SLOT="0" -KEYWORDS="" IUSE="kiosk" RDEPEND=" - $(add_qt_dep qtdeclarative) - $(add_qt_dep qtgui) - $(add_qt_dep qtnetwork) - $(add_qt_dep qtsensors) - $(add_qt_dep qtsvg) + >=dev-qt/qtdeclarative-${QT5MIN}:5 + >=dev-qt/qtgui-${QT5MIN}:5 + >=dev-qt/qtnetwork-${QT5MIN}:5 + >=dev-qt/qtsensors-${QT5MIN}:5 + >=dev-qt/qtsvg-${QT5MIN}:5 " DEPEND="${RDEPEND} - $(add_qt_dep linguist-tools) - $(add_qt_dep qtmultimedia) - $(add_qt_dep qtxml) - $(add_qt_dep qtxmlpatterns) + >=dev-qt/linguist-tools-${QT5MIN}:5 + >=dev-qt/qtmultimedia-${QT5MIN}:5 + >=dev-qt/qtxml-${QT5MIN}:5 + >=dev-qt/qtxmlpatterns-${QT5MIN}:5 " src_configure() { @@ -34,5 +40,5 @@ src_configure() { -DQML_BOX2D_MODULE=disabled -DWITH_KIOSK_MODE=$(usex kiosk) ) - kde5_src_configure + ecm_src_configure }