From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4AEED138335 for ; Fri, 21 Sep 2018 18:21:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2333EE085E; Fri, 21 Sep 2018 18:21:45 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0308BE085E for ; Fri, 21 Sep 2018 18:21:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9908A335CD2 for ; Fri, 21 Sep 2018 18:21:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7C3A43DB for ; Fri, 21 Sep 2018 18:21:41 +0000 (UTC) From: "James Le Cuirot" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "James Le Cuirot" Message-ID: <1537554091.9027bbe12d28af03cb7cad29f489e28361c3f970.chewi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libbluray/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libbluray/libbluray-9999.ebuild X-VCS-Directories: media-libs/libbluray/ X-VCS-Committer: chewi X-VCS-Committer-Name: James Le Cuirot X-VCS-Revision: 9027bbe12d28af03cb7cad29f489e28361c3f970 X-VCS-Branch: master Date: Fri, 21 Sep 2018 18:21:41 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 7d4536ff-aa5f-4f1d-8d46-57cfa0f74469 X-Archives-Hash: 3d6a9e0dc50ac3e5d7bb0c87b275973b commit: 9027bbe12d28af03cb7cad29f489e28361c3f970 Author: James Le Cuirot gentoo org> AuthorDate: Wed Sep 12 22:37:27 2018 +0000 Commit: James Le Cuirot gentoo org> CommitDate: Fri Sep 21 18:21:31 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9027bbe1 media-libs/libbluray: Bring 9999 in sync with latest release The ebuild had fallen behind. Package-Manager: Portage-2.3.49, Repoman-2.3.10 media-libs/libbluray/libbluray-9999.ebuild | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/media-libs/libbluray/libbluray-9999.ebuild b/media-libs/libbluray/libbluray-9999.ebuild index a30dae66fdb..81159745968 100644 --- a/media-libs/libbluray/libbluray-9999.ebuild +++ b/media-libs/libbluray/libbluray-9999.ebuild @@ -11,14 +11,14 @@ else SRC_URI="https://downloads.videolan.org/pub/videolan/libbluray/${PV}/${P}.tar.bz2" fi -inherit autotools java-pkg-opt-2 flag-o-matic eutils multilib-minimal +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 udf utils +xml" +IUSE="aacs bdplus +fontconfig java static-libs +truetype utils +xml" COMMON_DEPEND=" xml? ( >=dev-libs/libxml2-2.9.1-r4[${MULTILIB_USEDEP}] ) @@ -44,7 +44,7 @@ DOCS=( ChangeLog README.txt ) src_prepare() { default - + unset JDK_HOME #621992 if use java ; then export JDK_HOME="$(java-config -g JAVA_HOME)" @@ -61,11 +61,10 @@ multilib_src_configure() { ECONF_SOURCE="${S}" econf \ --disable-optimizations \ $(multilib_native_use_enable utils examples) \ - $(multilib_native_use_enable java bdjava) \ + $(multilib_native_use_enable java bdjava-jar) \ $(use_with fontconfig) \ $(use_with truetype freetype) \ $(use_enable static-libs static) \ - $(use_enable udf) \ $(use_with xml libxml2) } @@ -73,7 +72,7 @@ multilib_src_install() { emake DESTDIR="${D}" install if multilib_is_native_abi && use utils; then - cd .libs/ + 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 @@ -87,5 +86,5 @@ multilib_src_install() { multilib_src_install_all() { einstalldocs - prune_libtool_files + find "${D}" -name '*.la' -delete || die }