From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1SMDVr-0004p3-Gf for garchives@archives.gentoo.org; Mon, 23 Apr 2012 07:16:43 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B5E12E09CC; Mon, 23 Apr 2012 07:16:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 8A277E09CC for ; Mon, 23 Apr 2012 07:16: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 C52701B4044 for ; Mon, 23 Apr 2012 07:16:35 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 665) id 825A52004B; Mon, 23 Apr 2012 07:16:34 +0000 (UTC) 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 eclass: games-ggz.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: games-ggz.eclass X-VCS-Directories: eclass X-VCS-Committer: mr_bones_ X-VCS-Committer-Name: Michael Sterrett Content-Type: text/plain; charset=utf8 Message-Id: <20120423071634.825A52004B@flycatcher.gentoo.org> Date: Mon, 23 Apr 2012 07:16:34 +0000 (UTC) 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: 15dce9ab-fb79-4d5d-954b-95c4ad4c7a06 X-Archives-Hash: 9df1fbaac414047ee05a7c99147b2308 mr_bones_ 12/04/23 07:16:34 Modified: games-ggz.eclass Log: ggz-client-libs doesn't know about noregistry Revision Changes Path 1.8 eclass/games-ggz.eclass file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/games-ggz.e= class?rev=3D1.8&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/games-ggz.e= class?rev=3D1.8&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/games-ggz.e= class?r1=3D1.7&r2=3D1.8 Index: games-ggz.eclass =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/eclass/games-ggz.eclass,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- games-ggz.eclass 4 Aug 2011 19:31:38 -0000 1.7 +++ games-ggz.eclass 23 Apr 2012 07:16:34 -0000 1.8 @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/games-ggz.eclass,v 1.7 2011/08= /04 19:31:38 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/games-ggz.eclass,v 1.8 2012/04= /23 07:16:34 mr_bones_ Exp $ =20 inherit base =20 @@ -20,9 +20,11 @@ GGZ_MODDIR=3D"/usr/share/ggz/modules" =20 games-ggz_src_configure() { + local reg=3D"--enable-noregistry=3D\"${GGZ_MODDIR}\"" + [[ ${PN} =3D=3D ggz-client-libs ]] && reg=3D'' econf \ --disable-dependency-tracking \ - --enable-noregistry=3D"${GGZ_MODDIR}" \ + $reg \ $(has debug ${IUSE} && ! use debug && echo --disable-debug) \ "$@" }