From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1F8931382FE for ; Sat, 9 Jul 2016 13:40:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 912AF21C08E; Sat, 9 Jul 2016 13:40:38 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 581DF21C08E for ; Sat, 9 Jul 2016 13:40:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7AE50340F10 for ; Sat, 9 Jul 2016 13:40:35 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 906A92450 for ; Sat, 9 Jul 2016 13:40:32 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1468071620.6d0274e53ce7556db972cedf9102c645407b37cd.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/vte/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-libs/vte/vte-0.44.2.ebuild X-VCS-Directories: x11-libs/vte/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 6d0274e53ce7556db972cedf9102c645407b37cd X-VCS-Branch: master Date: Sat, 9 Jul 2016 13:40:32 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 4d8587a9-85d3-4503-b6eb-3d3a07e1f0f8 X-Archives-Hash: 91c2e1033a574b1744b2791d695aff6b commit: 6d0274e53ce7556db972cedf9102c645407b37cd Author: Pacho Ramos gentoo org> AuthorDate: Sat Jul 9 12:56:00 2016 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sat Jul 9 13:40:20 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d0274e5 x11-libs/vte: vala support is conditional, also DOCS declaration is not needed anymore (#587500 by Amaroun) Package-Manager: portage-2.3.0 x11-libs/vte/vte-0.44.2.ebuild | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/x11-libs/vte/vte-0.44.2.ebuild b/x11-libs/vte/vte-0.44.2.ebuild index 22cebe1..dcdc00e 100644 --- a/x11-libs/vte/vte-0.44.2.ebuild +++ b/x11-libs/vte/vte-0.44.2.ebuild @@ -29,20 +29,20 @@ RDEPEND=" introspection? ( >=dev-libs/gobject-introspection-0.9.0:= ) " DEPEND="${RDEPEND} - $(vala_depend) >=dev-util/gtk-doc-am-1.13 >=dev-util/intltool-0.35 sys-devel/gettext virtual/pkgconfig crypt? ( >=net-libs/gnutls-3.2.7 ) + vala? ( $(vala_depend) ) " RDEPEND="${RDEPEND} !x11-libs/vte:2.90[glade] " src_prepare() { - vala_src_prepare + use vala && vala_src_prepare # build fails because of -Werror with gcc-5.x sed -e 's#-Werror=format=2#-Wformat=2#' -i configure || die "sed failed" @@ -75,7 +75,6 @@ src_configure() { } src_install() { - DOCS="AUTHORS ChangeLog HACKING NEWS README" gnome2_src_install mv "${D}"/etc/profile.d/vte{,-${SLOT}}.sh || die }