diff options
author | Matt Turner <mattst88@gentoo.org> | 2022-11-12 12:28:11 -0500 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2022-11-12 12:28:11 -0500 |
commit | 4255f5015cf45a2cda915d7dc9494edf449e964f (patch) | |
tree | 0af4fe29d38cd43ba33e3cf2df641e108c074664 /media-libs/libbluray/libbluray-1.3.1.ebuild | |
parent | media-libs/libbdplus: Drop old versions (diff) | |
download | gentoo-4255f5015cf45a2cda915d7dc9494edf449e964f.tar.gz gentoo-4255f5015cf45a2cda915d7dc9494edf449e964f.tar.bz2 gentoo-4255f5015cf45a2cda915d7dc9494edf449e964f.zip |
media-libs/libbluray: Drop old versions
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'media-libs/libbluray/libbluray-1.3.1.ebuild')
-rw-r--r-- | media-libs/libbluray/libbluray-1.3.1.ebuild | 86 |
1 files changed, 0 insertions, 86 deletions
diff --git a/media-libs/libbluray/libbluray-1.3.1.ebuild b/media-libs/libbluray/libbluray-1.3.1.ebuild deleted file mode 100644 index 165a31b2189e..000000000000 --- a/media-libs/libbluray/libbluray-1.3.1.ebuild +++ /dev/null @@ -1,86 +0,0 @@ -# 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 - "${FILESDIR}"/${PN}-1.3.1-Fix-build-failure-after-Oracle-Java-CPU-for-April-2022.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 -} |