From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 1E29559CB1 for ; Tue, 12 Apr 2016 21:22:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2F81921C0C7; Tue, 12 Apr 2016 21:22:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CC6E921C0C7 for ; Tue, 12 Apr 2016 21:22:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 72AA3340C9C for ; Tue, 12 Apr 2016 21:22:15 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AEC73201 for ; Tue, 12 Apr 2016 21:22:12 +0000 (UTC) From: "Johannes Huber" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Johannes Huber" Message-ID: <1460496100.27ee5af8117db3d6651753e4c4c94dcbc88450eb.johu@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-apps/kolourpaint/ X-VCS-Repository: proj/kde X-VCS-Files: kde-apps/kolourpaint/kolourpaint-5.9999.ebuild X-VCS-Directories: kde-apps/kolourpaint/ X-VCS-Committer: johu X-VCS-Committer-Name: Johannes Huber X-VCS-Revision: 27ee5af8117db3d6651753e4c4c94dcbc88450eb X-VCS-Branch: master Date: Tue, 12 Apr 2016 21:22:12 +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-Archives-Salt: 234d17f1-89c6-40aa-baa0-e3bad644cd4b X-Archives-Hash: 8ef218e9ba3ae2b4b759c1f3008ae3fc commit: 27ee5af8117db3d6651753e4c4c94dcbc88450eb Author: Johannes Huber gentoo org> AuthorDate: Tue Apr 12 21:21:30 2016 +0000 Commit: Johannes Huber gentoo org> CommitDate: Tue Apr 12 21:21:40 2016 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=27ee5af8 kde-apps/kolourpaint: Version based on KF5 Gentoo-bug: 525008 Package-Manager: portage-2.2.28 kde-apps/kolourpaint/kolourpaint-5.9999.ebuild | 44 ++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/kde-apps/kolourpaint/kolourpaint-5.9999.ebuild b/kde-apps/kolourpaint/kolourpaint-5.9999.ebuild new file mode 100644 index 0000000..5d0421e --- /dev/null +++ b/kde-apps/kolourpaint/kolourpaint-5.9999.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +EGIT_BRANCH="frameworks" +inherit kde5 + +DESCRIPTION="Paint Program by KDE" +HOMEPAGE="https://www.kde.org/applications/graphics/kolourpaint/" +KEYWORDS="" +LICENSE="BSD LGPL-2" +IUSE="scanner" + +RDEPEND=" + $(add_frameworks_dep kconfig) + $(add_frameworks_dep kconfigwidgets) + $(add_frameworks_dep kcoreaddons) + $(add_frameworks_dep kdelibs4support) + $(add_frameworks_dep kguiaddons) + $(add_frameworks_dep ki18n) + $(add_frameworks_dep kiconthemes) + $(add_frameworks_dep kservice) + $(add_frameworks_dep ktextwidgets) + $(add_frameworks_dep kwidgetsaddons) + $(add_frameworks_dep kxmlgui) + $(add_qt_dep qtgui) + $(add_qt_dep qtprintsupport) + $(add_qt_dep qtwidgets) + media-libs/qimageblitz + scanner? ( $(add_kdeapps_dep libksane) ) +" +DEPEND="${RDEPEND} + sys-devel/gettext +" + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_find_package scanner KF5Sane) + ) + + kde5_src_configure +}