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 E29C5139B2A for ; Sun, 13 Sep 2015 17:11:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E0AF121C028; Sun, 13 Sep 2015 17:11:43 +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 7861921C028 for ; Sun, 13 Sep 2015 17:11:43 +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 47D96340C29 for ; Sun, 13 Sep 2015 17:11:40 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A7668174 for ; Sun, 13 Sep 2015 17:11:37 +0000 (UTC) From: "Alexandre Rostovtsev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexandre Rostovtsev" Message-ID: <1442164151.3db1b3b67ceb628afc0284dbe278366190947242.tetromino@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/webkit-gtk/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/webkit-gtk/webkit-gtk-2.6.6.ebuild net-libs/webkit-gtk/webkit-gtk-2.8.5.ebuild X-VCS-Directories: net-libs/webkit-gtk/ X-VCS-Committer: tetromino X-VCS-Committer-Name: Alexandre Rostovtsev X-VCS-Revision: 3db1b3b67ceb628afc0284dbe278366190947242 X-VCS-Branch: master Date: Sun, 13 Sep 2015 17:11: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: 7450a6dd-9c37-426e-add2-64232b6dc3ae X-Archives-Hash: 1c7f5d736eb37f7a3eacc8fda2d2a638 commit: 3db1b3b67ceb628afc0284dbe278366190947242 Author: Alexandre Rostovtsev gentoo org> AuthorDate: Sun Sep 13 17:08:31 2015 +0000 Commit: Alexandre Rostovtsev gentoo org> CommitDate: Sun Sep 13 17:09:11 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3db1b3b6 net-libs/webkit-gtk: cmake syntax is -DRUBY_EXECUTABLE, not RUBY Package-Manager: portage-2.2.20.1 net-libs/webkit-gtk/webkit-gtk-2.6.6.ebuild | 8 ++++---- net-libs/webkit-gtk/webkit-gtk-2.8.5.ebuild | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/net-libs/webkit-gtk/webkit-gtk-2.6.6.ebuild b/net-libs/webkit-gtk/webkit-gtk-2.6.6.ebuild index 0f23ff9..c4d72b7 100644 --- a/net-libs/webkit-gtk/webkit-gtk-2.6.6.ebuild +++ b/net-libs/webkit-gtk/webkit-gtk-2.6.6.ebuild @@ -172,13 +172,13 @@ src_configure() { local ruby_interpreter="" if has_version "virtual/rubygems[ruby_targets_ruby22]"; then - ruby_interpreter="RUBY=$(type -P ruby22)" + ruby_interpreter="-DRUBY_EXECUTABLE=$(type -P ruby22)" elif has_version "virtual/rubygems[ruby_targets_ruby21]"; then - ruby_interpreter="RUBY=$(type -P ruby21)" + ruby_interpreter="-DRUBY_EXECUTABLE=$(type -P ruby21)" elif has_version "virtual/rubygems[ruby_targets_ruby20]"; then - ruby_interpreter="RUBY=$(type -P ruby20)" + ruby_interpreter="-DRUBY_EXECUTABLE=$(type -P ruby20)" else - ruby_interpreter="RUBY=$(type -P ruby19)" + ruby_interpreter="-DRUBY_EXECUTABLE=$(type -P ruby19)" fi # TODO: Check Web Audio support diff --git a/net-libs/webkit-gtk/webkit-gtk-2.8.5.ebuild b/net-libs/webkit-gtk/webkit-gtk-2.8.5.ebuild index ae110a9..bdd69c1 100644 --- a/net-libs/webkit-gtk/webkit-gtk-2.8.5.ebuild +++ b/net-libs/webkit-gtk/webkit-gtk-2.8.5.ebuild @@ -184,13 +184,13 @@ src_configure() { local ruby_interpreter="" if has_version "virtual/rubygems[ruby_targets_ruby22]"; then - ruby_interpreter="RUBY=$(type -P ruby22)" + ruby_interpreter="-DRUBY_EXECUTABLE=$(type -P ruby22)" elif has_version "virtual/rubygems[ruby_targets_ruby21]"; then - ruby_interpreter="RUBY=$(type -P ruby21)" + ruby_interpreter="-DRUBY_EXECUTABLE=$(type -P ruby21)" elif has_version "virtual/rubygems[ruby_targets_ruby20]"; then - ruby_interpreter="RUBY=$(type -P ruby20)" + ruby_interpreter="-DRUBY_EXECUTABLE=$(type -P ruby20)" else - ruby_interpreter="RUBY=$(type -P ruby19)" + ruby_interpreter="-DRUBY_EXECUTABLE=$(type -P ruby19)" fi # TODO: Check Web Audio support