From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id EF451138202 for ; Sun, 2 Dec 2012 14:51:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A432021C034; Sun, 2 Dec 2012 14:50:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id F2EC721C032 for ; Sun, 2 Dec 2012 14:50:40 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 13F5733D9F5 for ; Sun, 2 Dec 2012 14:50:40 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id A944EE544B for ; Sun, 2 Dec 2012 14:50:38 +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: <1354459809.935b4c6b2e61bb27dbf3e29cbfc8b45367050f87.eva@gentoo> Subject: [gentoo-commits] proj/gnome:master commit in: eclass/ X-VCS-Repository: proj/gnome X-VCS-Files: eclass/gst-plugins10.eclass X-VCS-Directories: eclass/ X-VCS-Committer: eva X-VCS-Committer-Name: Gilles Dartiguelongue X-VCS-Revision: 935b4c6b2e61bb27dbf3e29cbfc8b45367050f87 X-VCS-Branch: master Date: Sun, 2 Dec 2012 14:50:38 +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: f131e8a6-f197-43b4-ab4f-9fb037d5dc4f X-Archives-Hash: 41f569ca54b42cfd4de650f8954a99d1 commit: 935b4c6b2e61bb27dbf3e29cbfc8b45367050f87 Author: Gilles Dartiguelongue gentoo org> AuthorDate: Sun Dec 2 14:49:37 2012 +0000 Commit: Gilles Dartiguelongue gentoo org> CommitDate: Sun Dec 2 14:50:09 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=935b4c6b eclass/gst-plugins10.eclass: add default configure flag for older EAPIs --- eclass/gst-plugins10.eclass | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/eclass/gst-plugins10.eclass b/eclass/gst-plugins10.eclass index c41de2c..e391b45 100644 --- a/eclass/gst-plugins10.eclass +++ b/eclass/gst-plugins10.eclass @@ -199,6 +199,14 @@ gst-plugins10_remove_unversioned_binaries() { gst-plugins10_src_configure() { local plugin gst_conf + if has ${EAPI:-0} 0 1 2 3 ; then + gst_conf="${gst_conf} --disable-dependency-tracking" + fi + + if has ${EAPI:-0} 0 1 2 3 4 ; then + gst_conf="${gst_conf} --disable-silent-rules" + fi + gst-plugins10_get_plugins for plugin in ${GST_PLUGINS_LIST} ; do