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 672B913888F for ; Thu, 22 Oct 2015 03:00:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E10F1E07EA; Thu, 22 Oct 2015 03:00:39 +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 777E8E07EA for ; Thu, 22 Oct 2015 03:00:39 +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 D7D713405C3 for ; Thu, 22 Oct 2015 03:00:37 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 578DD15BF for ; Thu, 22 Oct 2015 03:00:35 +0000 (UTC) From: "Richard Farina" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Richard Farina" Message-ID: <1445482767.072b30ff873bf65535e284984afa81992e9fa44d.zerochaos@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-video-virtualbox/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-drivers/xf86-video-virtualbox/xf86-video-virtualbox-4.3.28-r1.ebuild x11-drivers/xf86-video-virtualbox/xf86-video-virtualbox-4.3.30-r1.ebuild x11-drivers/xf86-video-virtualbox/xf86-video-virtualbox-4.3.32.ebuild x11-drivers/xf86-video-virtualbox/xf86-video-virtualbox-5.0.6-r1.ebuild x11-drivers/xf86-video-virtualbox/xf86-video-virtualbox-5.0.8.ebuild X-VCS-Directories: x11-drivers/xf86-video-virtualbox/ X-VCS-Committer: zerochaos X-VCS-Committer-Name: Richard Farina X-VCS-Revision: 072b30ff873bf65535e284984afa81992e9fa44d X-VCS-Branch: master Date: Thu, 22 Oct 2015 03:00:35 +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: 0f54cf07-1f9f-4d41-abe7-f138d38af278 X-Archives-Hash: 8ba8491ab960fe82158d5a67ba632993 commit: 072b30ff873bf65535e284984afa81992e9fa44d Author: Zero_Chaos gentoo org> AuthorDate: Thu Oct 22 02:59:27 2015 +0000 Commit: Richard Farina gentoo org> CommitDate: Thu Oct 22 02:59:27 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=072b30ff x11-drivers/xf86-video-virtualbox: finish fix for bug #550202 to check gcc version in pkg_setup Package-Manager: portage-2.2.23 .../xf86-video-virtualbox/xf86-video-virtualbox-4.3.28-r1.ebuild | 4 ++++ .../xf86-video-virtualbox/xf86-video-virtualbox-4.3.30-r1.ebuild | 4 ++++ x11-drivers/xf86-video-virtualbox/xf86-video-virtualbox-4.3.32.ebuild | 4 ++++ .../xf86-video-virtualbox/xf86-video-virtualbox-5.0.6-r1.ebuild | 4 ++++ x11-drivers/xf86-video-virtualbox/xf86-video-virtualbox-5.0.8.ebuild | 4 ++++ 5 files changed, 20 insertions(+) diff --git a/x11-drivers/xf86-video-virtualbox/xf86-video-virtualbox-4.3.28-r1.ebuild b/x11-drivers/xf86-video-virtualbox/xf86-video-virtualbox-4.3.28-r1.ebuild index 5ac5842..14b3dec 100644 --- a/x11-drivers/xf86-video-virtualbox/xf86-video-virtualbox-4.3.28-r1.ebuild +++ b/x11-drivers/xf86-video-virtualbox/xf86-video-virtualbox-4.3.28-r1.ebuild @@ -54,6 +54,10 @@ S="${WORKDIR}/${MY_P}" QA_TEXTRELS_x86="usr/lib/VBoxOGL.so" pkg_setup() { + if [ "${MERGE_TYPE}" != "binary" ]; then + version_is_at_least 4.9 $(gcc-version) || die "Please set gcc 4.9 or higher as active in gcc-config to build ${PN}" + fi + linux-mod_pkg_setup BUILD_PARAMS="KERN_DIR=${KV_OUT_DIR} KERNOUT=${KV_OUT_DIR}" diff --git a/x11-drivers/xf86-video-virtualbox/xf86-video-virtualbox-4.3.30-r1.ebuild b/x11-drivers/xf86-video-virtualbox/xf86-video-virtualbox-4.3.30-r1.ebuild index 8344859..7ab7060 100644 --- a/x11-drivers/xf86-video-virtualbox/xf86-video-virtualbox-4.3.30-r1.ebuild +++ b/x11-drivers/xf86-video-virtualbox/xf86-video-virtualbox-4.3.30-r1.ebuild @@ -54,6 +54,10 @@ S="${WORKDIR}/${MY_P}" QA_TEXTRELS_x86="usr/lib/VBoxOGL.so" pkg_setup() { + if [ "${MERGE_TYPE}" != "binary" ]; then + version_is_at_least 4.9 $(gcc-version) || die "Please set gcc 4.9 or higher as active in gcc-config to build ${PN}" + fi + linux-mod_pkg_setup BUILD_PARAMS="KERN_DIR=${KV_OUT_DIR} KERNOUT=${KV_OUT_DIR}" diff --git a/x11-drivers/xf86-video-virtualbox/xf86-video-virtualbox-4.3.32.ebuild b/x11-drivers/xf86-video-virtualbox/xf86-video-virtualbox-4.3.32.ebuild index 8344859..7ab7060 100644 --- a/x11-drivers/xf86-video-virtualbox/xf86-video-virtualbox-4.3.32.ebuild +++ b/x11-drivers/xf86-video-virtualbox/xf86-video-virtualbox-4.3.32.ebuild @@ -54,6 +54,10 @@ S="${WORKDIR}/${MY_P}" QA_TEXTRELS_x86="usr/lib/VBoxOGL.so" pkg_setup() { + if [ "${MERGE_TYPE}" != "binary" ]; then + version_is_at_least 4.9 $(gcc-version) || die "Please set gcc 4.9 or higher as active in gcc-config to build ${PN}" + fi + linux-mod_pkg_setup BUILD_PARAMS="KERN_DIR=${KV_OUT_DIR} KERNOUT=${KV_OUT_DIR}" diff --git a/x11-drivers/xf86-video-virtualbox/xf86-video-virtualbox-5.0.6-r1.ebuild b/x11-drivers/xf86-video-virtualbox/xf86-video-virtualbox-5.0.6-r1.ebuild index 872b558..1fad4cc 100644 --- a/x11-drivers/xf86-video-virtualbox/xf86-video-virtualbox-5.0.6-r1.ebuild +++ b/x11-drivers/xf86-video-virtualbox/xf86-video-virtualbox-5.0.6-r1.ebuild @@ -54,6 +54,10 @@ S="${WORKDIR}/${MY_P}" QA_TEXTRELS_x86="usr/lib/VBoxOGL.so" pkg_setup() { + if [ "${MERGE_TYPE}" != "binary" ]; then + version_is_at_least 4.9 $(gcc-version) || die "Please set gcc 4.9 or higher as active in gcc-config to build ${PN}" + fi + linux-mod_pkg_setup BUILD_PARAMS="KERN_DIR=${KV_OUT_DIR} KERNOUT=${KV_OUT_DIR}" diff --git a/x11-drivers/xf86-video-virtualbox/xf86-video-virtualbox-5.0.8.ebuild b/x11-drivers/xf86-video-virtualbox/xf86-video-virtualbox-5.0.8.ebuild index 872b558..1fad4cc 100644 --- a/x11-drivers/xf86-video-virtualbox/xf86-video-virtualbox-5.0.8.ebuild +++ b/x11-drivers/xf86-video-virtualbox/xf86-video-virtualbox-5.0.8.ebuild @@ -54,6 +54,10 @@ S="${WORKDIR}/${MY_P}" QA_TEXTRELS_x86="usr/lib/VBoxOGL.so" pkg_setup() { + if [ "${MERGE_TYPE}" != "binary" ]; then + version_is_at_least 4.9 $(gcc-version) || die "Please set gcc 4.9 or higher as active in gcc-config to build ${PN}" + fi + linux-mod_pkg_setup BUILD_PARAMS="KERN_DIR=${KV_OUT_DIR} KERNOUT=${KV_OUT_DIR}"