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 EA49759CAF for ; Thu, 7 Apr 2016 13:22:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7F88521C003; Thu, 7 Apr 2016 13:22:42 +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 30BAE21C003 for ; Thu, 7 Apr 2016 13:22:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 027B1340DE5 for ; Thu, 7 Apr 2016 13:22:36 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1A4E7188 for ; Thu, 7 Apr 2016 13:22:33 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1460035339.06dc05fec4189d53ab4a154bda27bdcf6e9d4e44.kensington@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-apps/kdeartwork-wallpapers/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-apps/kdeartwork-wallpapers/kdeartwork-wallpapers-15.08.3-r2.ebuild X-VCS-Directories: kde-apps/kdeartwork-wallpapers/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 06dc05fec4189d53ab4a154bda27bdcf6e9d4e44 X-VCS-Branch: master Date: Thu, 7 Apr 2016 13:22:33 +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: 25655928-7ddf-4094-88f2-3b3aeba6a187 X-Archives-Hash: d6e6e19621d999bab4e825b48fc1111d commit: 06dc05fec4189d53ab4a154bda27bdcf6e9d4e44 Author: Andreas Sturmlechner gmail com> AuthorDate: Sun Mar 27 01:05:13 2016 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Thu Apr 7 13:22:19 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06dc05fe kde-apps/kdeartwork-wallpapers: Add missing DEPEND, KDE_DEBUG=false KDEInstallDirs calls query_qmake which requires qtcore. Package-Manager: portage-2.2.27 .../kdeartwork-wallpapers-15.08.3-r2.ebuild | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/kde-apps/kdeartwork-wallpapers/kdeartwork-wallpapers-15.08.3-r2.ebuild b/kde-apps/kdeartwork-wallpapers/kdeartwork-wallpapers-15.08.3-r2.ebuild new file mode 100644 index 0000000..bfb5b22 --- /dev/null +++ b/kde-apps/kdeartwork-wallpapers/kdeartwork-wallpapers-15.08.3-r2.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +RESTRICT="binchecks strip" + +KMNAME="kdeartwork" +KDE_AUTODEPS="false" +KDE_DEBUG="false" +inherit kde5 + +DESCRIPTION="Wallpapers from KDE" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=" + $(add_frameworks_dep extra-cmake-modules) + $(add_qt_dep qtcore) +" +RDEPEND="!kde-apps/kdeartwork-wallpapers:4" + +PATCHES=( "${FILESDIR}/${P}-kf5-port.patch" ) + +src_configure() { + local mycmakeargs=( + -DDISABLE_ALL_OPTIONAL_SUBDIRECTORIES=TRUE + -DBUILD_wallpapers=TRUE + -DBUILD_HighResolutionWallpapers=TRUE + ) + + kde5_src_configure +}