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 F280E138350 for ; Sun, 12 Jan 2020 17:45:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8A73BE0D89; Sun, 12 Jan 2020 17:45:49 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 0C980E0D89 for ; Sun, 12 Jan 2020 17:45:49 +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 EAD8D34DFCB for ; Sun, 12 Jan 2020 17:45:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2E5828E for ; Sun, 12 Jan 2020 17:45: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: <1578851135.4d6847820a8dd719369a46a746d62bf2031f092d.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/symboleditor/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/symboleditor/symboleditor-2.1.0.ebuild X-VCS-Directories: media-gfx/symboleditor/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 4d6847820a8dd719369a46a746d62bf2031f092d X-VCS-Branch: master Date: Sun, 12 Jan 2020 17:45: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: daf988cf-840a-44c7-98ce-61559a14529b X-Archives-Hash: 51687bbdd7b939555b2882893b852f45 commit: 4d6847820a8dd719369a46a746d62bf2031f092d Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Nov 10 23:37:02 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Jan 12 17:45:35 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d684782 media-gfx/symboleditor: Port away from kde5.eclass, update HOMEPAGE Package-Manager: Portage-2.3.79, Repoman-2.3.18 Signed-off-by: Andreas Sturmlechner gentoo.org> media-gfx/symboleditor/symboleditor-2.1.0.ebuild | 34 +++++++++++++----------- 1 file changed, 19 insertions(+), 15 deletions(-) diff --git a/media-gfx/symboleditor/symboleditor-2.1.0.ebuild b/media-gfx/symboleditor/symboleditor-2.1.0.ebuild index 30fbc968483..7ed8ac948d2 100644 --- a/media-gfx/symboleditor/symboleditor-2.1.0.ebuild +++ b/media-gfx/symboleditor/symboleditor-2.1.0.ebuild @@ -1,34 +1,38 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -KDE_HANDBOOK="optional" -inherit kde5 +ECM_HANDBOOK="optional" +KFMIN=5.60.0 +QTMIN=5.12.3 +inherit ecm kde.org DESCRIPTION="Application to create libraries of QPainterPath objects with rendering hints" -HOMEPAGE="https://userbase.kde.org/SymbolEditor" +HOMEPAGE="https://kde.org/applications/graphics/org.kde.SymbolEditor +https://userbase.kde.org/SymbolEditor" + if [[ ${KDE_BUILD_TYPE} != live ]]; then SRC_URI="mirror://kde/stable/${PN}/${PV}/${P}.tar.xz" KEYWORDS="amd64 x86" fi LICENSE="GPL-2" -IUSE="" +SLOT="5" BDEPEND=" sys-devel/gettext " DEPEND=" - $(add_frameworks_dep kconfig) - $(add_frameworks_dep kconfigwidgets) - $(add_frameworks_dep kcoreaddons) - $(add_frameworks_dep ki18n) - $(add_frameworks_dep kio) - $(add_frameworks_dep kwidgetsaddons) - $(add_frameworks_dep kxmlgui) - $(add_qt_dep qtgui) - $(add_qt_dep qtwidgets) + >=dev-qt/qtgui-${QTMIN}:5 + >=dev-qt/qtwidgets-${QTMIN}:5 + >=kde-frameworks/kconfig-${KFMIN}:5 + >=kde-frameworks/kconfigwidgets-${KFMIN}:5 + >=kde-frameworks/kcoreaddons-${KFMIN}:5 + >=kde-frameworks/ki18n-${KFMIN}:5 + >=kde-frameworks/kio-${KFMIN}:5 + >=kde-frameworks/kwidgetsaddons-${KFMIN}:5 + >=kde-frameworks/kxmlgui-${KFMIN}:5 " RDEPEND="${DEPEND}" @@ -37,5 +41,5 @@ src_configure() { -DCMAKE_DISABLE_FIND_PACKAGE_Doxygen=ON ) - kde5_src_configure + ecm_src_configure }