Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/paprefs/
Date: Sat, 19 Dec 2015 11:10:20
Message-Id: 1450523389.2142321ce20725855e98f4707297fff7bbb5d9f6.pacho@gentoo
1 commit: 2142321ce20725855e98f4707297fff7bbb5d9f6
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 19 11:06:40 2015 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 19 11:09:49 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2142321c
7
8 media-sound/paprefs: Fix building with latest glibmm/libsigc++ (#568590)
9
10 Package-Manager: portage-2.2.26
11
12 media-sound/paprefs/paprefs-0.9.10.ebuild | 7 ++++---
13 1 file changed, 4 insertions(+), 3 deletions(-)
14
15 diff --git a/media-sound/paprefs/paprefs-0.9.10.ebuild b/media-sound/paprefs/paprefs-0.9.10.ebuild
16 index ebd0699..2335e3e 100644
17 --- a/media-sound/paprefs/paprefs-0.9.10.ebuild
18 +++ b/media-sound/paprefs/paprefs-0.9.10.ebuild
19 @@ -2,7 +2,8 @@
20 # Distributed under the terms of the GNU General Public License v2
21 # $Id$
22
23 -EAPI=4
24 +EAPI=5
25 +inherit flag-o-matic
26
27 DESCRIPTION="PulseAudio Preferences, configuration dialog for PulseAudio"
28 HOMEPAGE="http://freedesktop.org/software/pulseaudio/paprefs"
29 @@ -25,6 +26,7 @@ DEPEND="${RDEPEND}
30 virtual/pkgconfig"
31
32 src_configure() {
33 + append-cxxflags -std=c++11 #568590
34 econf \
35 --disable-dependency-tracking \
36 --disable-lynx \
37 @@ -32,7 +34,6 @@ src_configure() {
38 }
39
40 src_install() {
41 - emake DESTDIR="${D}" install || die
42 + default
43 dohtml -r doc
44 - dodoc README
45 }