Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/vte/
Date: Sat, 09 Jul 2016 13:40:50
Message-Id: 1468071620.6d0274e53ce7556db972cedf9102c645407b37cd.pacho@gentoo
1 commit: 6d0274e53ce7556db972cedf9102c645407b37cd
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 9 12:56:00 2016 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 9 13:40:20 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d0274e5
7
8 x11-libs/vte: vala support is conditional, also DOCS declaration is not needed anymore (#587500 by Amaroun)
9
10 Package-Manager: portage-2.3.0
11
12 x11-libs/vte/vte-0.44.2.ebuild | 5 ++---
13 1 file changed, 2 insertions(+), 3 deletions(-)
14
15 diff --git a/x11-libs/vte/vte-0.44.2.ebuild b/x11-libs/vte/vte-0.44.2.ebuild
16 index 22cebe1..dcdc00e 100644
17 --- a/x11-libs/vte/vte-0.44.2.ebuild
18 +++ b/x11-libs/vte/vte-0.44.2.ebuild
19 @@ -29,20 +29,20 @@ RDEPEND="
20 introspection? ( >=dev-libs/gobject-introspection-0.9.0:= )
21 "
22 DEPEND="${RDEPEND}
23 - $(vala_depend)
24 >=dev-util/gtk-doc-am-1.13
25 >=dev-util/intltool-0.35
26 sys-devel/gettext
27 virtual/pkgconfig
28
29 crypt? ( >=net-libs/gnutls-3.2.7 )
30 + vala? ( $(vala_depend) )
31 "
32 RDEPEND="${RDEPEND}
33 !x11-libs/vte:2.90[glade]
34 "
35
36 src_prepare() {
37 - vala_src_prepare
38 + use vala && vala_src_prepare
39
40 # build fails because of -Werror with gcc-5.x
41 sed -e 's#-Werror=format=2#-Wformat=2#' -i configure || die "sed failed"
42 @@ -75,7 +75,6 @@ src_configure() {
43 }
44
45 src_install() {
46 - DOCS="AUTHORS ChangeLog HACKING NEWS README"
47 gnome2_src_install
48 mv "${D}"/etc/profile.d/vte{,-${SLOT}}.sh || die
49 }