Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/vte: ChangeLog vte-0.36.0.ebuild
Date: Sun, 27 Apr 2014 21:51:42
Message-Id: 20140427215138.4329D2004B@flycatcher.gentoo.org
1 eva 14/04/27 21:51:38
2
3 Modified: ChangeLog
4 Added: vte-0.36.0.ebuild
5 Log:
6 Version bump for Gnome 3.12. Move CFLAGS and configure switch manipulation to src_configure.
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key C6085806)
9
10 Revision Changes Path
11 1.386 x11-libs/vte/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/vte/ChangeLog?rev=1.386&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/vte/ChangeLog?rev=1.386&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/vte/ChangeLog?r1=1.385&r2=1.386
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-libs/vte/ChangeLog,v
20 retrieving revision 1.385
21 retrieving revision 1.386
22 diff -u -r1.385 -r1.386
23 --- ChangeLog 27 Apr 2014 09:42:19 -0000 1.385
24 +++ ChangeLog 27 Apr 2014 21:51:38 -0000 1.386
25 @@ -1,6 +1,12 @@
26 # ChangeLog for x11-libs/vte
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/vte/ChangeLog,v 1.385 2014/04/27 09:42:19 pacho Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/vte/ChangeLog,v 1.386 2014/04/27 21:51:38 eva Exp $
30 +
31 +*vte-0.36.0 (27 Apr 2014)
32 +
33 + 27 Apr 2014; Gilles Dartiguelongue <eva@g.o> +vte-0.36.0.ebuild:
34 + Version bump for Gnome 3.12. Move CFLAGS and configure switch manipulation to
35 + src_configure.
36
37 27 Apr 2014; Pacho Ramos <pacho@g.o> -vte-0.28.2-r204.ebuild,
38 -vte-0.34.2.ebuild, -vte-0.34.7.ebuild, -vte-0.34.8.ebuild:
39
40
41
42 1.1 x11-libs/vte/vte-0.36.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/vte/vte-0.36.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/vte/vte-0.36.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: vte-0.36.0.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/x11-libs/vte/vte-0.36.0.ebuild,v 1.1 2014/04/27 21:51:38 eva Exp $
52
53 EAPI="5"
54 GCONF_DEBUG="yes"
55
56 inherit eutils gnome2
57
58 DESCRIPTION="Library providing a virtual terminal emulator widget"
59 HOMEPAGE="https://wiki.gnome.org/action/show/Apps/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-${PV}"
67 RDEPEND="
68 >=dev-libs/glib-2.31.13:2
69 >=x11-libs/gtk+-3.1.9:3[introspection?]
70 >=x11-libs/pango-1.22.0
71
72 sys-libs/ncurses
73 x11-libs/libX11
74 x11-libs/libXft
75
76 glade? ( >=dev-util/glade-3.9:3.10 )
77 introspection? ( >=dev-libs/gobject-introspection-0.9.0 )
78 "
79 DEPEND="${RDEPEND}
80 >=dev-util/gtk-doc-am-1.13
81 >=dev-util/intltool-0.35
82 sys-devel/gettext
83 virtual/pkgconfig
84 "
85
86 src_prepare() {
87 # https://bugzilla.gnome.org/show_bug.cgi?id=663779
88 epatch "${FILESDIR}/${PN}-0.30.1-alt-meta.patch"
89
90 gnome2_src_prepare
91 }
92
93 src_configure() {
94 local myconf=""
95
96 if [[ ${CHOST} == *-interix* ]]; then
97 myconf="${myconf} --disable-Bsymbolic"
98
99 # interix stropts.h is empty...
100 export ac_cv_header_stropts_h=no
101 fi
102
103 # Python bindings are via gobject-introspection
104 # Ex: from gi.repository import Vte
105 # Do not disable gnome-pty-helper, bug #401389
106 gnome2_src_configure \
107 --disable-deprecation \
108 --disable-static \
109 $(use_enable debug) \
110 $(use_enable glade glade-catalogue) \
111 $(use_enable introspection)
112 }
113
114 src_install() {
115 DOCS="AUTHORS ChangeLog HACKING NEWS README"
116 gnome2_src_install
117 rm -v "${ED}usr/libexec/gnome-pty-helper" || die
118 }