From: "Craig Andrews" <candrews@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libbluray/
Date: Sat, 16 Dec 2017 05:40:34 +0000 (UTC) [thread overview]
Message-ID: <1513402811.007154e9f09da768ebc42a4ad0e88a650e3bad3f.candrews@gentoo> (raw)
commit: 007154e9f09da768ebc42a4ad0e88a650e3bad3f
Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 9 18:11:39 2017 +0000
Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Sat Dec 16 05:40:11 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=007154e9
media-libs/libbluray: 1.0.2 version bump
Closes: https://bugs.gentoo.org/640406
Package-Manager: Portage-2.3.17, Repoman-2.3.6
media-libs/libbluray/Manifest | 1 +
media-libs/libbluray/libbluray-1.0.2.ebuild | 90 +++++++++++++++++++++++++++++
2 files changed, 91 insertions(+)
diff --git a/media-libs/libbluray/Manifest b/media-libs/libbluray/Manifest
index 9e784b64613..364874abafb 100644
--- a/media-libs/libbluray/Manifest
+++ b/media-libs/libbluray/Manifest
@@ -1,3 +1,4 @@
DIST libbluray-0.9.3.tar.bz2 722686 BLAKE2B c8177b94b407c514de1b1ba3d19c9a50d0d1f364ad720a9cca06d0ff1e17408b607578bdef3fe6ba731ded477dddbbadbc9c91dfb659c05f5943e3656e04408e SHA512 1e308b85c51d43b23b186fdd2631f963d4c25de8aff29f335e131b32a175434ee21460a7aa470c508ad13662cf9052649bb4eb974dbd709eb9e6797fb84e0823
DIST libbluray-1.0.0.tar.bz2 713973 BLAKE2B 9a95a138a25a97ee08ddf91aff2d267c3608de7a672f5626536841b453d215808936fe7cc0213489e0907f65364f7cc69462e01a76061acdfc3a3a12762ccb3a SHA512 fcf2193c3b76f3436bc88ce8853cac16f29c3bb6c66447109c14202a41ea938cb6814502a8f724fb1b31add6bd36b42d3aed3eb4a8010c123537e073bd7a0be1
DIST libbluray-1.0.1.tar.bz2 719157 BLAKE2B 0c44e979b38c8d4614da3bd302334566515496b8d16578e315612ea95a0d7481e4d453ee634e0c7f0c6dd40a058f23a58432c49bd417cebf59c8d28f0fda8c4b SHA512 798d38cc95af87599af5838e5c288f2536a73b33191db8ff3774cf7eb5b835006bea83693f016d47dff551001b98527d8b1f14051f673fb3b28073b820e325d7
+DIST libbluray-1.0.2.tar.bz2 733058 BLAKE2B 6428b3cb8a2339e2c2d7f86663d6917d8484b858fb03aaf3bda6824181d072050625d37280cf011574c07316ef83103b334f654de1a6219e3a33343532cfe986 SHA512 e1360ad08aa6cc67a80efa81a09004faebbe31105f1961494f82f655e3e7378b198ee3bc534b0d0c2bfec726939b11b545cc8bbfa30794fc647432dadf71089b
diff --git a/media-libs/libbluray/libbluray-1.0.2.ebuild b/media-libs/libbluray/libbluray-1.0.2.ebuild
new file mode 100644
index 00000000000..20254bb5fbc
--- /dev/null
+++ b/media-libs/libbluray/libbluray-1.0.2.ebuild
@@ -0,0 +1,90 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+if [[ "${PV#9999}" != "${PV}" ]] ; then
+ inherit git-r3
+ EGIT_REPO_URI="https://git.videolan.org/git/libbluray.git"
+else
+ KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+ SRC_URI="https://downloads.videolan.org/pub/videolan/libbluray/${PV}/${P}.tar.bz2"
+fi
+
+inherit autotools java-pkg-opt-2 flag-o-matic 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 static-libs +truetype utils +xml"
+
+COMMON_DEPEND="
+ xml? ( >=dev-libs/libxml2-2.9.1-r4[${MULTILIB_USEDEP}] )
+ fontconfig? ( >=media-libs/fontconfig-2.10.92[${MULTILIB_USEDEP}] )
+ truetype? ( >=media-libs/freetype-2.5.0.1:2[${MULTILIB_USEDEP}] )
+"
+RDEPEND="
+ ${COMMON_DEPEND}
+ aacs? ( >=media-libs/libaacs-0.6.0[${MULTILIB_USEDEP}] )
+ bdplus? ( media-libs/libbdplus[${MULTILIB_USEDEP}] )
+ java? ( >=virtual/jre-1.6 )
+"
+DEPEND="
+ ${COMMON_DEPEND}
+ java? (
+ >=virtual/jdk-1.6
+ dev-java/ant-core
+ )
+ virtual/pkgconfig
+"
+
+DOCS=( ChangeLog README.txt )
+
+src_prepare() {
+ default
+ unset JDK_HOME #621992
+ if use java ; then
+ export JDK_HOME="$(java-config -g JAVA_HOME)"
+
+ # don't install a duplicate jar file
+ sed -i '/^jar_DATA/d' Makefile.am || die
+
+ java-pkg-opt-2_src_prepare
+ fi
+
+ eautoreconf
+}
+
+multilib_src_configure() {
+ 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_enable static-libs static) \
+ $(use_with xml libxml2)
+}
+
+multilib_src_install() {
+ emake DESTDIR="${D}" install
+
+ if multilib_is_native_abi && use utils; then
+ cd .libs/ || die
+ dobin index_dump mobj_dump mpls_dump bd_info bdsplice clpi_dump hdmv_test libbluray_test list_titles sound_dump
+ if use java; then
+ dobin bdj_test
+ fi
+ fi
+
+ if multilib_is_native_abi && use java; then
+ java-pkg_dojar "${BUILD_DIR}"/.libs/${PN}-j2se-*.jar
+ fi
+}
+
+multilib_src_install_all() {
+ einstalldocs
+ find "${D}" -name '*.la' -delete || die
+}
next reply other threads:[~2017-12-16 5:40 UTC|newest]
Thread overview: 86+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-12-16 5:40 Craig Andrews [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-10-27 12:30 Alexis Ballier
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-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=1513402811.007154e9f09da768ebc42a4ad0e88a650e3bad3f.candrews@gentoo \
--to=candrews@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