From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 57B631388C1 for ; Sat, 19 Dec 2015 11:10:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E27A421C003; Sat, 19 Dec 2015 11:10:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8A38021C003 for ; Sat, 19 Dec 2015 11:10:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 56C48340751 for ; Sat, 19 Dec 2015 11:10:16 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CDBD5CB0 for ; Sat, 19 Dec 2015 11:10:13 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1450523389.2142321ce20725855e98f4707297fff7bbb5d9f6.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/paprefs/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/paprefs/paprefs-0.9.10.ebuild X-VCS-Directories: media-sound/paprefs/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 2142321ce20725855e98f4707297fff7bbb5d9f6 X-VCS-Branch: master Date: Sat, 19 Dec 2015 11:10:13 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: ba5bdd8b-3c03-4022-adb6-35d4b4df40d4 X-Archives-Hash: b456d3842c9e4d8d6de135e81a23f462 commit: 2142321ce20725855e98f4707297fff7bbb5d9f6 Author: Pacho Ramos gentoo org> AuthorDate: Sat Dec 19 11:06:40 2015 +0000 Commit: Pacho Ramos gentoo 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 }