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 C1D7C13988F for ; Sat, 22 Aug 2015 03:12:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 952B4E087F; Sat, 22 Aug 2015 03:12:12 +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 E6D18E087F for ; Sat, 22 Aug 2015 03:12:11 +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 B4FA83408F0 for ; Sat, 22 Aug 2015 03:12:10 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 01B95161 for ; Sat, 22 Aug 2015 03:12:08 +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: <1440213026.8600971440ca101445b80a7fb012a87de53d41f0.pesa@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-qt/qtscript/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-qt/qtscript/qtscript-5.4.2-r1.ebuild dev-qt/qtscript/qtscript-5.4.2.ebuild X-VCS-Directories: dev-qt/qtscript/ X-VCS-Committer: pesa X-VCS-Committer-Name: Davide Pesavento X-VCS-Revision: 8600971440ca101445b80a7fb012a87de53d41f0 X-VCS-Branch: master Date: Sat, 22 Aug 2015 03:12:08 +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: 2b555fa6-79f3-420f-b159-1ad210107432 X-Archives-Hash: 8d93889e61481c195cd86cb10e66d86c commit: 8600971440ca101445b80a7fb012a87de53d41f0 Author: Davide Pesavento gentoo org> AuthorDate: Sat Aug 22 03:10:26 2015 +0000 Commit: Davide Pesavento gentoo org> CommitDate: Sat Aug 22 03:10:26 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86009714 dev-qt/qtscript: reintroduce USE=jit for Qt5. Gentoo-Bug: 556032 Package-Manager: portage-2.2.20.1 .../qtscript/{qtscript-5.4.2.ebuild => qtscript-5.4.2-r1.ebuild} | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/dev-qt/qtscript/qtscript-5.4.2.ebuild b/dev-qt/qtscript/qtscript-5.4.2-r1.ebuild similarity index 80% rename from dev-qt/qtscript/qtscript-5.4.2.ebuild rename to dev-qt/qtscript/qtscript-5.4.2-r1.ebuild index a0aa0dc..da131f0 100644 --- a/dev-qt/qtscript/qtscript-5.4.2.ebuild +++ b/dev-qt/qtscript/qtscript-5.4.2-r1.ebuild @@ -11,7 +11,7 @@ if [[ ${QT5_BUILD_TYPE} == release ]]; then KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc64 ~x86" fi -IUSE="scripttools" +IUSE="+jit scripttools" DEPEND=" >=dev-qt/qtcore-${PV}:5 @@ -28,3 +28,10 @@ src_prepare() { qt5-build_src_prepare } + +src_configure() { + local myqmakeargs=( + $(usex jit '' JAVASCRIPTCORE_JIT=no) + ) + qt5-build_src_configure +}