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 8F71A1381F3 for ; Sun, 1 Sep 2013 00:39:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 17F18E0C6F; Sun, 1 Sep 2013 00:39:07 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8735BE0C6F for ; Sun, 1 Sep 2013 00:39:06 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7704433EB22 for ; Sun, 1 Sep 2013 00:39:05 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2346) id 333F42004B; Sun, 1 Sep 2013 00:39:04 +0000 (UTC) From: "Devan Franchini (twitch153)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, twitch153@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in games-emulation/dolphin: dolphin-3.5.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: dolphin-3.5.ebuild ChangeLog X-VCS-Directories: games-emulation/dolphin X-VCS-Committer: twitch153 X-VCS-Committer-Name: Devan Franchini Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20130901003904.333F42004B@flycatcher.gentoo.org> Date: Sun, 1 Sep 2013 00:39:04 +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: a728d879-a512-4acf-87d9-b6ab3cd90de5 X-Archives-Hash: a07a8e05da573a2ae61ac3ef4f9aaa27 twitch153 13/09/01 00:39:04 Modified: dolphin-3.5.ebuild ChangeLog Log: Replaces has_version checking of gcc version for more suited use of the gcc-version command to check the current gcc version being used to compile the program (Portage version: 2.1.12.2/cvs/Linux x86_64, signed Manifest commit with key ) Revision Changes Path 1.7 games-emulation/dolphin/dolphin-3.5.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dolphin/dolphin-3.5.ebuild?rev=1.7&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dolphin/dolphin-3.5.ebuild?rev=1.7&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dolphin/dolphin-3.5.ebuild?r1=1.6&r2=1.7 Index: dolphin-3.5.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/games-emulation/dolphin/dolphin-3.5.ebuild,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- dolphin-3.5.ebuild 31 Aug 2013 23:24:19 -0000 1.6 +++ dolphin-3.5.ebuild 1 Sep 2013 00:39:04 -0000 1.7 @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/dolphin/dolphin-3.5.ebuild,v 1.6 2013/08/31 23:24:19 twitch153 Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/dolphin/dolphin-3.5.ebuild,v 1.7 2013/09/01 00:39:04 twitch153 Exp $ EAPI=5 @@ -60,11 +60,10 @@ src_prepare() { - if has_version ">=sys-devel/gcc-4.8.0" || has_version"<=sys-devel/gcc-4.9.0"; then + if [[ $(gcc-version) = "4.8" ]]; then epatch "${FILESDIR}"/${PN}-emu-${PV}-gcc-4.8.patch - fi + fi - # Remove automatic dependencies to prevent building without flags enabled. if use !alsa; then sed -i -e '/^include(FindALSA/d' CMakeLists.txt || die fi 1.8 games-emulation/dolphin/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dolphin/ChangeLog?rev=1.8&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dolphin/ChangeLog?rev=1.8&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dolphin/ChangeLog?r1=1.7&r2=1.8 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/games-emulation/dolphin/ChangeLog,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- ChangeLog 31 Aug 2013 23:24:19 -0000 1.7 +++ ChangeLog 1 Sep 2013 00:39:04 -0000 1.8 @@ -1,6 +1,11 @@ # ChangeLog for games-emulation/dolphin # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/dolphin/ChangeLog,v 1.7 2013/08/31 23:24:19 twitch153 Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/dolphin/ChangeLog,v 1.8 2013/09/01 00:39:04 twitch153 Exp $ + + 01 Sep 2013; Devan Franchini dolphin-3.5.ebuild: + Replaces has_version checking of gcc version for more suited use of the gcc- + version command to check the current gcc version being used to compile the + program 31 Aug 2013; Devan Franchini dolphin-3.5.ebuild: dolphin-3.5.ebuild: Added check to apply gcc-4.8.patch to all variants of gcc