From patchwork Wed Mar 28 08:47:52 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: xbmc package Date: Tue, 27 Mar 2012 22:47:52 -0000 From: Belisko Marek X-Patchwork-Id: 149177 Message-Id: To: buildroot@uclibc.org 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)) +