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 CDBF31395E2 for ; Sun, 13 Nov 2016 11:19:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 49638E0AC9; Sun, 13 Nov 2016 11:19:34 +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 2CED3E0AC9 for ; Sun, 13 Nov 2016 11:19:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 38A86341667 for ; Sun, 13 Nov 2016 11:19:33 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A520D24B7 for ; Sun, 13 Nov 2016 11:19:31 +0000 (UTC) From: "Gilles Dartiguelongue" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Gilles Dartiguelongue" Message-ID: <1479035922.91795236e319e3f67bb76a4aa689ca2ab4024844.eva@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/telepathy-glib/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/telepathy-glib/telepathy-glib-0.24.1.ebuild X-VCS-Directories: net-libs/telepathy-glib/ X-VCS-Committer: eva X-VCS-Committer-Name: Gilles Dartiguelongue X-VCS-Revision: 91795236e319e3f67bb76a4aa689ca2ab4024844 X-VCS-Branch: master Date: Sun, 13 Nov 2016 11:19:31 +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: 3fc3afa2-657b-407b-b249-590243e4c6d1 X-Archives-Hash: ed5714197b88a263fa8974405e51e73c commit: 91795236e319e3f67bb76a4aa689ca2ab4024844 Author: Gilles Dartiguelongue gentoo org> AuthorDate: Sun Nov 13 10:08:30 2016 +0000 Commit: Gilles Dartiguelongue gentoo org> CommitDate: Sun Nov 13 11:18:42 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91795236 net-libs/telepathy-glib: fix missing src_prepare local definition gnome2 and vala eclass are redefining src_prepare, local src_prepare must be defined. Gentoo-Bug: 586518 Package-Manager: portage-2.3.2 net-libs/telepathy-glib/telepathy-glib-0.24.1.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/net-libs/telepathy-glib/telepathy-glib-0.24.1.ebuild b/net-libs/telepathy-glib/telepathy-glib-0.24.1.ebuild index a997c46..f25a9d3 100644 --- a/net-libs/telepathy-glib/telepathy-glib-0.24.1.ebuild +++ b/net-libs/telepathy-glib/telepathy-glib-0.24.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -45,6 +45,11 @@ PDEPEND=" net-im/telepathy-mission-control " +src_prepare() { + use vala && vala_src_prepare + gnome2_src_prepare +} + src_configure() { gnome2_src_configure \ --disable-static \