Gentoo Archives: gentoo-commits

From: Guilherme Amadio <amadio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/gimp/
Date: Tue, 29 Aug 2017 23:16:44
Message-Id: 1504048597.da597a9ae28ca4e1ac6c6789d3ea59d01b15dcca.amadio@gentoo
1 commit: da597a9ae28ca4e1ac6c6789d3ea59d01b15dcca
2 Author: Guilherme Amadio <amadio <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 29 23:15:56 2017 +0000
4 Commit: Guilherme Amadio <amadio <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 29 23:16:37 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da597a9a
7
8 media-gfx/gimp: prefix support
9
10 Package-Manager: Portage-2.3.8, Repoman-2.3.3
11
12 media-gfx/gimp/gimp-2.9.6.ebuild | 6 +++---
13 1 file changed, 3 insertions(+), 3 deletions(-)
14
15 diff --git a/media-gfx/gimp/gimp-2.9.6.ebuild b/media-gfx/gimp/gimp-2.9.6.ebuild
16 index 4411c301ad3..a10239d72f3 100644
17 --- a/media-gfx/gimp/gimp-2.9.6.ebuild
18 +++ b/media-gfx/gimp/gimp-2.9.6.ebuild
19 @@ -103,8 +103,8 @@ src_prepare() {
20
21 src_configure() {
22 local myconf=(
23 - GEGL=/usr/bin/gegl-0.3
24 - GDBUS_CODEGEN=/bin/false
25 + GEGL=${EPREFIX}/usr/bin/gegl-0.3
26 + GDBUS_CODEGEN=${EPREFIX}/bin/false
27
28 --enable-default-binary
29 --disable-silent-rules
30 @@ -148,7 +148,7 @@ src_compile() {
31 addwrite /dev/ati/ # bug 589198
32 addwrite /proc/mtrr # bug 589198
33
34 - export XDG_DATA_DIRS=/usr/share # bug 587004
35 + export XDG_DATA_DIRS=${EPREFIX}/usr/share # bug 587004
36 gnome2_src_compile
37 }