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.8.ebuild ChangeLog vte-0.34.6.ebuild
Date: Sat, 28 Sep 2013 20:49:03
Message-Id: 20130928204900.08DEC2004C@flycatcher.gentoo.org
1 pacho 13/09/28 20:48:59
2
3 Modified: ChangeLog
4 Added: vte-0.34.8.ebuild
5 Removed: vte-0.34.6.ebuild
6 Log:
7 Version bump, 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.368 x11-libs/vte/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/vte/ChangeLog?rev=1.368&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/vte/ChangeLog?rev=1.368&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/vte/ChangeLog?r1=1.367&r2=1.368
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/x11-libs/vte/ChangeLog,v
21 retrieving revision 1.367
22 retrieving revision 1.368
23 diff -u -r1.367 -r1.368
24 --- ChangeLog 8 Jul 2013 17:19:38 -0000 1.367
25 +++ ChangeLog 28 Sep 2013 20:48:59 -0000 1.368
26 @@ -1,6 +1,12 @@
27 # ChangeLog for x11-libs/vte
28 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/vte/ChangeLog,v 1.367 2013/07/08 17:19:38 pacho Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/vte/ChangeLog,v 1.368 2013/09/28 20:48:59 pacho Exp $
31 +
32 +*vte-0.34.8 (28 Sep 2013)
33 +
34 + 28 Sep 2013; Pacho Ramos <pacho@g.o> +vte-0.34.8.ebuild,
35 + -vte-0.34.6.ebuild:
36 + Version bump, drop old
37
38 *vte-0.34.7 (08 Jul 2013)
39
40
41
42
43 1.1 x11-libs/vte/vte-0.34.8.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/vte/vte-0.34.8.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/vte/vte-0.34.8.ebuild?rev=1.1&content-type=text/plain
47
48 Index: vte-0.34.8.ebuild
49 ===================================================================
50 # Copyright 1999-2013 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.34.8.ebuild,v 1.1 2013/09/28 20:48:59 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://live.gnome.org/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/intltool-0.35
82 sys-devel/gettext
83 virtual/pkgconfig
84 "
85
86 src_prepare() {
87 if [[ ${CHOST} == *-interix* ]]; then
88 G2CONF="${G2CONF} --disable-Bsymbolic"
89
90 # interix stropts.h is empty...
91 export ac_cv_header_stropts_h=no
92 fi
93
94 DOCS="AUTHORS ChangeLog HACKING NEWS README"
95
96 # https://bugzilla.gnome.org/show_bug.cgi?id=663779
97 epatch "${FILESDIR}/${PN}-0.30.1-alt-meta.patch"
98
99 gnome2_src_prepare
100 }
101
102 src_configure() {
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 gnome2_src_install
116 rm -v "${ED}usr/libexec/gnome-pty-helper" || die
117 }