diff options
author | Mike Gilbert <floppym@gentoo.org> | 2016-06-05 14:18:23 -0400 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2016-06-05 14:18:23 -0400 |
commit | 033fc93d98e3f11bfa6ecda79838b17ac55079ab (patch) | |
tree | 986e15f83d4632554bc5afd065b55ec400df2998 /x11-misc | |
parent | dev-python/python-musicbrainz-ngs: remove old (diff) | |
download | gentoo-033fc93d98e3f11bfa6ecda79838b17ac55079ab.tar.gz gentoo-033fc93d98e3f11bfa6ecda79838b17ac55079ab.tar.bz2 gentoo-033fc93d98e3f11bfa6ecda79838b17ac55079ab.zip |
x11-misc/pathfinder: move FOXCONF definition to src_compile
mgorny had the right idea in e4333453, but EAPI 1 does not execute
src_configure.
Bug: https://bugs.gentoo.org/582206
Package-Manager: portage-2.3.0_rc1_p14
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/pathfinder/pathfinder-1.6.36.ebuild | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/x11-misc/pathfinder/pathfinder-1.6.36.ebuild b/x11-misc/pathfinder/pathfinder-1.6.36.ebuild index 61802fde79cd..e46ddc106ad1 100644 --- a/x11-misc/pathfinder/pathfinder-1.6.36.ebuild +++ b/x11-misc/pathfinder/pathfinder-1.6.36.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -21,6 +21,8 @@ DEPEND=" RDEPEND="${DEPEND}" -FOXCONF="$(use_enable jpeg) \ - $(use_enable png) \ - $(use_enable tiff)" +src_compile() { + FOXCONF="$(use_enable jpeg) \ + $(use_enable png) \ + $(use_enable tiff)" fox_src_compile +} |