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 1A7C41384B4 for ; Tue, 15 Dec 2015 20:36:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 81D9AE0876; Tue, 15 Dec 2015 20:36:57 +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 23E3BE0876 for ; Tue, 15 Dec 2015 20:36:57 +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 0781F3403C1 for ; Tue, 15 Dec 2015 20:36:55 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 59EDFB3D for ; Tue, 15 Dec 2015 20:36:52 +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: <1450211805.22a18c6931f5224bc6cd6a7c297bdfded08f6f5b.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/libpar2/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/libpar2/libpar2-0.4.ebuild X-VCS-Directories: app-arch/libpar2/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 22a18c6931f5224bc6cd6a7c297bdfded08f6f5b X-VCS-Branch: master Date: Tue, 15 Dec 2015 20:36:52 +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: f0da1922-7cc2-45a8-9480-53a3944e8beb X-Archives-Hash: df54bc65358d7b47b0535fc8454c21ec commit: 22a18c6931f5224bc6cd6a7c297bdfded08f6f5b Author: Pacho Ramos gentoo org> AuthorDate: Tue Dec 15 20:29:28 2015 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Tue Dec 15 20:36:45 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22a18c69 app-arch/libpar2: Fix building with latest glibmm/libsigc++ (#567498) Package-Manager: portage-2.2.26 app-arch/libpar2/libpar2-0.4.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/app-arch/libpar2/libpar2-0.4.ebuild b/app-arch/libpar2/libpar2-0.4.ebuild index 18c5bed..4c7a699 100644 --- a/app-arch/libpar2/libpar2-0.4.ebuild +++ b/app-arch/libpar2/libpar2-0.4.ebuild @@ -4,7 +4,7 @@ EAPI=5 -inherit autotools-utils +inherit autotools-utils flag-o-matic DESCRIPTION="A library for par2, extracted from par2cmdline" HOMEPAGE="https://launchpad.net/libpar2/" @@ -23,3 +23,8 @@ DOCS=( AUTHORS ChangeLog README ) # Needed to install all headers properly (bug #391815) AUTOTOOLS_IN_SOURCE_BUILD=1 + +src_prepare() { + autotools-utils_src_prepare + append-cxxflags -std=c++11 #567498 +}