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 <gentoo-commits+bounces-314642-garchives=archives.gentoo.org@lists.gentoo.org>) id 1PnGQP-0008Rz-Om for garchives@archives.gentoo.org; Wed, 09 Feb 2011 20:14:06 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 466ADE0955; Wed, 9 Feb 2011 20:13:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 1586DE09D4 for <gentoo-commits@lists.gentoo.org>; Wed, 9 Feb 2011 20:13:24 +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 8329B1B42CA for <gentoo-commits@lists.gentoo.org>; Wed, 9 Feb 2011 20:13:23 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id E2F5480076 for <gentoo-commits@lists.gentoo.org>; Wed, 9 Feb 2011 20:13:22 +0000 (UTC) From: "Nirbheek Chauhan" <nirbheek@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Nirbheek Chauhan" <nirbheek@gentoo.org> Message-ID: <aa2ef107c3de4f5c71dc5abfc70c93f1e2fcd68d.nirbheek@gentoo> Subject: [gentoo-commits] proj/gnome:master commit in: dev-util/devhelp/ X-VCS-Repository: proj/gnome X-VCS-Files: dev-util/devhelp/devhelp-2.91.5.ebuild X-VCS-Directories: dev-util/devhelp/ X-VCS-Committer: nirbheek X-VCS-Committer-Name: Nirbheek Chauhan X-VCS-Revision: aa2ef107c3de4f5c71dc5abfc70c93f1e2fcd68d Date: Wed, 9 Feb 2011 20:13:22 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: fdb5eedb6ba3516a479f256236f1ffa6 commit: aa2ef107c3de4f5c71dc5abfc70c93f1e2fcd68d Author: Nirbheek Chauhan <nirbheek <AT> gentoo <DOT> org> AuthorDate: Wed Feb 9 12:36:59 2011 +0000 Commit: Nirbheek Chauhan <nirbheek <AT> gentoo <DOT> org> CommitDate: Wed Feb 9 17:06:04 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/gnome.git;a=3D= commit;h=3Daa2ef107 Add dev-util/devhelp-2.91.5, gtk+:3 version * Not slotted because the only thing that links to it is anjuta --- dev-util/devhelp/devhelp-2.91.5.ebuild | 56 ++++++++++++++++++++++++++= ++++++ 1 files changed, 56 insertions(+), 0 deletions(-) diff --git a/dev-util/devhelp/devhelp-2.91.5.ebuild b/dev-util/devhelp/de= vhelp-2.91.5.ebuild new file mode 100644 index 0000000..7ca4f1c --- /dev/null +++ b/dev-util/devhelp/devhelp-2.91.5.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/devhelp/devhelp-2.32.0.ebuil= d,v 1.2 2011/01/24 16:45:07 eva Exp $ + +EAPI=3D"3" +GCONF_DEBUG=3D"no" +GNOME2_LA_PUNT=3D"yes" + +inherit eutils gnome2 python toolchain-funcs + +DESCRIPTION=3D"An API documentation browser for GNOME 2" +HOMEPAGE=3D"http://live.gnome.org/devhelp" + +LICENSE=3D"GPL-2" +SLOT=3D"0" +KEYWORDS=3D"~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86 ~x86-fbsd" +IUSE=3D"" + +RDEPEND=3D">=3Dgnome-base/gconf-2.6 + >=3Ddev-libs/glib-2.25.11:2 + x11-libs/gtk+:3 + x11-libs/libwnck + net-libs/webkit-gtk:3" +DEPEND=3D"${RDEPEND} + sys-devel/gettext + >=3Ddev-util/intltool-0.40 + >=3Ddev-util/pkgconfig-0.9" + +pkg_setup() { + DOCS=3D"AUTHORS ChangeLog NEWS README" + # ICC is crazy, silence warnings (bug #154010) + if [[ $(tc-getCC) =3D=3D "icc" ]] ; then + G2CONF=3D"${G2CONF} --with-compile-warnings=3Dno" + fi + python_set_active_version 2 +} + +src_prepare() { + gnome2_src_prepare + + # disable pyc compiling + rm py-compile + ln -s $(type -P true) py-compile +} + +pkg_postinst() { + gnome2_pkg_postinst + python_need_rebuild + python_mod_optimize /usr/$(get_libdir)/gedit-2/plugins/devhelp + preserve_old_lib_notify /usr/$(get_libdir)/libdevhelp-1.so.1 +} + +pkg_postrm() { + gnome2_pkg_postrm + python_mod_cleanup /usr/$(get_libdir)/gedit-2/plugins/devhelp +}