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/pavumeter/
Date: Sat, 19 Dec 2015 11:10:20
Message-Id: 1450523391.1627a68f05bba81827a17eee9832b31c57081261.pacho@gentoo
1 commit: 1627a68f05bba81827a17eee9832b31c57081261
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 19 11:09:09 2015 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 19 11:09:51 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1627a68f
7
8 media-sound/pavumeter: Fix building with latest glibmm/libsigc++ (#568592)
9
10 Package-Manager: portage-2.2.26
11
12 media-sound/pavumeter/pavumeter-0.9.3-r1.ebuild | 8 ++++----
13 1 file changed, 4 insertions(+), 4 deletions(-)
14
15 diff --git a/media-sound/pavumeter/pavumeter-0.9.3-r1.ebuild b/media-sound/pavumeter/pavumeter-0.9.3-r1.ebuild
16 index c596806..e5d26c5 100644
17 --- a/media-sound/pavumeter/pavumeter-0.9.3-r1.ebuild
18 +++ b/media-sound/pavumeter/pavumeter-0.9.3-r1.ebuild
19 @@ -2,7 +2,8 @@
20 # Distributed under the terms of the GNU General Public License v2
21 # $Id$
22
23 -EAPI=2
24 +EAPI=5
25 +inherit flag-o-matic
26
27 DESCRIPTION="PulseAudio Volume Meter, simple GTK volume meter for PulseAudio"
28 HOMEPAGE="http://0pointer.de/lennart/projects/pavumeter/"
29 @@ -21,13 +22,12 @@ DEPEND="${RDEPEND}
30 virtual/pkgconfig"
31
32 src_configure() {
33 + append-cxxflags -std=c++11 #568592
34 econf \
35 - --disable-dependency-tracking \
36 --disable-lynx
37 }
38
39 src_install() {
40 - emake DESTDIR="${D}" install || die
41 + default
42 dohtml -r doc
43 - dodoc README
44 }