From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([69.77.167.62] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1L2fbL-0000SS-5A for garchives@archives.gentoo.org; Wed, 19 Nov 2008 05:27:43 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 359A3E0041; Wed, 19 Nov 2008 05:27:43 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id E73EFE0041 for ; Wed, 19 Nov 2008 05:27:42 +0000 (UTC) Received: from stork.gentoo.org (stork.gentoo.org [64.127.104.133]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id D1EFC64318 for ; Wed, 19 Nov 2008 05:27:40 +0000 (UTC) Received: from mr_bones_ by stork.gentoo.org with local (Exim 4.69) (envelope-from ) id 1L2fbA-0004fZ-F3 for gentoo-commits@lists.gentoo.org; Wed, 19 Nov 2008 05:27:35 +0000 From: "Michael Sterrett (mr_bones_)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, mr_bones_@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in games-emulation/advancemenu: advancemenu-2.4.13.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: advancemenu-2.4.13.ebuild ChangeLog X-VCS-Directories: games-emulation/advancemenu X-VCS-Committer: mr_bones_ X-VCS-Committer-Name: Michael Sterrett Content-Type: text/plain; charset=utf8 Message-Id: Sender: Michael Sterrett Date: Wed, 19 Nov 2008 05:27:32 +0000 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 177f1452-49a2-4df8-becf-03a7c623a582 X-Archives-Hash: 1f48ad30556f3b3d6147473be5e02403 mr_bones_ 08/11/19 05:27:32 Modified: advancemenu-2.4.13.ebuild ChangeLog Log: default to sdl if no output is specified (bug #247347) (Portage version: 2.1.4.5) Revision Changes Path 1.7 games-emulation/advancemenu/advancemenu-2.4.13.ebuil= d file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/ad= vancemenu/advancemenu-2.4.13.ebuild?rev=3D1.7&view=3Dmarkup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/ad= vancemenu/advancemenu-2.4.13.ebuild?rev=3D1.7&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/ad= vancemenu/advancemenu-2.4.13.ebuild?r1=3D1.6&r2=3D1.7 Index: advancemenu-2.4.13.ebuild =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/games-emulation/advancemenu/advancemenu= -2.4.13.ebuild,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- advancemenu-2.4.13.ebuild 9 Feb 2008 12:31:06 -0000 1.6 +++ advancemenu-2.4.13.ebuild 19 Nov 2008 05:27:32 -0000 1.7 @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/advancemenu/advanceme= nu-2.4.13.ebuild,v 1.6 2008/02/09 12:31:06 drac Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/advancemenu/advanceme= nu-2.4.13.ebuild,v 1.7 2008/11/19 05:27:32 mr_bones_ Exp $ =20 inherit eutils games =20 @@ -19,6 +19,7 @@ sdl? ( media-libs/libsdl ) slang? ( >=3Dsys-libs/slang-1.4 ) svga? ( >=3Dmedia-libs/svgalib-1.9 ) + !sdl? ( !svga? ( !fbcon? ( media-libs/libsdl ) ) ) truetype? ( >=3Dmedia-libs/freetype-2 ) zlib? ( sys-libs/zlib )" DEPEND=3D"${RDEPEND} @@ -41,6 +42,7 @@ =20 use x86 && ln -s $(type -P nasm) "${T}/${CHOST}-nasm" use sdl && ln -s $(type -P sdl-config) "${T}/${CHOST}-sdl-config" + use !sdl && use !svga && use !fbcon && ln -s $(type -P sdl-config) "${T= }/${CHOST}-sdl-config" use truetype && ln -s $(type -P freetype-config) "${T}/${CHOST}-freetyp= e-config" } =20 @@ -58,6 +60,7 @@ $(use_enable slang) \ $(use_enable static) \ $(use_enable svga svgalib) \ + $(use !sdl && use !svga && use !fbcon && echo --enable-sdl) \ $(use_enable x86 asm) \ $(use_enable zlib) \ || die 1.28 games-emulation/advancemenu/ChangeLog file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/ad= vancemenu/ChangeLog?rev=3D1.28&view=3Dmarkup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/ad= vancemenu/ChangeLog?rev=3D1.28&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/ad= vancemenu/ChangeLog?r1=3D1.27&r2=3D1.28 Index: ChangeLog =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/games-emulation/advancemenu/ChangeLog,v retrieving revision 1.27 retrieving revision 1.28 diff -u -r1.27 -r1.28 --- ChangeLog 9 Feb 2008 12:31:06 -0000 1.27 +++ ChangeLog 19 Nov 2008 05:27:32 -0000 1.28 @@ -1,6 +1,10 @@ # ChangeLog for games-emulation/advancemenu # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/advancemenu/ChangeLog= ,v 1.27 2008/02/09 12:31:06 drac Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/advancemenu/ChangeLog= ,v 1.28 2008/11/19 05:27:32 mr_bones_ Exp $ + + 19 Nov 2008; Michael Sterrett + advancemenu-2.4.13.ebuild: + default to sdl if no output is specified (bug #247347) =20 09 Feb 2008; Samuli Suominen advancemenu-2.4.13.ebui= ld: Fix advancemenu to work with slang 2.1.3.