public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Alexis Ballier" <aballier@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libbluray/
Date: Thu, 27 Oct 2022 12:30:19 +0000 (UTC)	[thread overview]
Message-ID: <1666873813.21556102361e6fa525f98287a82802bcefedc160.aballier@gentoo> (raw)

commit:     21556102361e6fa525f98287a82802bcefedc160
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 27 12:30:07 2022 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Thu Oct 27 12:30:13 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21556102

media-libs/libbluray: bump to 1.3.3

Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>

 media-libs/libbluray/Manifest               |  1 +
 media-libs/libbluray/libbluray-1.3.3.ebuild | 85 +++++++++++++++++++++++++++++
 2 files changed, 86 insertions(+)

diff --git a/media-libs/libbluray/Manifest b/media-libs/libbluray/Manifest
index 3c11191551d5..1bb34803293f 100644
--- a/media-libs/libbluray/Manifest
+++ b/media-libs/libbluray/Manifest
@@ -1,3 +1,4 @@
 DIST libbluray-1.3.0.tar.bz2 754069 BLAKE2B d4c699ce28d2e5b1d4dda461a1359d3a446afe72368e9d76066ca4d5c49d1f24b4bcec307608d96913d0c668168a86267416b9db37ad942628c2926b79ec47d9 SHA512 3d5145e6fd7de099c07f937282112c7abb12a5590b7c0b965b00bddee3837ddfd1a30076aaa6d6278d07a5beee3856f602125983ae075ab30eceb6ac1bd9bcdc
 DIST libbluray-1.3.1.tar.bz2 754867 BLAKE2B 471963bc5b77f9da31c2ad900e7bbb1528943d2341aa4f12471e5d9a0db6964e62e917c4f19e29115c8c129bb7f8730780b44dbb1c8939c94c686f39d8521fe8 SHA512 f39fc8a11771e8fdd5eeebf0ab23535ffab44721f64b350e5d153eee44555b31c618b6d765da114254dc83ff0ff89e84c6b185f61cdbcfedd2d47a5f6e26b75a
 DIST libbluray-1.3.2.tar.bz2 757957 BLAKE2B e970e07f6ad216f7bdac866acfb87400b4fbd511ad41293f0aa93e6cc04f77bca249c78b75eb89d92e41c9a1d25df93c4cab53cdb2cfd27b8a47233bbc277cad SHA512 6f2d3a984809db33a99d2fe3618370a3fda3ef1c417b725d3c2e1f24ff21495f95a6a5f78b30b2b26bab47865f68dd08c08e8a554809d3a5225956da712dc064
+DIST libbluray-1.3.3.tar.bz2 761335 BLAKE2B 3d17e686e363b0692b7d75596089ed12dbe46006738ea23f274b2992a541e6f1b0384ac2afc785359d94f652017284668c3a044db24ef6de5625575fca956bce SHA512 fc36b4eea43f430f5f774129bd5cf075ed0128433779ad0146d59cc87e9625f4b6c31098fed1f5754b84fd08d9c8044d8d43d78c5b9c07937878cf15f517ba6f

diff --git a/media-libs/libbluray/libbluray-1.3.3.ebuild b/media-libs/libbluray/libbluray-1.3.3.ebuild
new file mode 100644
index 000000000000..9d617a0039d2
--- /dev/null
+++ b/media-libs/libbluray/libbluray-1.3.3.ebuild
@@ -0,0 +1,85 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+if [[ ${PV#9999} != ${PV} ]] ; then
+	inherit git-r3
+	EGIT_REPO_URI="https://code.videolan.org/videolan/libbluray.git"
+else
+	SRC_URI="https://downloads.videolan.org/pub/videolan/libbluray/${PV}/${P}.tar.bz2"
+	KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+fi
+
+inherit autotools java-pkg-opt-2 multilib-minimal
+
+DESCRIPTION="Blu-ray playback libraries"
+HOMEPAGE="https://www.videolan.org/developers/libbluray.html"
+
+LICENSE="LGPL-2.1"
+SLOT="0/2"
+IUSE="aacs bdplus +fontconfig java +truetype utils +xml"
+
+RDEPEND="
+	dev-libs/libudfread[${MULTILIB_USEDEP}]
+	aacs? ( >=media-libs/libaacs-0.6.0[${MULTILIB_USEDEP}] )
+	bdplus? ( media-libs/libbdplus[${MULTILIB_USEDEP}] )
+	fontconfig? ( >=media-libs/fontconfig-2.10.92[${MULTILIB_USEDEP}] )
+	java? ( >=virtual/jre-1.8:* )
+	truetype? ( >=media-libs/freetype-2.5.0.1:2[${MULTILIB_USEDEP}] )
+	xml? ( >=dev-libs/libxml2-2.9.1-r4[${MULTILIB_USEDEP}] )
+"
+DEPEND="
+	${RDEPEND}
+	java? ( >=virtual/jdk-1.8:* )
+"
+BDEPEND="
+	virtual/pkgconfig
+	java? (
+		dev-java/ant-core
+		>=virtual/jdk-1.8:*
+	)
+"
+
+PATCHES=(
+	"${FILESDIR}"/${PN}-jars.patch
+)
+
+DOCS=( ChangeLog README.md )
+
+src_prepare() {
+	default
+
+	eautoreconf
+}
+
+multilib_src_configure() {
+	# bug #621992
+	use java || unset JDK_HOME
+
+	ECONF_SOURCE="${S}" econf \
+		--disable-optimizations \
+		$(multilib_native_use_enable utils examples) \
+		$(multilib_native_use_enable java bdjava-jar) \
+		$(use_with fontconfig) \
+		$(use_with truetype freetype) \
+		$(use_with xml libxml2)
+}
+
+multilib_src_install() {
+	emake DESTDIR="${D}" install
+
+	multilib_is_native_abi || return
+
+	use utils &&
+		find .libs/ -type f -executable ! -name "${PN}.*" \
+			 $(use java || echo '! -name bdj_test') -exec dobin {} +
+
+	use java && java-pkg_regjar "${ED}"/usr/share/${PN}/lib/*.jar
+}
+
+multilib_src_install_all() {
+	einstalldocs
+
+	find "${ED}" -name '*.la' -delete || die
+}


             reply	other threads:[~2022-10-27 12:30 UTC|newest]

Thread overview: 86+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-10-27 12:30 Alexis Ballier [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-04-02 18:03 [gentoo-commits] repo/gentoo:master commit in: media-libs/libbluray/ Conrad Kostecki
2024-04-02 18:03 Conrad Kostecki
2023-12-05 20:38 Arthur Zamarin
2023-09-28  6:17 Sam James
2023-09-27 13:22 Joonas Niilola
2023-09-27 10:11 Joonas Niilola
2023-09-27  6:05 Sam James
2023-09-27  6:05 Sam James
2023-03-22  5:30 Sam James
2022-12-18 12:15 Sam James
2022-12-18 12:15 Sam James
2022-11-29 15:58 WANG Xuerui
2022-09-18 20:30 Arthur Zamarin
2022-09-18 16:25 Arthur Zamarin
2022-09-18 16:11 Arthur Zamarin
2022-09-18 16:11 Arthur Zamarin
2022-09-18 16:11 Arthur Zamarin
2022-09-18  0:19 Sam James
2022-09-18  0:19 Sam James
2022-08-17  1:22 Sam James
2022-04-17 19:24 Sam James
2022-03-13  5:54 Sam James
2022-03-13  5:28 Sam James
2021-08-21  8:44 Marek Szuba
2021-06-03  0:43 Sam James
2021-06-02 10:39 Sam James
2021-05-28 19:39 Agostino Sarubbo
2021-05-28 14:40 Sergei Trofimovich
2021-05-25 19:10 Agostino Sarubbo
2021-05-25 18:58 Agostino Sarubbo
2021-05-25 11:56 Sam James
2021-04-25  9:18 Sergei Trofimovich
2021-04-20 17:06 Sergei Trofimovich
2021-04-19  0:18 Sam James
2021-04-18 23:05 Sam James
2021-02-27  5:16 Sam James
2021-01-07 11:33 Sam James
2021-01-06  8:09 Sam James
2021-01-03 21:10 Sam James
2021-01-02 11:52 Sergei Trofimovich
2021-01-01  5:46 Sam James
2021-01-01  3:13 Sam James
2020-03-24 11:38 James Le Cuirot
2019-09-13 19:43 Andreas Sturmlechner
2019-09-13 17:39 Mikle Kolyada
2019-08-13 10:32 Agostino Sarubbo
2019-08-13 10:30 Agostino Sarubbo
2019-08-10  7:58 Sergei Trofimovich
2019-08-08  7:43 Agostino Sarubbo
2019-08-06 22:27 Aaron Bauman
2019-07-27 12:54 Aaron Bauman
2019-06-25 19:24 Lars Wendler
2019-05-05 19:05 Mike Gilbert
2018-09-21 19:48 James Le Cuirot
2018-09-21 18:21 James Le Cuirot
2018-09-21 18:21 James Le Cuirot
2018-09-15  2:31 Andreas Sturmlechner
2018-07-10  4:58 Markus Meier
2018-05-25 23:58 Thomas Deutschmann
2018-05-24 14:31 Agostino Sarubbo
2018-05-24  6:19 Sergei Trofimovich
2017-12-16  5:40 Craig Andrews
2017-12-09 18:41 Craig Andrews
2017-12-09 18:41 Craig Andrews
2017-12-04 18:15 Pacho Ramos
2017-08-31 17:38 Tim Harder
2017-06-22 11:48 Alexis Ballier
2017-06-15  8:49 Alexis Ballier
2017-04-01 11:50 Michael Weber
2017-04-01 11:19 Michael Weber
2017-03-04 13:37 Alexis Ballier
2017-01-06 13:16 Aaron Bauman
2016-12-09  7:11 Tim Harder
2016-08-08 15:53 Tim Harder
2016-05-23 11:09 Alexis Ballier
2015-12-03  9:52 Alexis Ballier
2015-12-03  9:49 Alexis Ballier
2015-12-03  9:41 Alexis Ballier
2015-12-03  9:35 Alexis Ballier
2015-12-03  9:35 Alexis Ballier
2015-12-03  9:29 Alexis Ballier
2015-12-03  9:24 Alexis Ballier
2015-11-07 18:58 Alexis Ballier
2015-10-06  9:16 Alexis Ballier
2015-10-06  9:16 Alexis Ballier

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1666873813.21556102361e6fa525f98287a82802bcefedc160.aballier@gentoo \
    --to=aballier@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox