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 <gentoo-commits+bounces-337790-garchives=archives.gentoo.org@lists.gentoo.org>)
	id 1QCeBC-0008AE-Fc
	for garchives@archives.gentoo.org; Wed, 20 Apr 2011 20:39:18 +0000
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id AAACD1C00B;
	Wed, 20 Apr 2011 20:39:11 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183])
	by pigeon.gentoo.org (Postfix) with ESMTP id 7E36D1C00B
	for <gentoo-commits@lists.gentoo.org>; Wed, 20 Apr 2011 20:39:11 +0000 (UTC)
Received: from pelican.gentoo.org (unknown [66.219.59.40])
	(using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 10BD71B4021
	for <gentoo-commits@lists.gentoo.org>; Wed, 20 Apr 2011 20:39:11 +0000 (UTC)
Received: from localhost.localdomain (localhost [127.0.0.1])
	by pelican.gentoo.org (Postfix) with ESMTP id 2099780299
	for <gentoo-commits@lists.gentoo.org>; Wed, 20 Apr 2011 20:39:10 +0000 (UTC)
From: "Nirbheek Chauhan" <nirbheek@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Nirbheek Chauhan" <nirbheek@gentoo.org>
Message-ID: <4ed77a4609bb55081f91a5f3c6afeeffc1196216.nirbheek@gentoo>
Subject: [gentoo-commits] proj/gnome:master commit in: eclass/
X-VCS-Repository: proj/gnome
X-VCS-Files: eclass/gnome2-live.eclass
X-VCS-Directories: eclass/
X-VCS-Committer: nirbheek
X-VCS-Committer-Name: Nirbheek Chauhan
X-VCS-Revision: 4ed77a4609bb55081f91a5f3c6afeeffc1196216
Date: Wed, 20 Apr 2011 20:39:10 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: quoted-printable
X-Archives-Salt: 
X-Archives-Hash: 0c3f137320784ce61c508a63e86d8a8e

commit:     4ed77a4609bb55081f91a5f3c6afeeffc1196216
Author:     Nirbheek Chauhan <nirbheek <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 20 20:38:50 2011 +0000
Commit:     Nirbheek Chauhan <nirbheek <AT> gentoo <DOT> org>
CommitDate: Wed Apr 20 20:38:50 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=3Dproj/gnome.git;a=3D=
commit;h=3D4ed77a46

gnome2-live.eclass: fix module path breakage, bug 363219

---
 eclass/gnome2-live.eclass |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/eclass/gnome2-live.eclass b/eclass/gnome2-live.eclass
index e85a9c9..3b4ea78 100644
--- a/eclass/gnome2-live.eclass
+++ b/eclass/gnome2-live.eclass
@@ -1,4 +1,4 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
=20
@@ -17,7 +17,7 @@ inherit autotools gnome2 gnome2-utils libtool git
 # Stolen from git.eclass
 EXPORTED_FUNCTIONS=3D"src_unpack pkg_postinst"
 case "${EAPI:-0}" in
-    2|3) EXPORTED_FUNCTIONS=3D"${EXPORTED_FUNCTIONS} src_prepare" ;;
+    2|3|4) EXPORTED_FUNCTIONS=3D"${EXPORTED_FUNCTIONS} src_prepare" ;;
     0|1) ;;
     *) die "Unknown EAPI, Bug eclass maintainers." ;;
 esac
@@ -39,10 +39,10 @@ DEPEND=3D"${DEPEND}
 ELTCONF=3D${ELTCONF:-}
=20
 # Default git module name
-GNOME_LIVE_MODULE=3D${MODPATH:-"${PN}"}
+GNOME_LIVE_MODULE=3D${GNOME_LIVE_MODULE:-"${PN}"}
=20
 # GIT URI for the project
-EGIT_REPO_URI=3D"${EGIT_REPO_URI:-"git://git.gnome.org/${MODPATH}"}"
+EGIT_REPO_URI=3D"${EGIT_REPO_URI:-"git://git.gnome.org/${GNOME_LIVE_MODU=
LE}"}"
=20
 # Unset SRC_URI auto-set by gnome2.eclass
 SRC_URI=3D""