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 49C9A139694 for ; Sat, 25 Feb 2017 00:38:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 61956E0CA1; Sat, 25 Feb 2017 00:38:40 +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-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 468C5E0CA1 for ; Sat, 25 Feb 2017 00:38:40 +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 28E6434112A for ; Sat, 25 Feb 2017 00:38:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BF3765372 for ; Sat, 25 Feb 2017 00:38:37 +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: <1487983104.61dbd634ef154194aac09e2627cc176e44bd8877.kensington@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/qrosscore/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/qrosscore/qrosscore-9999.ebuild X-VCS-Directories: dev-libs/qrosscore/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 61dbd634ef154194aac09e2627cc176e44bd8877 X-VCS-Branch: master Date: Sat, 25 Feb 2017 00:38:37 +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: cde9ed53-02ff-4cbf-8bf3-c3e948216571 X-Archives-Hash: c8c3fdfab7fbe691a98b310e4a37a73d commit: 61dbd634ef154194aac09e2627cc176e44bd8877 Author: 0xd34df00d <0xd34df00d gmail com> AuthorDate: Fri Feb 17 04:37:18 2017 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Sat Feb 25 00:38:24 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61dbd634 dev-libs/qrosscore: build 9999 with Qt5 dev-libs/qrosscore/qrosscore-9999.ebuild | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/dev-libs/qrosscore/qrosscore-9999.ebuild b/dev-libs/qrosscore/qrosscore-9999.ebuild index 1af1847da0..56f3cc0d87 100644 --- a/dev-libs/qrosscore/qrosscore-9999.ebuild +++ b/dev-libs/qrosscore/qrosscore-9999.ebuild @@ -1,13 +1,13 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 - -EGIT_REPO_URI="git://github.com/0xd34df00d/Qross.git" +EAPI=6 inherit cmake-utils git-r3 +EGIT_REPO_URI="git://github.com/0xd34df00d/Qross.git" + DESCRIPTION="KDE-free version of Kross (core libraries and Qt Script backend)" HOMEPAGE="https://github.com/0xd34df00d/Qross" @@ -17,11 +17,14 @@ KEYWORDS="" IUSE="debug" RDEPEND=" - dev-qt/qtcore:4 - dev-qt/qtgui:4 - dev-qt/designer:4 - dev-qt/qtscript:4 + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtwidgets:5 + dev-qt/designer:5 + dev-qt/qtscript:5 " DEPEND="${RDEPEND}" CMAKE_USE_DIR="${S}/src/qross" + +mycmakeargs=( -DUSE_QT5=ON )