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 6B2491388F2 for ; Thu, 7 Feb 2013 22:31:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A46D9E04AB; Thu, 7 Feb 2013 22:31:36 +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 26AF8E04AB for ; Thu, 7 Feb 2013 22:31:36 +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 1831D33E061 for ; Thu, 7 Feb 2013 22:31:35 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 559) id C7A7020081; Thu, 7 Feb 2013 22:31:33 +0000 (UTC) From: "Mike Frysinger (vapier)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, vapier@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in games-emulation/zsnes: zsnes-1.51-r4.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: zsnes-1.51-r4.ebuild ChangeLog X-VCS-Directories: games-emulation/zsnes X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20130207223133.C7A7020081@flycatcher.gentoo.org> Date: Thu, 7 Feb 2013 22:31:33 +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: 0771ca78-46de-44ca-a21c-beea6c50cd29 X-Archives-Hash: 8bc7296ebb7f9d61d955aab9ce6e5945 vapier 13/02/07 22:31:33 Modified: zsnes-1.51-r4.ebuild ChangeLog Log: Fix cross-compiling. (Portage version: 2.2.0_alpha161/cvs/Linux x86_64, signed Manifest commit with key FB7C4156) Revision Changes Path 1.5 games-emulation/zsnes/zsnes-1.51-r4.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r4.ebuild?rev=1.5&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r4.ebuild?rev=1.5&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r4.ebuild?r1=1.4&r2=1.5 Index: zsnes-1.51-r4.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r4.ebuild,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- zsnes-1.51-r4.ebuild 7 Feb 2013 21:46:03 -0000 1.4 +++ zsnes-1.51-r4.ebuild 7 Feb 2013 22:31:33 -0000 1.5 @@ -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/zsnes/zsnes-1.51-r4.ebuild,v 1.4 2013/02/07 21:46:03 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r4.ebuild,v 1.5 2013/02/07 22:31:33 vapier Exp $ EAPI=2 inherit eutils autotools flag-o-matic toolchain-funcs multilib pax-utils games @@ -45,7 +45,13 @@ "${FILESDIR}"/${P}-CC-quotes.patch \ "${FILESDIR}"/${P}-libpng15.patch \ "${FILESDIR}"/${P}-buffer.patch \ - "${FILESDIR}"/${P}-gcc47.patch + "${FILESDIR}"/${P}-gcc47.patch \ + "${FILESDIR}"/${P}-cross-compile.patch + + # The sdl detection logic uses AC_PROG_PATH instead of + # AC_PROG_TOOL, so force the var to get set the way we + # need for things to work correctly. + tc-is-cross-compiler && export ac_cv_path_SDL_CONFIG=${CHOST}-sdl-config sed -i -e '67i#define OF(x) x' zip/zunzip.h || die 1.58 games-emulation/zsnes/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/zsnes/ChangeLog?rev=1.58&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/zsnes/ChangeLog?rev=1.58&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/zsnes/ChangeLog?r1=1.57&r2=1.58 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/games-emulation/zsnes/ChangeLog,v retrieving revision 1.57 retrieving revision 1.58 diff -u -r1.57 -r1.58 --- ChangeLog 7 Feb 2013 21:46:03 -0000 1.57 +++ ChangeLog 7 Feb 2013 22:31:33 -0000 1.58 @@ -1,6 +1,10 @@ # ChangeLog for games-emulation/zsnes # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/zsnes/ChangeLog,v 1.57 2013/02/07 21:46:03 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/zsnes/ChangeLog,v 1.58 2013/02/07 22:31:33 vapier Exp $ + + 07 Feb 2013; Mike Frysinger + +files/zsnes-1.51-cross-compile.patch, zsnes-1.51-r4.ebuild: + Fix cross-compiling. 07 Feb 2013; Mike Frysinger metadata.xml, zsnes-1.51-r4.ebuild: