commit: 5a3cc3108312a8982db95c0615361a4b1fe46884
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri May 6 16:21:27 2016 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri May 6 16:32:05 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a3cc310
x11-misc/shutterbug: Fix global scope use* calls, #582206
Copy the solution for global scope use* calls from newer ebuilds.
x11-misc/shutterbug/shutterbug-1.6.36.ebuild | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/x11-misc/shutterbug/shutterbug-1.6.36.ebuild
b/x11-misc/shutterbug/shutterbug-1.6.36.ebuild
index 89d7e03..0afa601 100644
--- a/x11-misc/shutterbug/shutterbug-1.6.36.ebuild
+++ b/x11-misc/shutterbug/shutterbug-1.6.36.ebuild
@@ -21,6 +21,8 @@ DEPEND="
RDEPEND="${DEPEND}"
-FOXCONF="$(use_enable jpeg) \
- $(use_enable png) \
- $(use_enable tiff)"
+src_configure() {
+ FOXCONF="$(use_enable jpeg) \
+ $(use_enable png) \
+ $(use_enable tiff)" fox_src_configure
+}