From patchwork Thu Feb 21 14:58:33 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Maxime Hadjinlian X-Patchwork-Id: 222310 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id AFB1C2C008E for ; Fri, 22 Feb 2013 01:59:56 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 427442DFD3; Thu, 21 Feb 2013 14:59:54 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org X-Amavis-Alert: BAD HEADER SECTION, Duplicate header field: "References" Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id oyJgjPtABM1m; Thu, 21 Feb 2013 14:59:48 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id AEFF331465; Thu, 21 Feb 2013 14:59:31 +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 973B08F753 for ; Thu, 21 Feb 2013 14:59:27 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 1B15D849AF for ; Thu, 21 Feb 2013 14:59:20 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org X-Amavis-Alert: BAD HEADER SECTION, Duplicate header field: "References" Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id b2mb6Db80YQL for ; Thu, 21 Feb 2013 14:59:19 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-ea0-f177.google.com (mail-ea0-f177.google.com [209.85.215.177]) by whitealder.osuosl.org (Postfix) with ESMTPS id E3D14863D5 for ; Thu, 21 Feb 2013 14:59:18 +0000 (UTC) Received: by mail-ea0-f177.google.com with SMTP id n13so3811029eaa.8 for ; Thu, 21 Feb 2013 06:59:17 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references:in-reply-to:references; bh=fJw2gNnVf9kPFOnCh//MKkTSn0Od0XNhYPvJ9tuBboQ=; b=Q+ESAlvOE1ovL0X3mADZ42M2RI/IYHr8DSXotgZD+kDscxmjlTidn4Xa1EuA1tRPmR TqbMUUfsEvVtmZdXAh5LIY3dEUWZ1Pkx2AqNgDQUc8tqX1gs7V0F1PgZQAc87u5+LHmK Izu2eCCGAzH2wQmBT9/YuOKOp9g4/yPv7kq/6qq/UnW8n9aQD3mP0j/CU9d2cc4Wr4zc GzVeynUoYowF1s9/Bs3EafIiquuJYYuWCHVYpCMtpCv41IbH0YxVvaYH10QDJN9wppPm MAXmS5R1n/1ee3tLsuQCzZeexV8DtmACfoa4GhbSwzmztRrUW5ksSEBhcpMRhH4KoXeR qlZA== X-Received: by 10.14.201.5 with SMTP id a5mr81946610eeo.17.1361458757181; Thu, 21 Feb 2013 06:59:17 -0800 (PST) Received: from localhost (193.5-14-84.ripe.coltfrance.com. [84.14.5.193]) by mx.google.com with ESMTPS id 3sm115445927eej.6.2013.02.21.06.59.15 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Thu, 21 Feb 2013 06:59:16 -0800 (PST) From: Maxime Hadjinlian To: buildroot@busybox.net Date: Thu, 21 Feb 2013 15:58:33 +0100 Message-Id: <687bab14d1ef9d217df22d2875e5ccc03b924e0e.1361458625.git.maxime.hadjinlian@gmail.com> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: References: In-Reply-To: References: Subject: [Buildroot] [PATCH 03/13] libbluray: new 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: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net LIBBLURAY is a client library for accessing bluray disks. This package was originally found at : https://github.com/huceke/buildroot-rbp By gimli Signed-off-by: Maxime Hadjinlian --- package/Config.in | 1 + package/libbluray/Config.in | 6 ++++++ package/libbluray/libbluray.mk | 14 ++++++++++++++ 3 files changed, 21 insertions(+) create mode 100644 package/libbluray/Config.in create mode 100644 package/libbluray/libbluray.mk diff --git a/package/Config.in b/package/Config.in index 0da1905..5682cd2 100644 --- a/package/Config.in +++ b/package/Config.in @@ -474,6 +474,7 @@ endmenu menu "Multimedia" source "package/libass/Config.in" +source "package/libbluray/Config.in" source "package/libdvdread/Config.in" source "package/libdvdnav/Config.in" source "package/libebml/Config.in" diff --git a/package/libbluray/Config.in b/package/libbluray/Config.in new file mode 100644 index 0000000..eeb93dc --- /dev/null +++ b/package/libbluray/Config.in @@ -0,0 +1,6 @@ +config BR2_PACKAGE_LIBBLURAY + bool "libbluray" + help + libbluray is a client library for accessing bluray disks. + + http://www.videolan.org/developers/libbluray.html diff --git a/package/libbluray/libbluray.mk b/package/libbluray/libbluray.mk new file mode 100644 index 0000000..a1fc69b --- /dev/null +++ b/package/libbluray/libbluray.mk @@ -0,0 +1,14 @@ +############################################################# +# +# libbluray +# +############################################################# + +LIBBLURAY_VERSION = 0.2.2 +LIBBLURAY_SITE = ftp://ftp.videolan.org/pub/videolan/libbluray/$(LIBBLURAY_VERSION) +LIBBLURAY_SOURCE = libbluray-$(LIBBLURAY_VERSION).tar.bz2 +LIBBLURAY_INSTALL_STAGING = YES +LIBBLURAY_LICENSE = LGPLv2.1 +LIBBLURAY_LICENSE_FILES = COPYING + +$(eval $(autotools-package))