summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Pipping <sping@gentoo.org>2012-01-02 11:59:07 +0000
committerSebastian Pipping <sping@gentoo.org>2012-01-02 11:59:07 +0000
commit823078dac7e0faf1f955ac739f61e9cd4e654d9c (patch)
tree8ca36569d3f180d11013019991ba137b2844c1df /media-libs/gegl
parentVersion bump. The new version adds timeout support and a manpage. (diff)
downloadgentoo-2-823078dac7e0faf1f955ac739f61e9cd4e654d9c.tar.gz
gentoo-2-823078dac7e0faf1f955ac739f61e9cd4e654d9c.tar.bz2
gentoo-2-823078dac7e0faf1f955ac739f61e9cd4e654d9c.zip
media-libs/gegl: Fix sandbox issues (bug #396687)
(Portage version: 2.1.10.43/cvs/Linux x86_64)
Diffstat (limited to 'media-libs/gegl')
-rw-r--r--media-libs/gegl/ChangeLog7
-rw-r--r--media-libs/gegl/gegl-0.1.8.ebuild13
2 files changed, 11 insertions, 9 deletions
diff --git a/media-libs/gegl/ChangeLog b/media-libs/gegl/ChangeLog
index e1fdfa0767f8..68175f0656fd 100644
--- a/media-libs/gegl/ChangeLog
+++ b/media-libs/gegl/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for media-libs/gegl
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/gegl/ChangeLog,v 1.61 2012/01/01 21:54:45 sping Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/gegl/ChangeLog,v 1.62 2012/01/02 11:59:07 sping Exp $
+
+ 02 Jan 2012; Sebastian Pipping <sping@gentoo.org> gegl-0.1.8.ebuild:
+ Fix remaining sandbox issues using gnome2_environment_reset of the
+ gnome2-utils eclass. Idea by Alexandre Rostovtsev (tetromino), testing by
+ Mike Callahan and others. (bug #396687)
01 Jan 2012; Sebastian Pipping <sping@gentoo.org> gegl-0.1.8.ebuild:
Hopefully fix sandbox violation (bug #396687)
diff --git a/media-libs/gegl/gegl-0.1.8.ebuild b/media-libs/gegl/gegl-0.1.8.ebuild
index c0ade8e0a462..fff00e2937e9 100644
--- a/media-libs/gegl/gegl-0.1.8.ebuild
+++ b/media-libs/gegl/gegl-0.1.8.ebuild
@@ -1,10 +1,10 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/gegl/gegl-0.1.8.ebuild,v 1.3 2012/01/01 21:54:45 sping Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/gegl/gegl-0.1.8.ebuild,v 1.4 2012/01/02 11:59:06 sping Exp $
EAPI=4
-inherit eutils autotools
+inherit gnome2-utils eutils autotools
DESCRIPTION="A graph based image processing framework"
HOMEPAGE="http://www.gegl.org/"
@@ -97,16 +97,13 @@ src_configure() {
}
src_test() {
- # set xdg dirs to not violate sandbox constrains
- export XDG_CONFIG_HOME="${T}"
- export XDG_CACHE_HOME="${T}"
-
+ gnome2_environment_reset # sandbox issues
default
}
src_compile() {
- # Sandbox workaround (bug #396687)
- GI_SCANNER_DISABLE_CACHE=yes_please default
+ gnome2_environment_reset # sandbox issues (bug #396687)
+ default
}
src_install() {