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 1Qw7WO-00065q-4M for garchives@archives.gentoo.org; Wed, 24 Aug 2011 07:05:09 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2AF1721C100; Wed, 24 Aug 2011 07:04:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id EA4EB21C073 for ; Wed, 24 Aug 2011 07:04:53 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 26FFC1B4011 for ; Wed, 24 Aug 2011 07:04:53 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 464B980040 for ; Wed, 24 Aug 2011 07:04:52 +0000 (UTC) From: "Arun Raghavan" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arun Raghavan" Message-ID: <72d496183b7c2c0a97f8c1763c68e1c5912a5167.ford_prefect@gentoo> Subject: [gentoo-commits] proj/gnome:master commit in: eclass/ X-VCS-Repository: proj/gnome X-VCS-Files: eclass/gnome2.eclass X-VCS-Directories: eclass/ X-VCS-Committer: ford_prefect X-VCS-Committer-Name: Arun Raghavan X-VCS-Revision: 72d496183b7c2c0a97f8c1763c68e1c5912a5167 Date: Wed, 24 Aug 2011 07:04:52 +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: X-Archives-Hash: 3e11eaf3b8ed30fc6df02b6835ae56fb commit: 72d496183b7c2c0a97f8c1763c68e1c5912a5167 Author: Arun Raghavan gentoo org> AuthorDate: Wed Aug 24 06:49:06 2011 +0000 Commit: Arun Raghavan gentoo org> CommitDate: Wed Aug 24 06:50:42 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/gnome.git;a=3D= commit;h=3D72d49618 eclass/gnome2.eclass: Move GST_REGISTRY export to src_prepare We might end up calling gst functions anywhere (gupnp-dlna calls it in documentation generation, for example). --- eclass/gnome2.eclass | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/eclass/gnome2.eclass b/eclass/gnome2.eclass index 49a0556..c177b4f 100644 --- a/eclass/gnome2.eclass +++ b/eclass/gnome2.eclass @@ -108,6 +108,9 @@ gnome2_src_prepare() { # http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.htm= l chmod 0700 "${XDG_RUNTIME_DIR}" =20 + # GST_REGISTRY is to work around gst utilities trying to read/write /ro= ot + export GST_REGISTRY=3D"${S}/registry.xml" + # Prevent scrollkeeper access violations gnome2_omf_fix =20 @@ -140,8 +143,7 @@ gnome2_src_configure() { # Avoid sandbox violations caused by gnome-vfs (bug #128289 and #345659= ) addwrite "$(unset HOME; echo ~)/.gnome2" =20 - # GST_REGISTRY is to work around gst-inspect trying to read/write /root - GST_REGISTRY=3D"${S}/registry.xml" econf "$@" ${G2CONF} + econf "$@" ${G2CONF} } =20 # @FUNCTION: gnome2_src_compile