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 067671381F3 for ; Mon, 26 Nov 2012 21:19:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A039B21C00A; Mon, 26 Nov 2012 21:19:02 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C7382E05F1 for ; Mon, 26 Nov 2012 21:19:01 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9E4E233D9A9 for ; Mon, 26 Nov 2012 21:19:00 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id DF1A1E5444 for ; Mon, 26 Nov 2012 21:18:57 +0000 (UTC) From: "Gilles Dartiguelongue" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Gilles Dartiguelongue" Message-ID: <1353964719.e7ebfe9063cd325b03752947c402f3376226dcf3.eva@gentoo> Subject: [gentoo-commits] proj/gnome:master commit in: dev-util/glade/ X-VCS-Repository: proj/gnome X-VCS-Files: dev-util/glade/glade-3.14.2.ebuild X-VCS-Directories: dev-util/glade/ X-VCS-Committer: eva X-VCS-Committer-Name: Gilles Dartiguelongue X-VCS-Revision: e7ebfe9063cd325b03752947c402f3376226dcf3 X-VCS-Branch: master Date: Mon, 26 Nov 2012 21:18:57 +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: 2737d5f9-99ea-4675-99f1-b5d0c97b3974 X-Archives-Hash: 3aee7f87779e27fc44711b82c75129fb commit: e7ebfe9063cd325b03752947c402f3376226dcf3 Author: Gilles Dartiguelongue gentoo org> AuthorDate: Mon Nov 26 19:57:07 2012 +0000 Commit: Gilles Dartiguelongue gentoo org> CommitDate: Mon Nov 26 21:18:39 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=e7ebfe90 dev-util/glade: sync with gentoo-x86 --- dev-util/glade/glade-3.14.2.ebuild | 25 ++++++++++++++++++------- 1 files changed, 18 insertions(+), 7 deletions(-) diff --git a/dev-util/glade/glade-3.14.2.ebuild b/dev-util/glade/glade-3.14.2.ebuild index f67cf11..44a0c4b 100644 --- a/dev-util/glade/glade-3.14.2.ebuild +++ b/dev-util/glade/glade-3.14.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/glade/glade-3.12.2.ebuild,v 1.1 2012/09/22 10:06:06 pacho Exp $ +# $Header: $ EAPI="4" GCONF_DEBUG="yes" @@ -39,18 +39,21 @@ DEPEND="${RDEPEND} # gnome-base/gnome-common src_prepare() { + # To avoid file collison with other slots, rename help module. + # Prevent the UI from loading glade:3's gladeui devhelp documentation. + epatch "${FILESDIR}/${PN}-3.14.1-doc-version.patch" + + gnome2_src_prepare +} + +src_configure() { DOCS="AUTHORS ChangeLog NEWS README TODO" G2CONF="${G2CONF} --disable-static --enable-libtool-lock $(use_enable introspection) $(use_enable python)" - - # To avoid file collison with other slots, rename help module. - # Prevent the UI from loading glade:3's gladeui devhelp documentation. - epatch "${FILESDIR}/${PN}-3.14.1-doc-version.patch" - - gnome2_src_prepare + gnome2_src_configure } src_install() { @@ -62,3 +65,11 @@ src_install() { -i doc/html/gladeui.devhelp2 || die "sed of gladeui.devhelp2 failed" gnome2_src_install } + +pkg_postinst() { + gnome2_pkg_postinst + if ! has_version dev-util/devhelp ; then + elog "You may want to install dev-util/devhelp for integration API" + elog "documentation support." + fi +}