Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/enblend/
Date: Sat, 28 Jan 2017 13:47:45
Message-Id: 1485611182.3edfb6ad50d294cb812ef2c3088a39bdcd282fc6.soap@gentoo
1 commit: 3edfb6ad50d294cb812ef2c3088a39bdcd282fc6
2 Author: Jonathan Scruggs <j.scruggs <AT> gmail <DOT> com>
3 AuthorDate: Fri Jan 27 16:27:42 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 28 13:46:22 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3edfb6ad
7
8 media-gfx/enblend: Fix sandbox access violations
9
10 The new version of ImageMagick needs access to /dev/dri for image
11 rendering, thus causing the installation of enblend to fail.
12
13 Signed-off by: Jonathan Scruggs (j.scruggs <AT> gmail.com)
14 Closes: https://github.com/gentoo/gentoo/pull/3682
15
16 media-gfx/enblend/enblend-4.2.0_p20161007.ebuild | 5 +++++
17 1 file changed, 5 insertions(+)
18
19 diff --git a/media-gfx/enblend/enblend-4.2.0_p20161007.ebuild b/media-gfx/enblend/enblend-4.2.0_p20161007.ebuild
20 index 0c86b867..aa15cce 100644
21 --- a/media-gfx/enblend/enblend-4.2.0_p20161007.ebuild
22 +++ b/media-gfx/enblend/enblend-4.2.0_p20161007.ebuild
23 @@ -67,7 +67,12 @@ src_configure() {
24 }
25
26 src_compile() {
27 + # To allow icon resizing with renderers (no way to disable)
28 + addpredict /dev/dri
29 +
30 + # To compile fonts in the temp directory
31 export VARTEXFONTS="${T}/fonts"
32 +
33 # forcing -j1 as every parallel compilation process needs about 1 GB RAM.
34 cmake-utils_src_compile -j1
35 }