From patchwork Wed Jun 22 10:08:03 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 639077 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3rZKzl25Y3z9sdg for ; Wed, 22 Jun 2016 20:08:18 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=zacarias.com.ar header.i=@zacarias.com.ar header.b=Y4YtbNdv; dkim-atps=neutral Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id B75158881E; Wed, 22 Jun 2016 10:08:16 +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 e+JlzGvX4pRY; Wed, 22 Jun 2016 10:08:15 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id A4B5288382; Wed, 22 Jun 2016 10:08:15 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 2D9961C09EB for ; Wed, 22 Jun 2016 10:08:14 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 2A7CE88CE5 for ; Wed, 22 Jun 2016 10:08:14 +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 i8QHPnp72exn for ; Wed, 22 Jun 2016 10:08:12 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from www.zacarias.com.ar (www.zacarias.com.ar [176.9.42.171]) by whitealder.osuosl.org (Postfix) with ESMTPS id 838AE88BFA for ; Wed, 22 Jun 2016 10:08:12 +0000 (UTC) Received: from asgard (cpe-200-125-80-97.telecentro-reversos.com.ar [200.125.80.97] (may be forged)) (authenticated bits=0) by www.zacarias.com.ar (8.15.1/8.15.1) with ESMTPSA id u5MA84Zl004086 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Wed, 22 Jun 2016 10:08:07 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1466590089; bh=Ac0vX4rTq4smJ1wpqgGtRX/1QRNAYsZSLbj8QnVCJaU=; h=From:To:Cc:Subject:Date; b=Y4YtbNdvhSYXkV5IaFPMJaR2laJTckjzT6SPVvVD3yHBsVuV6/PkCSONVBOdOXaM8 EghjwDUJ2rOOlTunc4KWIRjlbQ94kUOD+Cl7nEr/8MSIK5X4g1I4n4QR0NDbYQGPew HL0IcDzoUuApqd+kZSzFj4ttYoarGyemNf4F7IjA= Received: by asgard (sSMTP sendmail emulation); Wed, 22 Jun 2016 07:08:04 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Wed, 22 Jun 2016 07:08:03 -0300 Message-Id: <1466590084-21798-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 2.7.3 MIME-Version: 1.0 X-Virus-Scanned: clamav-milter 0.99 at www X-Virus-Status: Clean Subject: [Buildroot] [PATCH 1/2] audacious: new package X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 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" Signed-off-by: Gustavo Zacarias --- package/Config.in | 1 + package/audacious/Config.in | 24 ++++++++++++++++++++++++ package/audacious/audacious.hash | 2 ++ package/audacious/audacious.mk | 15 +++++++++++++++ 4 files changed, 42 insertions(+) create mode 100644 package/audacious/Config.in create mode 100644 package/audacious/audacious.hash create mode 100644 package/audacious/audacious.mk diff --git a/package/Config.in b/package/Config.in index b1fced1..2f2c255 100644 --- a/package/Config.in +++ b/package/Config.in @@ -5,6 +5,7 @@ menu "Target packages" menu "Audio and video applications" source "package/alsa-utils/Config.in" + source "package/audacious/Config.in" source "package/aumix/Config.in" source "package/bellagio/Config.in" source "package/dvblast/Config.in" diff --git a/package/audacious/Config.in b/package/audacious/Config.in new file mode 100644 index 0000000..a7520cf --- /dev/null +++ b/package/audacious/Config.in @@ -0,0 +1,24 @@ +config BR2_PACKAGE_AUDACIOUS + bool "audacious" + depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2 + depends on BR2_USE_WCHAR # libglib2 + depends on BR2_INSTALL_LIBSTDCPP + # Lacks sufficient fenv support + depends on !BR2_TOOLCHAIN_USES_UCLIBC + depends on BR2_USE_MMU + depends on !BR2_STATIC_LIBS + depends on BR2_PACKAGE_LIBGTK3 + select BR2_PACKAGE_DBUS + select BR2_PACKAGE_LIBGLIB2 + help + Audacious is an open source audio player. A descendant of + XMMS, Audacious plays your music how you want it, without + stealing away your computer’s resources from other tasks. + + http://audacious-media-player.org/ + +comment "audacious needs libgtk3 and a glibc or musl toolchain w/ C++, wchar, threads, dynamic library" + depends on BR2_USE_MMU + depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \ + BR2_STATIC_LIBS || !BR2_PACKAGE_LIBGTK3 || \ + BR2_TOOLCHAIN_USES_UCLIBC || !BR2_INSTALL_LIBSTDCPP diff --git a/package/audacious/audacious.hash b/package/audacious/audacious.hash new file mode 100644 index 0000000..a67d362 --- /dev/null +++ b/package/audacious/audacious.hash @@ -0,0 +1,2 @@ +# Locally calculated +sha256 bf9ce9e2f475d14cf6510e14235e858a73afb67826b039c2b6e0f86851ec7edf audacious-3.7.2-gtk3.tar.bz2 diff --git a/package/audacious/audacious.mk b/package/audacious/audacious.mk new file mode 100644 index 0000000..a18458b --- /dev/null +++ b/package/audacious/audacious.mk @@ -0,0 +1,15 @@ +################################################################################ +# +# audacious +# +################################################################################ + +AUDACIOUS_VERSION = 3.7.2 +AUDACIOUS_SITE = http://distfiles.audacious-media-player.org +AUDACIOUS_SOURCE = audacious-$(AUDACIOUS_VERSION)-gtk3.tar.bz2 +AUDACIOUS_DEPENDENCIES = dbus libglib2 libgtk3 host-pkgconf +AUDACIOUS_INSTALL_STAGING = YES +AUDACIOUS_LICENSE = BSD-2c +AUDACIOUS_LICENSE_FILES = COPYING + +$(eval $(autotools-package))