diff options
author | Pacho Ramos <pacho@gentoo.org> | 2015-12-19 12:06:40 +0100 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2015-12-19 12:09:49 +0100 |
commit | 2142321ce20725855e98f4707297fff7bbb5d9f6 (patch) | |
tree | 4f1ccc8a0523006a2025f1888226e500b21d0cdb /media-sound/paprefs | |
parent | dev-cpp/gconfmm: Fix building with latest glibmm/libsigc++ (#568580) (diff) | |
download | gentoo-2142321ce20725855e98f4707297fff7bbb5d9f6.tar.gz gentoo-2142321ce20725855e98f4707297fff7bbb5d9f6.tar.bz2 gentoo-2142321ce20725855e98f4707297fff7bbb5d9f6.zip |
media-sound/paprefs: Fix building with latest glibmm/libsigc++ (#568590)
Package-Manager: portage-2.2.26
Diffstat (limited to 'media-sound/paprefs')
-rw-r--r-- | media-sound/paprefs/paprefs-0.9.10.ebuild | 7 |
1 files 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 ebd06992133c..2335e3eb145d 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 } |