From patchwork Thu Feb 21 18:28:17 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Stefan_Fr=C3=B6berg?= X-Patchwork-Id: 222394 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 B10782C007E for ; Fri, 22 Feb 2013 05:28:43 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 9064AA01F4; Thu, 21 Feb 2013 18:28:43 +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 T+CG6qtPYV+L; Thu, 21 Feb 2013 18:28:41 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id DBAB1A01E5; Thu, 21 Feb 2013 18:28:40 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 18F118F753 for ; Thu, 21 Feb 2013 18:28:46 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 950FA8CD70 for ; Thu, 21 Feb 2013 18:28:38 +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 D65IJ+5xVSI4 for ; Thu, 21 Feb 2013 18:28:37 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail.petroprogram.com (mail.petroprogram.com [194.89.34.74]) by whitealder.osuosl.org (Postfix) with ESMTPS id 4351D8C5EE for ; Thu, 21 Feb 2013 18:28:37 +0000 (UTC) Received: from localhost.fi (unknown [194.89.34.74]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: stefan.froberg@petroprogram.com) by mail.petroprogram.com (Postfix) with ESMTPSA id 91D58422D8; Thu, 21 Feb 2013 20:20:05 +0200 (EET) From: =?UTF-8?q?Stefan=20Fr=C3=B6berg?= To: buildroot@busybox.net Date: Thu, 21 Feb 2013 20:28:17 +0200 Message-Id: <1361471297-23210-1-git-send-email-stefan.froberg@petroprogram.com> X-Mailer: git-send-email 1.7.7.6 MIME-Version: 1.0 Subject: [Buildroot] [PATCH] new package: libcanberra 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 libcanberra Portable sound event library Signed-off-by: Stefan Fröberg --- package/Config.in | 1 + package/libcanberra/Config.in | 10 ++++++++++ package/libcanberra/libcanberra.mk | 17 +++++++++++++++++ 3 files changed, 28 insertions(+), 0 deletions(-) create mode 100644 package/libcanberra/Config.in create mode 100644 package/libcanberra/libcanberra.mk diff --git a/package/Config.in b/package/Config.in index 51e92a2..28bb55c 100644 --- a/package/Config.in +++ b/package/Config.in @@ -350,6 +350,7 @@ source "package/alsa-lib/Config.in" source "package/audiofile/Config.in" source "package/celt051/Config.in" source "package/libao/Config.in" +source "package/libcanberra/Config.in" source "package/libcdaudio/Config.in" source "package/libcue/Config.in" source "package/libcuefile/Config.in" diff --git a/package/libcanberra/Config.in b/package/libcanberra/Config.in new file mode 100644 index 0000000..59accd0 --- /dev/null +++ b/package/libcanberra/Config.in @@ -0,0 +1,10 @@ +config BR2_PACKAGE_LIBCANBERRA + bool "libcanberra" + select BR2_PACKAGE_ALSA_LIB + select BR2_PACKAGE_LIBGTK2 + select BR2_PACKAGE_LIBVORBIS + help + Portable sound event library + + http://0pointer.de/lennart/projects/libcanberra + diff --git a/package/libcanberra/libcanberra.mk b/package/libcanberra/libcanberra.mk new file mode 100644 index 0000000..9394294 --- /dev/null +++ b/package/libcanberra/libcanberra.mk @@ -0,0 +1,17 @@ +############################################################# +# +# libcanberra +# +############################################################# + +LIBCANBERRA_VERSION = 0.27 +LIBCANBERRA_SITE = http://0pointer.de/lennart/projects/libcanberra +LIBCANBERRA_INSTALL_STAGING = YES +LIBCANBERRA_DEPENDENCIES = libvorbis libtool alsa-lib libgtk2 +LIBCANBERRA_CONF_OPT += --disable-oss --enable-gtk +LIBCANBERRA_LICENSE = LGPLv2.1+ +LIBCANBERRA_LICENSE_FILES = LGPL + +$(eval $(autotools-package)) + +