From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail-bw0-f47.google.com ([209.85.214.47]) by linuxtogo.org with esmtp (Exim 4.72) (envelope-from ) id 1R6Rnd-0001GK-SB for openembedded-core@lists.openembedded.org; Wed, 21 Sep 2011 20:45:37 +0200 Received: by mail-bw0-f47.google.com with SMTP id 11so2123691bke.6 for ; Wed, 21 Sep 2011 11:40:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; bh=ZGcgm+MW9h4dtapeGKF/jmpau0UEehS0gKnqFSt4180=; b=LBSLsNros0IvBOQ/28RYulyWeEe4qRq+Jpo5/pVq4mVZRACnJ2757koVsDtjeM/T8l o/dU0GgDMl++t02Xe9b3gD524DtkBLE/agm0pLttpycr1h5Uvn/OuQi57B2Vujwl+D4X 1pqJNSmutQH/DbwVXL5L9xkp2IdxYBSYtU3cQ= Received: by 10.204.142.22 with SMTP id o22mr857658bku.100.1316630421432; Wed, 21 Sep 2011 11:40:21 -0700 (PDT) Received: from localhost.localdomain ([194.85.238.22]) by mx.google.com with ESMTPS id t16sm5806554bkv.11.2011.09.21.11.40.19 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 21 Sep 2011 11:40:20 -0700 (PDT) From: Dmitry Eremin-Solenikov To: openembedded-core@lists.openembedded.org Date: Wed, 21 Sep 2011 22:39:52 +0400 Message-Id: <1316630404-10336-5-git-send-email-dbaryshkov@gmail.com> X-Mailer: git-send-email 1.7.2.5 In-Reply-To: <1316630404-10336-1-git-send-email-dbaryshkov@gmail.com> References: <1316630404-10336-1-git-send-email-dbaryshkov@gmail.com> Cc: Dmitry Eremin-Solenikov Subject: [PATCH 05/17] gst-plugins-base: add support for non-X11-enabled distros X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.11 Precedence: list Reply-To: Patches and discussions about the oe-core layer List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Sep 2011 18:45:38 -0000 Separate dependencies on X11 and them to DEPENDS only if DISTRO_FEATURES contain x11 Signed-off-by: Dmitry Eremin-Solenikov --- .../gstreamer/gst-plugins-base_0.10.32.bb | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/meta/recipes-multimedia/gstreamer/gst-plugins-base_0.10.32.bb b/meta/recipes-multimedia/gstreamer/gst-plugins-base_0.10.32.bb index 82d9afc..9a658fa 100644 --- a/meta/recipes-multimedia/gstreamer/gst-plugins-base_0.10.32.bb +++ b/meta/recipes-multimedia/gstreamer/gst-plugins-base_0.10.32.bb @@ -6,7 +6,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3 \ file://COPYING.LIB;md5=55ca817ccb7d5b5b66355690e9abc605 \ file://gst/ffmpegcolorspace/utils.c;beginline=1;endline=20;md5=9c83a200b8e597b26ca29df20fc6ecd0" -DEPENDS += "virtual/libx11 alsa-lib freetype liboil libogg libvorbis libxv libtheora avahi util-linux tremor" +X11DEPENDS = "virtual/libx11 libxv" +DEPENDS += "alsa-lib freetype liboil libogg libvorbis libtheora avahi util-linux tremor ${@base_contains('DISTRO_FEATURES', 'x11', '${X11DEPENDS}', '', d)}" SRC_URI += " file://gst-plugins-base-tremor.patch" -- 1.7.2.5