commit: 2142321ce20725855e98f4707297fff7bbb5d9f6 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org> AuthorDate: Sat Dec 19 11:06:40 2015 +0000 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org> CommitDate: Sat Dec 19 11:09:49 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2142321c
media-sound/paprefs: Fix building with latest glibmm/libsigc++ (#568590) Package-Manager: portage-2.2.26 media-sound/paprefs/paprefs-0.9.10.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/media-sound/paprefs/paprefs-0.9.10.ebuild b/media-sound/paprefs/paprefs-0.9.10.ebuild index ebd0699..2335e3e 100644 --- a/media-sound/paprefs/paprefs-0.9.10.ebuild +++ b/media-sound/paprefs/paprefs-0.9.10.ebuild @@ -2,7 +2,8 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=4 +EAPI=5 +inherit flag-o-matic DESCRIPTION="PulseAudio Preferences, configuration dialog for PulseAudio" HOMEPAGE="http://freedesktop.org/software/pulseaudio/paprefs" @@ -25,6 +26,7 @@ DEPEND="${RDEPEND} virtual/pkgconfig" src_configure() { + append-cxxflags -std=c++11 #568590 econf \ --disable-dependency-tracking \ --disable-lynx \ @@ -32,7 +34,6 @@ src_configure() { } src_install() { - emake DESTDIR="${D}" install || die + default dohtml -r doc - dodoc README }