From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 40D64138330 for ; Sat, 27 Aug 2016 16:38:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6CEBBE0AE6; Sat, 27 Aug 2016 16:38:03 +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 F0464E0AE6 for ; Sat, 27 Aug 2016 16:38:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 1EFCD340688 for ; Sat, 27 Aug 2016 16:38:01 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 050E91B9B for ; Sat, 27 Aug 2016 16:37:59 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1472315872.2d82e4e3b3ee6c1b0f150a21a6ed2bba7976e38f.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/fuse/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/fuse/fuse-1.0.0.ebuild X-VCS-Directories: app-emulation/fuse/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: 2d82e4e3b3ee6c1b0f150a21a6ed2bba7976e38f X-VCS-Branch: master Date: Sat, 27 Aug 2016 16:37:59 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 604dff0b-8cf0-4b06-b7c5-a5f7ff5f39b0 X-Archives-Hash: 5cde85cd6fc9e0b34773fcb09d719187 commit: 2d82e4e3b3ee6c1b0f150a21a6ed2bba7976e38f Author: Sergei Trofimovich gentoo org> AuthorDate: Sat Aug 27 16:37:52 2016 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Sat Aug 27 16:37:52 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d82e4e3 app-emulation/fuse: workaround underlinking against libm, bug #370265 Reported-by: Diego Elio Pettenò Bug: https://bugs.gentoo.org/370265 Package-Manager: portage-2.3.0 app-emulation/fuse/fuse-1.0.0.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app-emulation/fuse/fuse-1.0.0.ebuild b/app-emulation/fuse/fuse-1.0.0.ebuild index 43aaa50..fb3210e 100644 --- a/app-emulation/fuse/fuse-1.0.0.ebuild +++ b/app-emulation/fuse/fuse-1.0.0.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ EAPI=4 -inherit eutils +inherit eutils flag-o-matic DESCRIPTION="Free Unix Spectrum Emulator by Philip Kendall" HOMEPAGE="http://fuse-emulator.sourceforge.net" @@ -75,6 +75,8 @@ src_configure() { guiflag="--without-gtk" fi + append-libs -lm #370265, fixed in 1.1.1 + econf \ --without-win32 \ ${guiflag} \