Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/shutterbug/
Date: Fri, 06 May 2016 16:32:23
Message-Id: 1462552325.5a3cc3108312a8982db95c0615361a4b1fe46884.mgorny@gentoo
1 commit: 5a3cc3108312a8982db95c0615361a4b1fe46884
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 6 16:21:27 2016 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri May 6 16:32:05 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a3cc310
7
8 x11-misc/shutterbug: Fix global scope use* calls, #582206
9
10 Copy the solution for global scope use* calls from newer ebuilds.
11
12 x11-misc/shutterbug/shutterbug-1.6.36.ebuild | 8 +++++---
13 1 file changed, 5 insertions(+), 3 deletions(-)
14
15 diff --git a/x11-misc/shutterbug/shutterbug-1.6.36.ebuild b/x11-misc/shutterbug/shutterbug-1.6.36.ebuild
16 index 89d7e03..0afa601 100644
17 --- a/x11-misc/shutterbug/shutterbug-1.6.36.ebuild
18 +++ b/x11-misc/shutterbug/shutterbug-1.6.36.ebuild
19 @@ -21,6 +21,8 @@ DEPEND="
20
21 RDEPEND="${DEPEND}"
22
23 -FOXCONF="$(use_enable jpeg) \
24 - $(use_enable png) \
25 - $(use_enable tiff)"
26 +src_configure() {
27 + FOXCONF="$(use_enable jpeg) \
28 + $(use_enable png) \
29 + $(use_enable tiff)" fox_src_configure
30 +}