From patchwork Sun Oct 21 14:21:54 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yann Diorcet X-Patchwork-Id: 193000 X-Patchwork-Delegate: esben@haabendal.dk Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hugin.dotsrc.org (hugin.dotsrc.org [130.225.254.102]) by ozlabs.org (Postfix) with ESMTP id 685062C007E for ; Mon, 22 Oct 2012 01:22:08 +1100 (EST) Received: from hugin.dotsrc.org (localhost [127.0.0.1]) by hugin.dotsrc.org (Postfix) with ESMTP id DB6223FBAE for ; Sun, 21 Oct 2012 16:22:02 +0200 (CEST) X-Original-To: dev@oe-lite.org Delivered-To: dev@oe-lite.org Received: from mail-wi0-f169.google.com (mail-wi0-f169.google.com [209.85.212.169]) by hugin.dotsrc.org (Postfix) with ESMTPS id 2095A3FBAE for ; Sun, 21 Oct 2012 16:22:01 +0200 (CEST) Received: by mail-wi0-f169.google.com with SMTP id hq4so1310004wib.4 for ; Sun, 21 Oct 2012 07:22:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; bh=TEzX4kKAOSVDReXKBoCiBhlY+B2Za/Dt90t2gVJdXfg=; b=VQ9t0xpn7uaEaTAvi/QbTqOopQpBQme9Iy1JClXHx7IeJwKXv+H2/HKbocbzoq5R3/ FxsBja1kN6NJEhLWj03wQsiQr38qMTnP/aOc7ue4u82G4s90YAOdfs+qLaA/8sTHbhhQ i/gQj9iycTeg/8G7Gya0ufBkzd3UvacrhglxXFuOAf+Wo852PjFOzDey7+k4QXNV+mhT 1MdixBcwu15hBAsQkiSlxHhGkz3ckQU1pChdNIVsAzWeH1jQklODbj32cbNbtNX5miLS of0hplEMQ1C8LZuwcmi27lT6gB5zmJOoU0Zz6XUzRkwGNtnHu0lJ4M8vX8eHzVHagIF6 EKRA== Received: by 10.216.220.38 with SMTP id n38mr3631456wep.56.1350829320188; Sun, 21 Oct 2012 07:22:00 -0700 (PDT) Received: from localhost.localdomain (dom38-1-82-236-154-183.fbx.proxad.net. [82.236.154.183]) by mx.google.com with ESMTPS id k20sm46184074wiv.11.2012.10.21.07.21.59 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 21 Oct 2012 07:21:59 -0700 (PDT) From: Yann Diorcet To: dev@oe-lite.org Subject: [PATCH] Add native recipe type to alsa, libogg, libtheora, libvorbis and speex Date: Sun, 21 Oct 2012 16:21:54 +0200 Message-Id: <1350829314-7513-1-git-send-email-diorcet.yann@gmail.com> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: References: Cc: Yann Diorcet X-BeenThere: dev@oe-lite.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: OE-lite development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: dev-bounces@oe-lite.org Errors-To: dev-bounces@oe-lite.org From: Yann Diorcet Add native in RECIPE_TYPES. Usefull when using oe-lite for compile package for build machine. --- recipes/alsa/alsa-lib_1.0.24.1.oe | 2 ++ recipes/alsa/alsa-utils_1.0.24.2.oe | 2 ++ recipes/libogg/libogg_1.3.0.oe | 2 ++ recipes/libtheora/libtheora_1.1.1.oe | 2 ++ recipes/libvorbis/libvorbis_1.3.2.oe | 2 ++ recipes/speex/speex.inc | 2 ++ 6 files changed, 12 insertions(+) diff --git a/recipes/alsa/alsa-lib_1.0.24.1.oe b/recipes/alsa/alsa-lib_1.0.24.1.oe index 9351436..346bab5 100644 --- a/recipes/alsa/alsa-lib_1.0.24.1.oe +++ b/recipes/alsa/alsa-lib_1.0.24.1.oe @@ -3,6 +3,8 @@ HOMEPAGE = "http://www.alsa-project.org" BUGTRACKER = "https://bugtrack.alsa-project.org/alsa-bug/login_page.php" LICENSE = "LGPL-2.1 LGPL-2.0+" +RECIPE_TYPES = "machine native" + DEPENDS += "libdl \ libpthread \ libm" diff --git a/recipes/alsa/alsa-utils_1.0.24.2.oe b/recipes/alsa/alsa-utils_1.0.24.2.oe index f4ead7d..83a0970 100644 --- a/recipes/alsa/alsa-utils_1.0.24.2.oe +++ b/recipes/alsa/alsa-utils_1.0.24.2.oe @@ -5,6 +5,8 @@ SECTION = "console/utils" LICENSE = "GPL-2.0+" DEPENDS = "libasound libpthread libgcc libdl" +RECIPE_TYPES = "machine native" + SRC_URI = "ftp://ftp.alsa-project.org/pub/utils/alsa-utils-${PV}.tar.bz2 \ " diff --git a/recipes/libogg/libogg_1.3.0.oe b/recipes/libogg/libogg_1.3.0.oe index 09e273e..b79f836 100644 --- a/recipes/libogg/libogg_1.3.0.oe +++ b/recipes/libogg/libogg_1.3.0.oe @@ -5,6 +5,8 @@ HOMEPAGE = "http://xiph.org/" BUGTRACKER = "https://trac.xiph.org/newticket" LICENSE = "BSD" +RECIPE_TYPES = "machine native" + inherit autotools-autoreconf pkgconfig library SRC_URI = "http://downloads.xiph.org/releases/ogg/libogg-${PV}.tar.gz" diff --git a/recipes/libtheora/libtheora_1.1.1.oe b/recipes/libtheora/libtheora_1.1.1.oe index f068835..afefb7d 100644 --- a/recipes/libtheora/libtheora_1.1.1.oe +++ b/recipes/libtheora/libtheora_1.1.1.oe @@ -3,6 +3,8 @@ HOMEPAGE = "http://xiph.org/" BUGTRACKER = "https://trac.xiph.org/newticket" LICENSE = "BSD" +RECIPE_TYPES = "machine native" + inherit autotools pkgconfig SRC_URI = "http://downloads.xiph.org/releases/theora/libtheora-${PV}.tar.bz2" diff --git a/recipes/libvorbis/libvorbis_1.3.2.oe b/recipes/libvorbis/libvorbis_1.3.2.oe index f83422e..9aa1113 100644 --- a/recipes/libvorbis/libvorbis_1.3.2.oe +++ b/recipes/libvorbis/libvorbis_1.3.2.oe @@ -5,6 +5,8 @@ HOMEPAGE = "http://xiph.org/" BUGTRACKER = "https://trac.xiph.org/newticket" LICENSE = "BSD" +RECIPE_TYPES = "machine native" + DEPENDS = "libogg \ libm" diff --git a/recipes/speex/speex.inc b/recipes/speex/speex.inc index 3227a79..a9b7373 100644 --- a/recipes/speex/speex.inc +++ b/recipes/speex/speex.inc @@ -3,6 +3,8 @@ HOMEPAGE = "http://www.speex.org" SECTION = "libs" LICENSE = "BSD" +RECIPE_TYPES = "machine native" + inherit autotools pkgconfig library SRC_URI = "http://downloads.xiph.org/releases/speex/speex-${PV}.tar.gz"