From patchwork Wed Mar 28 08:47:52 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Belisko Marek X-Patchwork-Id: 149177 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id 076E6B6EEB for ; Wed, 28 Mar 2012 19:49:37 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 8377EA02E7; Wed, 28 Mar 2012 08:49:36 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id uDg0IZEudnAW; Wed, 28 Mar 2012 08:48:28 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 0218FA02F1; Wed, 28 Mar 2012 08:48:21 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id 21B288F753 for ; Wed, 28 Mar 2012 08:48:19 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id EAECC101A45 for ; Wed, 28 Mar 2012 08:48:18 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id PftWV2ArTnix for ; Wed, 28 Mar 2012 08:47:55 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-vx0-f174.google.com (mail-vx0-f174.google.com [209.85.220.174]) by fraxinus.osuosl.org (Postfix) with ESMTPS id 7385E101710 for ; Wed, 28 Mar 2012 08:47:54 +0000 (UTC) Received: by vcqp1 with SMTP id p1so956045vcq.33 for ; Wed, 28 Mar 2012 01:47:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=k3a1vfvQ5lbEBAZGwmf2j+PhV1HDyd+7spdhpPFi9ic=; b=Ue2BKKDD7+UpMmvReR3E3CJLH03dt2fX5ZFIh1v32NUV6RRmLVvO3x01bESpDV+kkg byT27E733nU2ajyceeC8YGkiomj9JiKyfJZkYFdIpeYaYcEsuQnxAjisKTlaDF+SS3cW iLSPKQu1nmYShfz2SMu1gUmkwYFSnkfofCFa0MLesgNUCME3kfMylSkOaaaVkKRxQ0QH fZnARsLMA53tVO5TxrSy8UlgMo3eJDk13o/tvl4iJ1wOV+wLeUcVJqOIuD/94+1eZIHF QUAbjbWBcdhytAvWsFC/0Tl2/0sOjQfhzMy7YMx39cWwmA/G45WRGov1PHxQ8WFusfXY xBXg== MIME-Version: 1.0 Received: by 10.52.35.69 with SMTP id f5mr11391363vdj.29.1332924472986; Wed, 28 Mar 2012 01:47:52 -0700 (PDT) Received: by 10.220.181.13 with HTTP; Wed, 28 Mar 2012 01:47:52 -0700 (PDT) Date: Wed, 28 Mar 2012 10:47:52 +0200 Message-ID: From: Belisko Marek To: buildroot@uclibc.org Subject: [Buildroot] xbmc package X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net Hi, I'm trying to add xbmc package to buildroot and have problem how to fix one dependency problem. Problem is with mysql_config which is requested by xmbc during config phase. I add mysql_client dependency (mysql_config is installed in staging) but xbmc config still complain. I've check that qt use similar with configure option but xbmc don't have such an option. Any ideas how to fix that? config.log from xmbc attached. Regards, marek diff --git a/package/Config.in b/package/Config.in index b394f18..68d28fa 100644 --- a/package/Config.in +++ b/package/Config.in @@ -120,6 +120,7 @@ source "package/sdl_sound/Config.in" source "package/sdl_net/Config.in" source "package/sdl_ttf/Config.in" source "package/sdl_gfx/Config.in" +source "package/xbmc/Config.in" comment "other GUIs" source "package/efl/Config.in" diff --git a/package/xbmc/Config.in b/package/xbmc/Config.in new file mode 100644 index 0000000..623e518 --- /dev/null +++ b/package/xbmc/Config.in @@ -0,0 +1,7 @@ +config BR2_PACKAGE_XBMC + bool "xbmc" + select BR2_PACKAGE_BOOST + select BR2_PACKAGE_SDL_GFX + select BR2_PACKAGE_MYSQL_CLIENT + help + XBMC diff --git a/package/xbmc/xbmc.mk b/package/xbmc/xbmc.mk new file mode 100644 index 0000000..6379ab8 --- /dev/null +++ b/package/xbmc/xbmc.mk @@ -0,0 +1,13 @@ +############################################################# +# +# xbmc +# +############################################################# +XBMC_VERSION = 11.0 +XBMC_SITE = http://mirrors.xbmc.org/releases/source/ + +XBMC_DEPENDENCIES = host-pkg-config boost sdl_gfx mysql_client +XBMC_CONF_OPT = --disable-debug --disable-gl + +$(eval $(call AUTOTARGETS)) +