Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in gnome-extra/zenity: zenity-3.8.0-r1.ebuild ChangeLog zenity-3.6.0.ebuild
Date: Tue, 24 Dec 2013 12:41:13
Message-Id: 20131224124109.AF9122004C@flycatcher.gentoo.org
1 pacho 13/12/24 12:41:09
2
3 Modified: ChangeLog
4 Added: zenity-3.8.0-r1.ebuild
5 Removed: zenity-3.6.0.ebuild
6 Log:
7 Fix double clicking an item or hitting enter after selecting an item (#493332 by Kai Wustermann), drop old.
8
9 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
10
11 Revision Changes Path
12 1.214 gnome-extra/zenity/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/zenity/ChangeLog?rev=1.214&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/zenity/ChangeLog?rev=1.214&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/zenity/ChangeLog?r1=1.213&r2=1.214
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/gnome-extra/zenity/ChangeLog,v
21 retrieving revision 1.213
22 retrieving revision 1.214
23 diff -u -r1.213 -r1.214
24 --- ChangeLog 8 Dec 2013 19:02:58 -0000 1.213
25 +++ ChangeLog 24 Dec 2013 12:41:09 -0000 1.214
26 @@ -1,6 +1,14 @@
27 # ChangeLog for gnome-extra/zenity
28 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/zenity/ChangeLog,v 1.213 2013/12/08 19:02:58 pacho Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/zenity/ChangeLog,v 1.214 2013/12/24 12:41:09 pacho Exp $
31 +
32 +*zenity-3.8.0-r1 (24 Dec 2013)
33 +
34 + 24 Dec 2013; Pacho Ramos <pacho@g.o>
35 + +files/zenity-3.8.0-double-click.patch, +zenity-3.8.0-r1.ebuild,
36 + -zenity-3.6.0.ebuild:
37 + Fix double clicking an item or hitting enter after selecting an item (#493332
38 + by Kai Wustermann), drop old.
39
40 08 Dec 2013; Pacho Ramos <pacho@g.o> zenity-3.8.0.ebuild:
41 x86 stable, bug #478252
42
43
44
45 1.1 gnome-extra/zenity/zenity-3.8.0-r1.ebuild
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/zenity/zenity-3.8.0-r1.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/zenity/zenity-3.8.0-r1.ebuild?rev=1.1&content-type=text/plain
49
50 Index: zenity-3.8.0-r1.ebuild
51 ===================================================================
52 # Copyright 1999-2013 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/gnome-extra/zenity/zenity-3.8.0-r1.ebuild,v 1.1 2013/12/24 12:41:09 pacho Exp $
55
56 EAPI="5"
57 GCONF_DEBUG="yes"
58
59 inherit eutils gnome2
60
61 DESCRIPTION="Tool to display dialogs from the commandline and shell scripts"
62 HOMEPAGE="https://wiki.gnome.org/action/show/Projects/Zenity"
63
64 LICENSE="LGPL-2+"
65 SLOT="0"
66 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux"
67 IUSE="libnotify test +webkit"
68
69 RDEPEND="
70 >=dev-libs/glib-2.8:2
71 x11-libs/gdk-pixbuf:2
72 >=x11-libs/gtk+-3:3
73 x11-libs/libX11
74 x11-libs/pango
75 libnotify? ( >=x11-libs/libnotify-0.6.1:= )
76 webkit? ( >=net-libs/webkit-gtk-1.4.0:3 )
77 "
78 DEPEND="${RDEPEND}
79 >=dev-util/intltool-0.40
80 >=sys-devel/gettext-0.14
81 virtual/pkgconfig
82 test? ( app-text/yelp-tools )
83 "
84 # eautoreconf needs:
85 # >=gnome-base/gnome-common-2.12
86
87 src_prepare() {
88 # Fix double clicking an item or hitting enter after selecting an item (from 'master')
89 epatch "${FILESDIR}/${PN}-3.8.0-double-click.patch"
90 gnome2_src_prepare
91 }
92
93 src_configure() {
94 DOCS="AUTHORS ChangeLog HACKING NEWS README THANKS TODO"
95
96 gnome2_src_configure \
97 $(use_enable libnotify) \
98 $(use_enable webkit webkitgtk) \
99 PERL=$(type -P false) \
100 ITSTOOL=$(type -P true)
101 }
102
103 src_install() {
104 gnome2_src_install
105
106 rm "${ED}/usr/bin/gdialog" || die "rm gdialog failed!"
107 }