Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/vte: vte-0.34.3.ebuild ChangeLog
Date: Thu, 28 Mar 2013 22:21:52
Message-Id: 20130328222149.851782171E@flycatcher.gentoo.org
1 pacho 13/03/28 22:21:49
2
3 Modified: ChangeLog
4 Added: vte-0.34.3.ebuild
5 Log:
6 Version bump for Gnome 3.8
7
8 (Portage version: 2.1.11.58/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
9
10 Revision Changes Path
11 1.355 x11-libs/vte/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/vte/ChangeLog?rev=1.355&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/vte/ChangeLog?rev=1.355&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/vte/ChangeLog?r1=1.354&r2=1.355
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-libs/vte/ChangeLog,v
20 retrieving revision 1.354
21 retrieving revision 1.355
22 diff -u -r1.354 -r1.355
23 --- ChangeLog 28 Mar 2013 16:04:42 -0000 1.354
24 +++ ChangeLog 28 Mar 2013 22:21:49 -0000 1.355
25 @@ -1,6 +1,11 @@
26 # ChangeLog for x11-libs/vte
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/vte/ChangeLog,v 1.354 2013/03/28 16:04:42 ago Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/vte/ChangeLog,v 1.355 2013/03/28 22:21:49 pacho Exp $
30 +
31 +*vte-0.34.3 (28 Mar 2013)
32 +
33 + 28 Mar 2013; Pacho Ramos <pacho@g.o> +vte-0.34.3.ebuild:
34 + Version bump for Gnome 3.8
35
36 28 Mar 2013; Agostino Sarubbo <ago@g.o> vte-0.34.2.ebuild:
37 Stable for arm, wrt bug #458984
38
39
40
41 1.1 x11-libs/vte/vte-0.34.3.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/vte/vte-0.34.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/vte/vte-0.34.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: vte-0.34.3.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/x11-libs/vte/vte-0.34.3.ebuild,v 1.1 2013/03/28 22:21:49 pacho Exp $
51
52 EAPI="5"
53 GCONF_DEBUG="yes"
54 #GNOME2_LA_PUNT="yes"
55
56 inherit eutils gnome2
57
58 DESCRIPTION="Library providing a virtual terminal emulator widget"
59 HOMEPAGE="https://live.gnome.org/Terminal/VTE"
60
61 LICENSE="LGPL-2+"
62 SLOT="2.90"
63 IUSE="debug glade +introspection"
64 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~x64-solaris ~x86-solaris"
65
66 PDEPEND="x11-libs/gnome-pty-helper"
67 RDEPEND=">=dev-libs/glib-2.31.13:2
68 >=x11-libs/gtk+-3.1.9:3[introspection?]
69 >=x11-libs/pango-1.22.0
70
71 sys-libs/ncurses
72 x11-libs/libX11
73 x11-libs/libXft
74
75 glade? ( >=dev-util/glade-3.9:3.10 )
76 introspection? ( >=dev-libs/gobject-introspection-0.9.0 )"
77 DEPEND="${RDEPEND}
78 >=dev-util/intltool-0.35
79 sys-devel/gettext
80 virtual/pkgconfig"
81
82 src_prepare() {
83 # Python bindings are via gobject-introspection
84 # Ex: from gi.repository import Vte
85 # Do not disable gnome-pty-helper, bug #401389
86 G2CONF="${G2CONF}
87 --disable-deprecation
88 --disable-static
89 $(use_enable debug)
90 $(use_enable glade glade-catalogue)
91 $(use_enable introspection)"
92
93 if [[ ${CHOST} == *-interix* ]]; then
94 G2CONF="${G2CONF} --disable-Bsymbolic"
95
96 # interix stropts.h is empty...
97 export ac_cv_header_stropts_h=no
98 fi
99
100 DOCS="AUTHORS ChangeLog HACKING NEWS README"
101
102 # https://bugzilla.gnome.org/show_bug.cgi?id=663779
103 epatch "${FILESDIR}/${PN}-0.30.1-alt-meta.patch"
104
105 gnome2_src_prepare
106 }
107
108 src_install() {
109 gnome2_src_install
110 rm -v "${ED}usr/libexec/gnome-pty-helper" || die
111 }