From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-885632-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 0C94913829C for <garchives@archives.gentoo.org>; Sun, 5 Jun 2016 18:24:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5D02FE089B; Sun, 5 Jun 2016 18:24:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 01302E089B for <gentoo-commits@lists.gentoo.org>; Sun, 5 Jun 2016 18:23:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0357F340A98 for <gentoo-commits@lists.gentoo.org>; Sun, 5 Jun 2016 18:23:59 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1ECB4970 for <gentoo-commits@lists.gentoo.org>; Sun, 5 Jun 2016 18:23:56 +0000 (UTC) From: "Mike Gilbert" <floppym@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" <floppym@gentoo.org> Message-ID: <1465150703.033fc93d98e3f11bfa6ecda79838b17ac55079ab.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/pathfinder/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/pathfinder/pathfinder-1.6.36.ebuild X-VCS-Directories: x11-misc/pathfinder/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 033fc93d98e3f11bfa6ecda79838b17ac55079ab X-VCS-Branch: master Date: Sun, 5 Jun 2016 18:23:56 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: d52abc8e-240a-485d-9932-faf4621981a2 X-Archives-Hash: ca01053e4ab23eae7d1a156363575149 commit: 033fc93d98e3f11bfa6ecda79838b17ac55079ab Author: Mike Gilbert <floppym <AT> gentoo <DOT> org> AuthorDate: Sun Jun 5 18:18:23 2016 +0000 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org> CommitDate: Sun Jun 5 18:18:23 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=033fc93d 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 x11-misc/pathfinder/pathfinder-1.6.36.ebuild | 10 ++++++---- 1 file 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 61802fd..e46ddc1 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 +}