Gentoo Archives: gentoo-commits

From: Mike Gilbert <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/pathfinder/
Date: Sun, 05 Jun 2016 18:24:01
Message-Id: 1465150703.033fc93d98e3f11bfa6ecda79838b17ac55079ab.floppym@gentoo
1 commit: 033fc93d98e3f11bfa6ecda79838b17ac55079ab
2 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 5 18:18:23 2016 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 5 18:18:23 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=033fc93d
7
8 x11-misc/pathfinder: move FOXCONF definition to src_compile
9
10 mgorny had the right idea in e4333453, but EAPI 1 does not execute
11 src_configure.
12
13 Bug: https://bugs.gentoo.org/582206
14
15 Package-Manager: portage-2.3.0_rc1_p14
16
17 x11-misc/pathfinder/pathfinder-1.6.36.ebuild | 10 ++++++----
18 1 file changed, 6 insertions(+), 4 deletions(-)
19
20 diff --git a/x11-misc/pathfinder/pathfinder-1.6.36.ebuild b/x11-misc/pathfinder/pathfinder-1.6.36.ebuild
21 index 61802fd..e46ddc1 100644
22 --- a/x11-misc/pathfinder/pathfinder-1.6.36.ebuild
23 +++ b/x11-misc/pathfinder/pathfinder-1.6.36.ebuild
24 @@ -1,4 +1,4 @@
25 -# Copyright 1999-2011 Gentoo Foundation
26 +# Copyright 1999-2016 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 # $Id$
29
30 @@ -21,6 +21,8 @@ DEPEND="
31
32 RDEPEND="${DEPEND}"
33
34 -FOXCONF="$(use_enable jpeg) \
35 - $(use_enable png) \
36 - $(use_enable tiff)"
37 +src_compile() {
38 + FOXCONF="$(use_enable jpeg) \
39 + $(use_enable png) \
40 + $(use_enable tiff)" fox_src_compile
41 +}