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 1QwGS1-0005aX-AL for garchives@archives.gentoo.org; Wed, 24 Aug 2011 16:37:13 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 82E1D21C1A8; Wed, 24 Aug 2011 16:33:10 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 50CEF21C1A8 for ; Wed, 24 Aug 2011 16:33:00 +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 9387B1B400E for ; Wed, 24 Aug 2011 16:32:59 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id AEA9180040 for ; Wed, 24 Aug 2011 16:32:58 +0000 (UTC) From: "Alexandre Restovtsev" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexandre Restovtsev" Message-ID: <50480472b3beaf7a6a3b103f664321c6d6f7a7ff.tetromino@gentoo> Subject: [gentoo-commits] proj/gnome:gnome-next commit in: eclass/ X-VCS-Repository: proj/gnome X-VCS-Files: eclass/gnome2.eclass X-VCS-Directories: eclass/ X-VCS-Committer: tetromino X-VCS-Committer-Name: Alexandre Restovtsev X-VCS-Revision: 50480472b3beaf7a6a3b103f664321c6d6f7a7ff Date: Wed, 24 Aug 2011 16:32:58 +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: 07b0b5823d492a60195f1b85d2fe7410 commit: 50480472b3beaf7a6a3b103f664321c6d6f7a7ff Author: Arun Raghavan gentoo org> AuthorDate: Wed Aug 24 06:49:06 2011 +0000 Commit: Alexandre Restovtsev gmail com> CommitDate: Wed Aug 24 16:32:47 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/gnome.git;a=3D= commit;h=3D50480472 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