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.36.2.ebuild ChangeLog
Date: Sat, 31 May 2014 09:14:16
Message-Id: 20140531091412.E36992004E@flycatcher.gentoo.org
1 pacho 14/05/31 09:14:12
2
3 Modified: ChangeLog
4 Added: vte-0.36.2.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
9
10 Revision Changes Path
11 1.387 x11-libs/vte/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/vte/ChangeLog?rev=1.387&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/vte/ChangeLog?rev=1.387&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/vte/ChangeLog?r1=1.386&r2=1.387
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-libs/vte/ChangeLog,v
20 retrieving revision 1.386
21 retrieving revision 1.387
22 diff -u -r1.386 -r1.387
23 --- ChangeLog 27 Apr 2014 21:51:38 -0000 1.386
24 +++ ChangeLog 31 May 2014 09:14:12 -0000 1.387
25 @@ -1,6 +1,11 @@
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.386 2014/04/27 21:51:38 eva Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/vte/ChangeLog,v 1.387 2014/05/31 09:14:12 pacho Exp $
30 +
31 +*vte-0.36.2 (31 May 2014)
32 +
33 + 31 May 2014; Pacho Ramos <pacho@g.o> +vte-0.36.2.ebuild:
34 + Version bump
35
36 *vte-0.36.0 (27 Apr 2014)
37
38
39
40
41 1.1 x11-libs/vte/vte-0.36.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/vte/vte-0.36.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/vte/vte-0.36.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: vte-0.36.2.ebuild
47 ===================================================================
48 # Copyright 1999-2014 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.36.2.ebuild,v 1.1 2014/05/31 09:14:12 pacho Exp $
51
52 EAPI="5"
53 GCONF_DEBUG="yes"
54
55 inherit eutils gnome2
56
57 DESCRIPTION="Library providing a virtual terminal emulator widget"
58 HOMEPAGE="https://wiki.gnome.org/action/show/Apps/Terminal/VTE"
59
60 LICENSE="LGPL-2+"
61 SLOT="2.90"
62 IUSE="debug glade +introspection"
63 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"
64
65 PDEPEND="=x11-libs/gnome-pty-helper-${PV}"
66 RDEPEND="
67 >=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 "
78 DEPEND="${RDEPEND}
79 >=dev-util/gtk-doc-am-1.13
80 >=dev-util/intltool-0.35
81 sys-devel/gettext
82 virtual/pkgconfig
83 "
84
85 src_prepare() {
86 # https://bugzilla.gnome.org/show_bug.cgi?id=663779
87 epatch "${FILESDIR}/${PN}-0.30.1-alt-meta.patch"
88
89 gnome2_src_prepare
90 }
91
92 src_configure() {
93 local myconf=""
94
95 if [[ ${CHOST} == *-interix* ]]; then
96 myconf="${myconf} --disable-Bsymbolic"
97
98 # interix stropts.h is empty...
99 export ac_cv_header_stropts_h=no
100 fi
101
102 # Python bindings are via gobject-introspection
103 # Ex: from gi.repository import Vte
104 # Do not disable gnome-pty-helper, bug #401389
105 gnome2_src_configure \
106 --disable-deprecation \
107 --disable-static \
108 $(use_enable debug) \
109 $(use_enable glade glade-catalogue) \
110 $(use_enable introspection)
111 }
112
113 src_install() {
114 DOCS="AUTHORS ChangeLog HACKING NEWS README"
115 gnome2_src_install
116 rm -v "${ED}usr/libexec/gnome-pty-helper" || die
117 }