Merge pull request #2787 from MilhouseVH/le90_libbluray_1.0.2

libbluray: bump to 1.0.2
This commit is contained in:
Christian Hewitt 2018-06-26 06:37:08 +04:00 committed by GitHub
commit b050cb62d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 898 additions and 287 deletions

View File

@ -1,26 +1,27 @@
################################################################################
# This file is part of OpenELEC - http://www.openelec.tv
# This file is part of LibreELEC - https://libreelec.tv
# Copyright (C) 2018-present Team LibreELEC
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
#
# OpenELEC is free software: you can redistribute it and/or modify
# LibreELEC is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# OpenELEC is distributed in the hope that it will be useful,
# LibreELEC is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with OpenELEC. If not, see <http://www.gnu.org/licenses/>.
# along with LibreELEC. If not, see <http://www.gnu.org/licenses/>.
################################################################################
PKG_NAME="libbluray"
PKG_VERSION="1.0.1"
PKG_SHA256="0f9f9a1db2f48cafc70ed2596ff3594b597e2027408f5f2be6191c245d67853a"
PKG_VERSION="1.0.2"
PKG_SHA256="6d9e7c4e416f664c330d9fa5a05ad79a3fb39b95adfc3fd6910cbed503b7aeff"
PKG_ARCH="any"
PKG_LICENSE="GPL"
PKG_LICENSE="LGPL"
PKG_SITE="https://www.videolan.org/developers/libbluray.html"
PKG_URL="https://ftp.videolan.org/pub/videolan/libbluray/$PKG_VERSION/$PKG_NAME-$PKG_VERSION.tar.bz2"
PKG_DEPENDS_TARGET="toolchain fontconfig freetype libxml2"

View File

@ -0,0 +1,42 @@
From 316310d889d0bcffa299ef6a7fb5726847f2dd3a Mon Sep 17 00:00:00 2001
From: MilhouseVH <milhouseVH.github@nmacleod.com>
Date: Wed, 20 Jun 2018 15:01:32 +0100
Subject: [PATCH] add missing 3D MVC headers
---
Makefile.am | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/Makefile.am b/Makefile.am
index ff15527..00db9af 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -219,6 +219,14 @@ noinst_HEADERS = \
jni/win32/jni_md.h \
jni/darwin/jni_md.h
+bdnavdir=$(pkgincludedir)/bdnav
+bdnav_HEADERS = \
+ src/libbluray/bdnav/clpi_data.h
+
+utildir=$(pkgincludedir)/util
+util_HEADERS = \
+ src/util/attributes.h
+
pkginclude_HEADERS = \
src/file/filesystem.h \
src/libbluray/bluray.h \
@@ -226,6 +234,10 @@ pkginclude_HEADERS = \
src/libbluray/keys.h \
src/libbluray/player_settings.h \
src/libbluray/bdnav/clpi_data.h \
+ src/libbluray/bdnav/clpi_parse.h \
+ src/libbluray/bdnav/mpls_parse.h \
+ src/libbluray/bdnav/mpls_data.h \
+ src/libbluray/bdnav/uo_mask_table.h \
src/libbluray/bdnav/meta_data.h \
src/libbluray/decoders/overlay.h \
src/util/log_control.h
--
2.14.1