From patchwork Thu Jan 16 00:15:45 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Maxime Hadjinlian X-Patchwork-Id: 311497 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id 93B222C0082 for ; Thu, 16 Jan 2014 11:16:16 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id A24128B949; Thu, 16 Jan 2014 00:16:14 +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 KYteVSwCFBXX; Thu, 16 Jan 2014 00:16:14 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id D62DE8B9A0; Thu, 16 Jan 2014 00:16:12 +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 72BF31BF9A7 for ; Thu, 16 Jan 2014 00:16:12 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 6CD478C870 for ; Thu, 16 Jan 2014 00:16:12 +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 95Pim6WhxfsI for ; Thu, 16 Jan 2014 00:16:11 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-we0-f170.google.com (mail-we0-f170.google.com [74.125.82.170]) by whitealder.osuosl.org (Postfix) with ESMTPS id 02BF68C827 for ; Thu, 16 Jan 2014 00:16:10 +0000 (UTC) Received: by mail-we0-f170.google.com with SMTP id u57so2546973wes.15 for ; Wed, 15 Jan 2014 16:16:08 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=Gn2Urtct2J1CYguA5AqZsv+z+4UWe5JkjOfT31fpkDY=; b=Xld7uKwDTqSkENnToaaHqZn/IuBBy1g+ZHwpqFZ1s9V56cUVNpmrCaL65XMQaiIM/W 5DCDA0/LyktmmNIQujK6CRUDu9Y0giYjyuyRbKkgBKlcHTvJYUQyHf0p36mnzc+J521+ kufbGjEehHBTgaq1niB7+HhQZ1ZOO/7R4BKGQhFDIqENMWUN6ynUeBT24b+a79lCWqNw o5aXt13fhXNfgDk7Gu6KOQETjZ7sbtxfsk2Y0OpnAzxYo1Y01oFbJcm/s23DFSL6LbIh 6aulk/kqx1KvhT+tBQCcErcsXLfjEtDPiGZ6T+wecqqtyHvIhcNgodbamny7i535KQ4U kuSg== X-Received: by 10.180.184.105 with SMTP id et9mr4975797wic.36.1389831368791; Wed, 15 Jan 2014 16:16:08 -0800 (PST) Received: from localhost (13-105-190-109.dsl.ovh.fr. [109.190.105.13]) by mx.google.com with ESMTPSA id dd3sm4654435wjb.9.2014.01.15.16.16.07 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Wed, 15 Jan 2014 16:16:08 -0800 (PST) From: Maxime Hadjinlian To: buildroot@busybox.net Date: Thu, 16 Jan 2014 01:15:45 +0100 Message-Id: <1389831355-19983-3-git-send-email-maxime.hadjinlian@gmail.com> X-Mailer: git-send-email 1.8.5.2 In-Reply-To: <1389831355-19983-1-git-send-email-maxime.hadjinlian@gmail.com> References: <1389831355-19983-1-git-send-email-maxime.hadjinlian@gmail.com> Cc: gimli Subject: [Buildroot] [PATCH v2 02/12] 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 Cc: gimli Reviewed-by: "Yann E. MORIN" --- Changes v1 -> v2 - Bump version to 0.5.0 and add missing build dependency (Bernd Kuhls) --- package/Config.in | 1 + package/libbluray/Config.in | 6 ++++++ package/libbluray/libbluray.mk | 19 +++++++++++++++++++ 3 files changed, 26 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 1d6c9c6..0d3c0ce 100644 --- a/package/Config.in +++ b/package/Config.in @@ -628,6 +628,7 @@ endmenu menu "Multimedia" source "package/libass/Config.in" +source "package/libbluray/Config.in" source "package/libdvbsi/Config.in" source "package/libdvdnav/Config.in" source "package/libdvdread/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..e1e6bdd --- /dev/null +++ b/package/libbluray/libbluray.mk @@ -0,0 +1,19 @@ +################################################################################ +# +# libbluray +# +################################################################################ + +LIBBLURAY_VERSION = 0.5.0 +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 +LIBBLURAY_DEPENDENCIES = host-pkgconf freetype bzip2 libxml2 zlib + +ifeq ($(BR2_PACKAGE_LIBICONV),y) + LIBBLURAY_DEPENDENCIES += libiconv +endif + +$(eval $(autotools-package))