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 E2F36138010 for ; Tue, 23 Oct 2012 09:24:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C10DE21C005; Tue, 23 Oct 2012 09:24:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 271D421C005 for ; Tue, 23 Oct 2012 09:24:42 +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 8A0DD33CEFB for ; Tue, 23 Oct 2012 09:24:41 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 3D7FBE5440 for ; Tue, 23 Oct 2012 09:24:40 +0000 (UTC) From: "Alexandre Rostovtsev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexandre Rostovtsev" Message-ID: <1350983361.4e91a401b7d5d22427b046da7fcb050a81b1b363.tetromino@gentoo> Subject: [gentoo-commits] proj/gnome:master commit in: gnome-extra/zenity/ X-VCS-Repository: proj/gnome X-VCS-Files: gnome-extra/zenity/zenity-3.6.0.ebuild X-VCS-Directories: gnome-extra/zenity/ X-VCS-Committer: tetromino X-VCS-Committer-Name: Alexandre Rostovtsev X-VCS-Revision: 4e91a401b7d5d22427b046da7fcb050a81b1b363 X-VCS-Branch: master Date: Tue, 23 Oct 2012 09:24:40 +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: be79332b-3cc4-412a-8eea-d96b30c8467d X-Archives-Hash: 394685e5b0fb9840d1d3a1149ea86c4f commit: 4e91a401b7d5d22427b046da7fcb050a81b1b363 Author: Alexandre Rostovtsev gentoo org> AuthorDate: Tue Oct 23 09:06:24 2012 +0000 Commit: Alexandre Rostovtsev gentoo org> CommitDate: Tue Oct 23 09:09:21 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=4e91a401 gnome-extra/zenity: QA eutils.eclass is not used; yelp-tools needed for tests; ITSTOOL is not needed, but configure checks for it; DOCS must be set; set DOCS and G2CONF in src_prepare(), following new style; update license. --- gnome-extra/zenity/zenity-3.6.0.ebuild | 21 ++++++++++----------- 1 files changed, 10 insertions(+), 11 deletions(-) diff --git a/gnome-extra/zenity/zenity-3.6.0.ebuild b/gnome-extra/zenity/zenity-3.6.0.ebuild index 1520643..04b8e71 100644 --- a/gnome-extra/zenity/zenity-3.6.0.ebuild +++ b/gnome-extra/zenity/zenity-3.6.0.ebuild @@ -1,20 +1,20 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/zenity/zenity-3.6.0.ebuild,v 1.1 2012/05/20 01:10:07 tetromino Exp $ +# $Header: $ EAPI="4" GCONF_DEBUG="yes" GNOME2_LA_PUNT="yes" -inherit eutils gnome2 +inherit gnome2 DESCRIPTION="Tool to display dialogs from the commandline and shell scripts" HOMEPAGE="http://live.gnome.org/Zenity" -LICENSE="LGPL-2" +LICENSE="LGPL-2+" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux" -IUSE="libnotify +webkit" +IUSE="libnotify test +webkit" RDEPEND=">=dev-libs/glib-2.8:2 x11-libs/gdk-pixbuf:2 @@ -25,23 +25,22 @@ RDEPEND=">=dev-libs/glib-2.8:2 webkit? ( >=net-libs/webkit-gtk-1.4.0:3 )" DEPEND="${RDEPEND} - app-text/scrollkeeper - app-text/docbook-xml-dtd:4.1.2 + app-text/yelp-tools >=dev-util/intltool-0.40 >=sys-devel/gettext-0.14 virtual/pkgconfig - >=app-text/gnome-doc-utils-0.10.1" + test? ( app-text/yelp-tools )" # eautoreconf needs: # >=gnome-base/gnome-common-2.12 -pkg_setup() { +src_prepare() { + DOCS="AUTHORS ChangeLog HACKING NEWS README THANKS TODO" G2CONF="${G2CONF} $(use_enable libnotify) $(use_enable webkit webkitgtk) - PERL=$(type -P false)" -} + PERL=$(type -P false) + ITSTOOL=$(type -P true)" -src_prepare() { gnome2_src_prepare }