From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Q1SzL-0002px-G5 for garchives@archives.gentoo.org; Mon, 21 Mar 2011 00:28:51 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3D14AE045E; Mon, 21 Mar 2011 00:28:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 102EEE045E for ; Mon, 21 Mar 2011 00:28:43 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 930291BC013 for ; Mon, 21 Mar 2011 00:28:43 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id F30AC8006A for ; Mon, 21 Mar 2011 00:28:42 +0000 (UTC) From: "Nirbheek Chauhan" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Nirbheek Chauhan" Message-ID: Subject: [gentoo-commits] proj/gnome:master commit in: dev-cpp/pangomm/ X-VCS-Repository: proj/gnome X-VCS-Files: dev-cpp/pangomm/pangomm-2.27.1.ebuild X-VCS-Directories: dev-cpp/pangomm/ X-VCS-Committer: nirbheek X-VCS-Committer-Name: Nirbheek Chauhan X-VCS-Revision: d0cd9f5e2f661e08d00909e81b7014be497d0554 Date: Mon, 21 Mar 2011 00:28:42 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 949d1d745c67d72385aa8d66a621151e commit: d0cd9f5e2f661e08d00909e81b7014be497d0554 Author: Nirbheek Chauhan gentoo org> AuthorDate: Mon Mar 21 00:28:25 2011 +0000 Commit: Nirbheek Chauhan gentoo org> CommitDate: Mon Mar 21 00:28:25 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/gnome.git;a=3D= commit;h=3Dd0cd9f5e dev-cpp/pangomm: fix build with latest glibmm/mm-common * Make eautoreconf conditional to save build time for people * The hack shouldn't be needed for the next release --- dev-cpp/pangomm/pangomm-2.27.1.ebuild | 12 ++++++++++-- 1 files changed, 10 insertions(+), 2 deletions(-) diff --git a/dev-cpp/pangomm/pangomm-2.27.1.ebuild b/dev-cpp/pangomm/pang= omm-2.27.1.ebuild index ecd73cb..1a7fc5e 100644 --- a/dev-cpp/pangomm/pangomm-2.27.1.ebuild +++ b/dev-cpp/pangomm/pangomm-2.27.1.ebuild @@ -5,7 +5,7 @@ EAPI=3D"3" GCONF_DEBUG=3D"no" =20 -inherit gnome2 +inherit autotools gnome2 =20 DESCRIPTION=3D"C++ interface for pango" HOMEPAGE=3D"http://www.gtkmm.org" @@ -21,16 +21,24 @@ RDEPEND=3D">=3Dx11-libs/pango-1.23.0 dev-libs/libsigc++:2 !=3Ddev-cpp/mm-common-0.9.3 media-gfx/graphviz dev-libs/libxslt app-doc/doxygen )" =20 -pkg_setup() { +src_prepare() { G2CONF=3D"${G2CONF} --disable-maintainer-mode $(use_enable doc documentation)" DOCS=3D"AUTHORS ChangeLog NEWS README*" + + if use doc; then + # Needed temporarily till next release see glibmm's mm-common dep for = details + mm-common-prepare --copy --force + eautoreconf + fi }