Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/fuse/
Date: Sat, 27 Aug 2016 16:38:06
Message-Id: 1472315872.2d82e4e3b3ee6c1b0f150a21a6ed2bba7976e38f.slyfox@gentoo
1 commit: 2d82e4e3b3ee6c1b0f150a21a6ed2bba7976e38f
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 27 16:37:52 2016 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 27 16:37:52 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d82e4e3
7
8 app-emulation/fuse: workaround underlinking against libm, bug #370265
9
10 Reported-by: Diego Elio Pettenò
11 Bug: https://bugs.gentoo.org/370265
12
13 Package-Manager: portage-2.3.0
14
15 app-emulation/fuse/fuse-1.0.0.ebuild | 6 ++++--
16 1 file changed, 4 insertions(+), 2 deletions(-)
17
18 diff --git a/app-emulation/fuse/fuse-1.0.0.ebuild b/app-emulation/fuse/fuse-1.0.0.ebuild
19 index 43aaa50..fb3210e 100644
20 --- a/app-emulation/fuse/fuse-1.0.0.ebuild
21 +++ b/app-emulation/fuse/fuse-1.0.0.ebuild
22 @@ -1,9 +1,9 @@
23 -# Copyright 1999-2012 Gentoo Foundation
24 +# Copyright 1999-2016 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 # $Id$
27
28 EAPI=4
29 -inherit eutils
30 +inherit eutils flag-o-matic
31
32 DESCRIPTION="Free Unix Spectrum Emulator by Philip Kendall"
33 HOMEPAGE="http://fuse-emulator.sourceforge.net"
34 @@ -75,6 +75,8 @@ src_configure() {
35 guiflag="--without-gtk"
36 fi
37
38 + append-libs -lm #370265, fixed in 1.1.1
39 +
40 econf \
41 --without-win32 \
42 ${guiflag} \