forked from pool/libbluray
Accepting request 282994 from multimedia:libs
1 OBS-URL: https://build.opensuse.org/request/show/282994 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libbluray?expand=0&rev=17
This commit is contained in:
commit
aba9184a03
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:8ca410c8a4a1e2e8344014a67e2c908182cff3e04ece4e3b9ef196cf6bca5cd0
|
|
||||||
size 582227
|
|
3
libbluray-0.7.0.tar.bz2
Normal file
3
libbluray-0.7.0.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:f79beb9fbb24117cbb1264c919e686ae9e6349c0ad08b48c4b6233b2887eb68d
|
||||||
|
size 597266
|
@ -1,6 +1,6 @@
|
|||||||
--- configure.ac.orig 2014-12-17 18:01:33.515364222 +0100
|
--- configure.ac.orig 2015-01-26 10:21:27.000000000 +0100
|
||||||
+++ configure.ac 2014-12-17 18:01:33.523364060 +0100
|
+++ configure.ac 2015-01-27 12:55:38.278766200 +0100
|
||||||
@@ -102,9 +102,10 @@
|
@@ -105,9 +105,10 @@
|
||||||
[BDJ_BOOTCLASSPATH=])
|
[BDJ_BOOTCLASSPATH=])
|
||||||
|
|
||||||
dnl required programs
|
dnl required programs
|
||||||
@ -13,7 +13,7 @@
|
|||||||
|
|
||||||
dnl required types
|
dnl required types
|
||||||
AC_TYPE_SIGNAL
|
AC_TYPE_SIGNAL
|
||||||
@@ -119,23 +120,12 @@
|
@@ -122,23 +123,12 @@
|
||||||
|
|
||||||
dnl required system services
|
dnl required system services
|
||||||
AC_SYS_LARGEFILE
|
AC_SYS_LARGEFILE
|
||||||
@ -39,26 +39,26 @@
|
|||||||
|
|
||||||
dnl libxml2 for metadata parser
|
dnl libxml2 for metadata parser
|
||||||
AS_IF([test "x$with_libxml2" != "xno"], [
|
AS_IF([test "x$with_libxml2" != "xno"], [
|
||||||
--- src/Makefile.am.orig 2014-12-17 18:01:35.803318166 +0100
|
--- src/Makefile.am.orig 2015-01-26 10:44:55.000000000 +0100
|
||||||
+++ src/Makefile.am 2014-12-17 18:01:35.831317614 +0100
|
+++ src/Makefile.am 2015-01-27 12:55:39.622438800 +0100
|
||||||
@@ -1,7 +1,7 @@
|
@@ -1,7 +1,7 @@
|
||||||
-SET_FEATURES = -D_ISOC99_SOURCE -D_POSIX_C_SOURCE=200112L -D_REENTRANT
|
-SET_FEATURES = -D_ISOC99_SOURCE -D_POSIX_C_SOURCE=200112L -D_REENTRANT
|
||||||
SET_INCLUDES = -I$(top_srcdir) -Ifile -Ilibbluray -Ilibbluray/bdnav $(BDJAVA_CFLAGS)
|
SET_INCLUDES = -I$(top_srcdir) -Ifile -Ilibbluray -Ilibbluray/bdnav $(BDJAVA_CFLAGS)
|
||||||
|
|
||||||
-AM_CFLAGS = -std=c99 $(SET_FEATURES) $(SET_INCLUDES) $(LIBXML2_CFLAGS) $(FT2_CFLAGS)
|
-AM_CFLAGS = -std=c99 $(SET_FEATURES) $(SET_INCLUDES) $(LIBXML2_CFLAGS) $(FT2_CFLAGS) $(FONTCONFIG_CFLAGS)
|
||||||
+AM_CFLAGS = -pthread $(LIBXML2_CFLAGS) $(FT2_CFLAGS)
|
+AM_CFLAGS = -pthread $(LIBXML2_CFLAGS) $(FT2_CFLAGS) $(FONTCONFIG_CFLAGS)
|
||||||
+AM_CPPFLAGS = $(SET_INCLUDES) -include config.h
|
+AM_CPPFLAGS = $(SET_INCLUDES) -include config.h
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
libbluray/bdj/build.xml \
|
libbluray/bdj/build.xml \
|
||||||
@@ -120,8 +120,8 @@
|
@@ -123,8 +123,8 @@
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
-libbluray_la_LDFLAGS= -version-info $(LT_VERSION_INFO)
|
-libbluray_la_LDFLAGS= -version-info $(LT_VERSION_INFO)
|
||||||
-libbluray_la_LIBADD= $(LIBXML2_LIBS) $(FT2_LIBS)
|
-libbluray_la_LIBADD= $(LIBXML2_LIBS) $(FT2_LIBS) $(FONTCONFIG_LIBS)
|
||||||
+libbluray_la_LDFLAGS= -no-undefined -version-info $(LT_VERSION_INFO)
|
+libbluray_la_LDFLAGS= -no-undefined -version-info $(LT_VERSION_INFO)
|
||||||
+libbluray_la_LIBADD= $(LIBXML2_LIBS) $(FT2_LIBS) -ldl
|
+libbluray_la_LIBADD= $(LIBXML2_LIBS) $(FT2_LIBS) $(FONTCONFIG_LIBS) -ldl
|
||||||
|
|
||||||
pkginclude_HEADERS = \
|
pkginclude_HEADERS = \
|
||||||
file/filesystem.h \
|
file/filesystem.h \
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
--- src/libbluray/bdj/bdj.c.orig 2014-09-01 14:06:01.000000000 +0200
|
--- src/libbluray/bdj/bdj.c.orig 2015-01-26 09:01:57.000000000 +0100
|
||||||
+++ src/libbluray/bdj/bdj.c 2014-12-19 10:34:11.196480400 +0100
|
+++ src/libbluray/bdj/bdj.c 2015-01-27 13:00:09.750270100 +0100
|
||||||
@@ -159,7 +159,7 @@
|
@@ -166,7 +166,7 @@
|
||||||
"/usr/lib/jvm/java-6-openjdk",
|
"/usr/lib/jvm/java-6-openjdk",
|
||||||
"/usr/lib/jvm/java-7-openjdk",
|
"/usr/lib/jvm/java-7-openjdk",
|
||||||
"/etc/java-config-2/current-system-vm"};
|
"/etc/java-config-2/current-system-vm"};
|
||||||
|
@ -1,3 +1,20 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jan 27 11:45:37 UTC 2015 - joerg.lorenzen@ki.tng.de
|
||||||
|
|
||||||
|
- Update to version 0.7.0:
|
||||||
|
+ Add player setting for BD-J persistent storage and cache paths.
|
||||||
|
+ Add support for system fonts. BD-J fonts in jre/lib/fonts/
|
||||||
|
are not required anymore.
|
||||||
|
+ Add BD-J organization ID and disc ID to BLURAY_DISC_INFO.
|
||||||
|
+ Release still mode when BD-J terminates.
|
||||||
|
+ Implement BD-J caching.
|
||||||
|
+ Improve BD-J compability.
|
||||||
|
+ Java 8 compability fixes.
|
||||||
|
+ Fix storage size for bdjo object reference in BLURAY_DISC_INFO.
|
||||||
|
+ Fix BD-J on-disc font usage.
|
||||||
|
+ Fix animations in some BD-J menus.
|
||||||
|
+ Fix BD-J storage path charset issues in Windows.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Dec 19 09:53:26 UTC 2014 - joerg.lorenzen@ki.tng.de
|
Fri Dec 19 09:53:26 UTC 2014 - joerg.lorenzen@ki.tng.de
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package libbluray
|
# spec file for package libbluray
|
||||||
#
|
#
|
||||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2011 Dominique Leuenberger, Amsterdam, The Netherlands
|
# Copyright (c) 2011 Dominique Leuenberger, Amsterdam, The Netherlands
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
@ -20,7 +20,7 @@
|
|||||||
%define soname 1
|
%define soname 1
|
||||||
|
|
||||||
Name: libbluray
|
Name: libbluray
|
||||||
Version: 0.6.2
|
Version: 0.7.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Library to access Blu-Ray disk
|
Summary: Library to access Blu-Ray disk
|
||||||
License: LGPL-2.1+
|
License: LGPL-2.1+
|
||||||
@ -32,6 +32,7 @@ Patch2: libbluray-jvm_dir.patch
|
|||||||
Source99: baselibs.conf
|
Source99: baselibs.conf
|
||||||
BuildRequires: libtool
|
BuildRequires: libtool
|
||||||
BuildRequires: pkg-config
|
BuildRequires: pkg-config
|
||||||
|
BuildRequires: pkgconfig(fontconfig)
|
||||||
BuildRequires: pkgconfig(freetype2)
|
BuildRequires: pkgconfig(freetype2)
|
||||||
BuildRequires: pkgconfig(libxml-2.0) >= 2.6
|
BuildRequires: pkgconfig(libxml-2.0) >= 2.6
|
||||||
BuildRequires: ant
|
BuildRequires: ant
|
||||||
|
Loading…
x
Reference in New Issue
Block a user