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 E50C6138200 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 C192521C006; 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 353BE21C006 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 9620733D78F 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 15494E5436 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: <1350983345.5fb9ffa33458a33303f93627693f98efc63a97e9.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: 5fb9ffa33458a33303f93627693f98efc63a97e9 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: e8844026-ff36-4352-a13e-9bf8891021f1 X-Archives-Hash: 899c3e78ced4e0cd14b1c1d43917cb1b commit: 5fb9ffa33458a33303f93627693f98efc63a97e9 Author: Sobhan Mohammadpour yahoo fr> AuthorDate: Fri Oct 5 12:31:05 2012 +0000 Commit: Alexandre Rostovtsev gentoo org> CommitDate: Tue Oct 23 09:09:05 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=5fb9ffa3 gnome-extra/zenity: add 3.6.0 --- gnome-extra/zenity/zenity-3.6.0.ebuild | 52 ++++++++++++++++++++++++++++++++ 1 files changed, 52 insertions(+), 0 deletions(-) diff --git a/gnome-extra/zenity/zenity-3.6.0.ebuild b/gnome-extra/zenity/zenity-3.6.0.ebuild new file mode 100644 index 0000000..1520643 --- /dev/null +++ b/gnome-extra/zenity/zenity-3.6.0.ebuild @@ -0,0 +1,52 @@ +# 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 $ + +EAPI="4" +GCONF_DEBUG="yes" +GNOME2_LA_PUNT="yes" + +inherit eutils gnome2 + +DESCRIPTION="Tool to display dialogs from the commandline and shell scripts" +HOMEPAGE="http://live.gnome.org/Zenity" + +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" + +RDEPEND=">=dev-libs/glib-2.8:2 + x11-libs/gdk-pixbuf:2 + >=x11-libs/gtk+-3.0.0:3 + x11-libs/libX11 + x11-libs/pango + libnotify? ( >=x11-libs/libnotify-0.6.1 ) + webkit? ( >=net-libs/webkit-gtk-1.4.0:3 )" + +DEPEND="${RDEPEND} + app-text/scrollkeeper + app-text/docbook-xml-dtd:4.1.2 + >=dev-util/intltool-0.40 + >=sys-devel/gettext-0.14 + virtual/pkgconfig + >=app-text/gnome-doc-utils-0.10.1" +# eautoreconf needs: +# >=gnome-base/gnome-common-2.12 + +pkg_setup() { + G2CONF="${G2CONF} + $(use_enable libnotify) + $(use_enable webkit webkitgtk) + PERL=$(type -P false)" +} + +src_prepare() { + gnome2_src_prepare +} + +src_install() { + gnome2_src_install + + rm "${ED}/usr/bin/gdialog" || die "rm gdialog failed!" +}