From patchwork Sat May 17 15:57:54 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 349938 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id 8B438140295 for ; Sun, 18 May 2014 02:01:10 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id C5F6B8C193; Sat, 17 May 2014 16:01:09 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id VGiluN4V5xmN; Sat, 17 May 2014 16:01:04 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id A157F8C5FA; Sat, 17 May 2014 15:59:07 +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 A6D161BFA57 for ; Sat, 17 May 2014 15:58:45 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id A4ABE8B0B9 for ; Sat, 17 May 2014 15:58:45 +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 3EYA7vZOcXmC for ; Sat, 17 May 2014 15:58:40 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailout04.t-online.de (mailout04.t-online.de [194.25.134.18]) by fraxinus.osuosl.org (Postfix) with ESMTPS id 599D18B1E8 for ; Sat, 17 May 2014 15:58:40 +0000 (UTC) Received: from fwd23.aul.t-online.de (fwd23.aul.t-online.de [172.20.26.128]) by mailout04.t-online.de (Postfix) with SMTP id 661675995D7 for ; Sat, 17 May 2014 17:57:19 +0200 (CEST) Received: from fli4l.lan.fli4l (r1OH-mZ1ZhYqwZWx08NQRv1+Vbr6Yr6LyKUbeeUOJtOO6UzItPRtiJxt+czG6Oggee@[87.146.210.206]) by fwd23.t-online.de with esmtp id 1Wlh0M-2dWbDM0; Sat, 17 May 2014 17:58:34 +0200 Received: from fli4lbuild64.lan.fli4l ([192.168.1.51]:53189) by fli4l.lan.fli4l with esmtpsa (TLSv1.2:DHE-RSA-AES256-GCM-SHA384:256) (Exim 4.80.1) (envelope-from ) id 1Wlh04-0000kD-Oa; Sat, 17 May 2014 17:58:16 +0200 From: Bernd Kuhls To: buildroot@buildroot.org Date: Sat, 17 May 2014 17:57:54 +0200 Message-Id: <1400342276-10303-27-git-send-email-bernd.kuhls@t-online.de> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1400342276-10303-1-git-send-email-bernd.kuhls@t-online.de> References: <1400342276-10303-1-git-send-email-bernd.kuhls@t-online.de> X-ID: r1OH-mZ1ZhYqwZWx08NQRv1+Vbr6Yr6LyKUbeeUOJtOO6UzItPRtiJxt+czG6Oggee X-TOI-MSGID: d1854c09-973a-4d58-a0c1-dbdfac939394 Cc: Bernd Kuhls Subject: [Buildroot] [PATCH v8 26/28] xbmc: Add option for Goom screensaver 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: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net Signed-off-by: Bernd Kuhls --- package/xbmc/Config.in | 11 +++++++++++ package/xbmc/xbmc.mk | 6 ++++++ 2 files changed, 17 insertions(+) diff --git a/package/xbmc/Config.in b/package/xbmc/Config.in index 40a1f63..4b5276c 100644 --- a/package/xbmc/Config.in +++ b/package/xbmc/Config.in @@ -131,6 +131,17 @@ config BR2_PACKAGE_XBMC_LIBMICROHTTPD help Enable webserver feature +config BR2_PACKAGE_XBMC_GOOM + bool "goom screensaver" + depends on BR2_i386 || BR2_x86_64 # it does not make sense to use goom on embedded archs + depends on BR2_PACKAGE_HAS_LIBGL + help + Enable goom screensaver + +comment "goom needs an OpenGL backend" + depends on BR2_i386 || BR2_x86_64 + depends on !BR2_PACKAGE_HAS_LIBGL + config BR2_PACKAGE_XBMC_LIBNFS bool "nfs" depends on BR2_TOOLCHAIN_HAS_NATIVE_RPC diff --git a/package/xbmc/xbmc.mk b/package/xbmc/xbmc.mk index 361380d..a18b82a 100644 --- a/package/xbmc/xbmc.mk +++ b/package/xbmc/xbmc.mk @@ -110,6 +110,12 @@ else XBMC_CONF_OPT += --disable-libmp3lame endif +ifeq ($(BR2_PACKAGE_XBMC_GOOM),y) +XBMC_CONF_OPT += --enable-goom +else +XBMC_CONF_OPT += --disable-goom +endif + ifeq ($(BR2_PACKAGE_XBMC_LIBUSB),y) XBMC_DEPENDENCIES += libusb-compat XBMC_CONF_OPT += --enable-libusb