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 5D90D138824 for ; Sun, 19 Oct 2014 22:35:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 51370E086C; Sun, 19 Oct 2014 22:35:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C915DE0864 for ; Sun, 19 Oct 2014 22:35:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B447533BF59 for ; Sun, 19 Oct 2014 22:35:24 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5B6038457 for ; Sun, 19 Oct 2014 22:35:23 +0000 (UTC) From: "Davide Pesavento" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Davide Pesavento" Message-ID: <1413753642.81db81943b6e79418864c23061323f7e63d46a4e.pesa@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: lxqt-base/liblxqt/ X-VCS-Repository: proj/qt X-VCS-Files: lxqt-base/liblxqt/liblxqt-9999.ebuild X-VCS-Directories: lxqt-base/liblxqt/ X-VCS-Committer: pesa X-VCS-Committer-Name: Davide Pesavento X-VCS-Revision: 81db81943b6e79418864c23061323f7e63d46a4e X-VCS-Branch: master Date: Sun, 19 Oct 2014 22:35:23 +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: 77b4b259-d0da-47a3-aa86-ee35480c54d7 X-Archives-Hash: 43203d310002f1e6e9c541e55b532a33 commit: 81db81943b6e79418864c23061323f7e63d46a4e Author: Jauhien Piatlicki gentoo org> AuthorDate: Sun Oct 19 21:19:48 2014 +0000 Commit: Davide Pesavento gentoo org> CommitDate: Sun Oct 19 21:20:42 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=81db8194 [lxqt-base/liblxqt] update live ebuild, drop QT4 support --- lxqt-base/liblxqt/liblxqt-9999.ebuild | 25 ++++++++++++++++++++----- 1 file changed, 20 insertions(+), 5 deletions(-) diff --git a/lxqt-base/liblxqt/liblxqt-9999.ebuild b/lxqt-base/liblxqt/liblxqt-9999.ebuild index 30a27d8..f3a5d57 100644 --- a/lxqt-base/liblxqt/liblxqt-9999.ebuild +++ b/lxqt-base/liblxqt/liblxqt-9999.ebuild @@ -14,20 +14,35 @@ if [[ ${PV} = *9999* ]]; then else SRC_URI="http://lxqt.org/downloads/${PV}/${P}.tar.xz" KEYWORDS="~amd64 ~x86" - S=${WORKDIR} fi LICENSE="GPL-2 LGPL-2.1+" SLOT="0" -DEPEND=">=razorqt-base/libqtxdg-0.5.3 +DEPEND=">=razorqt-base/libqtxdg-1.0.0 x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXfixes x11-libs/libXrender - dev-qt/qtcore:4 - dev-qt/qtdbus:4 - dev-qt/qtgui:4" + dev-qt/linguist-tools:5 + dev-qt/qtdbus:5 + dev-qt/qtwidgets:5 + dev-qt/qtx11extras:5 +" RDEPEND="${DEPEND}" + +pkg_pretend() { + if [[ ${MERGE_TYPE} != binary ]]; then + [[ $(gcc-version) < 4.8 ]] && \ + die 'The active compiler needs to be gcc 4.8 (or newer)' + fi +} + +src_configure() { + local mycmakeargs=( + -DUSE_QT5=ON + ) + cmake-utils_src_configure +}