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 214571384B4 for ; Wed, 23 Dec 2015 10:59:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 46EF521C0B0; Wed, 23 Dec 2015 10:59:30 +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 8BF1821C0AF for ; Wed, 23 Dec 2015 10:59:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BFBE634087E for ; Wed, 23 Dec 2015 10:59:28 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A2C19CF2 for ; Wed, 23 Dec 2015 10:59:25 +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: <1450868333.9e1e17f61f8432c402d9df9dbacd4efa86099ba4.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/ganv/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/ganv/ganv-1.4.2.ebuild X-VCS-Directories: media-libs/ganv/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 9e1e17f61f8432c402d9df9dbacd4efa86099ba4 X-VCS-Branch: master Date: Wed, 23 Dec 2015 10:59:25 +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: 35773c2e-062a-4e8b-aaa5-cbb52c36353f X-Archives-Hash: f8862d370631b49e691bed6291657d2e commit: 9e1e17f61f8432c402d9df9dbacd4efa86099ba4 Author: Pacho Ramos gentoo org> AuthorDate: Wed Dec 23 10:48:07 2015 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Wed Dec 23 10:58:53 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e1e17f6 media-libs/ganv: Fix building with latest glibmm/libsigc++ Package-Manager: portage-2.2.26 media-libs/ganv/ganv-1.4.2.ebuild | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/media-libs/ganv/ganv-1.4.2.ebuild b/media-libs/ganv/ganv-1.4.2.ebuild index d29a09d..aca1ac6 100644 --- a/media-libs/ganv/ganv-1.4.2.ebuild +++ b/media-libs/ganv/ganv-1.4.2.ebuild @@ -5,7 +5,7 @@ EAPI=5 PYTHON_COMPAT=( python2_7 ) PYTHON_REQ_USE='threads(+)' -inherit eutils waf-utils python-any-r1 +inherit eutils flag-o-matic waf-utils python-any-r1 DESCRIPTION="A GTK+ widget for interactive graph-like environments" HOMEPAGE="http://drobilla.net/software/ganv/" @@ -16,22 +16,25 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="+fdgl +graphviz introspection nls" -RDEPEND="dev-cpp/glibmm:2 +RDEPEND=" + dev-cpp/glibmm:2 dev-cpp/gtkmm:2.4 x11-libs/gtk+:2 graphviz? ( media-gfx/graphviz[gtk] ) - introspection? ( app-text/yelp-tools - dev-libs/gobject-introspection[doctool] )" + introspection? ( + app-text/yelp-tools + dev-libs/gobject-introspection:=[doctool] ) +" DEPEND="${RDEPEND} - nls? ( virtual/libintl )" - -DOCS=( AUTHORS NEWS README ) + nls? ( virtual/libintl ) +" src_prepare() { epatch "${FILESDIR}"/${P}-no-fdgl.patch } src_configure() { + append-cxxflags -std=c++11 waf-utils_src_configure \ $(use graphviz || echo "--no-graphviz") \ $(use fdgl || echo "--no-fdgl") \