diff options
author | Michał Górny <mgorny@gentoo.org> | 2016-05-06 18:21:27 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2016-05-06 18:32:05 +0200 |
commit | 5a3cc3108312a8982db95c0615361a4b1fe46884 (patch) | |
tree | f7fc2c50eae4c6244ec8087bc1eda2d880648cb0 /x11-misc/shutterbug | |
parent | 63838a926c9ebd9839f903df054cf68b7a0c6861 (diff) | |
download | gentoo-5a3cc3108312a8982db95c0615361a4b1fe46884.tar.gz gentoo-5a3cc3108312a8982db95c0615361a4b1fe46884.tar.xz |
x11-misc/shutterbug: Fix global scope use* calls, #582206
Copy the solution for global scope use* calls from newer ebuilds.
Diffstat (limited to 'x11-misc/shutterbug')
-rw-r--r-- | x11-misc/shutterbug/shutterbug-1.6.36.ebuild | 8 |
1 files 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 89d7e038acf..0afa601a3b8 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 +} |