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